Maypole::Headers:
add() alias to push() (wishlist 14142)
Maypole:
- - empty session() attribute, and get_session() method added.
+ - session() attribute, and get_session() method (no-op)
+ - user() attribute, and get_user() method (no-op)
- get_session() now called during handler_guts() before authenticate()
- new preprocess_path() method added and called by parse_path(),
parse_path() will leave any properties set by preprocess_path() in
$config->uri_base("http://localhost/beerdb");
$config->template_root("/path/to/templates");
$config->rows_per_page(10);
- $config->display_tables([qw[beer brewery pub style]]);
+ $config->display_tables([qw/beer brewery pub style/]);
# table relationships
$config->relationships([
__PACKAGE__->mk_accessors(
qw( params query objects model_class template_args output path
args action template error document_encoding content_type table
- headers_in headers_out stash session)
+ headers_in headers_out stash session user)
);
__PACKAGE__->config( Maypole::Config->new() );
return $status unless $status == Maypole::Constants::OK();
$self->session($self->get_session);
+ $self->user($self->get_user);
$status = $self->handler_guts;
=item get_session
+Called immediately after C<start_request_hook()>.
+
+This method should return a session, which will be stored in the request's
+C<session> attribute.
+
The default method is empty.
=cut
sub get_session { }
+=item get_user
+
+Called immediately after C<get_session>.
+
+This method should return a user, which will be stored in the request's C<user>
+attribute.
+
+The default method is empty.
+
+=cut
+
+sub get_user {}
+
=item call_authenticate
This method first checks if the relevant model class
| | |
|-----+ init | |
||<---+ | |
- || | new | view_object: e.g
+ || | new | view_object: e.g.
||---------------------------------------------> Maypole::View::TT
| | | |
| | | |
| ||-----+ get_session | | |
| |||<---+ | | |
| || | | |
+ | ||-----+ get_user | | |
+ | |||<---+ | | |
+ | || | | |
| ||-----+ handler_guts | | |
| |||<---+ | | |
| ||| class_of($table) | | |
| ||| | | |
| |||-----+ additional_data | | |
| ||||<---+ | | |
- | ||| process | | fetch_objects
- | |||--------------------------------->||-----+ |
+ | ||| process | | |
+ | |||--------------------------------->|| fetch_objects
+ | ||| | ||-----+ |
| ||| | |||<---+ |
| ||| | || |
| ||| | || $action
| ||| | ||-----+ |
- | ||| | |||<---+ |
- | ||| | | |
+ | ||| | |||<---+ |
| ||| process | | |
| |||------------------------------------------->|| template
| ||| | | ||-----+
Handle repeat form submissions.\r
Implement internal_redirect().\r
Build a more sophisticated app for testing. \r
+Move class_of() to the controller - need to do this to support multiple models. \r
+Multiple model support.\r
\r
3.0\r
====\r
Encapsulate all request data in HTTP::Request object, and all response data \r
in HTTP::Response object\r
\r
+Look at HTTP::Body\r
+\r
+Easier file uploads - look at incorporating Mp::P::Upload\r
+\r
Add email handling - like Rails - via model plugins. \r
\r
An e-commerce model plugin would be nice - or proof of concept. \r