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