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