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