Dancer
view release on metacpan or search on metacpan
lib/Dancer/Session/YAML.pm view on Meta::CPAN
return unless defined $session_file && -f $session_file;
open my $fh, '+<', $session_file or die "Can't open '$session_file': $!\n";
my $content = YAML::LoadFile($fh);
close $fh or die "Can't close '$session_file': $!\n";
return bless $content => ref($class) || $class;
}
# instance
sub yaml_file {
my $id = shift;
# Untaint Session ID before using it in file actions
# required when running under Perl Taint mode
$id =~ m/^([\d]*)$/;
return unless $1;
my $yaml_file = "$1.yml";
return path(setting('session_dir'), $yaml_file);
}
sub destroy {
my ($self) = @_;
use Dancer::Logger;
Dancer::Logger::core(
"trying to remove session file: " . yaml_file($self->id));
unlink yaml_file($self->id) if -f yaml_file($self->id);
}
sub flush {
my $self = shift;
my $session_file = yaml_file( $self->id );
atomic_write( setting('session_dir'), yaml_file($self->id), YAML::Dump($self) );
return $self;
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Dancer::Session::YAML - YAML-file-based session backend for Dancer
=head1 VERSION
version 1.3522
=head1 DESCRIPTION
This module implements a session engine based on YAML files. Session are stored
in a I<session_dir> as YAML files. The idea behind this module was to provide a
transparent session storage for the developer.
This backend is intended to be used in development environments, when looking
inside a session can be useful.
It's not recommended to use this session engine in production environments.
=head1 CONFIGURATION
The setting B<session> should be set to C<YAML> in order to use this session
engine in a Dancer application.
Files will be stored to the value of the setting C<session_dir>, whose default
value is C<appdir/sessions>.
Here is an example configuration that use this session engine and stores session
files in /tmp/dancer-sessions
session: "YAML"
session_dir: "/tmp/dancer-sessions"
=head1 METHODS
=head2 reset
To avoid checking if the sessions directory exists every time a new session is
created, this module maintains a cache of session directories it has already
created. C<reset> wipes this cache out, forcing a test for existence
of the sessions directory next time a session is created. It takes no argument.
This is particularly useful if you want to remove the sessions directory on the
system where your app is running, but you want this session engine to continue
to work without having to restart your application.
=head1 DEPENDENCY
This module depends on L<YAML>.
=head1 AUTHOR
This module has been written by Alexis Sukrieh, see the AUTHORS file for
details.
=head1 SEE ALSO
See L<Dancer::Session> for details about session usage in route handlers.
=head1 COPYRIGHT
This module is copyright (c) 2009 Alexis Sukrieh <sukria@sukria.net>
=head1 LICENSE
This module is free software and is released under the same terms as Perl
itself.
=head1 AUTHOR
Dancer Core Developers
=head1 COPYRIGHT AND LICENSE
( run in 1.234 second using v1.01-cache-2.11-cpan-39bf76dae61 )