Fixed helper templates...again...
[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] }
098e9288 69 || 'Catalyst developer';
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, '..' );
f74f8f38 100 unless ( $_[0] =~ /^(?:model|m|view|v|controller|c)$/i ) {
b5524568 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;
67308304 218 $prefix =~ s/::/-/g;
219 $prefix = $prefix;
3cb1db8c 220 $tname = $prefix . '.t';
ad41e777 221 $self->{prefix} = $prefix;
222 }
3cb1db8c 223 my $dir = $self->{test_dir};
67308304 224 my $type = $self->{type};
3cb1db8c 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} );
67308304 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
9c48119a 399This library is free software . You can redistribute it and/or modify
b160463f 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
444821f7 433=over 4
df8632c6 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
444821f7 444=back
445
fc7ec1d9 446=head1 AUTHOR
447
ddb46924 448[%author%]
fc7ec1d9 449
450=head1 LICENSE
451
9c48119a 452This library is free software . You can redistribute it and/or modify
b160463f 453it under the same terms as perl itself.
fc7ec1d9 454
455=cut
456
4571;
87c87366 458__makefile__
459 unless ( eval "use Module::Build::Compat 0.02; 1" ) {
460 print "This module requires Module::Build to install itself.\n";
461
462 require ExtUtils::MakeMaker;
463 my $yn =
464 ExtUtils::MakeMaker::prompt( ' Install Module::Build now from CPAN?', 'y' );
465
466 unless ( $yn =~ /^y/i ) {
467 die " *** Cannot install without Module::Build. Exiting ...\n";
468 }
469
470 require Cwd;
471 require File::Spec;
472 require CPAN;
473
474 # Save this 'cause CPAN will chdir all over the place.
475 my $cwd = Cwd::cwd();
476 my $makefile = File::Spec->rel2abs($0);
477
478 CPAN::Shell->install('Module::Build::Compat')
479 or die " *** Cannot install without Module::Build. Exiting ...\n";
480
481 chdir $cwd or die "Cannot chdir() back to $cwd: $!";
482 }
483 eval "use Module::Build::Compat 0.02; 1" or die $@;
484 use lib '_build/lib';
485 Module::Build::Compat->run_build_pl( args => \@ARGV );
486 require Module::Build;
487 Module::Build::Compat->write_makefile( build_class => 'Module::Build' );
4f6748f1 488__build__
489use strict;
490use Catalyst::Build;
491
492my $build = Catalyst::Build->new(
493 create_makefile_pl => 'passthrough',
494 license => 'perl',
495 module_name => '[% name %]',
809fd1e0 496 requires => { Catalyst => '5.10' },
adfe7ead 497 create_makefile_pl => 'passthrough',
4f6748f1 498 script_files => [ glob('script/*') ],
499 test_files => [ glob('t/*.t'), glob('t/*/*.t') ]
fc7ec1d9 500);
4f6748f1 501$build->create_build_script;
61cfdd57 502__readme__
749df43d 503Run script/[% appprefix %]_server.pl to test the application.
61cfdd57 504__changes__
7a870961 505This file documents the revision history for Perl extension [% name %].
61cfdd57 5060.01 [% time %]
91864987 507 - initial revision, generated by Catalyst
61cfdd57 508__apptest__
fc7ec1d9 509use Test::More tests => 2;
61cfdd57 510use_ok( Catalyst::Test, '[% name %]' );
fc7ec1d9 511
512ok( request('/')->is_success );
61cfdd57 513__podtest__
5a8fd7e9 514use Test::More;
515
516eval "use Test::Pod 1.14";
61cfdd57 517plan skip_all => 'Test::Pod 1.14 required' if $@;
518plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
5a8fd7e9 519
520all_pod_files_ok();
61cfdd57 521__podcoveragetest__
1df125c9 522use Test::More;
523
524eval "use Test::Pod::Coverage 1.04";
61cfdd57 525plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
526plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
1df125c9 527
528all_pod_coverage_ok();
195631f4 529__cgi__
61cfdd57 530[% startperl %] -w
67308304 531
5a59ef2a 532BEGIN { $ENV{CATALYST_ENGINE} ||= 'CGI' }
d8ab1b45 533
534use strict;
535use FindBin;
5a59ef2a 536use lib "$FindBin::Bin/../lib";
61cfdd57 537use [% name %];
d8ab1b45 538
61cfdd57 539[% name %]->run;
d8ab1b45 540
5411;
d8ab1b45 542
543=head1 NAME
544
67308304 545[% appprefix %]_cgi.pl - Catalyst CGI
d8ab1b45 546
547=head1 SYNOPSIS
548
549See L<Catalyst::Manual>
550
551=head1 DESCRIPTION
552
553Run a Catalyst application as cgi.
554
555=head1 AUTHOR
556
61cfdd57 557Sebastian Riedel, C<sri@oook.de>
d8ab1b45 558
559=head1 COPYRIGHT
560
561Copyright 2004 Sebastian Riedel. All rights reserved.
562
9c48119a 563This library is free software. You can redistribute it and/or modify
b160463f 564it under the same terms as perl itself.
d8ab1b45 565
566=cut
28e68b83 567__fastcgi__
61cfdd57 568[% startperl %] -w
cb8d90e5 569
5a59ef2a 570BEGIN { $ENV{CATALYST_ENGINE} ||= 'FastCGI' }
571
cb8d90e5 572use strict;
573use FindBin;
5a59ef2a 574use lib "$FindBin::Bin/../lib";
61cfdd57 575use [% name %];
cb8d90e5 576
61cfdd57 577[% name %]->run;
cb8d90e5 578
5791;
cb8d90e5 580
581=head1 NAME
582
67308304 583[% appprefix %]_fastcgi.pl - Catalyst FastCGI
cb8d90e5 584
585=head1 SYNOPSIS
586
587See L<Catalyst::Manual>
588
589=head1 DESCRIPTION
590
28e68b83 591Run a Catalyst application as fastcgi.
cb8d90e5 592
593=head1 AUTHOR
594
61cfdd57 595Sebastian Riedel, C<sri@oook.de>
cb8d90e5 596
597=head1 COPYRIGHT
598
599Copyright 2004 Sebastian Riedel. All rights reserved.
600
9c48119a 601This library is free software. You can redistribute it and/or modify
b160463f 602it under the same terms as perl itself.
cb8d90e5 603
604=cut
61cfdd57 605__server__
606[% startperl %] -w
fc7ec1d9 607
5a59ef2a 608BEGIN {
609 $ENV{CATALYST_ENGINE} ||= 'HTTP';
610 $ENV{CATALYST_SCRIPT_GEN} = [% scriptgen %];
611}
612
fc7ec1d9 613use strict;
614use Getopt::Long;
615use Pod::Usage;
616use FindBin;
5a59ef2a 617use lib "$FindBin::Bin/../lib";
61cfdd57 618use [% name %];
fc7ec1d9 619
61cfdd57 620my $help = 0;
621my $port = 3000;
fc7ec1d9 622
61cfdd57 623GetOptions( 'help|?' => \$help, 'port=s' => \$port );
fc7ec1d9 624
195631f4 625pod2usage(1) if $help;
fc7ec1d9 626
61cfdd57 627[% name %]->run($port);
fc7ec1d9 628
6291;
fc7ec1d9 630
631=head1 NAME
632
67308304 633[% appprefix %]_server.pl - Catalyst Testserver
fc7ec1d9 634
635=head1 SYNOPSIS
636
67308304 637[% appprefix %]_server.pl [options]
fc7ec1d9 638
639 Options:
ad41e777 640 -? -help display this help and exits
641 -p -port port (defaults to 3000)
fc7ec1d9 642
03a53815 643 See also:
644 perldoc Catalyst::Manual
645 perldoc Catalyst::Manual::Intro
646
fc7ec1d9 647=head1 DESCRIPTION
648
649Run a Catalyst Testserver for this application.
650
651=head1 AUTHOR
652
61cfdd57 653Sebastian Riedel, C<sri@oook.de>
fc7ec1d9 654
655=head1 COPYRIGHT
656
657Copyright 2004 Sebastian Riedel. All rights reserved.
658
9c48119a 659This library is free software. You can redistribute it and/or modify
b160463f 660it under the same terms as perl itself.
fc7ec1d9 661
662=cut
61cfdd57 663__test__
664[% startperl %] -w
fc7ec1d9 665
5a59ef2a 666BEGIN { $ENV{CATALYST_ENGINE} ||= 'Test' }
667
fc7ec1d9 668use strict;
669use Getopt::Long;
670use Pod::Usage;
671use FindBin;
5a59ef2a 672use lib "$FindBin::Bin/../lib";
61cfdd57 673use [% name %];
fc7ec1d9 674
61cfdd57 675my $help = 0;
fc7ec1d9 676
61cfdd57 677GetOptions( 'help|?' => \$help );
fc7ec1d9 678
61cfdd57 679pod2usage(1) if ( $help || !$ARGV[0] );
fc7ec1d9 680
61cfdd57 681print [% name %]->run($ARGV[0])->content . "\n";
fc7ec1d9 682
6831;
fc7ec1d9 684
685=head1 NAME
686
67308304 687[% appprefix %]_test.pl - Catalyst Test
fc7ec1d9 688
689=head1 SYNOPSIS
690
67308304 691[% appprefix %]_test.pl [options] uri
fc7ec1d9 692
693 Options:
694 -help display this help and exits
695
696 Examples:
67308304 697 [% appprefix %]_test.pl http://localhost/some_action
698 [% appprefix %]_test.pl /some_action
fc7ec1d9 699
03a53815 700 See also:
701 perldoc Catalyst::Manual
702 perldoc Catalyst::Manual::Intro
703
fc7ec1d9 704=head1 DESCRIPTION
705
706Run a Catalyst action from the comand line.
707
708=head1 AUTHOR
709
61cfdd57 710Sebastian Riedel, C<sri@oook.de>
fc7ec1d9 711
712=head1 COPYRIGHT
713
714Copyright 2004 Sebastian Riedel. All rights reserved.
715
9c48119a 716This library is free software. You can redistribute it and/or modify
b160463f 717it under the same terms as perl itself.
fc7ec1d9 718
719=cut
61cfdd57 720__create__
721[% startperl %] -w
fc7ec1d9 722
723use strict;
724use Getopt::Long;
725use Pod::Usage;
726use Catalyst::Helper;
727
61cfdd57 728my $help = 0;
fc7ec1d9 729
730GetOptions( 'help|?' => \$help );
731
61cfdd57 732pod2usage(1) if ( $help || !$ARGV[0] );
fc7ec1d9 733
61cfdd57 734my $helper = Catalyst::Helper->new;
735pod2usage(1) unless $helper->mk_component( '[% name %]', @ARGV );
fc7ec1d9 736
7371;
fc7ec1d9 738
739=head1 NAME
740
67308304 741[% appprefix %]_create.pl - Create a new Catalyst Component
fc7ec1d9 742
743=head1 SYNOPSIS
744
67308304 745[% appprefix %]_create.pl [options] model|view|controller name [helper] [options]
fc7ec1d9 746
747 Options:
748 -help display this help and exits
749
750 Examples:
67308304 751 [% appprefix %]_create.pl controller My::Controller
752 [% appprefix %]_create.pl view My::View
753 [% appprefix %]_create.pl view MyView TT
754 [% appprefix %]_create.pl view TT TT
755 [% appprefix %]_create.pl model My::Model
756 [% appprefix %]_create.pl model SomeDB CDBI dbi:SQLite:/tmp/my.db
757 [% appprefix %]_create.pl model AnotherDB CDBI dbi:Pg:dbname=foo root 4321
03a53815 758
759 See also:
760 perldoc Catalyst::Manual
761 perldoc Catalyst::Manual::Intro
fc7ec1d9 762
763=head1 DESCRIPTION
764
765Create a new Catalyst Component.
766
767=head1 AUTHOR
768
769Sebastian Riedel, C<sri\@oook.de>
770
771=head1 COPYRIGHT
772
773Copyright 2004 Sebastian Riedel. All rights reserved.
774
9c48119a 775This library is free software. You can redistribute it and/or modify
b160463f 776it under the same terms as perl itself.
fc7ec1d9 777
778=cut
61cfdd57 779__compclass__
780package [% class %];
781
782use strict;
783use base 'Catalyst::Base';
fc7ec1d9 784
fc7ec1d9 785=head1 NAME
786
d4bcc27a 787[% class %] - Catalyst component
fc7ec1d9 788
789=head1 SYNOPSIS
790
df8632c6 791See L<[% app %]>
fc7ec1d9 792
793=head1 DESCRIPTION
794
df8632c6 795Catalyst component.
796[% IF type == 'C' %]
797=head1 METHODS
798
444821f7 799=over 4
df8632c6 800
801=item default
fc7ec1d9 802
df8632c6 803=cut
804
805sub default : Private {
806 my ( $self, $c ) = @_;
807 $c->res->output('Congratulations, [% class %] is on Catalyst!');
808}
444821f7 809
810=back
cd3bb248 811
df8632c6 812[% END %]
fc7ec1d9 813=head1 AUTHOR
814
ddb46924 815[%author%]
fc7ec1d9 816
817=head1 LICENSE
818
9c48119a 819This library is free software . You can redistribute it and/or modify
b160463f 820it under the same terms as perl itself.
fc7ec1d9 821
822=cut
823
8241;
61cfdd57 825__comptest__
826[% IF type == 'C' %]
fc7ec1d9 827use Test::More tests => 3;
61cfdd57 828use_ok( Catalyst::Test, '[% app %]' );
829use_ok('[% class %]');
fc7ec1d9 830
61cfdd57 831ok( request('[% prefix %]')->is_success );
832[% ELSE %]
fc7ec1d9 833use Test::More tests => 1;
61cfdd57 834use_ok('[% class %]');
835[% END %]