]> git.decadent.org.uk Git - maypole.git/blob - lib/Maypole.pm
Empty session attribute, and get_session method added to Maypole.pm, get_session...
[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 __PACKAGE__->mk_classdata($_) for qw( config init_done view_object );
20 __PACKAGE__->mk_accessors(
21     qw( params query objects model_class template_args output path
22         args action template error document_encoding content_type table
23         headers_in headers_out stash session)
24 );
25 __PACKAGE__->config( Maypole::Config->new() );
26 __PACKAGE__->init_done(0);
27
28 sub debug { 0 }
29
30 sub setup 
31 {
32     my $calling_class = shift;
33     
34     $calling_class = ref $calling_class if ref $calling_class;
35     
36     my $config = $calling_class->config;
37     
38     $config->model || $config->model('Maypole::Model::CDBI');
39     
40     $config->model->require or die sprintf 
41         "Couldn't load the model class %s: %s", $config->model, $@;
42     
43     $config->model->setup_database($config, $calling_class, @_);
44     
45     foreach my $subclass ( @{ $config->classes } ) 
46     {
47         no strict 'refs';
48         unshift @{ $subclass . "::ISA" }, $config->model;
49         $config->model->adopt($subclass)
50           if $config->model->can("adopt");
51     }
52 }
53
54 sub init 
55 {
56     my $class  = shift;
57     my $config = $class->config;
58     $config->view || $config->view("Maypole::View::TT");
59     $config->view->require;
60     die "Couldn't load the view class " . $config->view . ": $@" if $@;
61     $config->display_tables
62       || $config->display_tables( $class->config->tables );
63     $class->view_object( $class->config->view->new );
64     $class->init_done(1);
65
66 }
67
68 sub new
69 {
70     my ($class) = @_;
71     
72     my $self = bless {
73         template_args => {},
74         config        => $class->config,
75     }, $class;
76     
77     return $self;
78 }
79
80 # handler() has a method attribute so that mod_perl will invoke
81 # BeerDB->handler() as a method rather than a plain function
82 # BeerDB::handler() and so this inherited implementation will be
83 # found. See e.g. "Practical mod_perl"  by Bekman & Cholet for
84 # more information <http://modperlbook.org/html/ch25_01.html>
85 sub handler : method 
86 {
87     # See Maypole::Workflow before trying to understand this.
88     my ($class, $req) = @_;
89     
90     $class->init unless $class->init_done;
91
92     my $self = $class->new;
93     
94     # initialise the request
95     $self->headers_out(Maypole::Headers->new);
96     $self->get_request($req);
97     $self->parse_location;
98     
99     my $status = $self->handler_guts;
100     
101     # moving this here causes unit test failures - need to check why
102     # before committing the move
103     #$status = $self->__call_process_view unless $self->output;
104     
105     return $status unless $status == OK;
106     
107     $self->send_output;
108     
109     return $status;
110 }
111
112 # The root of all evil
113 sub handler_guts 
114 {
115     my ($self) = @_;
116     
117     $self->__load_model;
118
119     my $applicable = $self->is_model_applicable;
120     
121     $self->__setup_plain_template unless $applicable;
122
123     $self->session($self->call_get_session);
124     
125     my $status;
126
127     eval { $status = $self->call_authenticate };
128     
129     if ( my $error = $@ ) 
130     {
131         $status = $self->call_exception($error);
132         
133         if ( $status != OK ) 
134         {
135             warn "caught authenticate error: $error";
136             return $self->debug ? 
137                     $self->view_object->error($self, $error) : ERROR;
138         }
139     }
140     
141     if ( $self->debug and $status != OK and $status != DECLINED ) 
142     {
143         $self->view_object->error( $self,
144             "Got unexpected status $status from calling authentication" );
145     }
146     
147     return $status unless $status == OK;
148
149     # We run additional_data for every request
150     $self->additional_data;
151     
152     if ($applicable) 
153     {
154         eval { $self->model_class->process($self) };
155         
156         if ( my $error = $@ ) 
157         {
158             $status = $self->call_exception($error);
159             
160             if ( $status != OK ) 
161             {
162                 warn "caught model error: $error";
163                 return $self->debug ? 
164                     $self->view_object->error($self, $error) : ERROR;
165             }
166         }
167     }
168     
169     # less frequent path - perhaps output has been set to an error message
170     return OK if $self->output;
171     
172     # normal path - no output has been generated yet
173     return $self->__call_process_view;
174 }
175
176 # is_applicable() returned false, so set up a plain template. Model processing 
177 # will be skipped, but need to remove the model anyway so the template can't 
178 # access it. 
179 sub __setup_plain_template
180 {
181     my ($self) = @_;
182     
183     # It's just a plain template
184     $self->model_class(undef);
185     
186     my $path = $self->path;
187     $path =~ s{/$}{};    # De-absolutify
188     $self->path($path);
189     
190     $self->template($self->path);
191 }
192
193 # The model has been processed or skipped (if is_applicable returned false), 
194 # any exceptions have been handled, and there's no content in $self->output
195 sub __call_process_view
196 {
197     my ($self) = @_;
198     
199     my $status;
200     
201     eval { $status = $self->view_object->process($self) };
202     
203     if ( my $error = $@ ) 
204     {
205         $status = $self->call_exception($error);
206         
207         if ( $status != OK ) 
208         {
209             warn "caught view error: $error" if $self->debug;
210             return $self->debug ? 
211                 $self->view_object->error($self, $error) : ERROR;
212         }
213     }
214     
215     return $status;
216 }
217
218 sub __load_model
219 {
220     my ($self) = @_;
221     $self->model_class( $self->config->model->class_of($self, $self->table) );
222 }
223
224 # is_applicable() should return true or false, not OK or DECLINED, because 
225 # the return value is never used as the return value from handler(). There's 
226 # probably a lot of code out there supplying the return codes though, so
227 # instead of changing is_applicable() to return 0 or 1, the return value is
228 # passed through __to_boolean. I think it helps handler_guts() if we don't
229 # have multiple sets of return codes being checked for different things -drb.
230 sub is_model_applicable 
231 {
232     my ($self) = @_;
233     
234     # cater for applications that are using obsolete version
235     if ($self->can('is_applicable')) 
236     {
237         warn "DEPRECATION WARNING: rewrite is_applicable to the interface ".
238                 "of Maypole::is_model_applicable\n";
239         return $self->is_applicable == OK;
240     }
241
242     # Establish which tables should be processed by the model
243     my $config = $self->config;
244     
245     $config->ok_tables || $config->ok_tables( $config->display_tables );
246     
247     $config->ok_tables( { map { $_ => 1 } @{ $config->ok_tables } } )
248         if ref $config->ok_tables eq "ARRAY";
249         
250     my $ok_tables = $config->ok_tables;
251       
252     # Does this request concern a table to be processed by the model?
253     my $table = $self->table;
254     
255     my $ok = 0;
256     
257     if (exists $ok_tables->{$table}) 
258     {
259         $ok = 1;
260     } 
261 # implements tj's default_table_view(), but there's no _default_table_view()
262 # or _have_default_table_view() yet
263 #    else 
264 #    {
265 #        $ok = $self->default_table_view($self->path, $self->args)
266 #            if $self->_have_default_table_view;
267 #    }
268
269     if (not $ok) 
270     {
271         warn "We don't have that table ($table).\n"
272             . "Available tables are: "
273             . join( ",", keys %$ok_tables )
274                 if $self->debug and not $ok_tables->{$table};
275                 
276         return 0;
277     }
278     
279     # Is the action public?
280     my $action = $self->action;
281     return 1 if $self->model_class->is_public($action);
282     
283     warn "The action '$action' is not applicable to the table $table"
284         if $self->debug;
285     
286     return 0;
287 }
288
289 sub call_authenticate 
290 {
291     my ($self) = @_;
292
293     # Check if we have a model class with an authenticate() to delegate to
294     return $self->model_class->authenticate($self) 
295         if $self->model_class and $self->model_class->can('authenticate');
296     
297     # Interface consistency is a Good Thing - 
298     # the invocant and the argument may one day be different things 
299     # (i.e. controller and request), like they are when authenticate() 
300     # is called on a model class (i.e. model and request)
301     return $self->authenticate($self);   
302 }
303
304 sub call_get_session {
305    my ($self) = @_;
306    return $self->get_session($self);
307 }
308
309 sub call_exception 
310 {
311     my ($self, $error) = @_;
312
313     # Check if we have a model class with an exception() to delegate to
314     if ( $self->model_class && $self->model_class->can('exception') )
315     {
316         my $status = $self->model_class->exception( $self, $error );
317         return $status if $status == OK;
318     }
319     
320     return $self->exception($error);
321 }
322
323 sub default_table_view {
324   my ($self,$path,$args) = @_;
325   my $path_is_ok = 0;
326   my $default_table_view = __PACKAGE__->_default_table_view;
327   # (path class action field)
328   my @path = $self->{path} =~ m{([^/]+)/?}g;
329   my $search_value = shift(@path);
330   if ($default_table_view->{path}) {
331     if ($default_table_view->{path} eq $search_value) {
332       $search_value = shift(@path);
333     } else {
334       return 0;
335     }
336   }
337
338   $self->{table} = $default_table_view->{class};
339   $self->{action} = $default_table_view->{action};
340   $self->{args} = [ $search_value,@path ];
341   return $path_is_ok;
342 }
343
344 sub additional_data { }
345
346 sub authenticate { return OK }
347
348 sub get_session { }
349
350 sub exception { return ERROR }
351
352 sub preprocess_path { };
353
354 sub parse_path 
355 {
356     my ($self) = @_;
357     
358     $self->preprocess_path;
359
360     $self->path || $self->path('frontpage');
361     
362     my @pi = grep {length} split '/', $self->path;
363     
364     $self->table || $self->table(shift @pi);
365     
366     $self->action || $self->action( shift @pi or 'index' );
367     
368     $self->args || $self->args(\@pi);
369 }
370
371
372 sub make_path
373 {
374     my $r = shift;
375     
376     my %args;
377     
378     if (@_ == 1 and ref $_[0] and ref $_[0] eq 'HASH')
379     {
380         %args = %{$_[0]};
381     }
382     elsif ( @_ > 1 and @_ < 4 )
383     {
384         $args{table}      = shift;
385         $args{action}     = shift;
386         $args{additional} = shift;
387     }
388     else
389     {
390         %args = @_;
391     }
392     
393     do { die "no $_" unless $args{$_} } for qw( table action );    
394
395     my $additional = $args{additional} || $args{id};
396     
397     my @add = ();
398     
399     if ($additional)
400     {
401         # if $additional is a href, make_uri() will transform it into a query
402         @add = (ref $additional eq 'ARRAY') ? @$additional : ($additional);
403     }    
404     
405     my $uri = $r->make_uri($args{table}, $args{action}, @add);
406     
407     return $uri->as_string;
408 }
409
410 sub make_uri
411 {
412     my ($r, @segments) = @_;
413
414     my $query = (ref $segments[-1] eq 'HASH') ? pop(@segments) : undef;
415     
416     my $base = $r->config->uri_base; 
417     $base =~ s|/$||;
418     
419     my $uri = URI->new($base);
420     $uri->path_segments($uri->path_segments, grep {length} @segments);
421     
422     my $abs_uri = $uri->abs('/');
423     $abs_uri->query_form($query) if $query;
424     return $abs_uri;
425 }
426
427
428 # like CGI::param(), but read only 
429 sub param 
430
431     my ($self, $key) = @_;
432     
433     return keys %{$self->params} unless defined $key;
434     
435     return unless exists $self->params->{$key};
436     
437     my $val = $self->params->{$key};
438     
439     return ref $val ? @$val : ($val) if wantarray;
440         
441     return ref $val ? $val->[0] : $val;
442 }
443
444 sub get_template_root {'.'}
445 sub get_request       { }
446
447 sub get_protocol {
448   die "get_protocol is a virtual method. Do not use Maypole directly; use Apache::MVC or similar";
449 }
450
451 sub parse_location {
452     die "parse_location is a virtual method. Do not use Maypole directly; use Apache::MVC or similar";
453 }
454
455 sub redirect_request {
456   die "parse_location is a virtual method. Do not use Maypole directly; use Apache::MVC or similar";
457 }
458
459 sub redirect_internal_request {
460
461 }
462
463 sub send_output {
464     die "send_output is a virtual method. Do not use Maypole directly; use Apache::MVC or similar";
465 }
466
467 # Session and Repeat Submission Handling
468
469 sub make_random_id {
470     use Maypole::Session;
471     return Maypole::Session::generate_unique_id();
472 }
473
474 =head1 NAME
475
476 Maypole - MVC web application framework
477
478 =head1 SYNOPSIS
479
480 See L<Maypole::Application>.
481
482 =head1 DESCRIPTION
483
484 This documents the Maypole request object. See the L<Maypole::Manual>, for a
485 detailed guide to using Maypole.
486
487 Maypole is a Perl web application framework similar to Java's struts. It is 
488 essentially completely abstracted, and so doesn't know anything about
489 how to talk to the outside world.
490
491 To use it, you need to create a package which represents your entire
492 application. In our example above, this is the C<BeerDB> package.
493
494 This needs to first use L<Maypole::Application> which will make your package
495 inherit from the appropriate platform driver such as C<Apache::MVC> or
496 C<CGI::Maypole>, and then call setup.  This sets up the model classes and
497 configures your application. The default model class for Maypole uses
498 L<Class::DBI> to map a database to classes, but this can be changed by altering
499 configuration. (B<Before> calling setup.)
500
501 =head2 CLASS METHODS
502
503 =head3 config
504
505 Returns the L<Maypole::Config> object
506
507 =head3 setup
508
509     My::App->setup($data_source, $user, $password, \%attr);
510
511 Initialise the maypole application and model classes. Your application should
512 call this after setting configuration via L<"config">
513
514 =head3 init
515
516 You should not call this directly, but you may wish to override this to
517 add
518 application-specific initialisation.
519
520 =head3 new
521
522 Constructs a very minimal new Maypole request object.
523
524 =head3 view_object
525
526 Get/set the Maypole::View object
527
528 =head3 debug
529
530     sub My::App::debug {1}
531
532 Returns the debugging flag. Override this in your application class to
533 enable/disable debugging.
534
535 =head2 INSTANCE METHODS
536
537 =head3 parse_location
538
539 Turns the backend request (e.g. Apache::MVC, Maypole, CGI) into a
540 Maypole
541 request. It does this by setting the C<path>, and invoking C<parse_path>
542 and
543 C<parse_args>.
544
545 You should only need to define this method if you are writing a new
546 Maypole
547 backend.
548
549 =head3 path
550
551 Returns the request path
552
553 =head3 parse_path
554
555 Parses the request path and sets the C<args>, C<action> and C<table>
556 properties. Calls preprocess_path before parsing path and setting properties.
557
558 =head3 make_path( %args or \%args or @args )
559
560 This is the counterpart to C<parse_path>. It generates a path to use
561 in links, form actions etc. To implement your own path scheme, just override
562 this method and C<parse_path>.
563
564     %args = ( table      => $table,
565               action     => $action,        
566               additional => $additional,    # optional - generally an object ID
567               );
568               
569     \%args = as above, but a ref
570     
571     @args = ( $table, $action, $additional );   # $additional is optional
572
573 C<id> can be used as an alternative key to C<additional>.
574
575 C<$additional> can be a string, an arrayref, or a hashref. An arrayref is
576 expanded into extra path elements, whereas a hashref is translated into a query
577 string. 
578
579 =head3 preprocess_path
580
581 Sometimes when you don't want to rewrite or over-ride parse_path but
582 want to rewrite urls or extract data from them before it is parsed.
583
584 This method is called after parse_location has populated the request
585 information and before parse_path has populated the model and action
586 information, and is passed the request object.
587
588 You can set action, args or table in this method and parse_path will
589 then leave those values in place or populate them if not present
590
591 =head3 make_uri( @segments )
592
593 Make a L<URI> object given table, action etc. Automatically adds
594 the C<uri_base>. 
595
596 If the final element in C<@segments> is a hash ref, C<make_uri> will render it
597 as a query string.
598
599 =head3 table
600
601 The table part of the Maypole request path
602
603 =head3 action
604
605 The action part of the Maypole request path
606
607 =head3 args
608
609 A list of remaining parts of the request path after table and action
610 have been
611 removed
612
613 =head3 headers_in
614
615 A L<Maypole::Headers> object containing HTTP headers for the request
616
617 =head3 headers_out
618
619 A L<HTTP::Headers> object that contains HTTP headers for the output
620
621 =head3 parse_args
622
623 Turns post data and query string paramaters into a hash of C<params>.
624
625 You should only need to define this method if you are writing a new
626 Maypole
627 backend.
628
629 =head3 param
630
631 An accessor for request parameters. It behaves similarly to CGI::param() for
632 accessing CGI parameters.
633
634 =head3 params
635
636 Returns a hash of request parameters. The source of the parameters may vary
637 depending on the Maypole backend, but they are usually populated from request
638 query string and POST data.
639
640 B<Note:> Where muliple values of a parameter were supplied, the
641 C<params> 
642 value
643 will be an array reference.
644
645 =head3 get_template_root
646
647 Implementation-specific path to template root.
648
649 You should only need to define this method if you are writing a new
650 Maypole
651 backend. Otherwise, see L<Maypole::Config/"template_root">
652
653 =head3 get_request
654
655 You should only need to define this method if you are writing a new
656 Maypole backend. It should return something that looks like an Apache
657 or CGI request object, it defaults to blank.
658
659 =head3 default_table_view
660
661 =head3 is_applicable
662
663 Returns a Maypole::Constant to indicate whether the request is valid.
664
665 B<This method is deprecated> as of version 2.11. If you have overridden it,
666 please override C<is_model_applicable> instead, and change the return type
667 from Maypole:Constants to true/false.
668
669 =head3 is_model_applicable
670
671 Returns true or false to indicate whether the request is valid.
672
673 The default implementation checks that C<< $r->table >> is publicly
674 accessible and that the model class is configured to handle the
675 C<< $r->action >>.
676
677 =head3 authenticate
678
679 Returns a Maypole::Constant to indicate whether the user is
680 authenticated for
681 the Maypole request.
682
683 The default implementation returns C<OK>
684
685 =head3 model_class
686
687 Returns the perl package name that will serve as the model for the
688 request. It corresponds to the request C<table> attribute.
689
690 =head3 additional_data
691
692 Called before the model processes the request, this method gives you a
693 chance
694 to do some processing for each request, for example, manipulating
695 C<template_args>.
696
697 =head3 objects
698
699 Get/set a list of model objects. The objects will be accessible in the
700 view
701 templates.
702
703 If the first item in C<$self-E<gt>args> can be C<retrieve()>d by the model
704 class,
705 it will be removed from C<args> and the retrieved object will be added
706 to the
707 C<objects> list. See L<Maypole::Model> for more information.
708
709 =head3 template_args
710
711     $self->template_args->{foo} = 'bar';
712
713 Get/set a hash of template variables.
714
715 =head3 stash
716
717 A place to put custom application data. Not used by Maypole itself. 
718
719 =head3 template
720
721 Get/set the template to be used by the view. By default, it returns
722 C<$self-E<gt>action>
723
724 =head3 exception
725
726 This method is called if any exceptions are raised during the
727 authentication 
728 or
729 model/view processing. It should accept the exception as a parameter and 
730 return
731 a Maypole::Constant to indicate whether the request should continue to
732 be
733 processed.
734
735 =head3 error
736
737 Get/set a request error
738
739 =head3 output
740
741 Get/set the response output. This is usually populated by the view
742 class. You
743 can skip view processing by setting the C<output>.
744
745 =head3 document_encoding
746
747 Get/set the output encoding. Default: utf-8.
748
749 =head3 content_type
750
751 Get/set the output content type. Default: text/html
752
753 =head3 send_output
754
755 Sends the output and additional headers to the user.
756
757 =head3 call_authenticate
758
759 This method first checks if the relevant model class
760 can authenticate the user, or falls back to the default
761 authenticate method of your Maypole application.
762
763
764 =head3 call_exception
765
766 This model is called to catch exceptions, first after authenticate, then after
767 processing the model class, and finally to check for exceptions from the view
768 class.
769
770 This method first checks if the relevant model class
771 can handle exceptions the user, or falls back to the default
772 exception method of your Maypole application.
773
774 =head3 make_random_id
775
776 returns a unique id for this request can be used to prevent or detect repeat
777 submissions.
778
779 =head3 get_protocol
780
781 Returns the protocol the request was made with, i.e. https
782
783 =head3 redirect_request
784
785 Sets output headers to redirect based on the arguments provided
786
787 Accepts either a single argument of the full url to redirect to, or a hash of named parameters :
788
789 $r->redirect_request('http://www.example.com/path');
790
791 or
792
793 $r->redirect_request(protocol=>'https', domain=>'www.example.com', path=>'/path/file?arguments', status=>'302', url=>'..');
794
795 The named parameters are protocol, domain, path, status and url
796
797 Only 1 named parameter is required but other than url, they can be combined as required and current values (from the request) will be used in place of any missing arguments. The url argument must be a full url including protocol and can only be combined with status.
798
799 =head3 redirect_internal_request 
800
801 =head3 handler
802
803 This method sets up the class if it's not done yet, sets some
804 defaults and leaves the dirty work to handler_guts.
805
806 =head3 handler_guts
807
808 This is the main request handling method and calls various methods to handle the request/response
809 and defines the workflow within Maypole.
810
811 Currently undocumented and liable to be refactored without warning.
812
813 =head1 SEE ALSO
814
815 There's more documentation, examples, and a information on our mailing lists
816 at the Maypole web site:
817
818 L<http://maypole.perl.org/>
819
820 L<Maypole::Application>, L<Apache::MVC>, L<CGI::Maypole>.
821
822 =head1 AUTHOR
823
824 Maypole is currently maintained by Aaron Trevena
825
826 =head1 AUTHOR EMERITUS
827
828 Simon Cozens, C<simon#cpan.org>
829
830 Sebastian Riedel, C<sri#oook.de> maintained Maypole from 1.99_01 to 2.04
831
832 =head1 THANKS TO
833
834 Sebastian Riedel, Danijel Milicevic, Dave Slack, Jesse Sheidlower, Jody Belka,
835 Marcus Ramberg, Mickael Joanne, Randal Schwartz, Simon Flack, Steve Simms,
836 Veljko Vidovic and all the others who've helped.
837
838 =head1 LICENSE
839
840 You may distribute this code under the same terms as Perl itself.
841
842 =cut
843
844 1;