X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FHelper.pm;h=74bd0fa76837b53db34589463cb36fbe34049af4;hb=3fde004fb4834f17f75d0966097ff0094069402d;hp=633f7fecafd30a576af8f4b6ca6e72bc4bd01d08;hpb=3cb1db8ca312e1a9c16cbf31543858dd98653ad1;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Helper.pm b/lib/Catalyst/Helper.pm index 633f7fe..74bd0fa 100644 --- a/lib/Catalyst/Helper.pm +++ b/lib/Catalyst/Helper.pm @@ -2,6 +2,7 @@ package Catalyst::Helper; use strict; use base 'Class::Accessor::Fast'; +use Config; use File::Spec; use File::Path; use IO::File; @@ -37,7 +38,9 @@ sub mk_app { $self->_mk_readme; $self->_mk_changes; $self->_mk_apptest; + $self->_mk_cgi; $self->_mk_server; + $self->_mk_cgiserver; $self->_mk_test; $self->_mk_create; return 1; @@ -48,58 +51,75 @@ sub mk_app { =cut sub mk_component { - my ( $self, $app, $type, $name, $helper, @args ) = @_; - return 0 - if ( $name =~ /[^\w\:]/ || !\$type =~ /^model|m|view|v|controller|c\$/i ); - return 0 if $name =~ /[^\w\:]/; - $type = 'M' if $type =~ /model|m/i; - $type = 'V' if $type =~ /view|v/i; - $type = 'C' if $type =~ /controller|c/i; - $self->{type} = $type; - $self->{name} = $name; - $self->{class} = "$app\::$type\::$name"; - $self->{app} = $app; - - # Class - my $appdir = File::Spec->catdir( split /\:\:/, $app ); - my $path = File::Spec->catdir( $FindBin::Bin, '..', 'lib', $appdir, $type ); - my $file = $name; - if ( $name =~ /\:/ ) { - my @path = split /\:\:/, $name; - $file = pop @path; - $path = File::Spec->catdir( $path, @path ); - mkpath $path; - } - $file = File::Spec->catfile( $path, "$file.pm" ); - $self->{file} = $file; - - # Test - $self->{test_dir} = File::Spec->catdir( $FindBin::Bin, '..', 't' ); - $self->{test} = $self->next_test; - - # Helper - if ($helper) { - my $comp = 'Model'; - $comp = 'View' if $type eq 'V'; - $comp = 'Controller' if $type eq 'C'; - my $class = "Catalyst::Helper::$comp\::$helper"; + my $self = shift; + my $app = shift; + $self->{app} = $app; + $self->{base} = File::Spec->catdir( $FindBin::Bin, '..' ); + unless ( $_[0] =~ /^model|m|view|v|controller|c\$/i ) { + my $helper = shift; + my @args = @_; + my $class = "Catalyst::Helper::$helper"; eval "require $class"; die qq/Couldn't load helper "$class", "$@"/ if $@; - if ( $class->can('mk_compclass') ) { - return 1 unless $class->mk_compclass( $self, @args ); + if ( $class->can('mk_stuff') ) { + return 1 unless $class->mk_stuff( $self, @args ); } - else { return 1 unless $self->_mk_compclass } - - if ( $class->can('mk_comptest') ) { - $class->mk_comptest( $self, @args ); - } - else { $self->_mk_comptest } } - - # Fallback else { - return 1 unless $self->_mk_compclass; - $self->_mk_comptest; + my $type = shift; + my $name = shift; + my $helper = shift; + my @args = @_; + return 0 if $name =~ /[^\w\:]/; + $type = 'M' if $type =~ /model|m/i; + $type = 'V' if $type =~ /view|v/i; + $type = 'C' if $type =~ /controller|c/i; + $self->{type} = $type; + $self->{name} = $name; + $self->{class} = "$app\::$type\::$name"; + + # Class + my $appdir = File::Spec->catdir( split /\:\:/, $app ); + my $path = + File::Spec->catdir( $FindBin::Bin, '..', 'lib', $appdir, $type ); + my $file = $name; + if ( $name =~ /\:/ ) { + my @path = split /\:\:/, $name; + $file = pop @path; + $path = File::Spec->catdir( $path, @path ); + mkpath $path; + } + $file = File::Spec->catfile( $path, "$file.pm" ); + $self->{file} = $file; + + # Test + $self->{test_dir} = File::Spec->catdir( $FindBin::Bin, '..', 't' ); + $self->{test} = $self->next_test; + + # Helper + if ($helper) { + my $comp = 'Model'; + $comp = 'View' if $type eq 'V'; + $comp = 'Controller' if $type eq 'C'; + my $class = "Catalyst::Helper::$comp\::$helper"; + eval "require $class"; + die qq/Couldn't load helper "$class", "$@"/ if $@; + if ( $class->can('mk_compclass') ) { + return 1 unless $class->mk_compclass( $self, @args ); + } + else { return 1 unless $self->_mk_compclass } + + if ( $class->can('mk_comptest') ) { + $class->mk_comptest( $self, @args ); + } + else { $self->_mk_comptest } + } + + # Fallback + else { + return 1 unless $self->_mk_compclass; + $self->_mk_comptest; + } } return 1; } @@ -298,12 +318,57 @@ all_pod_coverage_ok(); EOF } +sub _mk_cgi { + my $self = shift; + my $name = $self->{name}; + my $script = $self->{script}; + $self->mk_file( "$script\/nph-cgi.pl", <<"EOF"); +$Config{startperl} -w + +use strict; +use FindBin; +use lib "\$FindBin::Bin/../lib"; +use $name; + +$name->run; + +1; +__END__ + +=head1 NAME + +nph-cgi - Catalyst CGI + +=head1 SYNOPSIS + +See L + +=head1 DESCRIPTION + +Run a Catalyst application as cgi. + +=head1 AUTHOR + +Sebastian Riedel, C + +=head1 COPYRIGHT + +Copyright 2004 Sebastian Riedel. All rights reserved. + +This library is free software. You can redistribute it and/or modify it under +the same terms as perl itself. + +=cut +EOF + chmod 0700, "$script/nph-cgi.pl"; +} + sub _mk_server { my $self = shift; my $name = $self->{name}; my $script = $self->{script}; $self->mk_file( "$script\/server.pl", <<"EOF"); -#!/usr/bin/perl -w +$Config{startperl} -w use strict; use Getopt::Long; @@ -360,12 +425,78 @@ EOF chmod 0700, "$script/server.pl"; } +sub _mk_cgiserver { + my $self = shift; + my $name = $self->{name}; + my $script = $self->{script}; + $self->mk_file( "$script\/cgi-server.pl", <<"EOF"); +$Config{startperl} -w + +use strict; +use Getopt::Long; +use Pod::Usage; +use FindBin; +use File::Spec; +use Catalyst::Test; + +my \$help = 0; +my \$port = 3000; + +GetOptions( 'help|?' => \\\$help, 'port=s' => \\\$port ); + +pod2usage(1) if \$help; + +Catalyst::Test::server( + \$port, File::Spec->catfile( \$FindBin::Bin, 'nph-cgi.pl' ) ); + +1; +__END__ + +=head1 NAME + +cgi-server - Catalyst CGI Testserver + +=head1 SYNOPSIS + +cgi-server.pl [options] + + Options: + -? -help display this help and exits + -p -port port (defaults to 3000) + + See also: + perldoc Catalyst::Manual + perldoc Catalyst::Manual::Intro + +=head1 DESCRIPTION + +Run a Catalyst CGI Testserver for this application. + +Similar to the regular server but doesn't require a restart +after code changes! + +=head1 AUTHOR + +Sebastian Riedel, C + +=head1 COPYRIGHT + +Copyright 2004 Sebastian Riedel. All rights reserved. + +This library is free software. You can redistribute it and/or modify it under +the same terms as perl itself. + +=cut +EOF + chmod 0700, "$script/cgi-server.pl"; +} + sub _mk_test { my $self = shift; my $name = $self->{name}; my $script = $self->{script}; $self->mk_file( "$script/test.pl", <<"EOF"); -#!/usr/bin/perl -w +$Config{startperl} -w use strict; use Getopt::Long; @@ -431,7 +562,7 @@ sub _mk_create { my $name = $self->{name}; my $script = $self->{script}; $self->mk_file( "$script\/create.pl", <<"EOF"); -#!/usr/bin/perl -w +$Config{startperl} -w use strict; use Getopt::Long; @@ -442,7 +573,7 @@ my \$help = 0; GetOptions( 'help|?' => \$help ); -pod2usage(1) if ( \$help || !\$ARGV[1] ); +pod2usage(1) if ( \$help || !\$ARGV[0] ); my \$helper = Catalyst::Helper->new; pod2usage(1) unless \$helper->mk_component( '$name', \@ARGV ); @@ -469,6 +600,7 @@ create.pl [options] model|view|controller name [helper] [options] create.pl model My::Model create.pl model SomeDB CDBI dbi:SQLite:/tmp/my.db create.pl model AnotherDB CDBI dbi:Pg:dbname=foo root 4321 + create.pl Ajax See also: perldoc Catalyst::Manual