added script/cgi-server.pl
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Helper.pm
1 package Catalyst::Helper;
2
3 use strict;
4 use base 'Class::Accessor::Fast';
5 use Config;
6 use File::Spec;
7 use File::Path;
8 use IO::File;
9 use FindBin;
10
11 =head1 NAME
12
13 Catalyst::Helper - Bootstrap a Catalyst application
14
15 =head1 SYNOPSIS
16
17 See L<Catalyst::Manual::Intro>
18
19 =head1 DESCRIPTION
20
21 Bootstrap a Catalyst application.
22
23 =head2 METHODS
24
25 =head3 mk_app
26
27 =cut
28
29 sub mk_app {
30     my ( $self, $name ) = @_;
31     return 0 if $name =~ /[^\w\:]/;
32     $self->{name} = $name;
33     $self->{dir}  = $name;
34     $self->{dir} =~ s/\:\:/-/g;
35     $self->_mk_dirs;
36     $self->_mk_appclass;
37     $self->_mk_makefile;
38     $self->_mk_readme;
39     $self->_mk_changes;
40     $self->_mk_apptest;
41     $self->_mk_cgi;
42     $self->_mk_server;
43     $self->_mk_cgiserver;
44     $self->_mk_test;
45     $self->_mk_create;
46     return 1;
47 }
48
49 =head3 mk_component
50
51 =cut
52
53 sub mk_component {
54     my $self = shift;
55     my $app  = shift;
56     $self->{app} = $app;
57     $self->{base} = File::Spec->catdir( $FindBin::Bin, '..' );
58     unless ( $_[0] =~ /^model|m|view|v|controller|c\$/i ) {
59         my $helper = shift;
60         my @args   = @_;
61         my $class  = "Catalyst::Helper::$helper";
62         eval "require $class";
63         die qq/Couldn't load helper "$class", "$@"/ if $@;
64         if ( $class->can('mk_stuff') ) {
65             return 1 unless $class->mk_stuff( $self, @args );
66         }
67     }
68     else {
69         my $type   = shift;
70         my $name   = shift;
71         my $helper = shift;
72         my @args   = @_;
73         return 0 if $name =~ /[^\w\:]/;
74         $type = 'M' if $type =~ /model|m/i;
75         $type = 'V' if $type =~ /view|v/i;
76         $type = 'C' if $type =~ /controller|c/i;
77         $self->{type}  = $type;
78         $self->{name}  = $name;
79         $self->{class} = "$app\::$type\::$name";
80
81         # Class
82         my $appdir = File::Spec->catdir( split /\:\:/, $app );
83         my $path =
84           File::Spec->catdir( $FindBin::Bin, '..', 'lib', $appdir, $type );
85         my $file = $name;
86         if ( $name =~ /\:/ ) {
87             my @path = split /\:\:/, $name;
88             $file = pop @path;
89             $path = File::Spec->catdir( $path, @path );
90             mkpath $path;
91         }
92         $file = File::Spec->catfile( $path, "$file.pm" );
93         $self->{file} = $file;
94
95         # Test
96         $self->{test_dir} = File::Spec->catdir( $FindBin::Bin, '..', 't' );
97         $self->{test}     = $self->next_test;
98
99         # Helper
100         if ($helper) {
101             my $comp = 'Model';
102             $comp = 'View'       if $type eq 'V';
103             $comp = 'Controller' if $type eq 'C';
104             my $class = "Catalyst::Helper::$comp\::$helper";
105             eval "require $class";
106             die qq/Couldn't load helper "$class", "$@"/ if $@;
107             if ( $class->can('mk_compclass') ) {
108                 return 1 unless $class->mk_compclass( $self, @args );
109             }
110             else { return 1 unless $self->_mk_compclass }
111
112             if ( $class->can('mk_comptest') ) {
113                 $class->mk_comptest( $self, @args );
114             }
115             else { $self->_mk_comptest }
116         }
117
118         # Fallback
119         else {
120             return 1 unless $self->_mk_compclass;
121             $self->_mk_comptest;
122         }
123     }
124     return 1;
125 }
126
127 =head3 mk_dir
128
129 =cut
130
131 sub mk_dir {
132     my ( $self, $dir ) = @_;
133     if ( -d $dir ) {
134         print qq/ exists "$dir"\n/;
135         return 0;
136     }
137     if ( mkpath $dir) {
138         print qq/created "$dir"\n/;
139         return 1;
140     }
141     die qq/Couldn't create "$dir", "$!"/;
142 }
143
144 =head3 mk_file
145
146 =cut
147
148 sub mk_file {
149     my ( $self, $file, $content ) = @_;
150     if ( -e $file ) {
151         print qq/ exists "$file"\n/;
152         return 0;
153     }
154     if ( my $f = IO::File->new("> $file") ) {
155         print $f $content;
156         print qq/created "$file"\n/;
157         return 1;
158     }
159     die qq/Couldn't create "$file", "$!"/;
160 }
161
162 =head3 next_test
163
164 =cut
165
166 sub next_test {
167     my ( $self, $tname ) = @_;
168     if ($tname) { $tname = "$tname.t" }
169     else {
170         my $name   = $self->{name};
171         my $prefix = $name;
172         $prefix =~ s/::/_/g;
173         $prefix         = lc $prefix;
174         $tname          = $prefix . '.t';
175         $self->{prefix} = $prefix;
176     }
177     my $dir  = $self->{test_dir};
178     my $type = lc $self->{type};
179     return File::Spec->catfile( $dir, $type, $tname );
180 }
181
182 sub _mk_dirs {
183     my $self = shift;
184     $self->mk_dir( $self->{dir} );
185     $self->{script} = File::Spec->catdir( $self->{dir}, 'script' );
186     $self->mk_dir( $self->{script} );
187     $self->{lib} = File::Spec->catdir( $self->{dir}, 'lib' );
188     $self->mk_dir( $self->{lib} );
189     $self->{root} = File::Spec->catdir( $self->{dir}, 'root' );
190     $self->mk_dir( $self->{root} );
191     $self->{t} = File::Spec->catdir( $self->{dir}, 't' );
192     $self->mk_dir( $self->{t} );
193     $self->mk_dir( File::Spec->catdir( $self->{t}, 'm' ) );
194     $self->mk_dir( File::Spec->catdir( $self->{t}, 'v' ) );
195     $self->mk_dir( File::Spec->catdir( $self->{t}, 'c' ) );
196     $self->{class} = File::Spec->catdir( split( /\:\:/, $self->{name} ) );
197     $self->{mod} = File::Spec->catdir( $self->{lib}, $self->{class} );
198     $self->mk_dir( $self->{mod} );
199     $self->{m} = File::Spec->catdir( $self->{mod}, 'M' );
200     $self->mk_dir( $self->{m} );
201     $self->{v} = File::Spec->catdir( $self->{mod}, 'V' );
202     $self->mk_dir( $self->{v} );
203     $self->{c} = File::Spec->catdir( $self->{mod}, 'C' );
204     $self->mk_dir( $self->{c} );
205     $self->{base} = File::Spec->rel2abs( $self->{dir} );
206 }
207
208 sub _mk_appclass {
209     my $self = shift;
210     my $mod  = $self->{mod};
211     my $name = $self->{name};
212     my $base = $self->{base};
213     $self->mk_file( "$mod.pm", <<"EOF");
214 package $name;
215
216 use strict;
217 use Catalyst qw/-Debug/;
218
219 our \$VERSION = '0.01';
220
221 $name->config(
222     name => '$name',
223     root => '$base/root',
224 );
225
226 $name->action(
227
228     '!default' => sub {
229         my ( \$self, \$c ) = \@_;
230         \$c->res->output('Congratulations, $name is on Catalyst!');
231     },
232
233 );
234
235 =head1 NAME
236
237 $name - A very nice application
238
239 =head1 SYNOPSIS
240
241     Very simple to use
242
243 =head1 DESCRIPTION
244
245 Very nice application.
246
247 =head1 AUTHOR
248
249 Clever guy
250
251 =head1 LICENSE
252
253 This library is free software . You can redistribute it and/or modify it under
254 the same terms as perl itself.
255
256 =cut
257
258 1;
259 EOF
260 }
261
262 sub _mk_makefile {
263     my $self  = shift;
264     my $name  = $self->{name};
265     my $dir   = $self->{dir};
266     my $class = $self->{class};
267     $self->mk_file( "$dir\/Makefile.PL", <<"EOF");
268 use ExtUtils::MakeMaker;
269
270 WriteMakefile(
271     NAME         => '$name',
272     VERSION_FROM => 'lib/$class.pm',
273     PREREQ_PM    => { Catalyst => 0 },
274     test         => { TESTS => join ' ', ( glob('t/*.t'), glob('t/*/*.t') ) }
275 );
276 EOF
277 }
278
279 sub _mk_readme {
280     my $self = shift;
281     my $dir  = $self->{dir};
282     $self->mk_file( "$dir\/README", <<"EOF");
283 Run script/server.pl to test the application.
284 EOF
285 }
286
287 sub _mk_changes {
288     my $self = shift;
289     my $name = $self->{name};
290     my $dir  = $self->{dir};
291     my $time = localtime time;
292     $self->mk_file( "$dir\/Changes", <<"EOF");
293 This file documents the revision history for Perl extension $name.
294
295 0.01  $time
296         - initial revision, generated by Catalyst
297 EOF
298 }
299
300 sub _mk_apptest {
301     my $self = shift;
302     my $t    = $self->{t};
303     my $name = $self->{name};
304     $self->mk_file( "$t\/01app.t", <<"EOF");
305 use Test::More tests => 2;
306 use_ok( Catalyst::Test, '$name' );
307
308 ok( request('/')->is_success );
309 EOF
310     $self->mk_file( "$t\/02podcoverage.t", <<"EOF");
311 use Test::More;
312
313 eval "use Test::Pod::Coverage 1.04";
314 plan skip_all => 'Test::Pod::Coverage 1.04 required' if \$@;
315 plan skip_all => 'set TEST_POD to enable this test' unless \$ENV{TEST_POD};
316
317 all_pod_coverage_ok();
318 EOF
319 }
320
321 sub _mk_cgi {
322     my $self   = shift;
323     my $name   = $self->{name};
324     my $script = $self->{script};
325     $self->mk_file( "$script\/cgi.pl", <<"EOF");
326 $Config{startperl} -w
327
328 use strict;
329 use FindBin;
330 use lib "\$FindBin::Bin/../lib";
331 use $name;
332
333 $name->run;
334
335 1;
336 __END__
337
338 =head1 NAME
339
340 cgi - Catalyst CGI
341
342 =head1 SYNOPSIS
343
344 See L<Catalyst::Manual>
345
346 =head1 DESCRIPTION
347
348 Run a Catalyst application as cgi.
349
350 =head1 AUTHOR
351
352 Sebastian Riedel, C<sri\@oook.de>
353
354 =head1 COPYRIGHT
355
356 Copyright 2004 Sebastian Riedel. All rights reserved.
357
358 This library is free software. You can redistribute it and/or modify it under
359 the same terms as perl itself.
360
361 =cut
362 EOF
363     chmod 0700, "$script/cgi.pl";
364 }
365
366 sub _mk_server {
367     my $self   = shift;
368     my $name   = $self->{name};
369     my $script = $self->{script};
370     $self->mk_file( "$script\/server.pl", <<"EOF");
371 $Config{startperl} -w
372
373 use strict;
374 use Getopt::Long;
375 use Pod::Usage;
376 use FindBin;
377 use lib "\$FindBin::Bin/../lib";
378 use Catalyst::Test '$name';
379
380 my \$help = 0;
381 my \$port = 3000;
382
383 GetOptions( 'help|?' => \\\$help, 'port=s' => \\\$port );
384
385 pod2usage(1) if \$help;
386
387 Catalyst::Test::server(\$port);
388
389 1;
390 __END__
391
392 =head1 NAME
393
394 server - Catalyst Testserver
395
396 =head1 SYNOPSIS
397
398 server.pl [options]
399
400  Options:
401    -? -help    display this help and exits
402    -p -port    port (defaults to 3000)
403
404  See also:
405    perldoc Catalyst::Manual
406    perldoc Catalyst::Manual::Intro
407
408 =head1 DESCRIPTION
409
410 Run a Catalyst Testserver for this application.
411
412 =head1 AUTHOR
413
414 Sebastian Riedel, C<sri\@oook.de>
415
416 =head1 COPYRIGHT
417
418 Copyright 2004 Sebastian Riedel. All rights reserved.
419
420 This library is free software. You can redistribute it and/or modify it under
421 the same terms as perl itself.
422
423 =cut
424 EOF
425     chmod 0700, "$script/server.pl";
426 }
427
428 sub _mk_cgiserver {
429     my $self   = shift;
430     my $name   = $self->{name};
431     my $script = $self->{script};
432     $self->mk_file( "$script\/cgi-server.pl", <<"EOF");
433 $Config{startperl} -w
434
435 use strict;
436 use Getopt::Long;
437 use Pod::Usage;
438 use FindBin;
439 use File::Spec;
440 use Catalyst::Test;
441
442 my \$help = 0;
443 my \$port = 3000;
444
445 GetOptions( 'help|?' => \\\$help, 'port=s' => \\\$port );
446
447 pod2usage(1) if \$help;
448
449 Catalyst::Test::server(
450     \$port, File::Spec->catfile( \$FindBin::Bin, 'cgi.pl' ) );
451
452 1;
453 __END__
454
455 =head1 NAME
456
457 cgi-server - Catalyst CGI Testserver
458
459 =head1 SYNOPSIS
460
461 cgi-server.pl [options]
462
463  Options:
464    -? -help    display this help and exits
465    -p -port    port (defaults to 3000)
466
467  See also:
468    perldoc Catalyst::Manual
469    perldoc Catalyst::Manual::Intro
470
471 =head1 DESCRIPTION
472
473 Run a Catalyst CGI Testserver for this application.
474
475 Similar to the regular server but doesn't require a restart
476 after code changes!
477
478 =head1 AUTHOR
479
480 Sebastian Riedel, C<sri\@oook.de>
481
482 =head1 COPYRIGHT
483
484 Copyright 2004 Sebastian Riedel. All rights reserved.
485
486 This library is free software. You can redistribute it and/or modify it under
487 the same terms as perl itself.
488
489 =cut
490 EOF
491     chmod 0700, "$script/cgi-server.pl";
492 }
493
494 sub _mk_test {
495     my $self   = shift;
496     my $name   = $self->{name};
497     my $script = $self->{script};
498     $self->mk_file( "$script/test.pl", <<"EOF");
499 $Config{startperl} -w
500
501 use strict;
502 use Getopt::Long;
503 use Pod::Usage;
504 use FindBin;
505 use lib "\$FindBin::Bin/../lib";
506
507 my \$help = 0;
508
509 GetOptions( 'help|?' => \\\$help );
510
511 pod2usage(1) if ( \$help || !\$ARGV[0] );
512
513 require Catalyst::Test;
514 import Catalyst::Test '$name';
515
516 print get(\$ARGV[0]) . "\n";
517
518 1;
519 __END__
520
521 =head1 NAME
522
523 test - Catalyst Test
524
525 =head1 SYNOPSIS
526
527 test.pl [options] uri
528
529  Options:
530    -help    display this help and exits
531
532  Examples:
533    test.pl http://localhost/some_action
534    test.pl /some_action
535
536  See also:
537    perldoc Catalyst::Manual
538    perldoc Catalyst::Manual::Intro
539
540 =head1 DESCRIPTION
541
542 Run a Catalyst action from the comand line.
543
544 =head1 AUTHOR
545
546 Sebastian Riedel, C<sri\@oook.de>
547
548 =head1 COPYRIGHT
549
550 Copyright 2004 Sebastian Riedel. All rights reserved.
551
552 This library is free software. You can redistribute it and/or modify it under
553 the same terms as perl itself.
554
555 =cut
556 EOF
557     chmod 0700, "$script/test.pl";
558 }
559
560 sub _mk_create {
561     my $self   = shift;
562     my $name   = $self->{name};
563     my $script = $self->{script};
564     $self->mk_file( "$script\/create.pl", <<"EOF");
565 $Config{startperl} -w
566
567 use strict;
568 use Getopt::Long;
569 use Pod::Usage;
570 use Catalyst::Helper;
571
572 my \$help = 0;
573
574 GetOptions( 'help|?' => \$help );
575
576 pod2usage(1) if ( \$help || !\$ARGV[0] );
577
578 my \$helper = Catalyst::Helper->new;
579 pod2usage(1) unless \$helper->mk_component( '$name', \@ARGV );
580
581 1;
582 __END__
583
584 =head1 NAME
585
586 create - Create a new Catalyst Component
587
588 =head1 SYNOPSIS
589
590 create.pl [options] model|view|controller name [helper] [options]
591
592  Options:
593    -help    display this help and exits
594
595  Examples:
596    create.pl controller My::Controller
597    create.pl view My::View
598    create.pl view MyView TT
599    create.pl view TT TT
600    create.pl model My::Model
601    create.pl model SomeDB CDBI dbi:SQLite:/tmp/my.db
602    create.pl model AnotherDB CDBI dbi:Pg:dbname=foo root 4321
603    create.pl Ajax
604
605  See also:
606    perldoc Catalyst::Manual
607    perldoc Catalyst::Manual::Intro
608
609 =head1 DESCRIPTION
610
611 Create a new Catalyst Component.
612
613 =head1 AUTHOR
614
615 Sebastian Riedel, C<sri\@oook.de>
616
617 =head1 COPYRIGHT
618
619 Copyright 2004 Sebastian Riedel. All rights reserved.
620
621 This library is free software. You can redistribute it and/or modify it under
622 the same terms as perl itself.
623
624 =cut
625 EOF
626     chmod 0700, "$script/create.pl";
627 }
628
629 sub _mk_compclass {
630     my $self   = shift;
631     my $app    = $self->{app};
632     my $class  = $self->{class};
633     my $type   = $self->{type};
634     my $action = '';
635     $action = <<"EOF" if $type eq 'C';
636
637 $app->action(
638
639     '!?default' => sub {
640         my ( \$self, \$c ) = \@_;
641         \$c->res->output('Congratulations, $class is on Catalyst!');
642     },
643
644 );
645 EOF
646     my $file = $self->{file};
647     return $self->mk_file( "$file", <<"EOF");
648 package $class;
649
650 use strict;
651 use base 'Catalyst::Base';
652 $action
653 =head1 NAME
654
655 $class - A Component
656
657 =head1 SYNOPSIS
658
659     Very simple to use
660
661 =head1 DESCRIPTION
662
663 Very nice component.
664
665 =head1 AUTHOR
666
667 Clever guy
668
669 =head1 LICENSE
670
671 This library is free software . You can redistribute it and/or modify it under
672 the same terms as perl itself.
673
674 =cut
675
676 1;
677 EOF
678 }
679
680 sub _mk_comptest {
681     my $self   = shift;
682     my $prefix = $self->{prefix};
683     my $type   = $self->{type};
684     my $class  = $self->{class};
685     my $app    = $self->{app};
686     my $test   = $self->{test};
687     if ( $self->{type} eq 'C' ) {
688         $self->mk_file( "$test", <<"EOF");
689 use Test::More tests => 3;
690 use_ok( Catalyst::Test, '$app' );
691 use_ok('$class');
692
693 ok( request('$prefix')->is_success );
694 EOF
695     }
696     else {
697         $self->mk_file( "$test", <<"EOF");
698 use Test::More tests => 1;
699 use_ok('$class');
700 EOF
701     }
702 }
703
704 =head1 HELPERS
705
706 Helpers are classes that provide two methods.
707
708     * mk_compclass - creates the Component class
709     * mk_comptest  - creates the Component test
710
711 So when you call C<bin/create view MyView TT>, create would try to execute
712 Catalyst::Helper::View::TT->mk_compclass and
713 Catalyst::Helper::View::TT->mk_comptest.
714
715 See L<Catalyst::Helper::View::TT> and L<Catalyst::Helper::Model::CDBI> for
716 examples.
717
718 All helper classes should be under one of the following namespaces.
719
720     Catalyst::Helper::Model::
721     Catalyst::Helper::View::
722     Catalyst::Helper::Controller::
723
724 =head1 SEE ALSO
725
726 L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
727 L<Catalyst::Response>, L<Catalyst>
728
729 =head1 AUTHOR
730
731 Sebastian Riedel, C<sri@oook.de>
732
733 =head1 LICENSE
734
735 This library is free software . You can redistribute it and/or modify it under
736 the same terms as perl itself.
737
738 =cut
739
740 1;