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