827b2523d751f7faff48dbcfcf69a7f967ebe846
[catagits/Catalyst-Plugin-Static-Simple.git] / lib / Catalyst / Plugin / Static / Simple.pm
1 package Catalyst::Plugin::Static::Simple;
2
3 use strict;
4 use warnings;
5 use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
6 use File::stat;
7 use File::Spec ();
8 use IO::File ();
9 use MIME::Types ();
10 use MRO::Compat;
11
12 our $VERSION = '0.21';
13
14 __PACKAGE__->mk_accessors( qw/_static_file _static_debug_message/ );
15
16 my $CONFIG_KEY = "Plugin::Static::Simple";
17
18 sub prepare_action {
19     my $c = shift;
20     my $path = $c->req->path;
21     my $config = $c->config->{$CONFIG_KEY} ||= $c->config->{static};
22     
23     $path =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg;
24
25     # is the URI in a static-defined path?
26     foreach my $dir ( @{ $config->{dirs} } ) {
27         my $dir_re = quotemeta $dir;
28         
29         # strip trailing slashes, they'll be added in our regex
30         $dir_re =~ s{/$}{};
31         
32         my $re = ( $dir =~ m{^qr/}xms ) ? eval $dir : qr{^${dir_re}/};
33         if ($@) {
34             $c->error( "Error compiling static dir regex '$dir': $@" );
35         }
36         if ( $path =~ $re ) {
37             if ( $c->_locate_static_file( $path, 1 ) ) {
38                 $c->_debug_msg( 'from static directory' )
39                     if $config->{debug};
40             } else {
41                 $c->_debug_msg( "404: file not found: $path" )
42                     if $config->{debug};
43                 $c->res->status( 404 );
44                 $c->res->content_type( 'text/html' );
45             }
46         }
47     }
48     
49     # Does the path have an extension?
50     if ( $path =~ /.*\.(\S{1,})$/xms ) {
51         # and does it exist?
52         $c->_locate_static_file( $path );
53     }
54     
55     return $c->next::method(@_);
56 }
57
58 sub dispatch {
59     my $c = shift;
60     
61     return if ( $c->res->status != 200 );
62     
63     if ( $c->_static_file ) {
64         if ( $c->config->{$CONFIG_KEY}{no_logs} && $c->log->can('abort') ) {
65            $c->log->abort( 1 );
66         }
67         return $c->_serve_static;
68     }
69     else {
70         return $c->next::method(@_);
71     }
72 }
73
74 sub finalize {
75     my $c = shift;
76     
77     # display all log messages
78     if ( $c->config->{$CONFIG_KEY}{debug} && scalar @{$c->_debug_msg} ) {
79         $c->log->debug( 'Static::Simple: ' . join q{ }, @{$c->_debug_msg} );
80     }
81     
82     return $c->next::method(@_);
83 }
84
85 sub setup {
86     my $c = shift;
87     
88     $c->maybe::next::method(@_);
89     
90     if ( Catalyst->VERSION le '5.33' ) {
91         require File::Slurp;
92     }
93     
94     my $config = $c->config->{$CONFIG_KEY} ||= {};
95     
96     $config->{dirs} ||= [];
97     $config->{include_path} ||= [ $c->config->{root} ];
98     $config->{mime_types} ||= {};
99     $config->{ignore_extensions} ||= [ qw/tmpl tt tt2 html xhtml/ ];
100     $config->{ignore_dirs} ||= [];
101     $config->{debug} ||= $c->debug;
102     $config->{no_logs} = 1 unless defined $config->{no_logs};
103     $config->{no_logs} = 0 if $config->{logging};
104     
105     # load up a MIME::Types object, only loading types with
106     # at least 1 file extension
107     $config->{mime_types_obj} = MIME::Types->new( only_complete => 1 );
108     
109     # preload the type index hash so it's not built on the first request
110     $config->{mime_types_obj}->create_type_index;
111 }
112
113 # Search through all included directories for the static file
114 # Based on Template Toolkit INCLUDE_PATH code
115 sub _locate_static_file {
116     my ( $c, $path, $in_static_dir ) = @_;
117     
118     $path = File::Spec->catdir(
119         File::Spec->no_upwards( File::Spec->splitdir( $path ) ) 
120     );
121     
122     my $config = $c->config->{$CONFIG_KEY};
123     my @ipaths = @{ $config->{include_path} };
124     my $dpaths;
125     my $count = 64; # maximum number of directories to search
126     
127     DIR_CHECK:
128     while ( @ipaths && --$count) {
129         my $dir = shift @ipaths || next DIR_CHECK;
130         
131         if ( ref $dir eq 'CODE' ) {
132             eval { $dpaths = &$dir( $c ) };
133             if ($@) {
134                 $c->log->error( 'Static::Simple: include_path error: ' . $@ );
135             } else {
136                 unshift @ipaths, @$dpaths;
137                 next DIR_CHECK;
138             }
139         } else {
140             $dir =~ s/(\/|\\)$//xms;
141             if ( -d $dir && -f $dir . '/' . $path ) {
142                 
143                 # Don't ignore any files in static dirs defined with 'dirs'
144                 unless ( $in_static_dir ) {
145                     # do we need to ignore the file?
146                     for my $ignore ( @{ $config->{ignore_dirs} } ) {
147                         $ignore =~ s{(/|\\)$}{};
148                         if ( $path =~ /^$ignore(\/|\\)/ ) {
149                             $c->_debug_msg( "Ignoring directory `$ignore`" )
150                                 if $config->{debug};
151                             next DIR_CHECK;
152                         }
153                     }
154                 
155                     # do we need to ignore based on extension?
156                     for my $ignore_ext ( @{ $config->{ignore_extensions} } ) {
157                         if ( $path =~ /.*\.${ignore_ext}$/ixms ) {
158                             $c->_debug_msg( "Ignoring extension `$ignore_ext`" )
159                                 if $config->{debug};
160                             next DIR_CHECK;
161                         }
162                     }
163                 }
164                 
165                 $c->_debug_msg( 'Serving ' . $dir . '/' . $path )
166                     if $config->{debug};
167                 return $c->_static_file( $dir . '/' . $path );
168             }
169         }
170     }
171     
172     return;
173 }
174
175 sub _serve_static {
176     my $c = shift;
177            
178     my $full_path = shift || $c->_static_file;
179     my $type      = $c->_ext_to_type( $full_path );
180     my $stat      = stat $full_path;
181
182     $c->res->headers->content_type( $type );
183     $c->res->headers->content_length( $stat->size );
184     $c->res->headers->last_modified( $stat->mtime );
185
186     if ( Catalyst->VERSION le '5.33' ) {
187         # old File::Slurp method
188         my $content = File::Slurp::read_file( $full_path );
189         $c->res->body( $content );
190     }
191     else {
192         # new method, pass an IO::File object to body
193         my $fh = IO::File->new( $full_path, 'r' );
194         if ( defined $fh ) {
195             binmode $fh;
196             $c->res->body( $fh );
197         }
198         else {
199             Catalyst::Exception->throw( 
200                 message => "Unable to open $full_path for reading" );
201         }
202     }
203     
204     return 1;
205 }
206
207 sub serve_static_file {
208     my ( $c, $full_path ) = @_;
209
210     my $config = $c->config->{$CONFIG_KEY} ||= {};
211     
212     if ( -e $full_path ) {
213         $c->_debug_msg( "Serving static file: $full_path" )
214             if $config->{debug};
215     }
216     else {
217         $c->_debug_msg( "404: file not found: $full_path" )
218             if $config->{debug};
219         $c->res->status( 404 );
220         $c->res->content_type( 'text/html' );
221         return;
222     }
223
224     $c->_serve_static( $full_path );
225 }
226
227 # looks up the correct MIME type for the current file extension
228 sub _ext_to_type {
229     my ( $c, $full_path ) = @_;
230     
231     my $config = $c->config->{$CONFIG_KEY};
232     
233     if ( $full_path =~ /.*\.(\S{1,})$/xms ) {
234         my $ext = $1;
235         my $type = $config->{mime_types}{$ext} 
236             || $config->{mime_types_obj}->mimeTypeOf( $ext );
237         if ( $type ) {
238             $c->_debug_msg( "as $type" ) if $config->{debug};
239             return ( ref $type ) ? $type->type : $type;
240         }
241         else {
242             $c->_debug_msg( "as text/plain (unknown extension $ext)" )
243                 if $config->{debug};
244             return 'text/plain';
245         }
246     }
247     else {
248         $c->_debug_msg( 'as text/plain (no extension)' )
249             if $config->{debug};
250         return 'text/plain';
251     }
252 }
253
254 sub _debug_msg {
255     my ( $c, $msg ) = @_;
256     
257     if ( !defined $c->_static_debug_message ) {
258         $c->_static_debug_message( [] );
259     }
260     
261     if ( $msg ) {
262         push @{ $c->_static_debug_message }, $msg;
263     }
264     
265     return $c->_static_debug_message;
266 }
267
268 1;
269 __END__
270
271 =head1 NAME
272
273 Catalyst::Plugin::Static::Simple - Make serving static pages painless.
274
275 =head1 SYNOPSIS
276
277     use Catalyst;
278     MyApp->setup( qw/Static::Simple/ );
279     # that's it; static content is automatically served by Catalyst
280     # from the application's root directory, though you can configure
281     # things or bypass Catalyst entirely in a production environment
282     #
283     # one caveat: the files must be served from an absolute path
284     # (i.e. /images/foo.png)
285
286 =head1 DESCRIPTION
287
288 The Static::Simple plugin is designed to make serving static content in
289 your application during development quick and easy, without requiring a
290 single line of code from you.
291
292 This plugin detects static files by looking at the file extension in the
293 URL (such as B<.css> or B<.png> or B<.js>). The plugin uses the
294 lightweight L<MIME::Types> module to map file extensions to
295 IANA-registered MIME types, and will serve your static files with the
296 correct MIME type directly to the browser, without being processed
297 through Catalyst.
298
299 Note that actions mapped to paths using periods (.) will still operate
300 properly.
301
302 Though Static::Simple is designed to work out-of-the-box, you can tweak
303 the operation by adding various configuration options. In a production
304 environment, you will probably want to use your webserver to deliver
305 static content; for an example see L<USING WITH APACHE>, below.
306
307 =head1 DEFAULT BEHAVIOR
308
309 By default, Static::Simple will deliver all files having extensions
310 (that is, bits of text following a period (C<.>)), I<except> files
311 having the extensions C<tmpl>, C<tt>, C<tt2>, C<html>, and
312 C<xhtml>. These files, and all files without extensions, will be
313 processed through Catalyst. If L<MIME::Types> doesn't recognize an
314 extension, it will be served as C<text/plain>.
315
316 To restate: files having the extensions C<tmpl>, C<tt>, C<tt2>, C<html>,
317 and C<xhtml> I<will not> be served statically by default, they will be
318 processed by Catalyst. Thus if you want to use C<.html> files from
319 within a Catalyst app as static files, you need to change the
320 configuration of Static::Simple. Note also that files having any other
321 extension I<will> be served statically, so if you're using any other
322 extension for template files, you should also change the configuration.
323
324 Logging of static files is turned off by default.
325
326 =head1 ADVANCED CONFIGURATION
327
328 Configuration is completely optional and is specified within
329 C<MyApp-E<gt>config-E<gt>{'Plugin::Static::Simple'}>.  If you use any of these
330 options, this module will probably feel less "simple" to you!
331
332 =head2 Enabling request logging
333
334 Since Catalyst 5.50, logging of static requests is turned off by
335 default; static requests tend to clutter the log output and rarely
336 reveal anything useful. However, if you want to enable logging of static
337 requests, you can do so by setting
338 C<MyApp-E<gt>config-E<gt>{'Plugin::Static::Simple'}-E<gt>{logging}> to 1.
339
340 =head2 Forcing directories into static mode
341
342 Define a list of top-level directories beneath your 'root' directory
343 that should always be served in static mode.  Regular expressions may be
344 specified using C<qr//>.
345
346     MyApp->config->{'Plugin::Static::Simple'}->{dirs} = [
347         'static',
348         qr/^(images|css)/,
349     ];
350
351 =head2 Including additional directories
352
353 You may specify a list of directories in which to search for your static
354 files. The directories will be searched in order and will return the
355 first file found. Note that your root directory is B<not> automatically
356 added to the search path when you specify an C<include_path>. You should
357 use C<MyApp-E<gt>config-E<gt>{root}> to add it.
358
359     MyApp->config->{'Plugin::Static::Simple'}->{include_path} = [
360         '/path/to/overlay',
361         \&incpath_generator,
362         MyApp->config->{root}
363     ];
364     
365 With the above setting, a request for the file C</images/logo.jpg> will search
366 for the following files, returning the first one found:
367
368     /path/to/overlay/images/logo.jpg
369     /dynamic/path/images/logo.jpg
370     /your/app/home/root/images/logo.jpg
371     
372 The include path can contain a subroutine reference to dynamically return a
373 list of available directories.  This method will receive the C<$c> object as a
374 parameter and should return a reference to a list of directories.  Errors can
375 be reported using C<die()>.  This method will be called every time a file is
376 requested that appears to be a static file (i.e. it has an extension).
377
378 For example:
379
380     sub incpath_generator {
381         my $c = shift;
382         
383         if ( $c->session->{customer_dir} ) {
384             return [ $c->session->{customer_dir} ];
385         } else {
386             die "No customer dir defined.";
387         }
388     }
389     
390 =head2 Ignoring certain types of files
391
392 There are some file types you may not wish to serve as static files.
393 Most important in this category are your raw template files.  By
394 default, files with the extensions C<tmpl>, C<tt>, C<tt2>, C<html>, and
395 C<xhtml> will be ignored by Static::Simple in the interest of security.
396 If you wish to define your own extensions to ignore, use the
397 C<ignore_extensions> option:
398
399     MyApp->config->{'Plugin::Static::Simple'}->{ignore_extensions} 
400         = [ qw/html asp php/ ];
401     
402 =head2 Ignoring entire directories
403
404 To prevent an entire directory from being served statically, you can use
405 the C<ignore_dirs> option.  This option contains a list of relative
406 directory paths to ignore.  If using C<include_path>, the path will be
407 checked against every included path.
408
409     MyApp->config->{'Plugin::Static::Simple'}->{ignore_dirs} = [ qw/tmpl css/ ];
410     
411 For example, if combined with the above C<include_path> setting, this
412 C<ignore_dirs> value will ignore the following directories if they exist:
413
414     /path/to/overlay/tmpl
415     /path/to/overlay/css
416     /dynamic/path/tmpl
417     /dynamic/path/css
418     /your/app/home/root/tmpl
419     /your/app/home/root/css    
420
421 =head2 Custom MIME types
422
423 To override or add to the default MIME types set by the L<MIME::Types>
424 module, you may enter your own extension to MIME type mapping.
425
426     MyApp->config->{'Plugin::Static::Simple'}->{mime_types} = {
427         jpg => 'image/jpg',
428         png => 'image/png',
429     };
430
431 =head2 Compatibility with other plugins
432
433 Since version 0.12, Static::Simple plays nice with other plugins.  It no
434 longer short-circuits the C<prepare_action> stage as it was causing too
435 many compatibility issues with other plugins.
436
437 =head2 Debugging information
438
439 Enable additional debugging information printed in the Catalyst log.  This
440 is automatically enabled when running Catalyst in -Debug mode.
441
442     MyApp->config->{'Plugin::Static::Simple'}->{debug} = 1;
443     
444 =head1 USING WITH APACHE
445
446 While Static::Simple will work just fine serving files through Catalyst
447 in mod_perl, for increased performance you may wish to have Apache
448 handle the serving of your static files directly. To do this, simply use
449 a dedicated directory for your static files and configure an Apache
450 Location block for that directory  This approach is recommended for
451 production installations.
452
453     <Location /myapp/static>
454         SetHandler default-handler
455     </Location>
456
457 Using this approach Apache will bypass any handling of these directories
458 through Catalyst. You can leave Static::Simple as part of your
459 application, and it will continue to function on a development server,
460 or using Catalyst's built-in server.
461
462 In practice, your Catalyst application is probably (i.e. should be)
463 structured in the recommended way (i.e., that generated by bootstrapping
464 the application with the C<catalyst.pl> script, with a main directory
465 under which is a C<lib/> directory for module files and a C<root/>
466 directory for templates and static files). Thus, unless you break up
467 this structure when deploying your app by moving the static files to a
468 different location in your filesystem, you will need to use an Alias
469 directive in Apache to point to the right place. You will then need to
470 add a Directory block to give permission for Apache to serve these
471 files. The final configuration will look something like this:
472
473     Alias /myapp/static /filesystem/path/to/MyApp/root/static
474     <Directory /filesystem/path/to/MyApp/root/static>
475         allow from all
476     </Directory>
477     <Location /myapp/static>
478         SetHandler default-handler
479     </Location>
480
481 If you are running in a VirtualHost, you can just set the DocumentRoot
482 location to the location of your root directory; see 
483 L<Catalyst::Engine::Apache2::MP20>.
484
485 =head1 PUBLIC METHODS
486
487 =head2 serve_static_file $file_path
488
489 Will serve the file located in $file_path statically. This is useful when
490 you need to  autogenerate them if they don't exist, or they are stored in a model.
491
492     package MyApp::Controller::User;
493
494     sub curr_user_thumb : PathPart("my_thumbnail.png") {
495         my ( $self, $c ) = @_;
496         my $file_path = $c->user->picture_thumbnail_path;
497         $c->serve_static_file($file_path);
498     }
499
500 =head1 INTERNAL EXTENDED METHODS
501
502 Static::Simple extends the following steps in the Catalyst process.
503
504 =head2 prepare_action 
505
506 C<prepare_action> is used to first check if the request path is a static
507 file.  If so, we skip all other C<prepare_action> steps to improve
508 performance.
509
510 =head2 dispatch
511
512 C<dispatch> takes the file found during C<prepare_action> and writes it
513 to the output.
514
515 =head2 finalize
516
517 C<finalize> serves up final header information and displays any log
518 messages.
519
520 =head2 setup
521
522 C<setup> initializes all default values.
523
524 =head1 SEE ALSO
525
526 L<Catalyst>, L<Catalyst::Plugin::Static>, 
527 L<http://www.iana.org/assignments/media-types/>
528
529 =head1 AUTHOR
530
531 Andy Grundman, <andy@hybridized.org>
532
533 =head1 CONTRIBUTORS
534
535 Marcus Ramberg, <mramberg@cpan.org>
536
537 Jesse Sheidlower, <jester@panix.com>
538
539 Guillermo Roditi, <groditi@cpan.org>
540
541 =head1 THANKS
542
543 The authors of Catalyst::Plugin::Static:
544
545     Sebastian Riedel
546     Christian Hansen
547     Marcus Ramberg
548
549 For the include_path code from Template Toolkit:
550
551     Andy Wardley
552
553 =head1 COPYRIGHT
554
555 This program is free software, you can redistribute it and/or modify it under
556 the same terms as Perl itself.
557
558 =cut