Poet::Mason(3pm) | User Contributed Perl Documentation | Poet::Mason(3pm) |
Poet::Mason -- Mason settings and enhancements for Poet
# In a conf file... mason: plugins: - Cache - TidyObjectFiles - +My::Mason::Plugin static_source: 1 static_source_touch_file: ${root}/data/purge.dat # Get the main Mason instance my $mason = Poet::Mason->instance(); # Create a new Mason object my $mason = Poet::Mason->new(...);
This is a Poet-specific Mason subclass. It sets up sane default settings, maintains a main Mason instance for handling web requests, and adds Poet-specific methods to $m (the Mason request object).
The Poet configuration entry 'mason', if any, will be treated as a hash of options that supplements and/or overrides the defaults above. If the hash contains 'extra_plugins', these will be added to the default plugins. e.g.
mason: static_source: 1 static_source_touch_file: ${root}/data/purge.dat extra_plugins: - AnotherFavoritePlugin
Poet inserts the following line at the top of of every compiled Mason component:
use Poet qw($conf $poet :web);
which means that $conf, $poet, and web utilities are available from every component.
Under Poet these additional web-related methods are available in the Mason request object, accessible in components via $m or elsewhere via "Mason::Request->current_request".
my $user_agent = $m->req->headers->header('User-Agent');
$m->res->content_type('text/plain');
$m->clear_and_abort(403);
This is equivalent to
$m->res->status(403); $m->clear_and_abort();
If a status is not provided, the methods work just as before.
$m->redirect("http://somesite.com", 302);
is equivalent to
$m->res->redirect("http://somesite.com", 302); $m->clear_and_abort();
$m->not_found();
is equivalent to
$m->clear_and_abort(404);
my $value = $m->session->{key}; $m->session->{key} = { some_complex => ['value'] };
method handle { my $data; # compute data somehow $m->send_json($data); }
"send_json" is a shortcut for
$m->clear_buffer; $m->print(JSON::XS::encode_json($data)); $m->res->content_type("application/json"); $m->abort();
Poet
Jonathan Swartz <swartz@pobox.com>
This software is copyright (c) 2012 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-06-18 | perl v5.34.0 |