package Gantry::Plugins::Static; use File::Spec; use MIME::Types 'by_suffix'; use strict; use warnings; use base 'Exporter'; our @EXPORT = qw( do_static ); #----------------------------------------------------------- # do_static #----------------------------------------------------------- sub do_static { my( $self, @path ) = @_; $self->template_disable( 1 ); my @base_dirs = split( ":", $self->root() ); my $filename = pop( @path ); my $path = File::Spec->catfile( @path, $filename ); foreach ( @base_dirs ) { die "$path is a directory" if ( -d "${_}/$path" ); if ( -e "${_}/$path" ) { open( FH, "${_}/$path" ) or die $!; my $d; while( ) { $d .= $_; } my ( $mediatype, $encoding ) = by_suffix( $filename ); $self->content_type( ( $mediatype || 'text/plain' ) ); return( $d ); } } die "not found $path"; } 1; __END__ =head1 NAME Gantry::Plugins::Static - Static file method =head1 SYNOPSIS # ... use MyApp qw{ -Engine=CGI -TemplateEngine=TT Static }; or use Gantry::Plugins::Static; =head1 DESCRIPTION This plugins mixes in a method that will server a static file from disk. [app_rootp]/static/somefile.ext =head1 METHODS =over 4 =item do_static this method serves a static file from disk. =back =head1 SEE ALSO Gantry Gantry::Plugins =head1 AUTHOR Timotheus Keefer =head1 COPYRIGHT AND LICENSE Copyright (C) 2006 Timotheus Keefer This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.8.6 or, at your option, any later version of Perl 5 you may have available. =cut