Group
Extension

Labyrinth-Paths/lib/Labyrinth/Paths.pm

package Labyrinth::Paths;

use warnings;
use strict;

our $VERSION = '0.03';

# -------------------------------------
# Library Modules

use IO::File;
use JSON::XS;
use Labyrinth;
use Labyrinth::Variables;

# -------------------------------------
# The Subs

=head1 NAME

Labyrinth::Paths - CGI path translation for Labyrinth

=head1 DESCRIPTION

Allow Labyrinth to translate CGI paths into internal settings and parameters.

=head1 FUNCTIONS

=head2 Constructor

=over 4

=item new()

Create a new path object.

=back

=cut

sub new {
    my ($class,$pathfile) = @_;

    # create an attributes hash
    my $atts = {
        pathfile => $pathfile || $settings{pathfile} || './pathfile.json'
    };

    # create the object
    bless $atts, $class;

    $atts->load;

    return $atts;
};

=head2 Methods

=head3 Handling Actions

=over 4

=item load( [$file] )

Load the given path file, which can be the default, or specified as a parameter.

=item parse()

Parse the current path and reset cgiparams and settings values as appropriate.

=back

=cut

sub load {
    my $self = shift;
    my $file = shift;

    if($file) {
        return  unless(-f $file);
        $self->{pathfile} = $file;
    } else {
        return  unless(-f $self->{pathfile});
    }

    my $fh = IO::File->new($self->{pathfile},'r') or return;
    local $/ = undef;
    my $json = <$fh>;
    $fh->close;

    eval {
        my $data = decode_json($json);
        $self->{data} = $data->{paths};
    };

    return;
}

sub parse {
    my $self = shift;

    my $path = $ENV{SCRIPT_URL} || $ENV{SCRIPT_NAME};
    return  unless($path);

    for my $data (@{$self->{data}}) {
        if($path =~ /$data->{path}/) {
            my @vars1 = ($1,$2,$3,$4,$5,$6,$7,$8,$9);
            my @vars2 = @{$data->{variables}};

            while(@vars1 && @vars2) {
                my $name = shift @vars2;
                $cgiparams{$name} = shift @vars1;
            }

            $cgiparams{$_} = $data->{cgiparams}{$_} for(keys %{$data->{cgiparams}});
            $settings{$_}  = $data->{settings}{$_}  for(keys %{$data->{settings}});

            return;
        }
    }
}

1;

__END__

=head1 SEE ALSO

L<Labyrinth>

=head1 AUTHOR

Barbie, <barbie@missbarbell.co.uk> for
Miss Barbell Productions, L<http://www.missbarbell.co.uk/>

=head1 COPYRIGHT & LICENSE

  Copyright (C) 2015 Barbie for Miss Barbell Productions
  All Rights Reserved.

  This distribution is free software; you can redistribute it and/or
  modify it under the Artistic License 2.0.

=cut


Powered by Groonga
Maintained by Kenichi Ishigaki <ishigaki@cpan.org>. If you find anything, submit it on GitHub.