Dancer::Session::YAML - YAML-file-based session backend for Dancer


Dancer documentation Contained in the Dancer distribution.

Index


Code Index:

NAME

Top

Dancer::Session::YAML - YAML-file-based session backend for Dancer

DESCRIPTION

Top

This module implements a session engine based on YAML files. Session are stored in a 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.

CONFIGURATION

Top

The setting session should be set to YAML in order to use this session engine in a Dancer application.

Files will be stored to the value of the setting session_dir, whose default value is 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"

METHODS

Top

reset

to avoid checking if the sessions directory exists everytime a new session is created, this module maintains a cache of session directories it has already created. 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 particulary 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.

DEPENDENCY

Top

This module depends on YAML.

AUTHOR

Top

This module has been written by Alexis Sukrieh, see the AUTHORS file for details.

SEE ALSO

Top

See Dancer::Session for details about session usage in route handlers.

COPYRIGHT

Top

LICENSE

Top

This module is free software and is released under the same terms as Perl itself.


Dancer documentation Contained in the Dancer distribution.

package Dancer::Session::YAML;

use strict;
use warnings;
use Carp;
use base 'Dancer::Session::Abstract';

use Dancer::Logger;
use Dancer::ModuleLoader;
use Dancer::Config 'setting';
use Dancer::FileUtils qw(path set_file_mode);
use File::Copy;
use File::Temp qw(tempfile);

# static

my %session_dir_initialized;

sub init {
    my $self = shift;
    $self->SUPER::init(@_);

    if (!keys %session_dir_initialized) {
        croak "YAML is needed and is not installed"
          unless Dancer::ModuleLoader->load('YAML');
    }

    # default value for session_dir
    setting('session_dir' => path(setting('appdir'), 'sessions'))
      if not defined setting('session_dir');

    my $session_dir = setting('session_dir');
    if (! exists $session_dir_initialized{$session_dir}) {
        $session_dir_initialized{$session_dir} = 1;
        # make sure session_dir exists
        if (!-d $session_dir) {
            mkdir $session_dir
              or croak "session_dir $session_dir cannot be created";
        }
        Dancer::Logger::core("session_dir : $session_dir");
    }
}

# create a new session and return the newborn object
# representing that session
sub create {
    my ($class) = @_;

    my $self = Dancer::Session::YAML->new;
    $self->flush;
    return $self;
}

# deletes the dir cache
sub reset {
    my ($class) = @_;
    %session_dir_initialized = ();
}

# Return the session object corresponding to the given id
sub retrieve {
    my ($class, $id) = @_;

    return unless -f yaml_file($id);
    return YAML::LoadFile(yaml_file($id));
}

# instance

sub yaml_file {
    my ($id) = @_;
    return path(setting('session_dir'), "$id.yml");
}

sub tmp_yaml_file {
    my ($id) = @_;
    return path(setting('session_dir'), "$id.tmp");
}

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 ( $fh, $tmpname ) =
      tempfile( $self->id . '.XXXXXXXX', DIR => setting('session_dir') );
    set_file_mode($fh);
    print {$fh} YAML::Dump($self);
    close $fh;
    move($tmpname, yaml_file($self->id));
    return $self;
}

1;
__END__