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