X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FWeb%2FSimple%2FApplication.pm;h=fdf836937b3738934bc6dadc6fb4885509e0b2d5;hb=baabba332e5b851f5d1b67746f47ac69daa0d422;hp=91d20a7b5e408dc0a9d75eb455b2978c4884e38a;hpb=8bd060f4f069c0aafac9d705540d4033b7c5cd19;p=catagits%2FWeb-Simple.git diff --git a/lib/Web/Simple/Application.pm b/lib/Web/Simple/Application.pm index 91d20a7..fdf8369 100644 --- a/lib/Web/Simple/Application.pm +++ b/lib/Web/Simple/Application.pm @@ -2,95 +2,43 @@ package Web::Simple::Application; use Moo; -has 'config' => (is => 'ro', trigger => sub { - my ($self, $value) = @_; - my %default = $self->_default_config; - my @not = grep !exists $value->{$_}, keys %default; - @{$value}{@not} = @default{@not}; -}); - -sub _setup_default_config { - my $class = shift; - { - no strict 'refs'; - if (${"${class}::_default_config"}{CODE}) { - $class->_cannot_call_twice('_setup_default_config', 'default_config'); - } - } - my @defaults = (@_, $class->_default_config); - { - no strict 'refs'; - *{"${class}::_default_config"} = sub { @defaults }; +has 'config' => ( + is => 'ro', + default => sub { + my ($self) = @_; + +{ $self->default_config } + }, + trigger => sub { + my ($self, $value) = @_; + my %default = $self->default_config; + my @not = grep !exists $value->{$_}, keys %default; + @{$value}{@not} = @default{@not}; } -} +); -sub _default_config { () } - -sub _construct_response_filter { - my ($class, $code) = @_; - my $self = do { no strict 'refs'; ${"${class}::self"} }; - require Web::Dispatch::Wrapper; - Web::Dispatch::Wrapper->from_code(sub { - my @result = $_[1]->($_[0]); - if (@result) { - $self->_run_with_self($code, @result); - } else { - @result; - } - }); -} +sub default_config { () } -sub _construct_redispatch { - my ($class, $new_path) = @_; - require Web::Dispatch::Wrapper; - Web::Dispatch::Wrapper->from_code(sub { - $_[1]->({ %{$_[0]}, PATH_INFO => $new_path }); - }); -} - -sub _build_dispatch_parser { - require Web::Dispatch::Parser; - return Web::Dispatch::Parser->new; -} - -sub _cannot_call_twice { - my ($class, $method, $sub) = @_; - my $error = "Cannot call ${method} twice for ${class}"; - if ($sub) { - $error .= " - did you call Web::Simple's ${sub} export twice?"; - } - die $error; -} +has '_dispatcher' => (is => 'lazy'); -sub _setup_dispatcher { - my ($class, $dispatcher) = @_; - { - no strict 'refs'; - if (${"${class}::_dispatcher"}{CODE}) { - $class->_cannot_call_twice('_setup_dispatcher', 'dispatch'); - } - } - { - no strict 'refs'; - *{"${class}::dispatch_request"} = $dispatcher; - } +sub _build__dispatcher { + my $self = shift; + require Web::Dispatch; + require Web::Simple::DispatchNode; + my $final = $self->_build_final_dispatcher; + Web::Dispatch->new( + app => sub { $self->dispatch_request(@_), $final }, + node_class => 'Web::Simple::DispatchNode', + node_args => { app_object => $self } + ); } sub _build_final_dispatcher { [ 404, [ 'Content-type', 'text/plain' ], [ 'Not found' ] ] } -sub _run_with_self { - my ($self, $run, @args) = @_; - my $class = ref($self); - no strict 'refs'; - local *{"${class}::self"} = \$self; - $self->$run(@args); -} - sub run_if_script { - # ->as_psgi_app is true for require() but also works for plackup - return $_[0]->as_psgi_app if caller(1); + # ->to_psgi_app is true for require() but also works for plackup + return $_[0]->to_psgi_app if caller(1); my $self = ref($_[0]) ? $_[0] : $_[0]->new; $self->run(@_); } @@ -98,25 +46,18 @@ sub run_if_script { sub _run_cgi { my $self = shift; require Plack::Server::CGI; - Plack::Server::CGI->run($self->as_psgi_app); + Plack::Server::CGI->run($self->to_psgi_app); } sub _run_fcgi { my $self = shift; require Plack::Server::FCGI; - Plack::Server::FCGI->run($self->as_psgi_app); + Plack::Server::FCGI->run($self->to_psgi_app); } -sub as_psgi_app { +sub to_psgi_app { my $self = ref($_[0]) ? $_[0] : $_[0]->new; - require Web::Dispatch; - require Web::Simple::DispatchNode; - my $final = $self->_build_final_dispatcher; - Web::Dispatch->new( - app => sub { $self->dispatch_request(@_), $final }, - node_class => 'Web::Simple::DispatchNode', - node_args => { app_object => $self } - )->to_app; + $self->_dispatcher->to_app; } sub run { @@ -126,20 +67,42 @@ sub run { } elsif ($ENV{GATEWAY_INTERFACE}) { return $self->_run_cgi; } - unless (@ARGV && $ARGV[0] =~ m{^/}) { + unless (@ARGV && $ARGV[0] =~ m{^[A-Z/]}) { return $self->_run_cli(@ARGV); } - my $path = shift @ARGV; + my @args = @ARGV; + + unshift(@args, 'GET') if $args[0] =~ m{^/}; + + $self->_run_test_request(@args); +} + +sub _run_test_request { + my ($self, $method, $path, @rest) = @_; - require HTTP::Request::Common; + require HTTP::Request; require Plack::Test; - local *GET = \&HTTP::Request::Common::GET; - my $request = GET($path); + my $request = HTTP::Request->new($method => $path); + if ($method eq 'POST' or $method eq 'PUT' and @rest) { + my $content = do { + require URI; + my $url = URI->new('http:'); + $url->query_form(@rest); + $url->query; + }; + $request->header('Content-Type' => 'application/x-www-form-urlencoded'); + $request->header('Content-Length' => length($content)); + $request->content($content); + } my $response; - Plack::Test::test_psgi($self->as_psgi_app, sub { $response = shift->($request) }); - print $response->as_string; + Plack::Test::test_psgi( + $self->to_psgi_app, sub { $response = shift->($request) } + ); + print STDERR $response->status_line."\n"; + print STDERR $response->headers_as_string("\n")."\n"; + print STDOUT $response->content."\n"; } sub _run_cli { @@ -155,3 +118,165 @@ sub _cli_usage { } 1; + +=head1 NAME + +Web::Simple::Application - A base class for your Web-Simple application + +=head1 DESCRIPTION + +This is a base class for your L application. You probably don't +need to construct this class yourself, since L does the 'heavy +lifting' for you in that regards. + +=head1 METHODS + +This class exposes the following public methods. + +=head2 default_config + +Merges with the C initializer to provide configuration information for +your application. For example: + + sub default_config { + ( + title => 'Bloggery', + posts_dir => $FindBin::Bin.'/posts', + ); + } + +Now, the C attribute of C<$self> will be set to a HashRef +containing keys 'title' and 'posts_dir'. + +The keys from default_config are merged into any config supplied, so +if you construct your application like: + + MyWebSimpleApp::Web->new( + config => { title => 'Spoon', environment => 'dev' } + ) + +then C will contain: + + { + title => 'Spoon', + posts_dir => '/path/to/myapp/posts', + environment => 'dev' + } + +=head2 run_if_script + +The run_if_script method is designed to be used at the end of the script +or .pm file where your application class is defined - for example: + + ## my_web_simple_app.pl + #!/usr/bin/env perl + use Web::Simple 'HelloWorld'; + + { + package HelloWorld; + + sub dispatch_request { + sub (GET) { + [ 200, [ 'Content-type', 'text/plain' ], [ 'Hello world!' ] ] + }, + sub () { + [ 405, [ 'Content-type', 'text/plain' ], [ 'Method not allowed' ] ] + } + } + } + + HelloWorld->run_if_script; + +This returns a true value, so your file is now valid as a module - so + + require 'my_web_simple_app.pl'; + + my $hw = HelloWorld->new; + +will work fine (and you can rename it to lib/HelloWorld.pm later to make it +a real use-able module). + +However, it detects if it's being run as a script (via testing $0) and if +so attempts to do the right thing. + +If run under a CGI environment, your application will execute as a CGI. + +If run under a FastCGI environment, your application will execute as a +FastCGI process (this works both for dynamic shared-hosting-style FastCGI +and for apache FastCgiServer style setups). + +If run from the commandline with a URL path, it runs a GET request against +that path - + + $ perl -Ilib examples/hello-world/hello-world.cgi / + 200 OK + Content-Type: text/plain + + Hello world! + +Additionally, you can treat the file as though it were a standard PSGI +application file (*.psgi). For example you can start up up with C + + plackup my_web_simple_app.pl + +or C + + starman my_web_simple_app.pl + +=head2 to_psgi_app + +This method is called by L to create the L app coderef +for use via L and L. If you want to globally add middleware, +you can override this method: + + use Web::Simple 'HelloWorld'; + use Plack::Builder; + + { + package HelloWorld; + + + around 'to_psgi_app', sub { + my ($orig, $self) = (shift, shift); + my $app = $self->$orig(@_); + builder { + enable ...; ## whatever middleware you want + $app; + }; + }; + } + +This method can also be used to mount a Web::Simple application within +a separate C<*.psgi> file - + + use strictures 1; + use Plack::Builder; + use WSApp; + use AnotherWSApp; + + builder { + mount '/' => WSApp->to_psgi_app; + mount '/another' => AnotherWSApp->to_psgi_app; + }; + +This method can be called as a class method, in which case it implicitly +calls ->new, or as an object method ... in which case it doesn't. + +=head2 run + +Used for running your application under stand-alone CGI and FCGI modes. Also +useful for testing: + + my $app = MyWebSimpleApp::Web->new; + my $c = HTTP::Request::AsCGI->new(@args)->setup; + $app->run; + +=head1 AUTHORS + +See L for authors. + +=head1 COPYRIGHT AND LICENSE + +See L for the copyright and license. + +=cut