Add Cache-Control:public header
[catagits/Catalyst-Plugin-Static-Simple.git] / lib / Catalyst / Plugin / Static / Simple.pm
1 package Catalyst::Plugin::Static::Simple;
2
3 use Moose::Role;
4 use File::stat;
5 use File::Spec ();
6 use IO::File ();
7 use MIME::Types ();
8 use MooseX::Types::Moose qw/ArrayRef Str/;
9 use namespace::autoclean;
10
11 our $VERSION = '0.30';
12
13 has _static_file => ( is => 'rw' );
14 has _static_debug_message => ( is => 'rw', isa => ArrayRef[Str] );
15
16 before prepare_action => sub {
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;
31
32         if ( $dir =~ m{^qr/}xms ) {
33             $re = eval $dir;
34
35             if ($@) {
36                 $c->error( "Error compiling static dir regex '$dir': $@" );
37             }
38         }
39         else {
40             $re = qr{^${dir_re}/};
41         }
42
43         if ( $path =~ $re ) {
44             if ( $c->_locate_static_file( $path, 1 ) ) {
45                 $c->_debug_msg( 'from static directory' )
46                     if $config->{debug};
47             } else {
48                 $c->_debug_msg( "404: file not found: $path" )
49                     if $config->{debug};
50                 $c->res->status( 404 );
51                 $c->res->content_type( 'text/html' );
52             }
53         }
54     }
55
56     # Does the path have an extension?
57     if ( $path =~ /.*\.(\S{1,})$/xms ) {
58         # and does it exist?
59         $c->_locate_static_file( $path );
60     }
61 };
62
63 around dispatch => sub {
64     my $orig = shift;
65     my $c = shift;
66
67     return if ( $c->res->status != 200 );
68
69     if ( $c->_static_file ) {
70         if ( $c->config->{static}{no_logs} && $c->log->can('abort') ) {
71            $c->log->abort( 1 );
72         }
73         return $c->_serve_static;
74     }
75     else {
76         return $c->$orig(@_);
77     }
78 };
79
80 before finalize => sub {
81     my $c = shift;
82
83     # display all log messages
84     if ( $c->config->{static}{debug} && scalar @{$c->_debug_msg} ) {
85         $c->log->debug( 'Static::Simple: ' . join q{ }, @{$c->_debug_msg} );
86     }
87 };
88
89 before setup_finalize => sub {
90     my $c = shift;
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     my $config = $c->config->{static} ||= {};
176
177     my $full_path = shift || $c->_static_file;
178     my $type      = $c->_ext_to_type( $full_path );
179     my $stat      = stat $full_path;
180
181     $c->res->headers->content_type( $type );
182     $c->res->headers->content_length( $stat->size );
183     $c->res->headers->last_modified( $stat->mtime );
184     # Tell Firefox & friends its OK to cache, even over SSL:
185     $c->res->headers->header('Cache-control' => 'public');
186     # Optionally, set a fixed expiry time:
187     if ($config->{expires}) {
188         $c->res->headers->expires(time() + $config->{expires});
189     }
190
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     return 1;
202 }
203
204 sub serve_static_file {
205     my ( $c, $full_path ) = @_;
206
207     my $config = $c->config->{static} ||= {};
208
209     if ( -e $full_path ) {
210         $c->_debug_msg( "Serving static file: $full_path" )
211             if $config->{debug};
212     }
213     else {
214         $c->_debug_msg( "404: file not found: $full_path" )
215             if $config->{debug};
216         $c->res->status( 404 );
217         $c->res->content_type( 'text/html' );
218         return;
219     }
220
221     $c->_serve_static( $full_path );
222 }
223
224 # looks up the correct MIME type for the current file extension
225 sub _ext_to_type {
226     my ( $c, $full_path ) = @_;
227
228     my $config = $c->config->{static};
229
230     if ( $full_path =~ /.*\.(\S{1,})$/xms ) {
231         my $ext = $1;
232         my $type = $config->{mime_types}{$ext}
233             || $config->{mime_types_obj}->mimeTypeOf( $ext );
234         if ( $type ) {
235             $c->_debug_msg( "as $type" ) if $config->{debug};
236             return ( ref $type ) ? $type->type : $type;
237         }
238         else {
239             $c->_debug_msg( "as text/plain (unknown extension $ext)" )
240                 if $config->{debug};
241             return 'text/plain';
242         }
243     }
244     else {
245         $c->_debug_msg( 'as text/plain (no extension)' )
246             if $config->{debug};
247         return 'text/plain';
248     }
249 }
250
251 sub _debug_msg {
252     my ( $c, $msg ) = @_;
253
254     if ( !defined $c->_static_debug_message ) {
255         $c->_static_debug_message( [] );
256     }
257
258     if ( $msg ) {
259         push @{ $c->_static_debug_message }, $msg;
260     }
261
262     return $c->_static_debug_message;
263 }
264
265 1;
266 __END__
267
268 =head1 NAME
269
270 Catalyst::Plugin::Static::Simple - Make serving static pages painless.
271
272 =head1 SYNOPSIS
273
274     package MyApp;
275     use Catalyst qw/ Static::Simple /;
276     MyApp->setup;
277     # that's it; static content is automatically served by Catalyst
278     # from the application's root directory, though you can configure
279     # things or bypass Catalyst entirely in a production environment
280     #
281     # one caveat: the files must be served from an absolute path
282     # (i.e. /images/foo.png)
283
284 =head1 DESCRIPTION
285
286 The Static::Simple plugin is designed to make serving static content in
287 your application during development quick and easy, without requiring a
288 single line of code from you.
289
290 This plugin detects static files by looking at the file extension in the
291 URL (such as B<.css> or B<.png> or B<.js>). The plugin uses the
292 lightweight L<MIME::Types> module to map file extensions to
293 IANA-registered MIME types, and will serve your static files with the
294 correct MIME type directly to the browser, without being processed
295 through Catalyst.
296
297 Note that actions mapped to paths using periods (.) will still operate
298 properly.
299
300 If the plugin can not find the file, the request is dispatched to your
301 application instead. This means you are responsible for generating a
302 C<404> error if your applicaton can not process the request:
303
304    # handled by static::simple, not dispatched to your application
305    /images/exists.png
306
307    # static::simple will not find the file and let your application
308    # handle the request. You are responsible for generating a file
309    # or returning a 404 error
310    /images/does_not_exist.png
311
312 Though Static::Simple is designed to work out-of-the-box, you can tweak
313 the operation by adding various configuration options. In a production
314 environment, you will probably want to use your webserver to deliver
315 static content; for an example see L<USING WITH APACHE>, below.
316
317 =head1 DEFAULT BEHAVIOUR
318
319 By default, Static::Simple will deliver all files having extensions
320 (that is, bits of text following a period (C<.>)), I<except> files
321 having the extensions C<tmpl>, C<tt>, C<tt2>, C<html>, and
322 C<xhtml>. These files, and all files without extensions, will be
323 processed through Catalyst. If L<MIME::Types> doesn't recognize an
324 extension, it will be served as C<text/plain>.
325
326 To restate: files having the extensions C<tmpl>, C<tt>, C<tt2>, C<html>,
327 and C<xhtml> I<will not> be served statically by default, they will be
328 processed by Catalyst. Thus if you want to use C<.html> files from
329 within a Catalyst app as static files, you need to change the
330 configuration of Static::Simple. Note also that files having any other
331 extension I<will> be served statically, so if you're using any other
332 extension for template files, you should also change the configuration.
333
334 Logging of static files is turned off by default.
335
336 =head1 ADVANCED CONFIGURATION
337
338 Configuration is completely optional and is specified within
339 C<MyApp-E<gt>config-E<gt>{static}>.  If you use any of these options,
340 this module will probably feel less "simple" to you!
341
342 =head2 Enabling request logging
343
344 Since Catalyst 5.50, logging of static requests is turned off by
345 default; static requests tend to clutter the log output and rarely
346 reveal anything useful. However, if you want to enable logging of static
347 requests, you can do so by setting
348 C<MyApp-E<gt>config-E<gt>{static}-E<gt>{logging}> to 1.
349
350 =head2 Forcing directories into static mode
351
352 Define a list of top-level directories beneath your 'root' directory
353 that should always be served in static mode.  Regular expressions may be
354 specified using C<qr//>.
355
356     MyApp->config(
357         static => {
358             dirs => [
359                 'static',
360                 qr/^(images|css)/,
361             ],
362         }
363     );
364
365 =head2 Including additional directories
366
367 You may specify a list of directories in which to search for your static
368 files. The directories will be searched in order and will return the
369 first file found. Note that your root directory is B<not> automatically
370 added to the search path when you specify an C<include_path>. You should
371 use C<MyApp-E<gt>config-E<gt>{root}> to add it.
372
373     MyApp->config(
374         static => {
375             include_path => [
376                 '/path/to/overlay',
377                 \&incpath_generator,
378                 MyApp->config->{root},
379             ],
380         },
381     );
382
383 With the above setting, a request for the file C</images/logo.jpg> will search
384 for the following files, returning the first one found:
385
386     /path/to/overlay/images/logo.jpg
387     /dynamic/path/images/logo.jpg
388     /your/app/home/root/images/logo.jpg
389
390 The include path can contain a subroutine reference to dynamically return a
391 list of available directories.  This method will receive the C<$c> object as a
392 parameter and should return a reference to a list of directories.  Errors can
393 be reported using C<die()>.  This method will be called every time a file is
394 requested that appears to be a static file (i.e. it has an extension).
395
396 For example:
397
398     sub incpath_generator {
399         my $c = shift;
400
401         if ( $c->session->{customer_dir} ) {
402             return [ $c->session->{customer_dir} ];
403         } else {
404             die "No customer dir defined.";
405         }
406     }
407
408 =head2 Ignoring certain types of files
409
410 There are some file types you may not wish to serve as static files.
411 Most important in this category are your raw template files.  By
412 default, files with the extensions C<tmpl>, C<tt>, C<tt2>, C<html>, and
413 C<xhtml> will be ignored by Static::Simple in the interest of security.
414 If you wish to define your own extensions to ignore, use the
415 C<ignore_extensions> option:
416
417     MyApp->config(
418         static => {
419             ignore_extensions => [ qw/html asp php/ ],
420         },
421     );
422
423 =head2 Ignoring entire directories
424
425 To prevent an entire directory from being served statically, you can use
426 the C<ignore_dirs> option.  This option contains a list of relative
427 directory paths to ignore.  If using C<include_path>, the path will be
428 checked against every included path.
429
430     MyApp->config(
431         static => {
432             ignore_dirs => [ qw/tmpl css/ ],
433         },
434     );
435
436 For example, if combined with the above C<include_path> setting, this
437 C<ignore_dirs> value will ignore the following directories if they exist:
438
439     /path/to/overlay/tmpl
440     /path/to/overlay/css
441     /dynamic/path/tmpl
442     /dynamic/path/css
443     /your/app/home/root/tmpl
444     /your/app/home/root/css
445
446 =head2 Custom MIME types
447
448 To override or add to the default MIME types set by the L<MIME::Types>
449 module, you may enter your own extension to MIME type mapping.
450
451     MyApp->config(
452         static => {
453             mime_types => {
454                 jpg => 'image/jpg',
455                 png => 'image/png',
456             },
457         },
458     );
459
460 =head2 Controlling caching with Expires header
461
462 The files served by Static::Simple will have a Last-Modified header set,
463 which allows some browsers to cache them for a while. However if you want
464 to explicitly set an Expires header, such as to allow proxies to cache your
465 static content, then you can do so by setting the "expires" config option.
466
467 The value indicates the number of seconds after access time to allow caching.
468 So a value of zero really means "don't cache at all", and any higher values
469 will keep the file around for that long.
470
471     MyApp->config(
472         static => {
473             expires => 3600, # Caching allowed for one hour.
474         },
475     );
476
477 =head2 Compatibility with other plugins
478
479 Since version 0.12, Static::Simple plays nice with other plugins.  It no
480 longer short-circuits the C<prepare_action> stage as it was causing too
481 many compatibility issues with other plugins.
482
483 =head2 Debugging information
484
485 Enable additional debugging information printed in the Catalyst log.  This
486 is automatically enabled when running Catalyst in -Debug mode.
487
488     MyApp->config(
489         static => {
490             debug => 1,
491         },
492     );
493
494 =head1 USING WITH APACHE
495
496 While Static::Simple will work just fine serving files through Catalyst
497 in mod_perl, for increased performance you may wish to have Apache
498 handle the serving of your static files directly. To do this, simply use
499 a dedicated directory for your static files and configure an Apache
500 Location block for that directory  This approach is recommended for
501 production installations.
502
503     <Location /myapp/static>
504         SetHandler default-handler
505     </Location>
506
507 Using this approach Apache will bypass any handling of these directories
508 through Catalyst. You can leave Static::Simple as part of your
509 application, and it will continue to function on a development server,
510 or using Catalyst's built-in server.
511
512 In practice, your Catalyst application is probably (i.e. should be)
513 structured in the recommended way (i.e., that generated by bootstrapping
514 the application with the C<catalyst.pl> script, with a main directory
515 under which is a C<lib/> directory for module files and a C<root/>
516 directory for templates and static files). Thus, unless you break up
517 this structure when deploying your app by moving the static files to a
518 different location in your filesystem, you will need to use an Alias
519 directive in Apache to point to the right place. You will then need to
520 add a Directory block to give permission for Apache to serve these
521 files. The final configuration will look something like this:
522
523     Alias /myapp/static /filesystem/path/to/MyApp/root/static
524     <Directory /filesystem/path/to/MyApp/root/static>
525         allow from all
526     </Directory>
527     <Location /myapp/static>
528         SetHandler default-handler
529     </Location>
530
531 If you are running in a VirtualHost, you can just set the DocumentRoot
532 location to the location of your root directory; see
533 L<Catalyst::Engine::Apache2::MP20>.
534
535 =head1 PUBLIC METHODS
536
537 =head2 serve_static_file $file_path
538
539 Will serve the file located in $file_path statically. This is useful when
540 you need to  autogenerate them if they don't exist, or they are stored in a model.
541
542     package MyApp::Controller::User;
543
544     sub curr_user_thumb : PathPart("my_thumbnail.png") {
545         my ( $self, $c ) = @_;
546         my $file_path = $c->user->picture_thumbnail_path;
547         $c->serve_static_file($file_path);
548     }
549
550 =head1 INTERNAL EXTENDED METHODS
551
552 Static::Simple extends the following steps in the Catalyst process.
553
554 =head2 prepare_action
555
556 C<prepare_action> is used to first check if the request path is a static
557 file.  If so, we skip all other C<prepare_action> steps to improve
558 performance.
559
560 =head2 dispatch
561
562 C<dispatch> takes the file found during C<prepare_action> and writes it
563 to the output.
564
565 =head2 finalize
566
567 C<finalize> serves up final header information and displays any log
568 messages.
569
570 =head2 setup
571
572 C<setup> initializes all default values.
573
574 =head1 SEE ALSO
575
576 L<Catalyst>, L<Catalyst::Plugin::Static>,
577 L<http://www.iana.org/assignments/media-types/>
578
579 =head1 AUTHOR
580
581 Andy Grundman, <andy@hybridized.org>
582
583 =head1 CONTRIBUTORS
584
585 Marcus Ramberg, <mramberg@cpan.org>
586
587 Jesse Sheidlower, <jester@panix.com>
588
589 Guillermo Roditi, <groditi@cpan.org>
590
591 Florian Ragwitz, <rafl@debian.org>
592
593 Tomas Doran, <bobtfish@bobtfish.net>
594
595 Justin Wheeler (dnm)
596
597 Matt S Trout, <mst@shadowcat.co.uk>
598
599 Toby Corkindale, <tjc@wintrmute.net>
600
601 =head1 THANKS
602
603 The authors of Catalyst::Plugin::Static:
604
605     Sebastian Riedel
606     Christian Hansen
607     Marcus Ramberg
608
609 For the include_path code from Template Toolkit:
610
611     Andy Wardley
612
613 =head1 COPYRIGHT
614
615 Copyright (c) 2005 - 2011
616 the Catalyst::Plugin::Static::Simple L</AUTHOR> and L</CONTRIBUTORS>
617 as listed above.
618
619 =head1 LICENSE
620
621 This program is free software, you can redistribute it and/or modify it under
622 the same terms as Perl itself.
623
624 =cut