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