bump version
[catagits/Web-Simple.git] / lib / Web / Simple.pm
CommitLineData
5c33dda5 1package Web::Simple;
2
8bd060f4 3use strictures 1;
8c4ffad3 4use 5.008;
8bd060f4 5use warnings::illegalproto ();
876e62e1 6use Moo ();
7use Web::Dispatch::Wrapper ();
8c4ffad3 8
dea7a4fd 9our $VERSION = '0.015';
5c33dda5 10
44db8e76 11sub import {
5c33dda5 12 my ($class, $app_package) = @_;
876e62e1 13 $app_package ||= caller;
14 $class->_export_into($app_package);
15 eval "package $app_package; use Web::Dispatch::Wrapper; use Moo; 1"
16 or die "Failed to setup app package: $@";
445b3ea0 17 strictures->import;
8bd060f4 18 warnings::illegalproto->unimport;
5c33dda5 19}
20
21sub _export_into {
22 my ($class, $app_package) = @_;
23 {
24 no strict 'refs';
c7b1c57f 25 *{"${app_package}::PSGI_ENV"} = sub () { -1 };
5c33dda5 26 require Web::Simple::Application;
27 unshift(@{"${app_package}::ISA"}, 'Web::Simple::Application');
28 }
b7063124 29 (my $name = $app_package) =~ s/::/\//g;
30 $INC{"${name}.pm"} = 'Set by "use Web::Simple;" invocation';
5c33dda5 31}
32
7401408e 33=head1 NAME
34
35Web::Simple - A quick and easy way to build simple web applications
36
7401408e 37
38=head1 SYNOPSIS
39
05ad188d 40 #!/usr/bin/env perl
7401408e 41
4f83bde7 42 package HelloWorld;
6ee6b2dc 43 use Web::Simple;
4f83bde7 44
45 sub dispatch_request {
46 sub (GET) {
47 [ 200, [ 'Content-type', 'text/plain' ], [ 'Hello world!' ] ]
48 },
49 sub () {
50 [ 405, [ 'Content-type', 'text/plain' ], [ 'Method not allowed' ] ]
445b3ea0 51 }
7401408e 52 }
53
54 HelloWorld->run_if_script;
55
05ad188d 56If you save this file into your cgi-bin as C<hello-world.cgi> and then visit:
7401408e 57
58 http://my.server.name/cgi-bin/hello-world.cgi/
59
4f83bde7 60you'll get the "Hello world!" string output to your browser. At the same time
61this file will also act as a class module, so you can save it as HelloWorld.pm
62and use it as-is in test scripts or other deployment mechanisms.
63
ca30a017 64Note that you should retain the ->run_if_script even if your app is a
65module, since this additionally makes it valid as a .psgi file, which can
66be extremely useful during development.
67
4f83bde7 68For more complex examples and non-CGI deployment, see
69L<Web::Simple::Deployment>. To get help with L<Web::Simple>, please connect to
70the irc.perl.org IRC network and join #web-simple.
7401408e 71
fb771406 72=head1 DESCRIPTION
7401408e 73
6a4808bf 74The philosophy of L<Web::Simple> is to keep to an absolute bare minimum for
7401408e 75everything. It is not designed to be used for large scale applications;
76the L<Catalyst> web framework already works very nicely for that and is
77a far more mature, well supported piece of software.
78
79However, if you have an application that only does a couple of things, and
3895385d 80want to not have to think about complexities of deployment, then L<Web::Simple>
7401408e 81might be just the thing for you.
82
6a4808bf 83The only public interface the L<Web::Simple> module itself provides is an
84C<import> based one:
7401408e 85
86 use Web::Simple 'NameOfApplication';
87
6a4808bf 88This sets up your package (in this case "NameOfApplication" is your package)
3895385d 89so that it inherits from L<Web::Simple::Application> and imports L<strictures>,
38d5b336 90as well as installs a C<PSGI_ENV> constant for convenience, as well as some
3895385d 91other subroutines.
92
6a4808bf 93Importing L<strictures> will automatically make your code use the C<strict> and
3895385d 94C<warnings> pragma, so you can skip the usual:
7401408e 95
96 use strict;
3895385d 97 use warnings FATAL => 'aa';
7401408e 98
99provided you 'use Web::Simple' at the top of the file. Note that we turn
100on *fatal* warnings so if you have any warnings at any point from the file
101that you did 'use Web::Simple' in, then your application will die. This is,
102so far, considered a feature.
103
a5006b25 104When we inherit from L<Web::Simple::Application> we also use L<Moo>, which is
3895385d 105the the equivalent of:
7401408e 106
107 {
108 package NameOfApplication;
445b3ea0 109 use Moo;
110 extends 'Web::Simple::Application';
7401408e 111 }
112
6a4808bf 113So you can use L<Moo> features in your application, such as creating attributes
114using the C<has> subroutine, etc. Please see the documentation for L<Moo> for
115more information.
116
445b3ea0 117It also exports the following subroutines for use in dispatchers:
7401408e 118
74afe4b7 119 response_filter { ... };
7401408e 120
121 redispatch_to '/somewhere';
122
b7063124 123Finally, import sets
124
125 $INC{"NameOfApplication.pm"} = 'Set by "use Web::Simple;" invocation';
126
127so that perl will not attempt to load the application again even if
128
129 require NameOfApplication;
130
131is encountered in other code.
132
3583ca04 133=head1 DISPATCH STRATEGY
134
6a4808bf 135L<Web::Simple> despite being straightforward to use, has a powerful system
3895385d 136for matching all sorts of incoming URLs to one or more subroutines. These
137subroutines can be simple actions to take for a given URL, or something
138more complicated, including entire L<Plack> applications, L<Plack::Middleware>
139and nested subdispatchers.
140
c21c9f07 141=head2 Examples
142
445b3ea0 143 sub dispatch_request {
c21c9f07 144 # matches: GET /user/1.htm?show_details=1
145 # GET /user/1.htm
146 sub (GET + /user/* + ?show_details~ + .htm|.html|.xhtml) {
c254b30e 147 my ($self, $user_id, $show_details) = @_;
c21c9f07 148 ...
149 },
150 # matches: POST /user?username=frew
151 # POST /user?username=mst&first_name=matt&last_name=trout
152 sub (POST + /user + ?username=&*) {
c254b30e 153 my ($self, $username, $misc_params) = @_;
c21c9f07 154 ...
155 },
156 # matches: DELETE /user/1/friend/2
157 sub (DELETE + /user/*/friend/*) {
c254b30e 158 my ($self, $user_id, $friend_id) = @_;
c21c9f07 159 ...
160 },
161 # matches: PUT /user/1?first_name=Matt&last_name=Trout
162 sub (PUT + /user/* + ?first_name~&last_name~) {
c254b30e 163 my ($self, $user_id, $first_name, $last_name) = @_;
c21c9f07 164 ...
165 },
166 sub (/user/*/...) {
445b3ea0 167 my $user_id = $_[1];
168 # matches: PUT /user/1/role/1
169 sub (PUT + /role/*) {
170 my $role_id = $_[1];
171 ...
172 },
173 # matches: DELETE /user/1/role/1
174 sub (DELETE + /role/*) {
175 my $role_id = $_[1];
176 ...
177 },
c21c9f07 178 },
179 }
180
3706e2a0 181=head2 The dispatch cycle
81a5b03e 182
3706e2a0 183At the beginning of a request, your app's dispatch_request method is called
184with the PSGI $env as an argument. You can handle the request entirely in
185here and return a PSGI response arrayref if you want:
81a5b03e 186
3706e2a0 187 sub dispatch_request {
188 my ($self, $env) = @_;
189 [ 404, [ 'Content-type' => 'text/plain' ], [ 'Amnesia == fail' ] ]
190 }
81a5b03e 191
3706e2a0 192However, generally, instead of that, you return a set of dispatch subs:
81a5b03e 193
3706e2a0 194 sub dispatch_request {
195 my $self = shift;
196 sub (/) { redispatch_to '/index.html' },
197 sub (/user/*) { $self->show_user($_[1]) },
198 ...
199 }
81a5b03e 200
e927492b 201Well, a sub is a valid PSGI response too (for ultimate streaming and async
202cleverness). If you want to return a PSGI sub you have to wrap it into an
203array ref.
204
205 sub dispatch_request {
206 [ sub {
207 my $respond = shift;
208 # This is pure PSGI here, so read perldoc PSGI
209 } ]
210 }
211
3706e2a0 212If you return a subroutine with a prototype, the prototype is treated
213as a match specification - and if the test is passed, the body of the
214sub is called as a method any matched arguments (see below for more details).
81a5b03e 215
3706e2a0 216You can also return a plain subroutine which will be called with just $env
217- remember that in this case if you need $self you -must- close over it.
81a5b03e 218
3895385d 219If you return a normal object, L<Web::Simple> will simply return it upwards on
220the assumption that a response_filter (or some arbitrary L<Plack::Middleware>)
221somewhere will convert it to something useful. This allows:
81a5b03e 222
3706e2a0 223 sub dispatch_request {
224 my $self = shift;
225 sub (.html) { response_filter { $self->render_zoom($_[0]) } },
226 sub (/user/*) { $self->users->get($_[1]) },
227 }
81a5b03e 228
3895385d 229to render a user object to HTML, if there is an incoming URL such as:
230
231 http://myweb.org/user/111.html
232
233This works because as we descend down the dispachers, we first match
234C<sub (.html)>, which adds a C<response_filter> (basically a specialized routine
235that follows the L<Plack::Middleware> specification), and then later we also
236match C<sub (/user/*)> which gets a user and returns that as the response.
237This user object 'bubbles up' through all the wrapping middleware until it hits
238the C<response_filter> we defined, after which the return is converted to a
239true html response.
81a5b03e 240
3706e2a0 241However, two types of object are treated specially - a Plack::App object
3895385d 242will have its C<->to_app> method called and be used as a dispatcher:
81a5b03e 243
3706e2a0 244 sub dispatch_request {
245 my $self = shift;
246 sub (/static/...) { Plack::App::File->new(...) },
247 ...
81a5b03e 248 }
249
3706e2a0 250A Plack::Middleware object will be used as a filter for the rest of the
251dispatch being returned into:
81a5b03e 252
6af22ff2 253 ## responds to /admin/track_usage AND /admin/delete_accounts
254
3706e2a0 255 sub dispatch_request {
256 my $self = shift;
6af22ff2 257 sub (/admin/**) {
258 Plack::Middleware::Session->new(%opts);
259 },
260 sub (/admin/track_usage) {
261 ## something that needs a session
262 },
263 sub (/admin/delete_accounts) {
264 ## something else that needs a session
265 },
81a5b03e 266 }
267
3706e2a0 268Note that this is for the dispatch being -returned- to, so if you want to
269provide it inline you need to do:
81a5b03e 270
6af22ff2 271 ## ALSO responds to /admin/track_usage AND /admin/delete_accounts
272
3706e2a0 273 sub dispatch_request {
274 my $self = shift;
3706e2a0 275 sub (/admin/...) {
6af22ff2 276 sub {
277 Plack::Middleware::Session->new(%opts);
278 },
279 sub (/track_usage) {
280 ## something that needs a session
281 },
282 sub (/delete_accounts) {
283 ## something else that needs a session
284 },
3706e2a0 285 }
81a5b03e 286 }
287
3706e2a0 288And that's it - but remember that all this happens recursively - it's
3895385d 289dispatchers all the way down. A URL incoming pattern will run all matching
290dispatchers and then hit all added filters or L<Plack::Middleware>.
3706e2a0 291
81a5b03e 292=head2 Web::Simple match specifications
293
294=head3 Method matches
295
93e30ba3 296 sub (GET) {
15dfe701 297
298A match specification beginning with a capital letter matches HTTP requests
299with that request method.
300
81a5b03e 301=head3 Path matches
302
15dfe701 303 sub (/login) {
304
305A match specification beginning with a / is a path match. In the simplest
306case it matches a specific path. To match a path with a wildcard part, you
307can do:
308
309 sub (/user/*) {
310 $self->handle_user($_[1])
311
312This will match /user/<anything> where <anything> does not include a literal
313/ character. The matched part becomes part of the match arguments. You can
314also match more than one part:
315
316 sub (/user/*/*) {
317 my ($self, $user_1, $user_2) = @_;
318
319 sub (/domain/*/user/*) {
320 my ($self, $domain, $user) = @_;
321
322and so on. To match an arbitrary number of parts, use -
323
324 sub (/page/**) {
1d02a8ae 325 my ($self, $match) = @_;
15dfe701 326
1d02a8ae 327This will result in a single element for the entire match. Note that you can do
15dfe701 328
329 sub (/page/**/edit) {
330
331to match an arbitrary number of parts up to but not including some final
332part.
333
e060a690 334Note: Since Web::Simple handles a concept of file extensions, * and **
335matchers will not by default match things after a final dot, and this
336can be modified by using *.* and **.* in the final position, i.e.:
337
338 /one/* matches /one/two.three and captures "two"
339 /one/*.* matches /one/two.three and captures "two.three"
340 /** matches /one/two.three and captures "one/two"
341 /**.* matches /one/two.three and captures "one/two.three"
342
da8429c9 343Finally,
344
345 sub (/foo/...) {
346
e060a690 347Will match C</foo/> on the beginning of the path -and- strip it. This is
348designed to be used to construct nested dispatch structures, but can also prove
349useful for having e.g. an optional language specification at the start of a
350path.
da8429c9 351
352Note that the '...' is a "maybe something here, maybe not" so the above
353specification will match like this:
354
355 /foo # no match
356 /foo/ # match and strip path to '/'
357 /foo/bar/baz # match and strip path to '/bar/baz'
358
e060a690 359Almost the same,
15e679c1 360
e060a690 361 sub (/foo...) {
362
363Will match on C</foo/bar/baz>, but also include C</foo>. Otherwise it
364operates the same way as C</foo/...>.
365
366 /foo # match and strip path to ''
367 /foo/ # match and strip path to '/'
368 /foo/bar/baz # match and strip path to '/bar/baz'
369
370Please note the difference between C<sub(/foo/...)> and C<sub(/foo...)>. In
371the first case, this is expecting to find something after C</foo> (and fails to
372match if nothing is found), while in the second case we can match both C</foo>
373and C</foo/more/to/come>. The following are roughly the same:
374
375 sub (/foo) { 'I match /foo' },
376 sub (/foo/...) {
377 sub (/bar) { 'I match /foo/bar' },
378 sub (/*) { 'I match /foo/{id}' },
379 }
380
381Versus
382
383 sub (/foo...) {
384 sub (~) { 'I match /foo' },
385 sub (/bar) { 'I match /foo/bar' },
386 sub (/*) { 'I match /foo/{id}' },
387 }
388
389You may prefer the latter example should you wish to take advantage of
390subdispatchers to scope common activities. For example:
391
392 sub (/user...) {
393 my $user_rs = $schema->resultset('User');
394 sub (~) { $user_rs },
395 sub (/*) { $user_rs->find($_[1]) },
396 }
397
398You should note the special case path match C<sub (~)> which is only meaningful
399when it is contained in this type of path match. It matches to an empty path.
400
7c03cd61 401=head4 Naming your patch matches
402
403Any */**/*.*/**.* match can be followed with :name to make it into a named
404match, so:
405
406 sub (/*:one/*:two/*:three/*:four) {
407 "I match /1/2/3/4 capturing { one => 1, two => 2, three => 3, four => 4 }"
408 }
409
410 sub (/**.*:allofit) {
411 "I match anything capturing { allofit => \$whole_path }"
412 }
413
414In the specific case of a simple single-* match, the * may be omitted, to
415allow you to write:
416
417 sub (/:one/:two/:three/:four) {
418 "I match /1/2/3/4 capturing { one => 1, two => 2, three => 3, four => 4 }"
419 }
420
e060a690 421=head4 C</foo> and C</foo/> are different specs
422
423As you may have noticed with the difference between C<sub(/foo/...)> and
424C<sub(/foo...)>, trailing slashes in path specs are significant. This is
425intentional and necessary to retain the ability to use relative links on
426websites. Let's demonstrate on this link:
427
428 <a href="bar">bar</a>
429
430If the user loads the url C</foo/> and clicks on this link, they will be
431sent to C</foo/bar>. However when they are on the url C</foo> and click this
432link, then they will be sent to C</bar>.
433
434This makes it necessary to be explicit about the trailing slash.
15e679c1 435
81a5b03e 436=head3 Extension matches
437
15dfe701 438 sub (.html) {
439
6a4808bf 440will match .html from the path (assuming the subroutine itself returns
441something, of course). This is normally used for rendering - e.g.
15dfe701 442
443 sub (.html) {
74afe4b7 444 response_filter { $self->render_html($_[1]) }
15dfe701 445 }
446
b8bd7bd1 447Additionally,
448
449 sub (.*) {
450
6a4808bf 451will match any extension and supplies the extension as a match argument.
b8bd7bd1 452
9b9866ae 453=head3 Query and body parameter matches
454
455Query and body parameters can be match via
456
457 sub (?<param spec>) { # match URI query
458 sub (%<param spec>) { # match body params
459
cb12d2a3 460The body spec will match if the request content is either
461application/x-www-form-urlencoded or multipart/form-data - the latter
462of which is required for uploads, which are now handled experimentally
463- see below.
9b9866ae 464
465The param spec is elements of one of the following forms -
466
467 param~ # optional parameter
468 param= # required parameter
469 @param~ # optional multiple parameter
470 @param= # required multiple parameter
eb9e0e25 471 :param~ # optional parameter in hashref
472 :param= # required parameter in hashref
473 :@param~ # optional multiple in hashref
474 :@param= # required multiple in hashref
475 * # include all other parameters in hashref
476 @* # include all other parameters as multiple in hashref
9b9866ae 477
eb9e0e25 478separated by the & character. The arguments added to the request are
479one per non-:/* parameter (scalar for normal, arrayref for multiple),
480plus if any :/* specs exist a hashref containing those values.
9b9866ae 481
3895385d 482Please note that if you specify a multiple type parameter match, you are
483ensured of getting an arrayref for the value, EVEN if the current incoming
484request has only one value. However if a parameter is specified as single
485and multiple values are found, the last one will be used.
486
487For example to match a page parameter with an optional order_by parameter one
9b9866ae 488would write:
489
490 sub (?page=&order_by~) {
eb9e0e25 491 my ($self, $page, $order_by) = @_;
492 return unless $page =~ /^\d+$/;
493 $page ||= 'id';
9b9866ae 494 response_filter {
495 $_[1]->search_rs({}, $p);
496 }
497 }
498
499to implement paging and ordering against a L<DBIx::Class::ResultSet> object.
500
3895385d 501Another Example: To get all parameters as a hashref of arrayrefs, write:
eb9e0e25 502
503 sub(?@*) {
504 my ($self, $params) = @_;
505 ...
506
8c4ffad3 507To get two parameters as a hashref, write:
508
509 sub(?:user~&:domain~) {
510 my ($self, $params) = @_; # params contains only 'user' and 'domain' keys
511
512You can also mix these, so:
513
514 sub (?foo=&@bar~&:coffee=&@*) {
515 my ($self, $foo, $bar, $params);
516
517where $bar is an arrayref (possibly an empty one), and $params contains
518arrayref values for all parameters -not- mentioned and a scalar value for
519the 'coffee' parameter.
520
3895385d 521Note, in the case where you combine arrayref, single parameter and named
522hashref style, the arrayref and single parameters will appear in C<@_> in the
38d5b336 523order you defined them in the protoype, but all hashrefs will merge into a
3895385d 524single C<$params>, as in the example above.
525
05aafc1a 526=head3 Upload matches (EXPERIMENTAL)
527
528Note: This feature is experimental. This means that it may not remain
529100% in its current form. If we change it, notes on updating your code
530will be added to the L</CHANGES BETWEEN RELEASES> section below.
531
532 sub (*foo=) { # param specifier can be anything valid for query or body
533
534The upload match system functions exactly like a query/body match, except
535that the values returned (if any) are C<Web::Dispatch::Upload> objects.
536
537Note that this match type will succeed in two circumstances where you might
538not expect it to - first, when the field exists but is not an upload field
539and second, when the field exists but the form is not an upload form (i.e.
540content type "application/x-www-form-urlencoded" rather than
541"multipart/form-data"). In either of these cases, what you'll get back is
542a C<Web::Dispatch::NotAnUpload> object, which will C<die> with an error
543pointing out the problem if you try and use it. To be sure you have a real
544upload object, call
545
546 $upload->is_upload # returns 1 on a valid upload, 0 on a non-upload field
547
548and to get the reason why such an object is not an upload, call
549
550 $upload->reason # returns a reason or '' on a valid upload.
551
552Other than these two methods, the upload object provides the same interface
553as L<Plack::Request::Upload> with the addition of a stringify to the temporary
554filename to make copying it somewhere else easier to handle.
555
81a5b03e 556=head3 Combining matches
557
15dfe701 558Matches may be combined with the + character - e.g.
559
b8bd7bd1 560 sub (GET + /user/*) {
561
562to create an AND match. They may also be combined withe the | character - e.g.
563
564 sub (GET|POST) {
565
566to create an OR match. Matches can be nested with () - e.g.
567
568 sub ((GET|POST) + /user/*) {
569
570and negated with ! - e.g.
571
572 sub (!/user/foo + /user/*) {
573
574! binds to the immediate rightmost match specification, so if you want
575to negate a combination you will need to use
576
577 sub ( !(POST|PUT|DELETE) ) {
578
579and | binds tighter than +, so
580
581 sub ((GET|POST) + /user/*) {
582
583and
584
585 sub (GET|POST + /user/*) {
586
587are equivalent, but
588
1760e999 589 sub ((GET + /admin/...) | (POST + /admin/...)) {
b8bd7bd1 590
591and
592
1760e999 593 sub (GET + /admin/... | POST + /admin/...) {
b8bd7bd1 594
595are not - the latter is equivalent to
596
1760e999 597 sub (GET + (/admin/...|POST) + /admin/...) {
b8bd7bd1 598
3895385d 599which will never match!
b8bd7bd1 600
601=head3 Whitespace
15dfe701 602
603Note that for legibility you are permitted to use whitespace -
604
44db8e76 605 sub (GET + /user/*) {
15dfe701 606
b8bd7bd1 607but it will be ignored. This is because the perl parser strips whitespace
608from subroutine prototypes, so this is equivalent to
609
610 sub (GET+/user/*) {
15dfe701 611
24175cb5 612=head3 Accessing the PSGI env hash
613
3706e2a0 614In some cases you may wish to get the raw PSGI env hash - to do this,
615you can either use a plain sub -
616
617 sub {
618 my ($env) = @_;
619 ...
620 }
24175cb5 621
3706e2a0 622or use the PSGI_ENV constant exported to retrieve it:
c21c9f07 623
3706e2a0 624 sub (GET + /foo + ?some_param=) {
625 my $param = $_[1];
626 my $env = $_[PSGI_ENV];
627 }
c21c9f07 628
3706e2a0 629but note that if you're trying to add a middleware, you should simply use
630Web::Simple's direct support for doing so.
c21c9f07 631
445b3ea0 632=head1 EXPORTED SUBROUTINES
c21c9f07 633
634=head2 response_filter
635
636 response_filter {
637 # Hide errors from the user because we hates them, preciousss
445b3ea0 638 if (ref($_[0]) eq 'ARRAY' && $_[0]->[0] == 500) {
639 $_[0] = [ 200, @{$_[0]}[1..$#{$_[0]}] ];
c21c9f07 640 }
445b3ea0 641 return $_[0];
c21c9f07 642 };
643
644The response_filter subroutine is designed for use inside dispatch subroutines.
645
646It creates and returns a special dispatcher that always matches, and calls
647the block passed to it as a filter on the result of running the rest of the
648current dispatch chain.
649
650Thus the filter above runs further dispatch as normal, but if the result of
651dispatch is a 500 (Internal Server Error) response, changes this to a 200 (OK)
652response without altering the headers or body.
653
654=head2 redispatch_to
655
656 redispatch_to '/other/url';
657
658The redispatch_to subroutine is designed for use inside dispatch subroutines.
659
660It creates and returns a special dispatcher that always matches, and instead
661of continuing dispatch re-delegates it to the start of the dispatch process,
662but with the path of the request altered to the supplied URL.
663
950d8829 664Thus if you receive a POST to '/some/url' and return a redispatch to
c21c9f07 665'/other/url', the dispatch behaviour will be exactly as if the same POST
666request had been made to '/other/url' instead.
667
3895385d 668Note, this is not the same as returning an HTTP 3xx redirect as a response;
38d5b336 669rather it is a much more efficient internal process.
3895385d 670
8c4ffad3 671=head1 CHANGES BETWEEN RELEASES
445b3ea0 672
673=head2 Changes between 0.004 and 0.005
674
675=over 4
676
677=item * dispatch {} replaced by declaring a dispatch_request method
678
679dispatch {} has gone away - instead, you write:
680
681 sub dispatch_request {
e4122532 682 my $self = shift;
445b3ea0 683 sub (GET /foo/) { ... },
684 ...
685 }
686
687Note that this method is still -returning- the dispatch code - just like
688dispatch did.
689
e4122532 690Also note that you need the 'my $self = shift' since the magic $self
691variable went away.
692
693=item * the magic $self variable went away.
694
695Just add 'my $self = shift;' while writing your 'sub dispatch_request {'
696like a normal perl method.
697
445b3ea0 698=item * subdispatch deleted - all dispatchers can now subdispatch
699
700In earlier releases you needed to write:
701
702 subdispatch sub (/foo/...) {
703 ...
704 [
705 sub (GET /bar/) { ... },
706 ...
707 ]
708 }
709
710As of 0.005, you can instead write simply:
711
712 sub (/foo/...) {
713 ...
714 (
715 sub (GET /bar/) { ... },
716 ...
717 )
718 }
8c4ffad3 719
c2150f7d 720=back
721
8c4ffad3 722=head2 Changes since Antiquated Perl
723
724=over 4
725
726=item * filter_response renamed to response_filter
727
728This is a pure rename; a global search and replace should fix it.
729
c21c9f07 730=item * dispatch [] changed to dispatch {}
8c4ffad3 731
732Simply changing
733
734 dispatch [ sub(...) { ... }, ... ];
735
736to
737
738 dispatch { sub(...) { ... }, ... };
739
740should work fine.
741
742=back
743
fb771406 744=head1 DEVELOPMENT HISTORY
745
746Web::Simple was originally written to form part of my Antiquated Perl talk for
747Italian Perl Workshop 2009, but in writing the bloggery example I realised
748that having a bare minimum system for writing web applications that doesn't
749drive me insane was rather nice and decided to spend my attempt at nanowrimo
750for 2009 improving and documenting it to the point where others could use it.
751
58fd1f7f 752The Antiquated Perl talk can be found at L<http://www.shadowcat.co.uk/archive/conference-video/> and the slides are reproduced in this distribution under
753L<Web::Simple::AntiquatedPerl>.
fb771406 754
8c4ffad3 755=head1 COMMUNITY AND SUPPORT
756
757=head2 IRC channel
758
759irc.perl.org #web-simple
760
761=head2 No mailing list yet
762
763Because mst's non-work email is a bombsite so he'd never read it anyway.
764
765=head2 Git repository
766
767Gitweb is on http://git.shadowcat.co.uk/ and the clone URL is:
768
769 git clone git://git.shadowcat.co.uk/catagits/Web-Simple.git
770
771=head1 AUTHOR
772
c2150f7d 773Matt S. Trout (mst) <mst@shadowcat.co.uk>
8c4ffad3 774
775=head1 CONTRIBUTORS
776
48904f80 777Devin Austin (dhoss) <dhoss@cpan.org>
778
779Arthur Axel 'fREW' Schmidt <frioux@gmail.com>
780
c2150f7d 781gregor herrmann (gregoa) <gregoa@debian.org>
8c4ffad3 782
48904f80 783John Napiorkowski (jnap) <jjn1056@yahoo.com>
784
785Josh McMichael <jmcmicha@linus222.gsc.wustl.edu>
786
f42be65c 787Justin Hunter (arcanez) <justin.d.hunter@gmail.com>
48904f80 788
789Kjetil Kjernsmo <kjetil@kjernsmo.net>
790
791markie <markie@nulletch64.dreamhost.com>
792
793Christian Walde (Mithaldu) <walde.christian@googlemail.com>
794
795nperez <nperez@cpan.org>
796
797Robin Edwards <robin.ge@gmail.com>
798
3c39d241 799Andrew Rodland (hobbs) <andrew@cleverdomain.org>
800
8c4ffad3 801=head1 COPYRIGHT
802
f42be65c 803Copyright (c) 2011 the Web::Simple L</AUTHOR> and L</CONTRIBUTORS>
8c4ffad3 804as listed above.
805
806=head1 LICENSE
807
808This library is free software and may be distributed under the same terms
809as perl itself.
810
3583ca04 811=cut
7401408e 812
5c33dda5 8131;