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