|
NAMECGI::Application::Dispatch::PSGI - Dispatch requests to CGI::Application based objects using PSGISYNOPSISOut of BoxUnder mod_perl:# change "Apache1" to "Apache2" as needed. <Location /> SetHandler perl-script PerlHandler Plack::Handler::Apache1 PerlSetVar psgi_app /path/to/app.psgi </Location> <Perl> use Plack::Handler::Apache1; Plack::Handler::Apache1->preload("/path/to/app.psgi"); </Perl> Under CGI: This would be the instance script for your application, such as /cgi-bin/dispatch.cgi: ### in your dispatch.psgi: # ( in a persistent environment, use FindBin::Real instead. ) use FindBin 'Bin'; use lib "$Bin/../perllib'; use Your::Application::Dispatch; Your::Application::Dispatch->as_psgi; ### In Your::Application::Dispatch; package Your::Application::Dispatch; use base 'CGI::Application::Dispatch::PSGI'; With a dispatch tablepackage MyApp::Dispatch; use base 'CGI::Application::Dispatch::PSGI'; sub dispatch_args { return { prefix => 'MyApp', table => [ '' => { app => 'Welcome', rm => 'start' }, ':app/:rm' => { }, 'admin/:app/:rm' => { prefix => 'MyApp::Admin' }, ], }; } The ".psgi" file is constructed as above. With a custom query objectIf you want to supply your own PSGI object, something like this in your .psgi file will work:sub { my $env = shift; my $app = CGI::Application::Dispatch::PSGI->as_psgi( table => [ '/:rm' => { app => 'TestApp' } ], args_to_new => { QUERY => CGI::PSGI->new($env) } ); return $app->($env); } DESCRIPTIONThis module provides a way to look at the path (as returned by "$env->{PATH_INFO}") of the incoming request, parse off the desired module and its run mode, create an instance of that module and run it.It will translate a URI like this (in a persistent environment) /app/module_name/run_mode or this (vanilla CGI) /app/index.cgi/module_name/run_mode into something that will be functionally similar to this my $app = Module::Name->new(..); $app->mode_param(sub {'run_mode'}); #this will set the run mode METHODSas_psgi(%args)This is the primary method used during dispatch.#!/usr/bin/perl use strict; use CGI::Application::Dispatch::PSGI; CGI::Application::Dispatch::PSGI->as_psgi( prefix => 'MyApp', default => 'module_name', ); This method accepts the following name value pairs:
dispatch_args()Returns a hashref of args that will be passed to dispatch(). It will return the following structure by default.{ prefix => '', args_to_new => {}, table => [ ':app' => {}, ':app/:rm' => {}, ], } This is the perfect place to override when creating a subclass to provide a richer dispatch table. When called, it receives 1 argument, which is a reference to the hash of args passed into dispatch. translate_module_name($input)This method is used to control how the module name is translated from the matching section of the path (see "Path Parsing". The main reason that this method exists is so that it can be overridden if it doesn't do exactly what you want.The following transformations are performed on the input:
Here are some examples to make it even clearer: module_name => Module::Name module-name => ModuleName admin_top-scores => Admin::TopScores require_module($module_name)This class method is used internally to take a module name (supplied by get_module_name) and require it in a secure fashion. It is provided as a public class method so that if you override other functionality of this module, you can still safely require user specified modules. If there are any problems requiring the named module, then we will "croak".CGI::Application::Dispatch::PSGI->require_module('MyApp::Module::Name'); DISPATCH TABLESometimes it's easiest to explain with an example, so here you go:CGI::Application::Dispatch::PSGI->as_psgi( prefix => 'MyApp', args_to_new => { TMPL_PATH => 'myapp/templates' }, table => [ '' => { app => 'Blog', rm => 'recent'}, 'posts/:category' => { app => 'Blog', rm => 'posts' }, ':app/:rm/:id' => { app => 'Blog' }, 'date/:year/:month?/:day?' => { app => 'Blog', rm => 'by_date', args_to_new => { TMPL_PATH => "events/" }, }, ] ); So first, this call to as_psgi sets the prefix and passes a "TMPL_PATH" into args_to_new. Next it sets the table. VOCABULARYJust so we all understand what we're talking about....A table is an array where the elements are gouped as pairs (similar to a hash's key-value pairs, but as an array to preserve order). The first element of each pair is called a "rule". The second element in the pair is called the rule's "arg list". Inside a rule there are slashes "/". Anything set of characters between slashes is called a "token". URL MATCHINGWhen a URL comes in, Dispatch tries to match it against each rule in the table in the order in which the rules are given. The first one to match wins.A rule consists of slashes and tokens. A token can one of the following types:
The main reason that we don't use regular expressions for dispatch rules is that regular expressions provide no mechanism for named back references, like variable tokens do. ARG LISTEach rule can have an accompanying arg-list. This arg list can contain special arguments that override something set higher up in dispatch for this particular URL, or just have additional args passed available in "$self->param()"For instance, if you want to override prefix for a specific rule, then you can do so. 'admin/:app/:rm' => { prefix => 'MyApp::Admin' }, Path ParsingThis section will describe how the application module and run mode are determined from the path if no "DISPATCH TABLE" is present, and what options you have to customize the process. The value for the path to be parsed is retrieved from "$env->{PATH_INFO}".Getting the module nameTo get the name of the application module the path is split on backslahes ("/"). The second element of the returned list (the first is empty) is used to create the application module. So if we have a path of/module_name/mode1 then the string 'module_name' is used. This is passed through the translate_module_name method. Then if there is a "prefix" (and there should always be a prefix) it is added to the beginning of this new module name with a double colon "::" separating the two. If you don't like the exact way that this is done, don't fret you do have a couple of options. First, you can specify a "DISPATCH TABLE" which is much more powerful and flexible (in fact this default behavior is actually implemented internally with a dispatch table). Or if you want something a little simpler, you can simply subclass and extend the translate_module_name method. Getting the run modeJust like the module name is retrieved from splitting the path on slashes, so is the run mode. Only instead of using the second element of the resulting list, we use the third as the run mode. So, using the same example, if we have a path of/module_name/mode2 Then the string 'mode2' is used as the run mode. Exception HandlingA CGI::Application object can throw an exception up to "CGI::Application::Dispatch::PSGI" if no "error_mode()" is implemented or if the error_mode itself throws an exception. In these cases we generally return a generic "500" response, and log some details for the developer with a warning.However, we will check to see if the exception thrown is an HTTP::Exception object. If that's the case, we will rethrow it, and you can handle it yourself using something like Plack::Middleware::HTTPExceptions. MISC NOTES
CLEAN URLS WITH MOD_REWRITEWith a dispatch script, you can fairly clean URLS like this:/cgi-bin/dispatch.cgi/module_name/run_mode However, including "/cgi-bin/dispatch.cgi" in ever URL doesn't add any value to the URL, so it's nice to remove it. This is easily done if you are using the Apache web server with "mod_rewrite" available. Adding the following to a ".htaccess" file would allow you to simply use: /module_name/run_mode If you have problems with mod_rewrite, turn on debugging to see exactly what's happening: RewriteLog /home/project/logs/alpha-rewrite.log RewriteLogLevel 9 mod_rewrite related code in the dispatch script.This seemed necessary to put in the dispatch script to make mod_rewrite happy. Perhaps it's specific to using "RewriteBase".# mod_rewrite alters the PATH_INFO by turning it into a file system path, # so we repair it. $ENV{PATH_INFO} =~ s/^$ENV{DOCUMENT_ROOT}// if defined $ENV{PATH_INFO}; Simple Apache ExampleRewriteEngine On # You may want to change the base if you are using the dispatcher within a # specific directory. RewriteBase / # If an actual file or directory is requested, serve directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Otherwise, pass everything through to the dispatcher RewriteRule ^(.*)$ /cgi-bin/dispatch.cgi/$1 [L,QSA] More complex rewrite: dispatching "/" and multiple developersHere is a more complex example that dispatches "/", which would otherwise be treated as a directory, and also supports multiple developer directories, so "/~mark" has its own separate dispatching system beneath it.Note that order matters here! The Location block for "/" needs to come before the user blocks. <Location /> RewriteEngine On RewriteBase / # Run "/" through the dispatcher RewriteRule ^home/project/www/$ /cgi-bin/dispatch.cgi [L,QSA] # Don't apply this rule to the users sub directories. RewriteCond %{REQUEST_URI} !^/~.*$ # If an actual file or directory is requested, serve directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Otherwise, pass everything through to the dispatcher RewriteRule ^(.*)$ /cgi-bin/dispatch.cgi/$1 [L,QSA] </Location> <Location /~mark> RewriteEngine On RewriteBase /~mark # Run "/" through the dispatcher RewriteRule ^/home/mark/www/$ /~mark/cgi-bin/dispatch.cgi [L,QSA] # Otherwise, if an actual file or directory is requested, serve directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Otherwise, pass everything through to the dispatcher RewriteRule ^(.*)$ /~mark/cgi-bin/dispatch.cgi/$1 [L,QSA] # These examples may also be helpful, but are unrelated to dispatching. SetEnv DEVMODE mark SetEnv PERL5LIB /home/mark/perllib:/home/mark/config ErrorDocument 404 /~mark/errdocs/404.html ErrorDocument 500 /~mark/errdocs/500.html </Location> SUBCLASSINGWhile Dispatch tries to be flexible, it won't be able to do everything that people want. Hopefully we've made it flexible enough so that if it doesn't do The Right Thing you can easily subclass it.AUTHORSMark Stosberg <mark@summersault.com>Heavily based on CGI::Application::Dispatch, written by Michael Peters <mpeters@plusthree.com> and others COMMUNITYThis module is a part of the larger CGI::Application community. If you have questions or comments about this module then please join us on the cgiapp mailing list by sending a blank message to "cgiapp-subscribe@lists.erlbaum.net". There is also a community wiki located at <http://www.cgi-app.org/>SOURCE CODE REPOSITORYA public source code repository for this project is hosted here:https://github.com/markstos/CGI--Application--Dispatch SECURITYSince C::A::Dispatch::PSGI will dynamically choose which modules to use as the content generators, it may give someone the ability to execute random modules on your system if those modules can be found in you path. Of course those modules would have to behave like CGI::Application based modules, but that still opens up the door more than most want. This should only be a problem if you don't use a prefix. By using this option you are only allowing Dispatch to pick from a namespace of modules to run.Backwards CompatibilityVersions 0.2 and earlier of this module injected the "as_psgi" method into CGI::Application::Dispatch, creating a syntax like this:### in your dispatch.psgi: use Your::Application::Dispatch; use CGI::Application::Dispatch::PSGI; Your::Application::Dispatch->as_psgi; ### In Your::Application::Dispatch; use base 'CGI::Application::Dispatch::PSGI'; In the current design, the "as_pgsi" method is directly in this module, so a couple of lines of code need to be changed: ### in your dispatch.psgi: use Your::Application::Dispatch; Your::Application::Dispatch->as_psgi; ### In Your::Application::Dispatch; use base 'CGI::Application::Dispatch::PSGI'; Differences with CGI::Application::Dispatch
SEE ALSOCGI::Application, Apache::DispatchCOPYRIGHT & LICENSECopyright Michael Peters and Mark Stosberg 2008-2010, all rights reserved.This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |