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