flesh out and publically document the cli API of Web::Simple::Application
[catagits/Web-Simple.git] / lib / Web / Simple / Application.pm
index 4ab18bb..e3040f3 100644 (file)
@@ -1,5 +1,7 @@
 package Web::Simple::Application;
 
+use Scalar::Util 'weaken';
+
 use Moo;
 
 has 'config' => (
@@ -23,13 +25,23 @@ has '_dispatcher' => (is => 'lazy');
 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 }
+
+  # We need to weaken both the copy of $self that the
+  # app parameter will close over and the copy that'll
+  # be passed through as a node argument.
+  #
+  # To ensure that this doesn't then result in us being
+  # DESTROYed unexpectedly early, our to_psgi_app method
+  # closes back over $self
+
+  weaken($self);
+  my %dispatch_args = (
+    dispatch_app => sub { $self->dispatch_request(@_), $final },
+    dispatch_object => $self
   );
+  weaken($dispatch_args{dispatch_object});
+  Web::Dispatch->new(%dispatch_args);
 }
 
 sub _build_final_dispatcher {
@@ -57,28 +69,34 @@ sub _run_fcgi {
 
 sub to_psgi_app {
   my $self = ref($_[0]) ? $_[0] : $_[0]->new;
-  $self->_dispatcher->to_app;
+  my $app = $self->_dispatcher->to_app;
+
+  # Close over $self to keep $self alive even though
+  # we weakened the copies the dispatcher has; the
+  # if 0 causes the ops to be optimised away to
+  # minimise the performance impact and avoid void
+  # context warnings while still doing the closing
+  # over part. As Mithaldu said: "Gnarly." ...
+
+  return sub { $self if 0; goto &$app; };
 }
 
 sub run {
   my $self = shift;
-  if (
+  return $self->_run_fcgi if
     $ENV{PHP_FCGI_CHILDREN} || $ENV{FCGI_ROLE} || $ENV{FCGI_SOCKET_PATH}
-    || -S STDIN # STDIN is a socket, almost certainly FastCGI
-    ) {
-    return $self->_run_fcgi;
-  } elsif ($ENV{GATEWAY_INTERFACE}) {
-    return $self->_run_cgi;
-  }
-  unless (@ARGV && $ARGV[0] =~ m{^[A-Z/]}) {
-    return $self->_run_cli(@ARGV);
-  }
-
-  my @args = @ARGV;
-
-  unshift(@args, 'GET') if $args[0] =~ m{^/};
+    || ( -S STDIN && !$ENV{GATEWAY_INTERFACE} );
+    # If STDIN is a socket, almost certainly FastCGI, except for mod_cgid
+  return $self->_run_cgi if $ENV{GATEWAY_INTERFACE};
+  return $self->run_cli(@ARGV);
+}
 
+sub run_cli_request {
+  my ($self, @args) = @_;
+  return if !@args || $args[0] !~ m{(^[A-Z/])|\@};
+  unshift @args, 'GET' if $args[0] !~ /^[A-Z]/;
   $self->_run_cli_test_request(@args);
+  return 1;
 }
 
 sub _test_request_spec_to_http_request {
@@ -87,6 +105,12 @@ sub _test_request_spec_to_http_request {
   # if it's a reference, assume a request object
   return $method if ref($method);
 
+  if ($path =~ s/^(.*?)\@//) {
+    my $basic = $1;
+    require MIME::Base64;
+    unshift @rest, 'Authorization:', 'Basic '.MIME::Base64::encode($basic);
+  }
+
   my $request = HTTP::Request->new($method => $path);
 
   my @params;
@@ -122,6 +146,7 @@ sub run_test_request {
   my ($self, @req) = @_;
 
   require HTTP::Request;
+
   require Plack::Test;
 
   my $request = $self->_test_request_spec_to_http_request(@req);
@@ -144,13 +169,14 @@ sub _run_cli_test_request {
   print STDOUT $content if $content;
 }
 
-sub _run_cli {
-  my $self = shift;
-  die $self->_cli_usage;
+sub run_cli {
+  my ($self, @args) = @_;
+  return $self->run_cli_request(@args) || die $self->cli_request_usage;
 }
 
-sub _cli_usage {
-  "To run this script in CGI test mode, pass a URL path beginning with /:\n".
+sub cli_request_usage {
+  "This application does not implement its own run_cli method. To run\n".
+  "this script in CGI test mode, pass a URL path beginning with /:\n".
   "\n".
   "  $0 /some/path\n".
   "  $0 /\n"
@@ -204,7 +230,7 @@ then C<config> will contain:
 
 =head2 run_if_script
 
-The run_if_script method is designed to be used at the end of the script
+The C<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
@@ -235,8 +261,22 @@ This returns a true value, so your file is now valid as a module - so
 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.
+Specifically, this true value is a PSGI app. You can you can pass the return
+value of C<HelloWorld->run_if_script> to code expecting a PSGI app and you can
+treat the file as though it were a standard PSGI application file (*.psgi). For
+example you can start it up with C<plackup>
+
+  plackup my_web_simple_app.pl
+
+or C<starman>
+
+  starman my_web_simple_app.pl
+
+If C<run_if_script> is called from a situation where there is no caller, i.e. as
+C<perl my_web_simple_app.pl> on the shell, or by a web server, it will call the
+C<run> method to run the actual application itself.
+
+=head2 run
 
 If run under a CGI environment, your application will execute as a CGI.
 
@@ -244,8 +284,27 @@ 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 -
+If neither of these are the case, it defaults to running the C<run_cli> method
+with C<@ARGV> as arguments.
+
+=head2 run_cli
+
+This method is meant to be overriden to implement your own command line mode for
+the app, be this a debugger, interactive mode or page generator.
+
+Its default implementation calls the C<run_cli_request> method with the
+arguments it was given, or, if that indicates failure by returning 0, calls
+C<cli_request_usage> to print a message explaining the correct CLI usage.
+
+=head2 run_cli_request
+
+Looks at the arguments passed to it, typically C<@ARGV> captured somewhere up the
+callstack, and tries to convert that into a sensible request against the
+application, which it then runs. Any results are printed to C<STDOUT>. Returns
+C<1> if it was able to run the request, and C<undef> if it was not able to
+covert the arguments into a sensible request.
+
+If run with a URL path, it runs a GET request against that path -
 
   $ perl -Ilib examples/hello-world/hello-world.cgi /
   200 OK
@@ -275,14 +334,14 @@ The body of the response is sent to STDOUT and the headers to STDERR, so
 
 will generally do the right thing.
 
-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>
+To send basic authentication credentials, use user:pass@ syntax -
 
-  plackup my_web_simple_app.pl
+  $ ./myapp GET bob:secret@/protected/path
 
-or C<starman>
+=head2 cli_request_usage
 
-  starman my_web_simple_app.pl
+Prints a message explaining how to pass CLI parameters. Can be overridden for
+your own purposes.
 
 =head2 to_psgi_app
 
@@ -323,13 +382,6 @@ a separate C<*.psgi> file -
 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.
-
-I should document this more extensively but run_if_script will call it when
-you need it, so don't worry about it too much.
-
 =head2 run_test_request
 
   my $res = $app->run_test_request(GET => '/' => %headers);
@@ -346,6 +398,13 @@ this to create a form style message body. If you need to test an upload, then
 create an L<HTTP::Request> object by hand or use the C<POST> subroutine
 provided by L<HTTP::Request::Common>.
 
+If you prefix the URL with 'user:pass@' this will be converted into
+an Authorization header for HTTP basic auth:
+
+  my $res = $app->run_test_request(
+              GET => 'bob:secret@/protected/resource'
+            );
+
 If pairs are passed where the key ends in :, it is instead treated as a
 headers, so: