Static::Simple, fixed warning in test, perlcritic tweaks
[catagits/Catalyst-Plugin-Static-Simple.git] / lib / Catalyst / Plugin / Static / Simple.pm
CommitLineData
d6d29b9b 1package Catalyst::Plugin::Static::Simple;
2
3use strict;
b06be085 4use warnings;
d6d29b9b 5use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
d6d29b9b 6use File::stat;
7use MIME::Types;
8use NEXT;
9
2cb3d585 10if ( Catalyst->VERSION le '5.33' ) {
11 require File::Slurp;
12}
13
14our $VERSION = '0.10';
d6d29b9b 15
2268e329 16__PACKAGE__->mk_classdata( qw/_static_mime_types/ );
b1d96e3e 17__PACKAGE__->mk_accessors( qw/_static_file
2268e329 18 _static_debug_message/ );
d6d29b9b 19
b1d96e3e 20# prepare_action is used to first check if the request path is a static file.
21# If so, we skip all other prepare_action steps to improve performance.
22sub prepare_action {
d6d29b9b 23 my $c = shift;
d6d29b9b 24 my $path = $c->req->path;
b1d96e3e 25
d6d29b9b 26 # is the URI in a static-defined path?
27 foreach my $dir ( @{ $c->config->{static}->{dirs} } ) {
b1d96e3e 28 my $re = ( $dir =~ /^qr\//xms ) ? eval $dir : qr/^${dir}/;
29 if ($@) {
30 $c->error( "Error compiling static dir regex '$dir': $@" );
31 }
d6d29b9b 32 if ( $path =~ $re ) {
33 if ( $c->_locate_static_file ) {
b06be085 34 $c->_debug_msg( 'from static directory' )
d6d29b9b 35 if ( $c->config->{static}->{debug} );
b1d96e3e 36 return;
d6d29b9b 37 } else {
38 $c->_debug_msg( "404: file not found: $path" )
39 if ( $c->config->{static}->{debug} );
40 $c->res->status( 404 );
b1d96e3e 41 return;
d6d29b9b 42 }
43 }
44 }
45
46 # Does the path have an extension?
b1d96e3e 47 if ( $path =~ /.*\.(\S{1,})$/xms ) {
d6d29b9b 48 # and does it exist?
b1d96e3e 49 return if ( $c->_locate_static_file );
d6d29b9b 50 }
51
82239955 52 return $c->NEXT::ACTUAL::prepare_action(@_);
d6d29b9b 53}
54
b1d96e3e 55# dispatch takes the file found during prepare_action and serves it
56sub dispatch {
57 my $c = shift;
58
2268e329 59 return if ( $c->res->status != 200 );
b1d96e3e 60
61 if ( $c->_static_file ) {
a28d35e9 62 if ( $c->config->{static}->{no_logs} && $c->log->can('abort') ) {
63 $c->log->abort( 1 );
64 }
b1d96e3e 65 return $c->_serve_static;
66 }
67 else {
82239955 68 return $c->NEXT::ACTUAL::dispatch(@_);
b1d96e3e 69 }
70}
71
72# finalize serves up final header information
d6d29b9b 73sub finalize {
74 my $c = shift;
75
76 # display all log messages
77 if ( $c->config->{static}->{debug} && scalar @{$c->_debug_msg} ) {
b06be085 78 $c->log->debug( 'Static::Simple: ' .
79 join q{ }, @{$c->_debug_msg} );
d6d29b9b 80 }
81
b1d96e3e 82 if ( $c->res->status =~ /^(1\d\d|[23]04)$/xms ) {
d6d29b9b 83 $c->res->headers->remove_content_headers;
84 return $c->finalize_headers;
85 }
b1d96e3e 86
82239955 87 return $c->NEXT::ACTUAL::finalize(@_);
d6d29b9b 88}
89
90sub setup {
91 my $c = shift;
92
93 $c->NEXT::setup(@_);
94
95 $c->config->{static}->{dirs} ||= [];
96 $c->config->{static}->{include_path} ||= [ $c->config->{root} ];
97 $c->config->{static}->{mime_types} ||= {};
2cb3d585 98 $c->config->{static}->{ignore_extensions} ||= [ qw/tt tt2 html xhtml/ ];
8cc672a2 99 $c->config->{static}->{ignore_dirs} ||= [];
d6d29b9b 100 $c->config->{static}->{debug} ||= $c->debug;
a28d35e9 101 if ( ! defined $c->config->{static}->{no_logs} ) {
102 $c->config->{static}->{no_logs} = 1;
103 }
d6d29b9b 104
105 # load up a MIME::Types object, only loading types with
106 # at least 1 file extension
2268e329 107 $c->_static_mime_types( MIME::Types->new( only_complete => 1 ) );
108
d6d29b9b 109 # preload the type index hash so it's not built on the first request
2268e329 110 $c->_static_mime_types->create_type_index;
d6d29b9b 111}
112
113# Search through all included directories for the static file
114# Based on Template Toolkit INCLUDE_PATH code
115sub _locate_static_file {
116 my $c = shift;
117
118 my $path = $c->req->path;
119
120 my @ipaths = @{ $c->config->{static}->{include_path} };
121 my $dpaths;
122 my $count = 64; # maximum number of directories to search
123
8cc672a2 124 DIR_CHECK:
d6d29b9b 125 while ( @ipaths && --$count) {
8cc672a2 126 my $dir = shift @ipaths || next DIR_CHECK;
d6d29b9b 127
128 if ( ref $dir eq 'CODE' ) {
129 eval { $dpaths = &$dir( $c ) };
130 if ($@) {
b06be085 131 $c->log->error( 'Static::Simple: include_path error: ' . $@ );
d6d29b9b 132 } else {
b06be085 133 unshift @ipaths, @$dpaths;
8cc672a2 134 next DIR_CHECK;
d6d29b9b 135 }
136 } else {
b1d96e3e 137 $dir =~ s/\/$//xms;
d6d29b9b 138 if ( -d $dir && -f $dir . '/' . $path ) {
8cc672a2 139
140 # do we need to ignore the file?
141 for my $ignore ( @{ $c->config->{static}->{ignore_dirs} } ) {
142 $ignore =~ s{/$}{};
143 if ( $path =~ /^$ignore\// ) {
144 $c->_debug_msg( "Ignoring directory `$ignore`" )
145 if ( $c->config->{static}->{debug} );
146 next DIR_CHECK;
147 }
148 }
149
150 # do we need to ignore based on extension?
151 for my $ignore_ext
152 ( @{ $c->config->{static}->{ignore_extensions} } ) {
153 if ( $path =~ /.*\.${ignore_ext}$/ixms ) {
154 $c->_debug_msg( "Ignoring extension `$ignore_ext`" )
155 if ( $c->config->{static}->{debug} );
156 next DIR_CHECK;
157 }
158 }
159
160 $c->_debug_msg( 'Serving ' . $dir . '/' . $path )
d6d29b9b 161 if ( $c->config->{static}->{debug} );
162 return $c->_static_file( $dir . '/' . $path );
163 }
164 }
165 }
166
2268e329 167 return;
d6d29b9b 168}
169
d6d29b9b 170sub _serve_static {
171 my $c = shift;
172
173 my $path = $c->req->path;
d6d29b9b 174 my $type = $c->_ext_to_type;
175
b1d96e3e 176 my $full_path = $c->_static_file;
b06be085 177 my $stat = stat $full_path;
d6d29b9b 178
179 # the below code all from C::P::Static
180 if ( $c->req->headers->if_modified_since ) {
181 if ( $c->req->headers->if_modified_since == $stat->mtime ) {
182 $c->res->status( 304 ); # Not Modified
183 $c->res->headers->remove_content_headers;
184 return 1;
185 }
186 }
2cb3d585 187
d6d29b9b 188 $c->res->headers->content_type( $type );
189 $c->res->headers->content_length( $stat->size );
190 $c->res->headers->last_modified( $stat->mtime );
2cb3d585 191
192 if ( Catalyst->VERSION le '5.33' ) {
193 # old File::Slurp method
194 my $content = File::Slurp::read_file( $full_path );
195 $c->res->output( $content );
196 }
197 else {
198 # new write method
199 open my $fh, '<', $full_path
200 or Catalyst::Exception->throw(
201 message => "Unable to open $full_path for reading" );
202 while ( $fh->read( my $buffer, 4096 ) ) {
203 $c->res->write( $buffer );
204 }
205 close $fh;
206 }
207
b1d96e3e 208 return 1;
209}
210
211# looks up the correct MIME type for the current file extension
212sub _ext_to_type {
213 my $c = shift;
b1d96e3e 214 my $path = $c->req->path;
b1d96e3e 215
216 if ( $path =~ /.*\.(\S{1,})$/xms ) {
217 my $ext = $1;
218 my $user_types = $c->config->{static}->{mime_types};
2268e329 219 my $type = $user_types->{$ext}
220 || $c->_static_mime_types->mimeTypeOf( $ext );
221 if ( $type ) {
b1d96e3e 222 $c->_debug_msg( "as $type" )
223 if ( $c->config->{static}->{debug} );
224 return $type;
225 }
226 else {
227 $c->_debug_msg( "as text/plain (unknown extension $ext)" )
228 if ( $c->config->{static}->{debug} );
229 return 'text/plain';
230 }
231 }
232 else {
233 $c->_debug_msg( 'as text/plain (no extension)' )
234 if ( $c->config->{static}->{debug} );
235 return 'text/plain';
236 }
d6d29b9b 237}
238
239sub _debug_msg {
240 my ( $c, $msg ) = @_;
241
2268e329 242 if ( !defined $c->_static_debug_message ) {
243 $c->_static_debug_message( [] );
b1d96e3e 244 }
d6d29b9b 245
b1d96e3e 246 if ( $msg ) {
2268e329 247 push @{ $c->_static_debug_message }, $msg;
b1d96e3e 248 }
d6d29b9b 249
2268e329 250 return $c->_static_debug_message;
d6d29b9b 251}
b1d96e3e 252
2531;
254__END__
255
256=head1 NAME
257
258Catalyst::Plugin::Static::Simple - Make serving static pages painless.
259
260=head1 SYNOPSIS
261
262 use Catalyst;
263 MyApp->setup( qw/Static::Simple/ );
264
265=head1 DESCRIPTION
266
267The Static::Simple plugin is designed to make serving static content in your
268application during development quick and easy, without requiring a single
269line of code from you.
270
271It will detect static files used in your application by looking for file
272extensions in the URI. By default, you can simply load this plugin and it
273will immediately begin serving your static files with the correct MIME type.
274The light-weight MIME::Types module is used to map file extensions to
275IANA-registered MIME types.
276
277Note that actions mapped to paths using periods (.) will still operate
278properly.
279
280You may further tweak the operation by adding configuration options, described
281below.
282
283=head1 ADVANCED CONFIGURATION
284
285Configuration is completely optional and is specified within
286MyApp->config->{static}. If you use any of these options, the module will
287probably feel less "simple" to you!
288
2de14076 289=head2 Aborting request logging
290
a28d35e9 291Since Catalyst 5.50, there has been added support for dropping logging for a
292request. This is enabled by default for static files, as static requests tend
293to clutter the log output. However, if you want logging of static requests,
294you can enable it by setting MyApp->config->{static}->{no_logs} to 0.
2de14076 295
2268e329 296=head2 Forcing directories into static mode
b1d96e3e 297
298Define a list of top-level directories beneath your 'root' directory that
299should always be served in static mode. Regular expressions may be
300specified using qr//.
301
302 MyApp->config->{static}->{dirs} = [
303 'static',
304 qr/^(images|css)/,
305 ];
306
fa43d6b5 307=head2 Including additional directories
b1d96e3e 308
309You may specify a list of directories in which to search for your static
310files. The directories will be searched in order and will return the first
311file found. Note that your root directory is B<not> automatically added to
312the search path when you specify an include_path. You should use
313MyApp->config->{root} to add it.
314
315 MyApp->config->{static}->{include_path} = [
316 '/path/to/overlay',
317 \&incpath_generator,
318 MyApp->config->{root}
319 ];
320
321With the above setting, a request for the file /images/logo.jpg will search
322for the following files, returning the first one found:
323
324 /path/to/overlay/images/logo.jpg
325 /dynamic/path/images/logo.jpg
326 /your/app/home/root/images/logo.jpg
327
328The include path can contain a subroutine reference to dynamically return a
329list of available directories. This method will receive the $c object as a
330parameter and should return a reference to a list of directories. Errors can
331be reported using die(). This method will be called every time a file is
332requested that appears to be a static file (i.e. it has an extension).
333
334For example:
335
336 sub incpath_generator {
337 my $c = shift;
338
339 if ( $c->session->{customer_dir} ) {
340 return [ $c->session->{customer_dir} ];
341 } else {
342 die "No customer dir defined.";
343 }
344 }
8cc672a2 345
346=head2 Ignoring certain types of files
347
348There are some file types you may not wish to serve as static files. Most
349important in this category are your raw template files. By default, files
2cb3d585 350with the extensions tt, tt2, html, and xhtml will be ignored by Static::Simple
351in the interest of security. If you wish to define your own extensions to
8cc672a2 352ignore, use the ignore_extensions option:
353
2cb3d585 354 MyApp->config->{static}->{ignore_extensions} = [ qw/tt tt2 html xhtml/ ];
8cc672a2 355
356=head2 Ignoring entire directories
357
358To prevent an entire directory from being served statically, you can use the
359ignore_dirs option. This option contains a list of relative directory paths
360to ignore. If using include_path, the path will be checked against every
361included path.
362
363 MyApp->config->{static}->{ignore_dirs} = [ qw/tmpl css/ ];
364
365For example, if combined with the above include_path setting, this
366ignore_dirs value will ignore the following directories if they exist:
367
368 /path/to/overlay/tmpl
369 /path/to/overlay/css
370 /dynamic/path/tmpl
371 /dynamic/path/css
372 /your/app/home/root/tmpl
373 /your/app/home/root/css
b1d96e3e 374
2268e329 375=head2 Custom MIME types
b1d96e3e 376
377To override or add to the default MIME types set by the MIME::Types module,
378you may enter your own extension to MIME type mapping.
379
380 MyApp->config->{static}->{mime_types} = {
381 jpg => 'image/jpg',
382 png => 'image/png',
383 };
2268e329 384
2268e329 385=head2 Bypassing other plugins
b1d96e3e 386
387This plugin checks for a static file in the prepare_action stage. If the
388request is for a static file, it will bypass all remaining prepare_action
389steps. This means that by placing Static::Simple before all other plugins,
390they will not execute when a static file is found. This can be helpful by
391skipping session cookie checks for example. Or, if you want some plugins
392to run even on static files, list them before Static::Simple.
393
394Currently, work done by plugins in any other prepare method will execute
395normally.
396
2268e329 397=head2 Debugging information
b1d96e3e 398
399Enable additional debugging information printed in the Catalyst log. This
400is automatically enabled when running Catalyst in -Debug mode.
401
402 MyApp->config->{static}->{debug} = 1;
2cb3d585 403
404=head1 USING WITH APACHE
405
406While Static::Simple will work just fine serving files through Catalyst in
407mod_perl, for increased performance, you may wish to have Apache handle the
408serving of your static files. To do this, simply use a dedicated directory
409for your static files and configure an Apache Location block for that
410directory. This approach is recommended for production installations.
411
412 <Location /static>
413 SetHandler default-handler
414 </Location>
b1d96e3e 415
d6d29b9b 416=head1 SEE ALSO
417
b1d96e3e 418L<Catalyst>, L<Catalyst::Plugin::Static>,
419L<http://www.iana.org/assignments/media-types/>
d6d29b9b 420
421=head1 AUTHOR
422
b1d96e3e 423Andy Grundman, <andy@hybridized.org>
d6d29b9b 424
fa43d6b5 425=head1 CONTRIBUTORS
426
427Marcus Ramberg, <mramberg@cpan.org>
428
d6d29b9b 429=head1 THANKS
430
431The authors of Catalyst::Plugin::Static:
432
433 Sebastian Riedel
434 Christian Hansen
435 Marcus Ramberg
436
437For the include_path code from Template Toolkit:
438
439 Andy Wardley
440
441=head1 COPYRIGHT
442
443This program is free software, you can redistribute it and/or modify it under
444the same terms as Perl itself.
445
446=cut