/usr/share/perl5/Dancer/Plugin/FlashMessage.pm is in libdancer-plugin-flashmessage-perl 0.314-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | #
# This file is part of Dancer-Plugin-FlashMessage
#
# This software is copyright (c) 2011 by Damien "dams" Krotkine.
#
# This is free software; you can redistribute it and/or modify it under
# the same terms as the Perl 5 programming language system itself.
#
use strict;
use warnings;
package Dancer::Plugin::FlashMessage;
{
$Dancer::Plugin::FlashMessage::VERSION = '0.314';
}
# ABSTRACT: Dancer plugin to display temporary messages, so called "flash messages".
use Carp;
use Dancer ':syntax';
use Dancer::Plugin;
our $AUTHORITY = 'DAMS';
my $conf = plugin_setting;
my $token_name = $conf->{token_name} || 'flash';
my $session_hash_key = $conf->{session_hash_key} || '_flash';
my $session_engine;
register flash => sub ($;$) {
my ($key, $value) = @_;
$session_engine ||= engine 'session'
or croak __PACKAGE__ . " error2 : there is no session engine configured in the configuration. You need a session engine to be able to use this plugin";
my $flash = session($session_hash_key) || {};
@_ == 2 and $flash->{$key} = $value;
@_ == 1 and $value = delete $flash->{$key};
session $session_hash_key, $flash;
return $value;
};
hook before_template => sub {
shift->{$token_name} = { map { my $key = $_; my $value;
( $key, sub { defined $value and return $value;
my $flash = session($session_hash_key) || {};
$value = delete $flash->{$key};
session $session_hash_key, $flash;
return $value;
} );
} ( keys %{session($session_hash_key) || {} })
};
};
register_plugin;
1;
=pod
=head1 NAME
Dancer::Plugin::FlashMessage - Dancer plugin to display temporary messages, so called "flash messages".
=head1 VERSION
version 0.314
=head1 DESCRIPTION
This plugin helps you display temporary messages, so called "flash messages".
It provides a C<flash()> method to define the message. The plugin then takes
care of attaching the content to the session, propagating it to the templating
system, and then removing it from the session.
However, it's up to you to have a place in your views or layout where the
message will be displayed. But that's not too hard (see L<SYNOPSYS>).
Basically, the plugin gives you access to the 'flash' hash in your views. It
can be used to display flash messages.
By default, the plugin works using a decent configuration. However, you can
change the behaviour of the plugin. See L<CONFIGURATION>
=head1 NAME
Dancer::Plugin::FlashMessage - A plugin to display "flash messages" : short temporary messages
=head1 SYNOPSYS
Example with Template Toolkit
In your configuration, make sure you have session configured. Of course you can
use any session engine :
session: "simple"
In your index.tt view or in your layout :
<% IF flash.error %>
<div class=error> <% flash.error %> </div>
<% END %>
In your css :
.error { background: #CEE5F5; padding: 0.5em;
border: 1px solid #AACBE2; }
In your Dancer App :
package MyWebService;
use Dancer;
use Dancer::Plugin::FlashMessage;
get '/hello' => sub {
flash error => 'Error message';
template 'index';
};
=head1 METHODS
=head2 flash
# sets the flash message for the warning key
flash warning => 'some warning message';
# retrieves and removes the flash message for the warning key
my $warning_message = flash 'warning';
This method can take 1 or 2 parameters. When called with two parameters, it
sets the flash message for the given key.
When called with one parameter, it returns the value of the flash message of
the given key. The message is deleted from the flash hash in the session.
In both cases, C<flash> always returns the value;
=head1 IN YOUR TEMPLATE
After having set a flash message using C<flash> in your Dancer route, you can
access the flash message from within your template. The plugin provides you
with the C<flash> hashref, that you can access in your template, for example
like this :
<div class=error> <% flash.error %> </div>
When you use it in your template, the flash message is deleted. So next
time, C<flash.error> will not exist.
=head1 CONFIGURATION
With no configuration whatsoever, the plugin will work fine, thus contributing
to the I<keep it simple> motto of Dancer.
=head2 configuration default values
These are the default values. See below for a description of the keys
plugins:
FlashMessage:
token_name: flash
session_hash_key: _flash
=head2 configuration description
=over
=item token_name
The name of the template token that will contain the hash of flash messages.
B<Default> : C<flash>
=item session_hash_key
You probably don't need that, but this setting allows you to change the name of
the session key used to store the hash of flash messages. It may be useful in
the unlikely case where you have key name conflicts in your session. B<Default> :
C<_flash>
=back
=head1 COPYRIGHT
This software is copyright (c) 2011 by Damien "dams" Krotkine <dams@cpan.org>.
=head1 LICENCE
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=head1 AUTHORS
This module has been written by Damien "dams" Krotkine <dams@cpan.org>.
=head1 SEE ALSO
L<Dancer>
=head1 AUTHOR
Damien "dams" Krotkine
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by Damien "dams" Krotkine.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
__END__
|