Updated helper templates
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Helper.pm
CommitLineData
fc7ec1d9 1package Catalyst::Helper;
2
3use strict;
4use base 'Class::Accessor::Fast';
f1d0b7ea 5use Config;
fc7ec1d9 6use File::Spec;
7use File::Path;
8use IO::File;
9use FindBin;
61cfdd57 10use Template;
2a276acb 11use Catalyst;
61cfdd57 12
13my %cache;
fc7ec1d9 14
15=head1 NAME
16
17Catalyst::Helper - Bootstrap a Catalyst application
18
19=head1 SYNOPSIS
20
21See L<Catalyst::Manual::Intro>
22
23=head1 DESCRIPTION
24
b160463f 25Bootstrap a Catalyst application. Autogenerates scripts
fc7ec1d9 26
27=head2 METHODS
28
61cfdd57 29=head3 get_file
30
31Slurp file from DATA.
32
33=cut
34
35sub get_file {
36 my ( $self, $class, $file ) = @_;
37 unless ( $cache{$class} ) {
38 local $/;
39 $cache{$class} = eval "package $class; <DATA>";
40 }
41 my $data = $cache{$class};
42 my @files = split /^__(.+)__\n/m, $data;
43 shift @files;
44 while (@files) {
45 my ( $name, $content ) = splice @files, 0, 2;
46 return $content if $name eq $file;
47 }
48 return 0;
49}
50
fc7ec1d9 51=head3 mk_app
52
b160463f 53Create the main application skeleton.
54
fc7ec1d9 55=cut
56
57sub mk_app {
58 my ( $self, $name ) = @_;
59 return 0 if $name =~ /[^\w\:]/;
60 $self->{name} = $name;
61 $self->{dir} = $name;
62 $self->{dir} =~ s/\:\:/-/g;
4f6748f1 63 $self->{appprefix} = lc $self->{dir};
64 $self->{appprefix} =~ s/-/_/g;
61cfdd57 65 $self->{startperl} = $Config{startperl};
4f6748f1 66 $self->{scriptgen} = $Catalyst::CATALYST_SCRIPT_GEN;
67 $self->{author} = $self->{author} = $ENV{'AUTHOR'}
28e68b83 68 || eval { @{ [ getpwuid($<) ] }[6] }
69 || 'A clever guy';
fc7ec1d9 70 $self->_mk_dirs;
71 $self->_mk_appclass;
4f6748f1 72 $self->_mk_build;
fc7ec1d9 73 $self->_mk_makefile;
91864987 74 $self->_mk_readme;
75 $self->_mk_changes;
fc7ec1d9 76 $self->_mk_apptest;
bc024080 77 $self->_mk_cgi;
28e68b83 78 $self->_mk_fastcgi;
fc7ec1d9 79 $self->_mk_server;
80 $self->_mk_test;
81 $self->_mk_create;
82 return 1;
83}
84
ad41e777 85=head3 mk_component
86
b160463f 87This method is called by create.pl to make new components
88for your application.
89
ad41e777 90=cut
91
92sub mk_component {
b5524568 93 my $self = shift;
94 my $app = shift;
95 $self->{app} = $app;
4f6748f1 96 $self->{author} = $self->{author} = $ENV{'AUTHOR'}
28e68b83 97 || eval { @{ [ getpwuid($<) ] }[6] }
98 || 'A clever guy';
b5524568 99 $self->{base} = File::Spec->catdir( $FindBin::Bin, '..' );
100 unless ( $_[0] =~ /^model|m|view|v|controller|c\$/i ) {
101 my $helper = shift;
102 my @args = @_;
103 my $class = "Catalyst::Helper::$helper";
ad41e777 104 eval "require $class";
105 die qq/Couldn't load helper "$class", "$@"/ if $@;
b5524568 106 if ( $class->can('mk_stuff') ) {
107 return 1 unless $class->mk_stuff( $self, @args );
ad41e777 108 }
ad41e777 109 }
ad41e777 110 else {
b5524568 111 my $type = shift;
adfe7ead 112 my $name = shift || "Missing name for model/view/controller";
28e68b83 113 my $helper = shift;
b5524568 114 my @args = @_;
115 return 0 if $name =~ /[^\w\:]/;
116 $type = 'M' if $type =~ /model|m/i;
117 $type = 'V' if $type =~ /view|v/i;
118 $type = 'C' if $type =~ /controller|c/i;
119 $self->{type} = $type;
120 $self->{name} = $name;
121 $self->{class} = "$app\::$type\::$name";
122
123 # Class
124 my $appdir = File::Spec->catdir( split /\:\:/, $app );
125 my $path =
126 File::Spec->catdir( $FindBin::Bin, '..', 'lib', $appdir, $type );
127 my $file = $name;
128 if ( $name =~ /\:/ ) {
129 my @path = split /\:\:/, $name;
130 $file = pop @path;
131 $path = File::Spec->catdir( $path, @path );
132 mkpath $path;
133 }
134 $file = File::Spec->catfile( $path, "$file.pm" );
135 $self->{file} = $file;
136
137 # Test
138 $self->{test_dir} = File::Spec->catdir( $FindBin::Bin, '..', 't' );
139 $self->{test} = $self->next_test;
140
141 # Helper
142 if ($helper) {
143 my $comp = 'Model';
144 $comp = 'View' if $type eq 'V';
145 $comp = 'Controller' if $type eq 'C';
146 my $class = "Catalyst::Helper::$comp\::$helper";
147 eval "require $class";
148 die qq/Couldn't load helper "$class", "$@"/ if $@;
149 if ( $class->can('mk_compclass') ) {
150 return 1 unless $class->mk_compclass( $self, @args );
151 }
152 else { return 1 unless $self->_mk_compclass }
153
154 if ( $class->can('mk_comptest') ) {
155 $class->mk_comptest( $self, @args );
156 }
157 else { $self->_mk_comptest }
158 }
159
160 # Fallback
161 else {
162 return 1 unless $self->_mk_compclass;
163 $self->_mk_comptest;
164 }
ad41e777 165 }
166 return 1;
167}
168
169=head3 mk_dir
170
b160463f 171Surprisingly, this function makes a directory.
172
ad41e777 173=cut
174
175sub mk_dir {
176 my ( $self, $dir ) = @_;
177 if ( -d $dir ) {
178 print qq/ exists "$dir"\n/;
179 return 0;
180 }
181 if ( mkpath $dir) {
182 print qq/created "$dir"\n/;
183 return 1;
184 }
185 die qq/Couldn't create "$dir", "$!"/;
186}
187
188=head3 mk_file
189
b160463f 190writes content to a file.
191
ad41e777 192=cut
193
194sub mk_file {
195 my ( $self, $file, $content ) = @_;
196 if ( -e $file ) {
197 print qq/ exists "$file"\n/;
198 return 0;
199 }
200 if ( my $f = IO::File->new("> $file") ) {
201 print $f $content;
202 print qq/created "$file"\n/;
203 return 1;
204 }
205 die qq/Couldn't create "$file", "$!"/;
206}
207
208=head3 next_test
209
210=cut
211
212sub next_test {
213 my ( $self, $tname ) = @_;
3cb1db8c 214 if ($tname) { $tname = "$tname.t" }
ad41e777 215 else {
216 my $name = $self->{name};
ad41e777 217 my $prefix = $name;
218 $prefix =~ s/::/_/g;
219 $prefix = lc $prefix;
3cb1db8c 220 $tname = $prefix . '.t';
ad41e777 221 $self->{prefix} = $prefix;
222 }
3cb1db8c 223 my $dir = $self->{test_dir};
224 my $type = lc $self->{type};
225 return File::Spec->catfile( $dir, $type, $tname );
ad41e777 226}
227
61cfdd57 228=head3 render_file
229
b160463f 230Render and create a file from a template in DATA using
231Template Toolkit.
61cfdd57 232
233=cut
234
235sub render_file {
236 my ( $self, $file, $path, $vars ) = @_;
237 $vars ||= {};
238 my $t = Template->new;
239 my $template = $self->get_file( ( caller(0) )[0], $file );
240 return 0 unless $template;
241 my $output;
242 $t->process( \$template, { %{$self}, %$vars }, \$output );
243 $self->mk_file( $path, $output );
244}
245
fc7ec1d9 246sub _mk_dirs {
247 my $self = shift;
ad41e777 248 $self->mk_dir( $self->{dir} );
91864987 249 $self->{script} = File::Spec->catdir( $self->{dir}, 'script' );
250 $self->mk_dir( $self->{script} );
fc7ec1d9 251 $self->{lib} = File::Spec->catdir( $self->{dir}, 'lib' );
ad41e777 252 $self->mk_dir( $self->{lib} );
fc7ec1d9 253 $self->{root} = File::Spec->catdir( $self->{dir}, 'root' );
ad41e777 254 $self->mk_dir( $self->{root} );
fc7ec1d9 255 $self->{t} = File::Spec->catdir( $self->{dir}, 't' );
ad41e777 256 $self->mk_dir( $self->{t} );
3cb1db8c 257 $self->mk_dir( File::Spec->catdir( $self->{t}, 'm' ) );
258 $self->mk_dir( File::Spec->catdir( $self->{t}, 'v' ) );
259 $self->mk_dir( File::Spec->catdir( $self->{t}, 'c' ) );
fc7ec1d9 260 $self->{class} = File::Spec->catdir( split( /\:\:/, $self->{name} ) );
261 $self->{mod} = File::Spec->catdir( $self->{lib}, $self->{class} );
ad41e777 262 $self->mk_dir( $self->{mod} );
fc7ec1d9 263 $self->{m} = File::Spec->catdir( $self->{mod}, 'M' );
ad41e777 264 $self->mk_dir( $self->{m} );
fc7ec1d9 265 $self->{v} = File::Spec->catdir( $self->{mod}, 'V' );
ad41e777 266 $self->mk_dir( $self->{v} );
fc7ec1d9 267 $self->{c} = File::Spec->catdir( $self->{mod}, 'C' );
ad41e777 268 $self->mk_dir( $self->{c} );
fc7ec1d9 269 $self->{base} = File::Spec->rel2abs( $self->{dir} );
270}
271
272sub _mk_appclass {
ad41e777 273 my $self = shift;
274 my $mod = $self->{mod};
61cfdd57 275 $self->render_file( 'appclass', "$mod.pm" );
276}
277
4f6748f1 278sub _mk_build {
279 my $self = shift;
280 my $dir = $self->{dir};
281 $self->render_file( 'build', "$dir\/Build.PL" );
282}
283
61cfdd57 284sub _mk_makefile {
285 my $self = shift;
286 my $dir = $self->{dir};
287 $self->render_file( 'makefile', "$dir\/Makefile.PL" );
288}
289
290sub _mk_readme {
291 my $self = shift;
292 my $dir = $self->{dir};
293 $self->render_file( 'readme', "$dir\/README" );
294}
295
296sub _mk_changes {
297 my $self = shift;
298 my $dir = $self->{dir};
299 my $time = localtime time;
300 $self->render_file( 'changes', "$dir\/Changes", { time => $time } );
301}
302
303sub _mk_apptest {
304 my $self = shift;
305 my $t = $self->{t};
306 $self->render_file( 'apptest', "$t\/01app.t" );
307 $self->render_file( 'podtest', "$t\/02pod.t" );
308 $self->render_file( 'podcoveragetest', "$t\/03podcoverage.t" );
309}
310
311sub _mk_cgi {
28e68b83 312 my $self = shift;
313 my $script = $self->{script};
4f6748f1 314 my $appprefix = $self->{appprefix};
315 $self->render_file( 'cgi', "$script\/$appprefix\_cgi.pl" );
316 chmod 0700, "$script/$appprefix\_cgi.pl";
61cfdd57 317}
318
28e68b83 319sub _mk_fastcgi {
320 my $self = shift;
321 my $script = $self->{script};
4f6748f1 322 my $appprefix = $self->{appprefix};
28e68b83 323 $self->render_file( 'fastcgi', "$script\/$appprefix\_fastcgi.pl" );
324 chmod 0700, "$script/$appprefix\_fastcgi.pl";
61cfdd57 325}
326
327sub _mk_server {
28e68b83 328 my $self = shift;
329 my $script = $self->{script};
4f6748f1 330 my $appprefix = $self->{appprefix};
331 $self->render_file( 'server', "$script\/$appprefix\_server.pl" );
332 chmod 0700, "$script/$appprefix\_server.pl";
61cfdd57 333}
334
335sub _mk_test {
28e68b83 336 my $self = shift;
337 my $script = $self->{script};
4f6748f1 338 my $appprefix = $self->{appprefix};
339 $self->render_file( 'test', "$script/$appprefix\_test.pl" );
340 chmod 0700, "$script/$appprefix\_test.pl";
61cfdd57 341}
342
343sub _mk_create {
28e68b83 344 my $self = shift;
345 my $script = $self->{script};
4f6748f1 346 my $appprefix = $self->{appprefix};
347 $self->render_file( 'create', "$script\/$appprefix\_create.pl" );
348 chmod 0700, "$script/$appprefix\_create.pl";
61cfdd57 349}
350
351sub _mk_compclass {
352 my $self = shift;
353 my $file = $self->{file};
354 return $self->render_file( 'compclass', "$file" );
355}
356
357sub _mk_comptest {
358 my $self = shift;
359 my $test = $self->{test};
360 $self->render_file( 'comptest', "$test" );
361}
362
363=head1 HELPERS
364
365Helpers are classes that provide two methods.
366
367 * mk_compclass - creates the Component class
368 * mk_comptest - creates the Component test
369
370So when you call C<bin/create view MyView TT>, create would try to execute
371Catalyst::Helper::View::TT->mk_compclass and
372Catalyst::Helper::View::TT->mk_comptest.
373
374See L<Catalyst::Helper::View::TT> and L<Catalyst::Helper::Model::CDBI> for
375examples.
376
377All helper classes should be under one of the following namespaces.
378
379 Catalyst::Helper::Model::
380 Catalyst::Helper::View::
381 Catalyst::Helper::Controller::
382
ddb46924 383=head1 NOTE
384
385The helpers will read author name from /etc/passwd by default.
386To override, please export the AUTHOR variable.
387
61cfdd57 388=head1 SEE ALSO
389
390L<Catalyst::Manual>, L<Catalyst::Test>, L<Catalyst::Request>,
391L<Catalyst::Response>, L<Catalyst>
392
393=head1 AUTHOR
394
395Sebastian Riedel, C<sri@oook.de>
396
397=head1 LICENSE
398
b160463f 399This library is free software . You can redistribute it and/or modify
400it under the same terms as perl itself.
61cfdd57 401
402=cut
403
4041;
405__DATA__
406
407__appclass__
408package [% name %];
fc7ec1d9 409
410use strict;
411use Catalyst qw/-Debug/;
412
61cfdd57 413our $VERSION = '0.01';
fc7ec1d9 414
4efc6b10 415[% name %]->config( name => '[% name %]' );
5811fa3e 416
61cfdd57 417[% name %]->setup;
fc7ec1d9 418
fc7ec1d9 419=head1 NAME
420
df8632c6 421[% name %] - Catalyst based application
fc7ec1d9 422
423=head1 SYNOPSIS
424
df8632c6 425 script/[% appprefix %]_server.pl
fc7ec1d9 426
427=head1 DESCRIPTION
428
df8632c6 429Catalyst based application.
430
431=head1 METHODS
432
433=over4
434
435=item default
436
437=cut
438
439sub default : Private {
440 my ( $self, $c ) = @_;
441 $c->res->output('Congratulations, [% name %] is on Catalyst!');
442}
fc7ec1d9 443
444=head1 AUTHOR
445
ddb46924 446[%author%]
fc7ec1d9 447
448=head1 LICENSE
449
b160463f 450This library is free software . You can redistribute it and/or modify
451it under the same terms as perl itself.
fc7ec1d9 452
453=cut
454
4551;
87c87366 456__makefile__
457 unless ( eval "use Module::Build::Compat 0.02; 1" ) {
458 print "This module requires Module::Build to install itself.\n";
459
460 require ExtUtils::MakeMaker;
461 my $yn =
462 ExtUtils::MakeMaker::prompt( ' Install Module::Build now from CPAN?', 'y' );
463
464 unless ( $yn =~ /^y/i ) {
465 die " *** Cannot install without Module::Build. Exiting ...\n";
466 }
467
468 require Cwd;
469 require File::Spec;
470 require CPAN;
471
472 # Save this 'cause CPAN will chdir all over the place.
473 my $cwd = Cwd::cwd();
474 my $makefile = File::Spec->rel2abs($0);
475
476 CPAN::Shell->install('Module::Build::Compat')
477 or die " *** Cannot install without Module::Build. Exiting ...\n";
478
479 chdir $cwd or die "Cannot chdir() back to $cwd: $!";
480 }
481 eval "use Module::Build::Compat 0.02; 1" or die $@;
482 use lib '_build/lib';
483 Module::Build::Compat->run_build_pl( args => \@ARGV );
484 require Module::Build;
485 Module::Build::Compat->write_makefile( build_class => 'Module::Build' );
4f6748f1 486__build__
487use strict;
488use Catalyst::Build;
489
490my $build = Catalyst::Build->new(
491 create_makefile_pl => 'passthrough',
492 license => 'perl',
493 module_name => '[% name %]',
809fd1e0 494 requires => { Catalyst => '5.10' },
adfe7ead 495 create_makefile_pl => 'passthrough',
4f6748f1 496 script_files => [ glob('script/*') ],
497 test_files => [ glob('t/*.t'), glob('t/*/*.t') ]
fc7ec1d9 498);
4f6748f1 499$build->create_build_script;
61cfdd57 500__readme__
4f6748f1 501Run script/[% apprefix %]_server.pl to test the application.
61cfdd57 502__changes__
7a870961 503This file documents the revision history for Perl extension [% name %].
61cfdd57 5040.01 [% time %]
91864987 505 - initial revision, generated by Catalyst
61cfdd57 506__apptest__
fc7ec1d9 507use Test::More tests => 2;
61cfdd57 508use_ok( Catalyst::Test, '[% name %]' );
fc7ec1d9 509
510ok( request('/')->is_success );
61cfdd57 511__podtest__
5a8fd7e9 512use Test::More;
513
514eval "use Test::Pod 1.14";
61cfdd57 515plan skip_all => 'Test::Pod 1.14 required' if $@;
516plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
5a8fd7e9 517
518all_pod_files_ok();
61cfdd57 519__podcoveragetest__
1df125c9 520use Test::More;
521
522eval "use Test::Pod::Coverage 1.04";
61cfdd57 523plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
524plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
1df125c9 525
526all_pod_coverage_ok();
195631f4 527__cgi__
61cfdd57 528[% startperl %] -w
367d15f8 529BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
d8ab1b45 530
531use strict;
532use FindBin;
61cfdd57 533use lib "$FindBin::Bin/../lib";
534use [% name %];
d8ab1b45 535
61cfdd57 536[% name %]->run;
d8ab1b45 537
5381;
d8ab1b45 539
540=head1 NAME
541
542cgi - Catalyst CGI
543
544=head1 SYNOPSIS
545
546See L<Catalyst::Manual>
547
548=head1 DESCRIPTION
549
550Run a Catalyst application as cgi.
551
552=head1 AUTHOR
553
61cfdd57 554Sebastian Riedel, C<sri@oook.de>
d8ab1b45 555
556=head1 COPYRIGHT
557
558Copyright 2004 Sebastian Riedel. All rights reserved.
559
b160463f 560This library is free software. You can redistribute it and/or modify
561it under the same terms as perl itself.
d8ab1b45 562
563=cut
28e68b83 564__fastcgi__
61cfdd57 565[% startperl %] -w
cb8d90e5 566
367d15f8 567BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
cb8d90e5 568
569use strict;
570use FindBin;
61cfdd57 571use lib "$FindBin::Bin/../lib";
572use [% name %];
cb8d90e5 573
61cfdd57 574[% name %]->run;
cb8d90e5 575
5761;
cb8d90e5 577
578=head1 NAME
579
28e68b83 580fastcgi - Catalyst FastCGI
cb8d90e5 581
582=head1 SYNOPSIS
583
584See L<Catalyst::Manual>
585
586=head1 DESCRIPTION
587
28e68b83 588Run a Catalyst application as fastcgi.
cb8d90e5 589
590=head1 AUTHOR
591
61cfdd57 592Sebastian Riedel, C<sri@oook.de>
cb8d90e5 593
594=head1 COPYRIGHT
595
596Copyright 2004 Sebastian Riedel. All rights reserved.
597
b160463f 598This library is free software. You can redistribute it and/or modify
599it under the same terms as perl itself.
cb8d90e5 600
601=cut
61cfdd57 602__server__
603[% startperl %] -w
fc7ec1d9 604
42a57832 605BEGIN {
367d15f8 606 $ENV{CATALYST_ENGINE} ||= 'HTTP';
42a57832 607 $ENV{CATALYST_SCRIPT_GEN} = [% scriptgen %];
608}
585893b9 609
fc7ec1d9 610use strict;
611use Getopt::Long;
612use Pod::Usage;
613use FindBin;
61cfdd57 614use lib "$FindBin::Bin/../lib";
615use [% name %];
fc7ec1d9 616
61cfdd57 617my $help = 0;
618my $port = 3000;
fc7ec1d9 619
61cfdd57 620GetOptions( 'help|?' => \$help, 'port=s' => \$port );
fc7ec1d9 621
195631f4 622pod2usage(1) if $help;
fc7ec1d9 623
61cfdd57 624[% name %]->run($port);
fc7ec1d9 625
6261;
fc7ec1d9 627
628=head1 NAME
629
630server - Catalyst Testserver
631
632=head1 SYNOPSIS
633
91864987 634server.pl [options]
fc7ec1d9 635
636 Options:
ad41e777 637 -? -help display this help and exits
638 -p -port port (defaults to 3000)
fc7ec1d9 639
03a53815 640 See also:
641 perldoc Catalyst::Manual
642 perldoc Catalyst::Manual::Intro
643
fc7ec1d9 644=head1 DESCRIPTION
645
646Run a Catalyst Testserver for this application.
647
648=head1 AUTHOR
649
61cfdd57 650Sebastian Riedel, C<sri@oook.de>
fc7ec1d9 651
652=head1 COPYRIGHT
653
654Copyright 2004 Sebastian Riedel. All rights reserved.
655
b160463f 656This library is free software. You can redistribute it and/or modify
657it under the same terms as perl itself.
fc7ec1d9 658
659=cut
61cfdd57 660__test__
661[% startperl %] -w
fc7ec1d9 662
367d15f8 663BEGIN { $ENV{CATALYST_ENGINE} ||= 'Test' }
e646f111 664
fc7ec1d9 665use strict;
666use Getopt::Long;
667use Pod::Usage;
668use FindBin;
61cfdd57 669use lib "$FindBin::Bin/../lib";
670use [% name %];
fc7ec1d9 671
61cfdd57 672my $help = 0;
fc7ec1d9 673
61cfdd57 674GetOptions( 'help|?' => \$help );
fc7ec1d9 675
61cfdd57 676pod2usage(1) if ( $help || !$ARGV[0] );
fc7ec1d9 677
61cfdd57 678print [% name %]->run($ARGV[0])->content . "\n";
fc7ec1d9 679
6801;
fc7ec1d9 681
682=head1 NAME
683
684test - Catalyst Test
685
686=head1 SYNOPSIS
687
91864987 688test.pl [options] uri
fc7ec1d9 689
690 Options:
691 -help display this help and exits
692
693 Examples:
91864987 694 test.pl http://localhost/some_action
695 test.pl /some_action
fc7ec1d9 696
03a53815 697 See also:
698 perldoc Catalyst::Manual
699 perldoc Catalyst::Manual::Intro
700
fc7ec1d9 701=head1 DESCRIPTION
702
703Run a Catalyst action from the comand line.
704
705=head1 AUTHOR
706
61cfdd57 707Sebastian Riedel, C<sri@oook.de>
fc7ec1d9 708
709=head1 COPYRIGHT
710
711Copyright 2004 Sebastian Riedel. All rights reserved.
712
b160463f 713This library is free software. You can redistribute it and/or modify
714it under the same terms as perl itself.
fc7ec1d9 715
716=cut
61cfdd57 717__create__
718[% startperl %] -w
fc7ec1d9 719
720use strict;
721use Getopt::Long;
722use Pod::Usage;
723use Catalyst::Helper;
724
61cfdd57 725my $help = 0;
fc7ec1d9 726
727GetOptions( 'help|?' => \$help );
728
61cfdd57 729pod2usage(1) if ( $help || !$ARGV[0] );
fc7ec1d9 730
61cfdd57 731my $helper = Catalyst::Helper->new;
732pod2usage(1) unless $helper->mk_component( '[% name %]', @ARGV );
fc7ec1d9 733
7341;
fc7ec1d9 735
736=head1 NAME
737
738create - Create a new Catalyst Component
739
740=head1 SYNOPSIS
741
91864987 742create.pl [options] model|view|controller name [helper] [options]
fc7ec1d9 743
744 Options:
745 -help display this help and exits
746
747 Examples:
91864987 748 create.pl controller My::Controller
749 create.pl view My::View
750 create.pl view MyView TT
751 create.pl view TT TT
752 create.pl model My::Model
753 create.pl model SomeDB CDBI dbi:SQLite:/tmp/my.db
754 create.pl model AnotherDB CDBI dbi:Pg:dbname=foo root 4321
03a53815 755
756 See also:
757 perldoc Catalyst::Manual
758 perldoc Catalyst::Manual::Intro
fc7ec1d9 759
760=head1 DESCRIPTION
761
762Create a new Catalyst Component.
763
764=head1 AUTHOR
765
766Sebastian Riedel, C<sri\@oook.de>
767
768=head1 COPYRIGHT
769
770Copyright 2004 Sebastian Riedel. All rights reserved.
771
b160463f 772This library is free software. You can redistribute it and/or modify
773it under the same terms as perl itself.
fc7ec1d9 774
775=cut
61cfdd57 776__compclass__
777package [% class %];
778
779use strict;
780use base 'Catalyst::Base';
fc7ec1d9 781
fc7ec1d9 782=head1 NAME
783
d4bcc27a 784[% class %] - Catalyst component
fc7ec1d9 785
786=head1 SYNOPSIS
787
df8632c6 788See L<[% app %]>
fc7ec1d9 789
790=head1 DESCRIPTION
791
df8632c6 792Catalyst component.
793[% IF type == 'C' %]
794=head1 METHODS
795
796=over4
797
798=item default
fc7ec1d9 799
df8632c6 800=cut
801
802sub default : Private {
803 my ( $self, $c ) = @_;
804 $c->res->output('Congratulations, [% class %] is on Catalyst!');
805}
806[% END %]
fc7ec1d9 807=head1 AUTHOR
808
ddb46924 809[%author%]
fc7ec1d9 810
811=head1 LICENSE
812
b160463f 813This library is free software . You can redistribute it and/or modify
814it under the same terms as perl itself.
fc7ec1d9 815
816=cut
817
8181;
61cfdd57 819__comptest__
820[% IF type == 'C' %]
fc7ec1d9 821use Test::More tests => 3;
61cfdd57 822use_ok( Catalyst::Test, '[% app %]' );
823use_ok('[% class %]');
fc7ec1d9 824
61cfdd57 825ok( request('[% prefix %]')->is_success );
826[% ELSE %]
fc7ec1d9 827use Test::More tests => 1;
61cfdd57 828use_ok('[% class %]');
829[% END %]