]> git.decadent.org.uk Git - maypole.git/blob - lib/Maypole.pm
Changed to throughout Maypole.pm.
[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
10 our $VERSION = '2.10';
11
12 # proposed privacy conventions:
13 # - no leading underscore     - public to custom application code and plugins
14 # - single leading underscore - private to the main Maypole stack - *not*
15 #     including plugins
16 # - double leading underscore - private to the current package
17
18 __PACKAGE__->mk_classdata($_) for qw( config init_done view_object );
19 __PACKAGE__->mk_accessors(
20     qw( params query objects model_class template_args output path
21         args action template error document_encoding content_type table
22         headers_in headers_out )
23 );
24 __PACKAGE__->config( Maypole::Config->new() );
25 __PACKAGE__->init_done(0);
26
27 sub debug { 0 }
28
29 sub setup 
30 {
31     my $calling_class = shift;
32     
33     $calling_class = ref $calling_class if ref $calling_class;
34     
35     my $config = $calling_class->config;
36     
37     $config->model || $config->model('Maypole::Model::CDBI');
38     
39     $config->model->require or die sprintf 
40         "Couldn't load the model class %s: %s", $config->model, $@;
41     
42     $config->model->setup_database($config, $calling_class, @_);
43     
44     foreach my $subclass ( @{ $config->classes } ) 
45     {
46         no strict 'refs';
47         unshift @{ $subclass . "::ISA" }, $config->model;
48         $config->model->adopt($subclass)
49           if $config->model->can("adopt");
50     }
51 }
52
53 sub init 
54 {
55     my $class  = shift;
56     my $config = $class->config;
57     $config->view || $config->view("Maypole::View::TT");
58     $config->view->require;
59     die "Couldn't load the view class " . $config->view . ": $@" if $@;
60     $config->display_tables
61       || $config->display_tables( $class->config->tables );
62     $class->view_object( $class->config->view->new );
63     $class->init_done(1);
64
65 }
66
67 sub new
68 {
69     my ($class) = @_;
70     
71     my $self = bless {
72         template_args => {},
73         config        => $class->config,
74     }, $class;
75     
76     return $self;
77 }
78
79 # handler() has a method attribute so that mod_perl will invoke
80 # BeerDB->handler() as a method rather than a plain function
81 # BeerDB::handler() and so this inherited implementation will be
82 # found. See e.g. "Practical mod_perl"  by Bekman & Cholet for
83 # more information <http://modperlbook.org/html/ch25_01.html>
84 sub handler : method 
85 {
86     # See Maypole::Workflow before trying to understand this.
87     my ($class, $req) = @_;
88     
89     $class->init unless $class->init_done;
90
91     my $self = $class->new;
92     
93     # initialise the request
94     $self->headers_out(Maypole::Headers->new);
95     $self->get_request($req);
96     $self->parse_location;
97     
98     my $status = $self->handler_guts;
99     
100     # moving this here causes unit test failures - need to check why
101     # before committing the move
102     #$status = $self->__call_process_view unless $self->output;
103     
104     return $status unless $status == OK;
105     
106     $self->send_output;
107     
108     return $status;
109 }
110
111 # The root of all evil
112 sub handler_guts 
113 {
114     my ($self) = @_;
115     
116     $self->__load_model;
117
118     my $applicable = __to_boolean( $self->is_applicable );
119     
120     $self->__setup_plain_template unless $applicable;
121     
122     # We authenticate every request, needed for proper session management
123     my $status;
124     
125     eval { $status = $self->call_authenticate };
126     
127     if ( my $error = $@ ) 
128     {
129         $status = $self->call_exception($error);
130         
131         if ( $status != OK ) 
132         {
133             warn "caught authenticate error: $error";
134             return $self->debug ? 
135                     $self->view_object->error($self, $error) : ERROR;
136         }
137     }
138     
139     if ( $self->debug and $status != OK and $status != DECLINED ) 
140     {
141         $self->view_object->error( $self,
142             "Got unexpected status $status from calling authentication" );
143     }
144     
145     return $status unless $status == OK;
146
147     # We run additional_data for every request
148     $self->additional_data;
149     
150     if ($applicable) 
151     {
152         eval { $self->model_class->process($self) };
153         
154         if ( my $error = $@ ) 
155         {
156             $status = $self->call_exception($error);
157             
158             if ( $status != OK ) 
159             {
160                 warn "caught model error: $error";
161                 return $self->debug ? 
162                     $self->view_object->error($self, $error) : ERROR;
163             }
164         }
165     }
166     
167     # less frequent path - perhaps output has been set to an error message
168     return OK if $self->output;
169     
170     # normal path - no output has been generated yet
171     return $self->__call_process_view;
172 }
173
174 # is_applicable() returned false, so set up a plain template. Model processing 
175 # will be skipped, but need to remove the model anyway so the template can't 
176 # access it. 
177 sub __setup_plain_template
178 {
179     my ($self) = @_;
180     
181     # It's just a plain template
182     $self->model_class(undef);
183     
184     my $path = $self->path;
185     $path =~ s{/$}{};    # De-absolutify
186     $self->path($path);
187     
188     $self->template($self->path);
189 }
190
191 # The model has been processed or skipped (if is_applicable returned false), 
192 # any exceptions have been handled, and there's no content in $self->output
193 sub __call_process_view
194 {
195     my ($self) = @_;
196     
197     my $status;
198     
199     eval { $status = $self->view_object->process($self) };
200     
201     if ( my $error = $@ ) 
202     {
203         $status = $self->call_exception($error);
204         
205         if ( $status != OK ) 
206         {
207             warn "caught view error: $error" if $self->debug;
208             return $self->debug ? 
209                 $self->view_object->error($self, $error) : ERROR;
210         }
211     }
212     
213     return $status;
214 }
215
216 sub __load_model
217 {
218     my ($self) = @_;
219     $self->model_class( $self->config->model->class_of($self, $self->table) );
220 }
221
222 # is_applicable() should return true or false, not OK or DECLINED, because 
223 # the return value is never used as the return value from handler(). There's 
224 # probably a lot of code out there supplying the return codes though, so
225 # instead of changing is_applicable() to return 0 or 1, the return value is
226 # passed through __to_boolean. I think it helps handler_guts() if we don't
227 # have multiple sets of return codes being checked for different things -drb.
228 sub is_applicable 
229 {
230     my ($self) = @_;
231     
232     my $config = $self->config;
233     
234     $config->ok_tables || $config->ok_tables( $config->display_tables );
235     
236     $config->ok_tables( { map { $_ => 1 } @{ $config->ok_tables } } )
237         if ref $config->ok_tables eq "ARRAY";
238       
239     my $table = $self->table;
240     
241     warn "We don't have that table ($table).\n"
242         . "Available tables are: "
243         . join( ",", @{ $config->display_tables } )
244             if $self->debug
245                 and not $config->ok_tables->{$table}
246                         and $self->action; # this is probably always true
247                         
248     return DECLINED unless exists $config->ok_tables->{$table};
249
250     # Is it public?
251     return DECLINED unless $self->model_class->is_public($self->action);
252     
253     return OK;
254 }
255
256 # *only* intended for translating the return code from is_applicable()
257 sub __to_boolean { $_[0] == OK ? 1 : 0 }
258
259 sub call_authenticate 
260 {
261     my ($self) = @_;
262
263     # Check if we have a model class with an authenticate() to delegate to
264     return $self->model_class->authenticate($self) 
265         if $self->model_class and $self->model_class->can('authenticate');
266     
267     # Interface consistency is a Good Thing - 
268     # the invocant and the argument may one day be different things 
269     # (i.e. controller and request), like they are when authenticate() 
270     # is called on a model class (i.e. model and request)
271     return $self->authenticate($self);   
272 }
273
274 sub call_exception 
275 {
276     my ($self, $error) = @_;
277
278     # Check if we have a model class with an exception() to delegate to
279     if ( $self->model_class && $self->model_class->can('exception') )
280     {
281         my $status = $self->model_class->exception( $self, $error );
282         return $status if $status == OK;
283     }
284     
285     return $self->exception($error);
286 }
287
288 sub additional_data { }
289
290 sub authenticate { return OK }
291
292 sub exception { return ERROR }
293
294 sub parse_path 
295 {
296     my ($self) = @_;
297     
298     $self->path || $self->path('frontpage');
299     
300     my @pi = grep {length} split '/', $self->path;
301     
302     $self->table(shift @pi);
303     
304     $self->action( shift @pi or 'index' );
305     
306     $self->args(\@pi);
307 }
308
309 # like CGI::param(), but read only 
310 sub param 
311
312     my ($self, $key) = @_;
313     
314     return keys %{$self->params} unless defined $key;
315     
316     return unless exists $self->params->{$key};
317     
318     my $val = $self->params->{$key};
319     
320     return ref $val ? @$val : ($val) if wantarray;
321         
322     return ref $val ? $val->[0] : $val;
323 }
324
325 sub get_template_root {'.'}
326 sub get_request       { }
327
328 sub parse_location {
329     die "Do not use Maypole directly; use Apache::MVC or similar";
330 }
331
332 sub send_output {
333     die "Do not use Maypole directly; use Apache::MVC or similar";
334 }
335
336 # Session and Repeat Submission Handling
337
338 sub make_random_id {
339     use Maypole::Session;
340     return Maypole::Session::generate_unique_id();
341 }
342
343 =head1 NAME
344
345 Maypole - MVC web application framework
346
347 =head1 SYNOPSIS
348
349 See L<Maypole::Application>.
350
351 =head1 DESCRIPTION
352
353 This documents the Maypole request object. See the L<Maypole::Manual>, for a
354 detailed guide to using Maypole.
355
356 Maypole is a Perl web application framework similar to Java's struts. It is 
357 essentially completely abstracted, and so doesn't know anything about
358 how to talk to the outside world.
359
360 To use it, you need to create a package which represents your entire
361 application. In our example above, this is the C<BeerDB> package.
362
363 This needs to first use L<Maypole::Application> which will make your package
364 inherit from the appropriate platform driver such as C<Apache::MVC> or
365 C<CGI::Maypole>, and then call setup.  This sets up the model classes and
366 configures your application. The default model class for Maypole uses
367 L<Class::DBI> to map a database to classes, but this can be changed by altering
368 configuration. (B<Before> calling setup.)
369
370 =head2 CLASS METHODS
371
372 =head3 config
373
374 Returns the L<Maypole::Config> object
375
376 =head3 setup
377
378     My::App->setup($data_source, $user, $password, \%attr);
379
380 Initialise the maypole application and model classes. Your application should
381 call this after setting configuration via L<"config">
382
383 =head3 init
384
385 You should not call this directly, but you may wish to override this to
386 add
387 application-specific initialisation.
388
389 =head3 new
390
391 Constructs a very minimal new Maypole request object.
392
393 =head3 view_object
394
395 Get/set the Maypole::View object
396
397 =head3 debug
398
399     sub My::App::debug {1}
400
401 Returns the debugging flag. Override this in your application class to
402 enable/disable debugging.
403
404 =head2 INSTANCE METHODS
405
406 =head3 parse_location
407
408 Turns the backend request (e.g. Apache::MVC, Maypole, CGI) into a
409 Maypole
410 request. It does this by setting the C<path>, and invoking C<parse_path>
411 and
412 C<parse_args>.
413
414 You should only need to define this method if you are writing a new
415 Maypole
416 backend.
417
418 =head3 path
419
420 Returns the request path
421
422 =head3 parse_path
423
424 Parses the request path and sets the C<args>, C<action> and C<table> 
425 properties
426
427 =head3 table
428
429 The table part of the Maypole request path
430
431 =head3 action
432
433 The action part of the Maypole request path
434
435 =head3 args
436
437 A list of remaining parts of the request path after table and action
438 have been
439 removed
440
441 =head3 headers_in
442
443 A L<Maypole::Headers> object containing HTTP headers for the request
444
445 =head3 headers_out
446
447 A L<HTTP::Headers> object that contains HTTP headers for the output
448
449 =head3 parse_args
450
451 Turns post data and query string paramaters into a hash of C<params>.
452
453 You should only need to define this method if you are writing a new
454 Maypole
455 backend.
456
457 =head3 param
458
459 An accessor for request parameters. It behaves similarly to CGI::param() for
460 accessing CGI parameters.
461
462 =head3 params
463
464 Returns a hash of request parameters. The source of the parameters may vary
465 depending on the Maypole backend, but they are usually populated from request
466 query string and POST data.
467
468 B<Note:> Where muliple values of a parameter were supplied, the
469 C<params> 
470 value
471 will be an array reference.
472
473 =head3 get_template_root
474
475 Implementation-specific path to template root.
476
477 You should only need to define this method if you are writing a new
478 Maypole
479 backend. Otherwise, see L<Maypole::Config/"template_root">
480
481 =head3 get_request
482
483 You should only need to define this method if you are writing a new
484 Maypole backend. It should return something that looks like an Apache
485 or CGI request object, it defaults to blank.
486
487
488 =head3 is_applicable
489
490 Returns a Maypole::Constant to indicate whether the request is valid.
491
492 The default implementation checks that C<$self-E<gt>table> is publicly
493 accessible
494 and that the model class is configured to handle the C<$self-E<gt>action>
495
496 =head3 authenticate
497
498 Returns a Maypole::Constant to indicate whether the user is
499 authenticated for
500 the Maypole request.
501
502 The default implementation returns C<OK>
503
504 =head3 model_class
505
506 Returns the perl package name that will serve as the model for the
507 request. It corresponds to the request C<table> attribute.
508
509 =head3 additional_data
510
511 Called before the model processes the request, this method gives you a
512 chance
513 to do some processing for each request, for example, manipulating
514 C<template_args>.
515
516 =head3 objects
517
518 Get/set a list of model objects. The objects will be accessible in the
519 view
520 templates.
521
522 If the first item in C<$self-E<gt>args> can be C<retrieve()>d by the model
523 class,
524 it will be removed from C<args> and the retrieved object will be added
525 to the
526 C<objects> list. See L<Maypole::Model> for more information.
527
528 =head3 template_args
529
530     $self->template_args->{foo} = 'bar';
531
532 Get/set a hash of template variables.
533
534 =head3 template
535
536 Get/set the template to be used by the view. By default, it returns
537 C<$self-E<gt>action>
538
539 =head3 exception
540
541 This method is called if any exceptions are raised during the
542 authentication 
543 or
544 model/view processing. It should accept the exception as a parameter and 
545 return
546 a Maypole::Constant to indicate whether the request should continue to
547 be
548 processed.
549
550 =head3 error
551
552 Get/set a request error
553
554 =head3 output
555
556 Get/set the response output. This is usually populated by the view
557 class. You
558 can skip view processing by setting the C<output>.
559
560 =head3 document_encoding
561
562 Get/set the output encoding. Default: utf-8.
563
564 =head3 content_type
565
566 Get/set the output content type. Default: text/html
567
568 =head3 send_output
569
570 Sends the output and additional headers to the user.
571
572 =head3 call_authenticate
573
574 This method first checks if the relevant model class
575 can authenticate the user, or falls back to the default
576 authenticate method of your Maypole application.
577
578
579 =head3 call_exception
580
581 This model is called to catch exceptions, first after authenticate, then after
582 processing the model class, and finally to check for exceptions from the view
583 class.
584
585 This method first checks if the relevant model class
586 can handle exceptions the user, or falls back to the default
587 exception method of your Maypole application.
588
589 =head3 make_random_id
590
591 returns a unique id for this request can be used to prevent or detect repeat
592 submissions.
593
594 =head3 handler
595
596 This method sets up the class if it's not done yet, sets some
597 defaults and leaves the dirty work to handler_guts.
598
599 =head3 handler_guts
600
601 This is the core of maypole. You don't want to know.
602
603 =head1 SEE ALSO
604
605 There's more documentation, examples, and a information on our mailing lists
606 at the Maypole web site:
607
608 L<http://maypole.perl.org/>
609
610 L<Maypole::Application>, L<Apache::MVC>, L<CGI::Maypole>.
611
612 =head1 AUTHOR
613
614 Maypole is currently maintained by Simon Flack C<simonflk#cpan.org>
615
616 =head1 AUTHOR EMERITUS
617
618 Simon Cozens, C<simon#cpan.org>
619
620 Sebastian Riedel, C<sri#oook.de> maintained Maypole from 1.99_01 to 2.04
621
622 =head1 THANKS TO
623
624 Sebastian Riedel, Danijel Milicevic, Dave Slack, Jesse Sheidlower, Jody Belka,
625 Marcus Ramberg, Mickael Joanne, Randal Schwartz, Simon Flack, Steve Simms,
626 Veljko Vidovic and all the others who've helped.
627
628 =head1 LICENSE
629
630 You may distribute this code under the same terms as Perl itself.
631
632 =cut
633
634 1;