]> git.decadent.org.uk Git - maypole.git/blob - lib/Maypole.pm
simon cozens debug page and improved exceptions
[maypole.git] / lib / Maypole.pm
1 package Maypole;
2 use base qw(Class::Accessor::Fast Class::Data::Inheritable);
3 use UNIVERSAL::require;
4 use strict;
5 use warnings;
6 use Maypole::Config;
7 use Maypole::Constants;
8 use Maypole::Headers;
9 use URI();
10
11 our $VERSION = '2.11';
12
13 # proposed privacy conventions:
14 # - no leading underscore     - public to custom application code and plugins
15 # - single leading underscore - private to the main Maypole stack - *not*
16 #     including plugins
17 # - double leading underscore - private to the current package
18
19 =head1 NAME
20
21 Maypole - MVC web application framework
22
23 =head1 SYNOPSIS
24
25 The canonical example used in the Maypole documentation is the beer database:
26
27     package BeerDB;
28     use strict;
29     use warnings; 
30     
31     # choose a frontend, initialise the config object, and load a plugin
32     use Maypole::Application qw/Relationship/;
33     
34     # get the empty config object created by Maypole::Application
35     my $config = __PACKAGE__->config;
36     
37     # basic settings
38     $config->uri_base("http://localhost/beerdb");
39     $config->template_root("/path/to/templates");
40     $config->rows_per_page(10);
41     $config->display_tables([qw/beer brewery pub style/]);
42
43     # table relationships
44     $config->relationships([
45         "a brewery produces beers",
46         "a style defines beers",
47         "a pub has beers on handpumps",
48         ]);
49         
50     # validation
51     BeerDB::Brewery->untaint_columns( printable => [qw/name notes url/] );
52     BeerDB::Pub->untaint_columns( printable => [qw/name notes url/] );
53     BeerDB::Style->untaint_columns( printable => [qw/name notes/] );
54     BeerDB::Beer->untaint_columns(
55         printable => [qw/abv name price notes/],
56         integer => [qw/style brewery score/],
57         date => [ qw/date/],
58     );
59
60     # set everything up
61     __PACKAGE__->setup("dbi:SQLite:t/beerdb.db");
62
63     1;    
64
65 =head1 DESCRIPTION
66
67 This documents the Maypole request object. See the L<Maypole::Manual>, for a
68 detailed guide to using Maypole.
69
70 Maypole is a Perl web application framework similar to Java's struts. It is 
71 essentially completely abstracted, and so doesn't know anything about
72 how to talk to the outside world.
73
74 To use it, you need to create a driver package which represents your entire
75 application. This is the C<BeerDB> package used as an example in the manual.
76
77 This needs to first use L<Maypole::Application> which will make your package
78 inherit from the appropriate platform driver such as C<Apache::MVC> or
79 C<CGI::Maypole>. Then, the driver calls C<setup>. This sets up the model classes
80 and configures your application. The default model class for Maypole uses
81 L<Class::DBI> to map a database to classes, but this can be changed by altering
82 configuration (B<before> calling setup.)
83
84
85 =head1 DOCUMENTATION AND SUPPORT
86
87 Note that some details in some of these resources may be out of date.
88
89 =over 4 
90
91 =item The Maypole Manual
92
93 The primary documentation is the Maypole manual. This lives in the 
94 C<Maypole::Manual> pod documents included with the distribution. 
95
96 =item Embedded POD
97
98 Individual packages within the distribution contain (more or less) detailed
99 reference documentation for their API.
100
101 =item Mailing lists
102
103 There are two mailing lists - maypole-devel and maypole-users - see
104 http://maypole.perl.org/?MailingList
105
106 =item The Maypole Wiki
107
108 The Maypole wiki provides a useful store of extra documentation -
109 http://maypole.perl.org
110
111 In particular, there's a FAQ (http://maypole.perl.org/?FAQ) and a cookbook
112 (http://maypole.perl.org/?Cookbook). Again, certain information on these pages
113 may be out of date.
114
115 =item Web applications with Maypole
116
117 A tutorial written by Simon Cozens for YAPC::EU 2005 -
118 http://www.droogs.org/perl/maypole/maypole-tutorial.pdf [228KB].
119
120 =item A Database-Driven Web Application in 18 Lines of Code
121
122 By Paul Barry, published in Linux Journal, March 2005.
123
124 http://www.linuxjournal.com/article/7937
125
126 "From zero to Web-based database application in eight easy steps".
127
128 Maypole won a 2005 Linux Journal Editor's Choice Award
129 (http://www.linuxjournal.com/article/8293) after featuring in this article. 
130
131 =item Build Web apps with Maypole
132
133 By Simon Cozens, on IBM's DeveloperWorks website, May 2004.
134
135 http://www-128.ibm.com/developerworks/linux/library/l-maypole/
136
137 =item Rapid Web Application Deployment with Maypole
138
139 By Simon Cozens, on O'Reilly's Perl website, April 2004.
140
141 http://www.perl.com/pub/a/2004/04/15/maypole.html
142
143 =item Authentication
144
145 Some notes written by Simon Cozens. A little bit out of date, but still 
146 very useful: http://www.droogs.org/perl/maypole/authentication.html
147
148 =item CheatSheet
149
150 There's a refcard for the Maypole (and Class::DBI) APIs on the wiki -
151 http://maypole.perl.org/?CheatSheet. Probably a little out of date now - it's a
152 wiki, so feel free to fix any errors!
153
154 =item Plugins and add-ons
155
156 There are a large and growing number of plugins and other add-on modules
157 available on CPAN - http://search.cpan.org/search?query=maypole&mode=module
158
159 =item del.icio.us
160
161 You can find a range of useful Maypole links, particularly to several thoughtful
162 blog entries, starting here: http://del.icio.us/search/?all=maypole
163
164 =item CPAN ratings
165
166 There are a couple of short reviews here:
167 http://cpanratings.perl.org/dist/Maypole
168
169 =back
170
171 =head1 DEMOS
172
173 A couple of demos are available, sometimes with source code and configs. 
174
175 =over 4 
176
177 =item http://maypole.perl.org/beerdb/
178
179 The standard BeerDB example, using the TT factory templates supplied in the
180 distribution.
181
182 =item beerdb.riverside-cms.co.uk
183
184 The standard BeerDB example, running on Mason, using the factory templates
185 supplied in the L<MasonX::Maypole> distribution.
186
187 =item beerfb.riverside-cms.co.uk
188
189 A demo of L<Maypole::FormBuilder>. This site is running on the set of Mason 
190 templates included in the L<Maypole::FormBuilder> distribution. See the 
191 synopsis of L<Maypole::Plugin::FormBuilder> for an example driver
192
193 =back
194
195 =cut
196
197 __PACKAGE__->mk_classdata($_) for qw( config init_done view_object );
198
199 __PACKAGE__->mk_accessors(
200     qw( params query objects model_class template_args output path
201         args action template error document_encoding content_type table
202         headers_in headers_out stash status)
203 );
204
205 __PACKAGE__->config( Maypole::Config->new() );
206
207 __PACKAGE__->init_done(0);
208
209 =head1 HOOKABLE METHODS
210
211 As a framework, Maypole provides a number of B<hooks> - methods that are
212 intended to be overridden. Some of these methods come with useful default
213 behaviour, others do nothing by default. Hooks include:
214
215     Class methods
216     -------------
217     debug 
218     setup 
219     setup_model 
220     load_model_subclass
221     init
222     
223     Instance methods
224     ----------------
225     start_request_hook
226     is_model_applicable
227     get_session
228     authenticate
229     exception
230     additional_data
231     preprocess_path
232
233 =head1 CLASS METHODS
234
235 =over 4
236
237 =item debug
238
239     sub My::App::debug {1}
240
241 Returns the debugging flag. Override this in your application class to
242 enable/disable debugging.
243
244 You can also set the C<debug> flag via L<Maypole::Application>.
245
246 Some packages respond to higher debug levels, try increasing it to 2 or 3.
247
248
249 =cut
250
251 sub debug { 0 }      
252
253 =item config
254
255 Returns the L<Maypole::Config> object
256
257 =item setup
258
259     My::App->setup($data_source, $user, $password, \%attr);
260
261 Initialise the Maypole application and plugins and model classes - see
262 L<Maypole::Manual::Plugins>.
263
264 If your model is based on L<Maypole::Model::CDBI>, the C<\%attr> hashref can 
265 contain options that are passed directly to L<Class::DBI::Loader>, to control 
266 how the model hierarchy is constructed. 
267
268 Your application should call this B<after> setting up configuration data via
269 L<"config">.
270
271 =cut
272
273 sub setup
274 {
275     my $class = shift;
276     
277     $class->setup_model(@_);    
278 }
279
280 =item setup_model
281
282 Called by C<setup>. This method builds the Maypole model hierarchy. 
283
284 A likely target for over-riding, if you need to build a customised model.
285
286 This method also ensures any code in custom model classes is loaded, so you
287 don't need to load them in the driver.
288
289 =cut
290
291 sub setup_model 
292 {
293     my $class = shift;
294     
295     $class = ref $class if ref $class;
296     
297     my $config = $class->config;
298     
299     $config->model || $config->model('Maypole::Model::CDBI');
300     
301     $config->model->require or die sprintf 
302         "Couldn't load the model class %s: %s", $config->model, $@;
303     
304     # among other things, this populates $config->classes
305     $config->model->setup_database($config, $class, @_);
306     
307     foreach my $subclass ( @{ $config->classes } ) 
308     {
309         no strict 'refs';
310         unshift @{ $subclass . "::ISA" }, $config->model;
311         
312         # Load custom model code, if it exists - nb this must happen after the 
313         # unshift, to allow code attributes to work, but before adopt(),  
314         # in case adopt() calls overridden methods on $subclass
315         $class->load_model_subclass($subclass);
316         
317         $config->model->adopt($subclass) if $config->model->can("adopt");
318     }
319 }
320
321 =item load_model_subclass($subclass)
322
323 This method is called from C<setup_model()>. It attempts to load the
324 C<$subclass> package, if one exists. So if you make a customized C<BeerDB::Beer>
325 package, you don't need to explicitly load it. 
326
327 If, perhaps during development, you don't want to load up custom classes, you 
328 can override this method and load them manually. 
329
330 =cut
331
332 sub load_model_subclass
333 {
334     my ($class, $subclass) = @_;
335     
336     my $config = $class->config;
337     
338     # Load any external files for the model base class or subclasses
339     # (e.g. BeerDB/DBI.pm or BeerDB/Beer.pm) based on code borrowed from
340     # Maypole::Plugin::Loader and Class::DBI.
341     if ( $subclass->require ) 
342     {
343         warn "Loaded external module for '$subclass'\n" if $class->debug > 1;
344     } 
345     else 
346     {
347         (my $filename = $subclass) =~ s!::!/!g;
348         die "Loading '$subclass' failed: $@\n"
349                unless $@ =~ /Can\'t locate \Q$filename\E\.pm/;
350         warn "No external module for '$subclass'" 
351             if $class->debug > 1;
352    }
353 }
354
355 =item init
356
357 Loads the view class and instantiates the view object.
358
359 You should not call this directly, but you may wish to override this to add
360 application-specific initialisation - see L<Maypole::Manual::Plugins>.
361
362 =cut
363
364 sub init 
365 {
366     my $class  = shift;
367     my $config = $class->config;
368     $config->view || $config->view("Maypole::View::TT");
369     $config->view->require;
370     die "Couldn't load the view class " . $config->view . ": $@" if $@;
371     $config->display_tables
372       || $config->display_tables( $class->config->tables );
373     $class->view_object( $class->config->view->new );
374     $class->init_done(1);
375 }
376
377 =item new
378
379 Constructs a very minimal new Maypole request object.
380
381 =cut
382
383 sub new
384 {
385     my ($class) = @_;
386     
387     my $self = bless {
388         template_args => {},
389         config        => $class->config,
390     }, $class;
391     
392     return $self;
393 }
394
395 =item view_object
396
397 Get/set the Maypole::View object
398
399 =back
400
401 =head1 INSTANCE METHODS
402
403 =head2 Workflow
404
405 =over 4
406
407 =item handler
408
409 This method sets up the class if it's not done yet, sets some defaults and
410 leaves the dirty work to C<handler_guts>.
411
412 =cut
413
414 # handler() has a method attribute so that mod_perl will invoke
415 # BeerDB->handler() as a method rather than a plain function
416 # BeerDB::handler() and so this inherited implementation will be
417 # found. See e.g. "Practical mod_perl" by Bekman & Cholet for
418 # more information <http://modperlbook.org/html/ch25_01.html>
419 sub handler : method 
420 {
421     # See Maypole::Workflow before trying to understand this.
422     my ($class, $req) = @_;
423     
424     $class->init unless $class->init_done;
425
426     my $self = $class->new;
427     
428     # initialise the request
429     $self->headers_out(Maypole::Headers->new);
430     $self->get_request($req);
431     $self->parse_location;
432     
433     # hook useful for declining static requests e.g. images, or perhaps for 
434     # sanitizing request parameters
435     $self->status(Maypole::Constants::OK());      # set the default
436     $self->__call_hook('start_request_hook');
437     return $self->status unless $self->status == Maypole::Constants::OK();
438     
439     die "status undefined after start_request_hook()" unless defined
440         $self->status;
441     
442     $self->get_session;
443     $self->get_user;
444     
445     my $status = $self->handler_guts;
446     
447     # moving this here causes unit test failures - need to check why
448     # before committing the move
449     #$status = $self->__call_process_view unless $self->output;
450     
451     return $status unless $status == OK;
452     
453     # TODO: require send_output to return a status code
454     $self->send_output;
455     
456     return $status;
457 }
458
459 # Instead of making plugin authors use the NEXT::DISTINCT hoopla to ensure other 
460 # plugins also get to call the hook, we can cycle through the application's 
461 # @ISA and call them all here. Doesn't work for setup() though, because it's 
462 # too ingrained in the stack. We could add a run_setup() method, but we'd break 
463 # lots of existing code.
464 sub __call_hook
465 {
466     my ($self, $hook) = @_;
467     
468     my @plugins;
469     {
470         my $class = ref($self);
471         no strict 'refs';
472         @plugins = @{"$class\::ISA"};
473     }
474     
475     # this is either a custom method in the driver, or the method in the 1st 
476     # plugin, or the 'null' method in the frontend (i.e. inherited from 
477     # Maypole.pm) - we need to be careful to only call it once
478     my $first_hook = $self->can($hook);
479     $self->$first_hook;  
480     
481     my %seen = ( $first_hook => 1 );
482
483     # @plugins includes the frontend
484     foreach my $plugin (@plugins)
485     {
486         next unless my $plugin_hook = $plugin->can($hook);
487         next if $seen{$plugin_hook}++;
488         $self->$plugin_hook;
489     }
490 }
491
492 =item handler_guts
493
494 This is the main request handling method and calls various methods to handle the
495 request/response and defines the workflow within Maypole.
496
497 B<Currently undocumented and liable to be refactored without warning>.
498
499 =cut
500
501 # The root of all evil
502 sub handler_guts 
503 {
504     my ($self) = @_;
505     
506     $self->__load_request_model;
507
508     my $applicable = $self->is_model_applicable;
509     
510     $self->__setup_plain_template unless $applicable;
511
512     my $status;
513
514     eval { $status = $self->call_authenticate };
515     
516     if ( my $error = $@ ) 
517     {
518         $status = $self->call_exception($error, "authentication");
519         
520         if ( $status != OK ) 
521         {
522             warn "caught authenticate error: $error";
523             return $self->debug ? 
524                     $self->view_object->error($self, $error) : ERROR;
525         }
526     }
527     
528     if ( $self->debug and $status != OK and $status != DECLINED ) 
529     {
530         $self->view_object->error( $self,
531             "Got unexpected status $status from calling authentication" );
532     }
533     
534     return $status unless $status == OK;
535
536     # We run additional_data for every request
537     $self->additional_data;
538     
539     if ($applicable) 
540     {
541         eval { $self->model_class->process($self) };
542         
543         if ( my $error = $@ ) 
544         {
545             $status = $self->call_exception($error, "model");
546             
547             if ( $status != OK ) 
548             {
549                 warn "caught model error: $error";
550                 return $self->debug ? 
551                     $self->view_object->error($self, $error) : ERROR;
552             }
553         }
554     }
555     
556     # less frequent path - perhaps output has been set to an error message
557     return OK if $self->output;
558     
559     # normal path - no output has been generated yet
560     return $self->__call_process_view;
561 }
562
563 sub __load_request_model
564 {
565     my ($self) = @_;
566     $self->model_class( $self->config->model->class_of($self, $self->table) );
567 }
568
569 # is_applicable() returned false, so set up a plain template. Model processing 
570 # will be skipped, but need to remove the model anyway so the template can't 
571 # access it. 
572 sub __setup_plain_template
573 {
574     my ($self) = @_;
575     
576     # It's just a plain template
577     $self->model_class(undef);
578     
579     my $path = $self->path;
580     $path =~ s{/$}{};    # De-absolutify
581     $self->path($path);
582     
583     $self->template($self->path);
584 }
585
586 # The model has been processed or skipped (if is_applicable returned false), 
587 # any exceptions have been handled, and there's no content in $self->output
588 sub __call_process_view
589 {
590     my ($self) = @_;
591     
592     my $status;
593     
594     eval { $status = $self->view_object->process($self) };
595     
596     if ( my $error = $@ ) 
597     {
598         $status = $self->call_exception($error, "view");
599         
600         if ( $status != OK ) 
601         {
602             warn "caught view error: $error" if $self->debug;
603             return $self->debug ? 
604                 $self->view_object->error($self, $error) : ERROR;
605         }
606     }
607     
608     return $status;
609 }
610
611 =item get_request
612
613 You should only need to define this method if you are writing a new
614 Maypole backend. It should return something that looks like an Apache
615 or CGI request object, it defaults to blank.
616
617 =cut
618
619 sub get_request { }
620
621 =item parse_location
622
623 Turns the backend request (e.g. Apache::MVC, Maypole, CGI) into a Maypole
624 request. It does this by setting the C<path>, and invoking C<parse_path> and
625 C<parse_args>.
626
627 You should only need to define this method if you are writing a new Maypole
628 backend.
629
630 =cut
631
632 sub parse_location 
633 {
634     die "parse_location is a virtual method. Do not use Maypole directly; " . 
635                 "use Apache::MVC or similar";
636 }
637
638 =item start_request_hook
639
640 This is called immediately after setting up the basic request. The default
641 method does nothing. 
642
643 The value of C<< $r->status >> is set to C<OK> before this hook is run. Your 
644 implementation can change the status code, or leave it alone. 
645
646 After this hook has run, Maypole will check the value of C<status>. For any
647 value other than C<OK>, Maypole returns the C<status> immediately. 
648
649 This is useful for filtering out requests for static files, e.g. images, which
650 should not be processed by Maypole or by the templating engine:
651
652     sub start_request_hook
653     {
654         my ($r) = @_;
655         
656         $r->status(DECLINED) if $r->path =~ /\.jpg$/;
657     }
658     
659 Multiple plugins, and the driver, can define this hook - Maypole will call all
660 of them. You should check for and probably not change any non-OK C<status>
661 value:
662
663     package Maypole::Plugin::MyApp::SkipFavicon;
664     
665     sub start_request_hook
666     {
667         my ($r) = @_;
668         
669         # check if a previous plugin has already DECLINED this request
670         # - probably unnecessary in this example, but you get the idea
671         return unless $r->status == OK;
672         
673         # then do our stuff
674         $r->status(DECLINED) if $r->path =~ /favicon\.ico/;
675     }        
676      
677 =cut
678
679 sub start_request_hook { }
680
681 =item is_applicable
682
683 B<This method is deprecated> as of version 2.11. If you have overridden it,
684 please override C<is_model_applicable> instead, and change the return type
685 from a Maypole:Constant to a true/false value.
686
687 Returns a Maypole::Constant to indicate whether the request is valid.
688
689 =item is_model_applicable
690
691 Returns true or false to indicate whether the request is valid.
692
693 The default implementation checks that C<< $r->table >> is publicly
694 accessible and that the model class is configured to handle the
695 C<< $r->action >>.
696
697 =cut
698
699 sub is_model_applicable 
700 {
701     my ($self) = @_;
702     
703     # cater for applications that are using obsolete version
704     if ($self->can('is_applicable')) 
705     {
706         warn "DEPRECATION WARNING: rewrite is_applicable to the interface ".
707                 "of Maypole::is_model_applicable\n";
708         return $self->is_applicable == OK;
709     }
710
711     # Establish which tables should be processed by the model
712     my $config = $self->config;
713     
714     $config->ok_tables || $config->ok_tables( $config->display_tables );
715     
716     $config->ok_tables( { map { $_ => 1 } @{ $config->ok_tables } } )
717         if ref $config->ok_tables eq "ARRAY";
718         
719     my $ok_tables = $config->ok_tables;
720       
721     # Does this request concern a table to be processed by the model?
722     my $table = $self->table;
723     
724     my $ok = 0;
725     
726     if (exists $ok_tables->{$table}) 
727     {
728         $ok = 1;
729     } 
730
731     if (not $ok) 
732     {
733         warn "We don't have that table ($table).\n"
734             . "Available tables are: "
735             . join( ",", keys %$ok_tables )
736                 if $self->debug and not $ok_tables->{$table};
737                 
738         return 0;
739     }
740     
741     # Is the action public?
742     my $action = $self->action;
743     return 1 if $self->model_class->is_public($action);
744     
745     warn "The action '$action' is not applicable to the table '$table'"
746         if $self->debug;
747     
748     return 0;
749 }
750
751 =item get_session
752
753 Called immediately after C<start_request_hook()>.
754
755 This method should return a session, which will be stored in the request's
756 C<session> attribute.
757
758 The default method is empty. 
759
760 =cut
761
762 sub get_session { }
763
764 =item get_user
765
766 Called immediately after C<get_session>.
767
768 This method should return a user, which will be stored in the request's C<user>
769 attribute.
770
771 The default method is empty.
772
773 =cut
774
775 sub get_user {}
776
777 =item call_authenticate
778
779 This method first checks if the relevant model class
780 can authenticate the user, or falls back to the default
781 authenticate method of your Maypole application.
782
783 =cut
784
785 sub call_authenticate 
786 {
787     my ($self) = @_;
788
789     # Check if we have a model class with an authenticate() to delegate to
790     return $self->model_class->authenticate($self) 
791         if $self->model_class and $self->model_class->can('authenticate');
792     
793     # Interface consistency is a Good Thing - 
794     # the invocant and the argument may one day be different things 
795     # (i.e. controller and request), like they are when authenticate() 
796     # is called on a model class (i.e. model and request)
797     return $self->authenticate($self);   
798 }
799
800 =item authenticate
801
802 Returns a Maypole::Constant to indicate whether the user is authenticated for
803 the Maypole request.
804
805 The default implementation returns C<OK>
806
807 =cut
808
809 sub authenticate { return OK }
810
811
812 =item call_exception
813
814 This model is called to catch exceptions, first after authenticate, then after
815 processing the model class, and finally to check for exceptions from the view
816 class.
817
818 This method first checks if the relevant model class
819 can handle exceptions the user, or falls back to the default
820 exception method of your Maypole application.
821
822 =cut
823
824 sub call_exception 
825 {
826     my ($self, $error, $when) = @_;
827
828     # Check if we have a model class with an exception() to delegate to
829     if ( $self->model_class && $self->model_class->can('exception') )
830     {
831         my $status = $self->model_class->exception( $self, $error, $when );
832         return $status if $status == OK;
833     }
834     
835     return $self->exception($error, $when);
836 }
837
838
839 =item exception
840
841 This method is called if any exceptions are raised during the authentication or
842 model/view processing. It should accept the exception as a parameter and return
843 a Maypole::Constant to indicate whether the request should continue to be
844 processed.
845
846 =cut
847
848 sub exception { 
849     my ($self, $error, $when) = @_;
850     if ($self->view_object->can("report_error") and $self->debug) {
851         $self->view_object->report_error($self, $error, $when);
852         return OK;
853     }
854     return ERROR;
855 }
856
857 =item additional_data
858
859 Called before the model processes the request, this method gives you a chance to
860 do some processing for each request, for example, manipulating C<template_args>.
861
862 =cut
863
864 sub additional_data { }
865
866 =item send_output
867
868 Sends the output and additional headers to the user.
869
870 =cut
871
872 sub send_output {
873     die "send_output is a virtual method. Do not use Maypole directly; use Apache::MVC or similar";
874 }
875
876
877
878
879 =back
880
881 =head2 Path processing and manipulation
882
883 =over 4
884
885 =item path
886
887 Returns the request path
888
889 =item parse_path
890
891 Parses the request path and sets the C<args>, C<action> and C<table>
892 properties. Calls C<preprocess_path> before parsing path and setting properties.
893
894 =cut
895
896 sub parse_path 
897 {
898     my ($self) = @_;
899     
900     # Previous versions unconditionally set table, action and args to whatever 
901     # was in @pi (or else to defaults, if @pi is empty).
902     # Adding preprocess_path(), and then setting table, action and args 
903     # conditionally, broke lots of tests, hence this:
904     $self->$_(undef) for qw/action table args/;
905     
906     $self->preprocess_path;
907     $self->path || $self->path('frontpage');
908
909     my @pi = grep {length} split '/', $self->path;
910
911
912     $self->table  || $self->table(shift @pi);
913     $self->action || $self->action( shift @pi or 'index' );
914     $self->args   || $self->args(\@pi);
915 }
916
917 =item preprocess_path
918
919 Sometimes when you don't want to rewrite or over-ride parse_path but
920 want to rewrite urls or extract data from them before it is parsed.
921
922 This method is called after parse_location has populated the request
923 information and before parse_path has populated the model and action
924 information, and is passed the request object.
925
926 You can set action, args or table in this method and parse_path will
927 then leave those values in place or populate them if not present
928
929 =cut
930
931 sub preprocess_path { };
932
933 =item make_path( %args or \%args or @args )
934
935 This is the counterpart to C<parse_path>. It generates a path to use
936 in links, form actions etc. To implement your own path scheme, just override
937 this method and C<parse_path>.
938
939     %args = ( table      => $table,
940               action     => $action,        
941               additional => $additional,    # optional - generally an object ID
942               );
943               
944     \%args = as above, but a ref
945     
946     @args = ( $table, $action, $additional );   # $additional is optional
947
948 C<id> can be used as an alternative key to C<additional>.
949
950 C<$additional> can be a string, an arrayref, or a hashref. An arrayref is
951 expanded into extra path elements, whereas a hashref is translated into a query
952 string. 
953
954 =cut
955
956 sub make_path
957 {
958     my $r = shift;
959     
960     my %args;
961     
962     if (@_ == 1 and ref $_[0] and ref $_[0] eq 'HASH')
963     {
964         %args = %{$_[0]};
965     }
966     elsif ( @_ > 1 and @_ < 4 )
967     {
968         $args{table}      = shift;
969         $args{action}     = shift;
970         $args{additional} = shift;
971     }
972     else
973     {
974         %args = @_;
975     }
976     
977     do { die "no $_" unless $args{$_} } for qw( table action );    
978
979     my $additional = $args{additional} || $args{id};
980     
981     my @add = ();
982     
983     if ($additional)
984     {
985         # if $additional is a href, make_uri() will transform it into a query
986         @add = (ref $additional eq 'ARRAY') ? @$additional : ($additional);
987     }    
988     
989     my $uri = $r->make_uri($args{table}, $args{action}, @add);
990     
991     return $uri->as_string;
992 }
993
994
995
996 =item make_uri( @segments )
997
998 Make a L<URI> object given table, action etc. Automatically adds
999 the C<uri_base>. 
1000
1001 If the final element in C<@segments> is a hash ref, C<make_uri> will render it
1002 as a query string.
1003
1004 =cut
1005
1006 sub make_uri
1007 {
1008     my ($r, @segments) = @_;
1009
1010     my $query = (ref $segments[-1] eq 'HASH') ? pop(@segments) : undef;
1011     
1012     my $base = $r->config->uri_base; 
1013     $base =~ s|/$||;
1014     
1015     my $uri = URI->new($base);
1016     $uri->path_segments($uri->path_segments, grep {length} @segments);
1017     
1018     my $abs_uri = $uri->abs('/');
1019     $abs_uri->query_form($query) if $query;
1020     return $abs_uri;
1021 }
1022
1023 =item parse_args
1024
1025 Turns post data and query string paramaters into a hash of C<params>.
1026
1027 You should only need to define this method if you are writing a new Maypole
1028 backend.
1029
1030 =cut 
1031
1032 sub parse_args
1033 {
1034     die "parse_args() is a virtual method. Do not use Maypole directly; ".
1035             "use Apache::MVC or similar";
1036 }
1037
1038 =item get_template_root
1039
1040 Implementation-specific path to template root.
1041
1042 You should only need to define this method if you are writing a new Maypole
1043 backend. Otherwise, see L<Maypole::Config/"template_root">
1044
1045 =cut
1046
1047 sub get_template_root {'.'}
1048
1049 =back
1050
1051 =head2 Request properties
1052
1053 =over 4
1054
1055 =item model_class
1056
1057 Returns the perl package name that will serve as the model for the
1058 request. It corresponds to the request C<table> attribute.
1059
1060
1061 =item objects
1062
1063 Get/set a list of model objects. The objects will be accessible in the view
1064 templates.
1065
1066 If the first item in C<$self-E<gt>args> can be C<retrieve()>d by the model
1067 class, it will be removed from C<args> and the retrieved object will be added to
1068 the C<objects> list. See L<Maypole::Model> for more information.
1069
1070 =item template_args
1071
1072     $self->template_args->{foo} = 'bar';
1073
1074 Get/set a hash of template variables.
1075
1076 =item stash
1077
1078 A place to put custom application data. Not used by Maypole itself. 
1079
1080 =item template
1081
1082 Get/set the template to be used by the view. By default, it returns
1083 C<$self-E<gt>action>
1084
1085
1086 =item error
1087
1088 Get/set a request error
1089
1090 =item output
1091
1092 Get/set the response output. This is usually populated by the view class. You
1093 can skip view processing by setting the C<output>.
1094
1095 =item table
1096
1097 The table part of the Maypole request path
1098
1099 =item action
1100
1101 The action part of the Maypole request path
1102
1103 =item args
1104
1105 A list of remaining parts of the request path after table and action
1106 have been
1107 removed
1108
1109 =item headers_in
1110
1111 A L<Maypole::Headers> object containing HTTP headers for the request
1112
1113 =item headers_out
1114
1115 A L<HTTP::Headers> object that contains HTTP headers for the output
1116
1117 =item document_encoding
1118
1119 Get/set the output encoding. Default: utf-8.
1120
1121 =item content_type
1122
1123 Get/set the output content type. Default: text/html
1124
1125 =item get_protocol
1126
1127 Returns the protocol the request was made with, i.e. https
1128
1129 =cut
1130
1131 sub get_protocol {
1132   die "get_protocol is a virtual method. Do not use Maypole directly; use Apache::MVC or similar";
1133 }
1134
1135 =back
1136
1137 =head2 Request parameters
1138
1139 The source of the parameters may vary depending on the Maypole backend, but they
1140 are usually populated from request query string and POST data.
1141
1142 Maypole supplies several approaches for accessing the request parameters. Note
1143 that the current implementation (via a hashref) of C<query> and C<params> is
1144 likely to change in a future version of Maypole. So avoid direct access to these
1145 hashrefs:
1146
1147     $r->{params}->{foo}      # bad
1148     $r->params->{foo}        # better
1149
1150     $r->{query}->{foo}       # bad
1151     $r->query->{foo}         # better
1152
1153     $r->param('foo')         # best
1154
1155 =over 4
1156
1157 =item param
1158
1159 An accessor (get or set) for request parameters. It behaves similarly to
1160 CGI::param() for accessing CGI parameters, i.e.
1161
1162     $r->param                   # returns list of keys
1163     $r->param($key)             # returns value for $key
1164     $r->param($key => $value)   # returns old value, sets to new value
1165
1166 =cut
1167
1168 sub param 
1169
1170     my ($self, $key) = (shift, shift);
1171     
1172     return keys %{$self->params} unless defined $key;
1173     
1174     return unless exists $self->params->{$key};
1175     
1176     my $val = $self->params->{$key};
1177     
1178     if (@_)
1179     {
1180         my $new_val = shift;
1181         $self->params->{$key} = $new_val;
1182     }
1183     
1184     return ref $val ? @$val : ($val) if wantarray;
1185         
1186     return ref $val ? $val->[0] : $val;
1187 }
1188
1189
1190 =item params
1191
1192 Returns a hashref of request parameters. 
1193
1194 B<Note:> Where muliple values of a parameter were supplied, the C<params> value
1195 will be an array reference.
1196
1197 =item query
1198
1199 Alias for C<params>.
1200
1201 =back
1202
1203 =head3 Utility methods
1204
1205 =over 4
1206
1207 =item redirect_request
1208
1209 Sets output headers to redirect based on the arguments provided
1210
1211 Accepts either a single argument of the full url to redirect to, or a hash of
1212 named parameters :
1213
1214 $r->redirect_request('http://www.example.com/path');
1215
1216 or
1217
1218 $r->redirect_request(protocol=>'https', domain=>'www.example.com', path=>'/path/file?arguments', status=>'302', url=>'..');
1219
1220 The named parameters are protocol, domain, path, status and url
1221
1222 Only 1 named parameter is required but other than url, they can be combined as
1223 required and current values (from the request) will be used in place of any
1224 missing arguments. The url argument must be a full url including protocol and
1225 can only be combined with status.
1226
1227 =cut
1228
1229 sub redirect_request {
1230   die "redirect_request is a virtual method. Do not use Maypole directly; use Apache::MVC or similar";
1231 }
1232
1233 =item redirect_internal_request 
1234
1235 =cut
1236
1237 sub redirect_internal_request {
1238
1239 }
1240
1241
1242 =item make_random_id
1243
1244 returns a unique id for this request can be used to prevent or detect repeat
1245 submissions.
1246
1247 =cut
1248
1249 # Session and Repeat Submission Handling
1250 sub make_random_id {
1251     use Maypole::Session;
1252     return Maypole::Session::generate_unique_id();
1253 }
1254
1255 =back
1256
1257 =head1 SEQUENCE DIAGRAMS
1258
1259 See L<Maypole::Manual::Workflow> for a detailed discussion of the sequence of 
1260 calls during processing of a request. This is a brief summary:
1261
1262     INITIALIZATION
1263                                Model e.g.
1264          BeerDB           Maypole::Model::CDBI
1265            |                        |
1266    setup   |                        |
1267  o-------->||                       |
1268            || setup_model           |     setup_database() creates
1269            ||------+                |      a subclass of the Model
1270            |||<----+                |        for each table
1271            |||                      |                |
1272            |||   setup_database     |                |
1273            |||--------------------->|| 'create'      *
1274            |||                      ||----------> $subclass
1275            |||                      |                  |
1276            ||| load_model_subclass  |                  |
1277  foreach   |||------+  ($subclass)  |                  |
1278  $subclass ||||<----+               |    require       |
1279            ||||--------------------------------------->|
1280            |||                      |                  |
1281            |||   adopt($subclass)   |                  |
1282            |||--------------------->||                 |
1283            |                        |                  |
1284            |                        |                  |
1285            |-----+ init             |                  |
1286            ||<---+                  |                  |
1287            ||                       |     new          |     view_object: e.g.
1288            ||---------------------------------------------> Maypole::View::TT
1289            |                        |                  |          |
1290            |                        |                  |          |
1291            |                        |                  |          |
1292            |                        |                  |          |
1293            |                        |                  |          |
1294            
1295
1296
1297     HANDLING A REQUEST
1298
1299
1300           BeerDB                                Model  $subclass  view_object
1301             |                                      |       |         |
1302     handler |                                      |       |         |
1303   o-------->| new                                  |       |         |
1304             |-----> r:BeerDB                       |       |         |
1305             |         |                            |       |         |
1306             |         |                            |       |         |
1307             |         ||                           |       |         |
1308             |         ||-----+ parse_location      |       |         |
1309             |         |||<---+                     |       |         |
1310             |         ||                           |       |         |
1311             |         ||-----+ start_request_hook  |       |         |
1312             |         |||<---+                     |       |         |
1313             |         ||                           |       |         |
1314             |         ||-----+ get_session         |       |         |
1315             |         |||<---+                     |       |         |
1316             |         ||                           |       |         |
1317             |         ||-----+ get_user            |       |         |
1318             |         |||<---+                     |       |         |
1319             |         ||                           |       |         |
1320             |         ||-----+ handler_guts        |       |         |
1321             |         |||<---+                     |       |         |
1322             |         |||     class_of($table)     |       |         |
1323             |         |||------------------------->||      |         |
1324             |         |||       $subclass          ||      |         |
1325             |         |||<-------------------------||      |         |
1326             |         |||                          |       |         |
1327             |         |||-----+ is_model_applicable|       |         |
1328             |         ||||<---+                    |       |         |
1329             |         |||                          |       |         |
1330             |         |||-----+ call_authenticate  |       |         |
1331             |         ||||<---+                    |       |         |
1332             |         |||                          |       |         |
1333             |         |||-----+ additional_data    |       |         |
1334             |         ||||<---+                    |       |         |
1335             |         |||             process      |       |         |
1336             |         |||--------------------------------->||  fetch_objects
1337             |         |||                          |       ||-----+  |
1338             |         |||                          |       |||<---+  |
1339             |         |||                          |       ||        |
1340             |         |||                          |       ||   $action
1341             |         |||                          |       ||-----+  |
1342             |         |||                          |       |||<---+  |            
1343             |         |||         process          |       |         |
1344             |         |||------------------------------------------->|| template
1345             |         |||                          |       |         ||-----+
1346             |         |||                          |       |         |||<---+
1347             |         |||                          |       |         |
1348             |         ||     send_output           |       |         |
1349             |         ||-----+                     |       |         |
1350             |         |||<---+                     |       |         |
1351    $status  |         ||                           |       |         |
1352    <------------------||                           |       |         |
1353             |         |                            |       |         |
1354             |         X                            |       |         |           
1355             |                                      |       |         |
1356             |                                      |       |         |
1357             |                                      |       |         |
1358            
1359            
1360
1361 =head1 SEE ALSO
1362
1363 There's more documentation, examples, and information on our mailing lists
1364 at the Maypole web site:
1365
1366 L<http://maypole.perl.org/>
1367
1368 L<Maypole::Application>, L<Apache::MVC>, L<CGI::Maypole>.
1369
1370 =head1 AUTHOR
1371
1372 Maypole is currently maintained by Aaron Trevena, David Baird, Dave Howorth and
1373 Peter Speltz.
1374
1375 =head1 AUTHOR EMERITUS
1376
1377 Simon Cozens, C<simon#cpan.org>
1378
1379 Simon Flack maintained Maypole from 2.05 to 2.09
1380
1381 Sebastian Riedel, C<sri#oook.de> maintained Maypole from 1.99_01 to 2.04
1382
1383 =head1 THANKS TO
1384
1385 Sebastian Riedel, Danijel Milicevic, Dave Slack, Jesse Sheidlower, Jody Belka,
1386 Marcus Ramberg, Mickael Joanne, Randal Schwartz, Simon Flack, Steve Simms,
1387 Veljko Vidovic and all the others who've helped.
1388
1389 =head1 LICENSE
1390
1391 You may distribute this code under the same terms as Perl itself.
1392
1393 =cut
1394
1395 1;
1396
1397 __END__
1398
1399  =item register_cleanup($coderef)
1400
1401 Analogous to L<Apache>'s C<register_cleanup>. If an Apache request object is
1402 available, this call simply redispatches there. If not, the cleanup is
1403 registered in the Maypole request, and executed when the request is
1404 C<DESTROY>ed.
1405
1406 This method is only useful in persistent environments, where you need to ensure
1407 that some code runs when the request finishes, no matter how it finishes (e.g.
1408 after an unexpected error). 
1409
1410  =cut
1411
1412 {
1413     my @_cleanups;
1414
1415     sub register_cleanup
1416     {
1417         my ($self, $cleanup) = @_;
1418         
1419         die "register_cleanup() is an instance method, not a class method" 
1420             unless ref $self;
1421         die "Cleanup must be a coderef" unless ref($cleanup) eq 'CODE';
1422         
1423         if ($self->can('ar') && $self->ar)
1424         {
1425             $self->ar->register_cleanup($cleanup);
1426         }
1427         else
1428         {
1429             push @_cleanups, $cleanup;
1430         }
1431     }
1432
1433     sub DESTROY
1434     {
1435         my ($self) = @_;
1436         
1437         while (my $cleanup = shift @_cleanups)
1438         {
1439             eval { $cleanup->() };
1440             if ($@)
1441             {
1442                 warn "Error during request cleanup: $@";
1443             }
1444         }        
1445     }    
1446 }
1447