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