X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FPlugin%2FStatic%2FSimple.pm;h=2cfe241233c029542fe6fbc698e1b6b3678979f1;hb=d925e93e969c28bd2d5634ebf1424dccea0db46c;hp=ac0977d794a47743fd81cd6e4be465486c087849;hpb=60c13c3b6a67b93b29fdfd9677fb12f923527eae;p=catagits%2FCatalyst-Plugin-Static-Simple.git diff --git a/lib/Catalyst/Plugin/Static/Simple.pm b/lib/Catalyst/Plugin/Static/Simple.pm index ac0977d..2cfe241 100644 --- a/lib/Catalyst/Plugin/Static/Simple.pm +++ b/lib/Catalyst/Plugin/Static/Simple.pm @@ -1,8 +1,6 @@ package Catalyst::Plugin::Static::Simple; -use strict; -use warnings; -use base qw/Class::Accessor::Fast Class::Data::Inheritable/; +use Moose::Role; use File::stat; use File::Spec (); use IO::File (); @@ -11,9 +9,10 @@ use MRO::Compat; our $VERSION = '0.26'; -__PACKAGE__->mk_accessors( qw/_static_file _static_debug_message/ ); +has _static_file => ( is => 'rw' ); +has _static_debug_message => ( is => 'rw', isa => 'Str' ); -sub prepare_action { +before prepare_action => sub { my $c = shift; my $path = $c->req->path; my $config = $c->config->{static}; @@ -58,11 +57,9 @@ sub prepare_action { # and does it exist? $c->_locate_static_file( $path ); } +}; - return $c->next::method(@_); -} - -sub dispatch { +override dispatch => sub { my $c = shift; return if ( $c->res->status != 200 ); @@ -74,20 +71,18 @@ sub dispatch { return $c->_serve_static; } else { - return $c->next::method(@_); + return super; } -} +}; -sub finalize { +before finalize => sub { my $c = shift; # display all log messages if ( $c->config->{static}{debug} && scalar @{$c->_debug_msg} ) { $c->log->debug( 'Static::Simple: ' . join q{ }, @{$c->_debug_msg} ); } - - return $c->next::method(@_); -} +}; sub setup { my $c = shift;