Imported Static::Simple 0.05
Andy Grundman [Fri, 26 Aug 2005 16:37:15 +0000 (16:37 +0000)]
Build.PL [new file with mode: 0644]
Changes [new file with mode: 0644]
MANIFEST [new file with mode: 0644]
META.yml [new file with mode: 0644]
Makefile.PL [new file with mode: 0644]
README [new file with mode: 0644]
TODO [new file with mode: 0644]
lib/Catalyst/Plugin/Static/Simple.pm [new file with mode: 0644]
t/01use.t [new file with mode: 0644]
t/02pod.t [new file with mode: 0644]
t/03podcoverage.t [new file with mode: 0644]

diff --git a/Build.PL b/Build.PL
new file mode 100644 (file)
index 0000000..b6eb02f
--- /dev/null
+++ b/Build.PL
@@ -0,0 +1,18 @@
+use strict;
+use Module::Build;
+
+my $build = Module::Build->new(
+    create_makefile_pl => 'passthrough',
+    license            => 'perl',
+    module_name        => 'Catalyst::Plugin::Static::Simple',
+    requires           => { 
+        'Catalyst' => '5.30',
+        'File::Slurp' => 0,
+        'MIME::Types' => '1.15',
+    },
+    create_makefile_pl => 'passthrough',
+    test_files   => [
+        glob('t/*.t') 
+    ]
+);
+$build->create_build_script;
diff --git a/Changes b/Changes
new file mode 100644 (file)
index 0000000..3447161
--- /dev/null
+++ b/Changes
@@ -0,0 +1,32 @@
+Revision history for Perl extension Catalyst::Plugin::Static::Simple
+
+0.05    2005-08-26 12:00:00
+        - Added use_apache option to enable the Apache DECLINED
+          support.  Default is disabled as it appears Catalyst is
+          faster at serving the files!
+        - Added a check that Apache's DocumentRoot matches Catalyst's
+          root before serving DECLINED.
+        - Preload MIME::Types index during setup() so it's not built on
+          the first request.
+        - Added a note on performance of Apache vs. Catalyst.
+
+0.04    2005-08-22 12:00:00
+        - Fixed bug where static files were searched for on every request
+          even without a file extension.
+        - Fixed bug where files without extensions in defined static dirs
+          were not served with text/plain.
+        - Consolidated the debug log messages.
+
+0.03    2005-08-21 23:50:00
+        - Added config option for include_path to allow for multiple 
+          directories with static files.  This option should be
+          considered experimental!
+        - Documentation cleanups.
+
+0.02    2005-08-16 18:00:00
+        - Return DECLINED when running under mod_perl to allow Apache to
+          serve the static file.  This is not done when any custom MIME
+          types have been specified, however.
+
+0.01    2005-08-11 22:00:00
+        - Initial release.
diff --git a/MANIFEST b/MANIFEST
new file mode 100644 (file)
index 0000000..13ad5c2
--- /dev/null
+++ b/MANIFEST
@@ -0,0 +1,10 @@
+Build.PL
+Changes
+lib/Catalyst/Plugin/Static/Simple.pm
+Makefile.PL
+MANIFEST                       This list of files
+META.yml
+README
+t/01use.t
+t/02pod.t
+t/03podcoverage.t
diff --git a/META.yml b/META.yml
new file mode 100644 (file)
index 0000000..91e34cc
--- /dev/null
+++ b/META.yml
@@ -0,0 +1,16 @@
+---
+name: Catalyst-Plugin-Static-Simple
+version: 0.05
+author:
+  - 'Andy Grundman, C<andy@hybridized.org>'
+abstract: Make serving static pages painless.
+license: perl
+requires:
+  Catalyst: 5.30
+  File::Slurp: 0
+  MIME::Types: 1.15
+provides:
+  Catalyst::Plugin::Static::Simple:
+    file: lib/Catalyst/Plugin/Static/Simple.pm
+    version: 0.05
+generated_by: Module::Build version 0.2611
diff --git a/Makefile.PL b/Makefile.PL
new file mode 100644 (file)
index 0000000..51d31fd
--- /dev/null
@@ -0,0 +1,31 @@
+# Note: this file was auto-generated by Module::Build::Compat version 0.03
+    
+    unless (eval "use Module::Build::Compat 0.02; 1" ) {
+      print "This module requires Module::Build to install itself.\n";
+      
+      require ExtUtils::MakeMaker;
+      my $yn = ExtUtils::MakeMaker::prompt
+       ('  Install Module::Build now from CPAN?', 'y');
+      
+      unless ($yn =~ /^y/i) {
+       die " *** Cannot install without Module::Build.  Exiting ...\n";
+      }
+      
+      require Cwd;
+      require File::Spec;
+      require CPAN;
+      
+      # Save this 'cause CPAN will chdir all over the place.
+      my $cwd = Cwd::cwd();
+      my $makefile = File::Spec->rel2abs($0);
+      
+      CPAN::Shell->install('Module::Build::Compat')
+       or die " *** Cannot install without Module::Build.  Exiting ...\n";
+      
+      chdir $cwd or die "Cannot chdir() back to $cwd: $!";
+    }
+    eval "use Module::Build::Compat 0.02; 1" or die $@;
+    use lib '_build/lib';
+    Module::Build::Compat->run_build_pl(args => \@ARGV);
+    require Module::Build;
+    Module::Build::Compat->write_makefile(build_class => 'Module::Build');
diff --git a/README b/README
new file mode 100644 (file)
index 0000000..116164b
--- /dev/null
+++ b/README
@@ -0,0 +1,141 @@
+NAME
+    Catalyst::Plugin::Static::Simple - Make serving static pages painless.
+
+SYNOPSIS
+        use Catalyst;
+        MyApp->setup( qw/Static::Simple/ );
+
+DESCRIPTION
+    The Static::Simple plugin is designed to make serving static content in
+    your application during development quick and easy, without requiring a
+    single line of code from you.
+
+    It will detect static files used in your application by looking for file
+    extensions in the URI. By default, you can simply load this plugin and
+    it will immediately begin serving your static files with the correct
+    MIME type. The light-weight MIME::Types module is used to map file
+    extensions to IANA-registered MIME types.
+
+    Note that actions mapped to paths using periods (.) will still operate
+    properly.
+
+    You may further tweak the operation by adding configuration options,
+    described below.
+
+ADVANCED CONFIGURATION
+    Configuration is completely optional and is specified within
+    MyApp->config->{static}. If you use any of these options, the module
+    will probably feel less "simple" to you!
+
+    Forcing directories into static mode
+        Define a list of top-level directories beneath your 'root' directory
+        that should always be served in static mode. Regular expressions may
+        be specified using qr//.
+
+            MyApp->config->{static}->{dirs} = [
+                'static',
+                qr/^(images|css)/,
+            ];
+
+    Including additional directories (experimental!)
+        You may specify a list of directories in which to search for your
+        static files. The directories will be searched in order and will
+        return the first file found. Note that your root directory is not
+        automatically added to the search path when you specify an
+        include_path. You should use MyApp->config->{root} to add it.
+
+            MyApp->config->{static}->{include_path} = [
+                '/path/to/overlay',
+                \&incpath_generator,
+                MyApp->config->{root}
+            ];
+    
+        With the above setting, a request for the file /images/logo.jpg will
+        search for the following files, returning the first one found:
+
+            /path/to/overlay/images/logo.jpg
+            /dynamic/path/images/logo.jpg
+            /your/app/home/root/images/logo.jpg
+    
+        The include path can contain a subroutine reference to dynamically
+        return a list of available directories. This method will receive the
+        $c object as a parameter and should return a reference to a list of
+        directories. Errors can be reported using die(). This method will be
+        called every time a file is requested that appears to be a static
+        file (i.e. it has an extension).
+
+        For example:
+
+            sub incpath_generator {
+                my $c = shift;
+        
+                if ( $c->session->{customer_dir} ) {
+                    return [ $c->session->{customer_dir} ];
+                } else {
+                    die "No customer dir defined.";
+                }
+            }
+
+    Custom MIME types
+        To override or add to the default MIME types set by the MIME::Types
+        module, you may enter your own extension to MIME type mapping.
+
+            MyApp->config->{static}->{mime_types} = {
+                jpg => 'image/jpg',
+                png => 'image/png',
+            };
+    
+    Apache integration and performance
+        Optionally, when running under mod_perl, Static::Simple can return
+        DECLINED on static files to allow Apache to serve the file. A check
+        is first done to make sure that Apache's DocumentRoot matches your
+        Catalyst root, and that you are not using any custom MIME types or
+        multiple roots. To enable the Apache support, you can set the
+        following option.
+
+            MyApp->config->{static}->{use_apache} = 1;
+    
+        By default this option is disabled because after several benchmarks
+        it appears that just serving the file from Catalyst is the better
+        option. On a 3K file, Catalyst appears to be around 25% faster, and
+        is 42% faster on a 10K file. My benchmarking was done using the
+        following 'siege' command, so other benchmarks would be welcome!
+
+            siege -u http://server/static/css/10K.css b -t 1M -c 1
+
+        For best static performance, you should still serve your static
+        files directly from Apache by defining a Location block similar to
+        the following:
+
+            <Location /static>
+                SetHandler default-handler
+            </Location>
+
+    Debugging information
+        Enable additional debugging information printed in the Catalyst log.
+        This is automatically enabled when running Catalyst in -Debug mode.
+
+            MyApp->config->{static}->{debug} = 1;
+
+SEE ALSO
+    Catalyst, Catalyst::Plugin::Static,
+    <http://www.iana.org/assignments/media-types/>
+
+AUTHOR
+    Andy Grundman, "andy@hybridized.org"
+
+THANKS
+    The authors of Catalyst::Plugin::Static:
+
+        Sebastian Riedel
+        Christian Hansen
+        Marcus Ramberg
+
+    For the include_path code from Template Toolkit:
+
+        Andy Wardley
+
+COPYRIGHT
+    This program is free software, you can redistribute it and/or modify it
+    under the same terms as Perl itself.
+
diff --git a/TODO b/TODO
new file mode 100644 (file)
index 0000000..ea56858
--- /dev/null
+++ b/TODO
@@ -0,0 +1 @@
+[ ] See if it's possible to get RequireSSL to play nice with Static::Simple files
diff --git a/lib/Catalyst/Plugin/Static/Simple.pm b/lib/Catalyst/Plugin/Static/Simple.pm
new file mode 100644 (file)
index 0000000..5abcc76
--- /dev/null
@@ -0,0 +1,371 @@
+package Catalyst::Plugin::Static::Simple;
+
+use strict;
+use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
+use File::Slurp;
+use File::stat;
+use MIME::Types;
+use NEXT;
+
+our $VERSION = '0.05';
+
+__PACKAGE__->mk_classdata( qw/_mime_types/ );
+__PACKAGE__->mk_accessors( qw/_static_file _apache_mode _debug_message/ );
+
+=head1 NAME
+
+Catalyst::Plugin::Static::Simple - Make serving static pages painless.
+
+=head1 SYNOPSIS
+
+    use Catalyst;
+    MyApp->setup( qw/Static::Simple/ );
+
+=head1 DESCRIPTION
+
+The Static::Simple plugin is designed to make serving static content in your
+application during development quick and easy, without requiring a single
+line of code from you.
+
+It will detect static files used in your application by looking for file
+extensions in the URI.  By default, you can simply load this plugin and it
+will immediately begin serving your static files with the correct MIME type.
+The light-weight MIME::Types module is used to map file extensions to
+IANA-registered MIME types.
+
+Note that actions mapped to paths using periods (.) will still operate
+properly.
+
+You may further tweak the operation by adding configuration options, described
+below.
+
+=head1 ADVANCED CONFIGURATION
+
+Configuration is completely optional and is specified within MyApp->config->{static}.
+If you use any of these options, the module will probably feel less "simple" to you!
+
+=over 4
+
+=item Forcing directories into static mode
+
+Define a list of top-level directories beneath your 'root' directory that
+should always be served in static mode.  Regular expressions may be
+specified using qr//.
+
+    MyApp->config->{static}->{dirs} = [
+        'static',
+        qr/^(images|css)/,
+    ];
+
+=item Including additional directories (experimental!)
+
+You may specify a list of directories in which to search for your static files.  The
+directories will be searched in order and will return the first file found.  Note that
+your root directory is B<not> automatically added to the search path when
+you specify an include_path.  You should use MyApp->config->{root} to add it.
+
+    MyApp->config->{static}->{include_path} = [
+        '/path/to/overlay',
+        \&incpath_generator,
+        MyApp->config->{root}
+    ];
+    
+With the above setting, a request for the file /images/logo.jpg will search for the
+following files, returning the first one found:
+
+    /path/to/overlay/images/logo.jpg
+    /dynamic/path/images/logo.jpg
+    /your/app/home/root/images/logo.jpg
+    
+The include path can contain a subroutine reference to dynamically return a list of
+available directories.  This method will receive the $c object as a parameter and
+should return a reference to a list of directories.  Errors can be reported using
+die().  This method will be called every time a file is requested that appears to
+be a static file (i.e. it has an extension).
+
+For example:
+
+    sub incpath_generator {
+        my $c = shift;
+        
+        if ( $c->session->{customer_dir} ) {
+            return [ $c->session->{customer_dir} ];
+        } else {
+            die "No customer dir defined.";
+        }
+    }
+
+=item Custom MIME types
+
+To override or add to the default MIME types set by the MIME::Types module,
+you may enter your own extension to MIME type mapping. 
+
+    MyApp->config->{static}->{mime_types} = {
+        jpg => 'image/jpg',
+        png => 'image/png',
+    };
+    
+=item Apache integration and performance
+
+Optionally, when running under mod_perl, Static::Simple can return DECLINED
+on static files to allow Apache to serve the file.  A check is first done to
+make sure that Apache's DocumentRoot matches your Catalyst root, and that you
+are not using any custom MIME types or multiple roots.  To enable the Apache
+support, you can set the following option.
+
+    MyApp->config->{static}->{use_apache} = 1;
+    
+By default this option is disabled because after several benchmarks it
+appears that just serving the file from Catalyst is the better option.  On a 3K
+file, Catalyst appears to be around 25% faster, and is 42% faster on a 10K file.
+My benchmarking was done using the following 'siege' command, so other
+benchmarks would be welcome!
+
+    siege -u http://server/static/css/10K.css -b -t 1M -c 1
+
+For best static performance, you should still serve your static files directly
+from Apache by defining a Location block similar to the following:
+
+    <Location /static>
+        SetHandler default-handler
+    </Location>
+
+=item Debugging information
+
+Enable additional debugging information printed in the Catalyst log.  This
+is automatically enabled when running Catalyst in -Debug mode.
+
+    MyApp->config->{static}->{debug} = 1;
+
+=back
+
+=cut
+
+sub dispatch {
+    my $c = shift;
+    
+    my $path = $c->req->path;
+    
+    # is the URI in a static-defined path?
+    foreach my $dir ( @{ $c->config->{static}->{dirs} } ) {
+        my $re = ( $dir =~ /^qr\// ) ? eval $dir : qr/^${dir}/;
+        if ( $path =~ $re ) {
+            if ( $c->_locate_static_file ) {
+                $c->_debug_msg( "from static directory" )
+                    if ( $c->config->{static}->{debug} );
+                return $c->_serve_static;
+            } else {
+                $c->_debug_msg( "404: file not found: $path" )
+                    if ( $c->config->{static}->{debug} );
+                $c->res->status( 404 );
+                return 0;
+            }
+        }
+    }
+    
+    # Does the path have an extension?
+    if ( $path =~ /.*\.(\S{1,})$/ ) {
+        # and does it exist?
+        if ( $c->_locate_static_file ) {
+            return $c->_serve_static;
+        }
+    }
+    
+    return $c->NEXT::dispatch(@_);
+}
+
+sub finalize {
+    my $c = shift;
+    
+    # display all log messages
+    if ( $c->config->{static}->{debug} && scalar @{$c->_debug_msg} ) {
+        $c->log->debug( "Static::Simple: Serving " .
+            join( " ", @{$c->_debug_msg} )
+        );
+    }
+    
+    # return DECLINED when under mod_perl
+    if ( $c->config->{static}->{use_apache} && $c->_apache_mode ) {
+        my $engine = $c->_apache_mode;
+        no strict 'subs';
+        if ( $engine == 13 ) {
+            return Apache::Constants::DECLINED;
+        } elsif ( $engine == 19 ) {
+            return Apache::Const::DECLINED;
+        } elsif ( $engine == 20 ) {
+            return Apache2::Const::DECLINED;
+        }
+    }
+    
+    if ( $c->res->status =~ /^(1\d\d|[23]04)$/ ) {
+        $c->res->headers->remove_content_headers;
+        return $c->finalize_headers;
+    }
+    return $c->NEXT::finalize(@_);
+}
+
+sub setup {
+    my $c = shift;
+    
+    $c->NEXT::setup(@_);
+    
+    $c->config->{static}->{dirs} ||= [];
+    $c->config->{static}->{include_path} ||= [ $c->config->{root} ];
+    $c->config->{static}->{mime_types} ||= {};
+    $c->config->{static}->{use_apache} ||= 0; 
+    $c->config->{static}->{debug} ||= $c->debug;
+    
+    # load up a MIME::Types object, only loading types with
+    # at least 1 file extension
+    $c->_mime_types( MIME::Types->new( only_complete => 1 ) );
+    # preload the type index hash so it's not built on the first request
+    $c->_mime_types->create_type_index;
+}
+
+# Search through all included directories for the static file
+# Based on Template Toolkit INCLUDE_PATH code
+sub _locate_static_file {
+    my $c = shift;
+    
+    my $path = $c->req->path;
+    
+    my @ipaths = @{ $c->config->{static}->{include_path} };
+    my $dpaths;
+    my $count = 64; # maximum number of directories to search
+    
+    while ( @ipaths && --$count) {
+        my $dir = shift @ipaths || next;
+        
+        if ( ref $dir eq 'CODE' ) {
+            eval { $dpaths = &$dir( $c ) };
+            if ($@) {
+                $c->log->error( "Static::Simple: include_path error: " . $@ );
+            } else {
+                unshift( @ipaths, @$dpaths );
+                next;
+            }
+        } else {
+            $dir =~ s/\/$//;
+            if ( -d $dir && -f $dir . '/' . $path ) {
+                $c->_debug_msg( $dir . "/" . $path )
+                    if ( $c->config->{static}->{debug} );
+                return $c->_static_file( $dir . '/' . $path );
+            }
+        }
+    }
+    
+    return undef;
+}
+
+sub _ext_to_type {
+    my $c = shift;
+    
+    my $path = $c->req->path;
+    my $type;
+    
+    if ( $path =~ /.*\.(\S{1,})$/ ) {
+        my $ext = $1;
+        my $user_types = $c->config->{static}->{mime_types};
+        if ( $type = $user_types->{$ext} || $c->_mime_types->mimeTypeOf( $ext ) ) {
+            $c->_debug_msg( "as $type" )
+                if ( $c->config->{static}->{debug} );            
+            return $type;
+        } else {
+            $c->_debug_msg( "as text/plain (unknown extension $ext)" )
+                if ( $c->config->{static}->{debug} );
+            return 'text/plain';
+        }
+    } else {
+        $c->_debug_msg( "as text/plain (no extension)" )
+            if ( $c->config->{static}->{debug} );
+        return 'text/plain';
+    }
+}
+
+sub _serve_static {
+    my $c = shift;
+    
+    my $path = $c->req->path;    
+    
+    # abort if running under mod_perl
+    # note that we do not use the Apache method if the user has defined
+    # custom MIME types or is using include paths, as Apache would not know about them
+    if ( $c->config->{static}->{use_apache} ) {
+        if ( $c->engine =~ /Apache::MP(\d{2})/ && 
+             !keys %{ $c->config->{static}->{mime_types} } &&
+             $c->_static_file eq $c->config->{root} . '/' . $path ) {
+                 
+                 # check that Apache will serve the correct file
+                 if ( $c->apache->document_root ne $c->config->{root} ) {
+                     $c->log->warn( "Static::Simple: Your Apache DocumentRoot must be set to " .
+                        $c->config->{root} . " to use the Apache feature.  Yours is currently " .
+                        $c->apache->document_root );
+                 } else {
+                     $c->_debug_msg( "DECLINED to Apache" )
+                        if ( $c->config->{static}->{debug} );          
+                     $c->_apache_mode( $1 );
+                     return undef;
+                 }
+        }
+    }
+    
+    my $type = $c->_ext_to_type;
+    
+    $path = $c->_static_file;
+    my $stat = stat( $path );
+
+    # the below code all from C::P::Static
+    if ( $c->req->headers->if_modified_since ) {
+        if ( $c->req->headers->if_modified_since == $stat->mtime ) {
+            $c->res->status( 304 ); # Not Modified
+            $c->res->headers->remove_content_headers;
+            return 1;
+        }
+    }
+
+    my $content = read_file( $path );
+    $c->res->headers->content_type( $type );
+    $c->res->headers->content_length( $stat->size );
+    $c->res->headers->last_modified( $stat->mtime );
+    $c->res->output( $content );
+    return 1;  
+}
+
+sub _debug_msg {
+    my ( $c, $msg ) = @_;
+    
+    $c->_debug_message( [] ) unless ( $c->_debug_message );
+    
+    push @{ $c->_debug_message }, $msg if $msg;
+    
+    return $c->_debug_message;
+}
+    
+=head1 SEE ALSO
+
+L<Catalyst>, L<Catalyst::Plugin::Static>, L<http://www.iana.org/assignments/media-types/>
+
+=head1 AUTHOR
+
+Andy Grundman, C<andy@hybridized.org>
+
+=head1 THANKS
+
+The authors of Catalyst::Plugin::Static:
+
+    Sebastian Riedel
+    Christian Hansen
+    Marcus Ramberg
+
+For the include_path code from Template Toolkit:
+
+    Andy Wardley
+
+=head1 COPYRIGHT
+
+This program is free software, you can redistribute it and/or modify it under
+the same terms as Perl itself.
+
+=cut
+
+1;
diff --git a/t/01use.t b/t/01use.t
new file mode 100644 (file)
index 0000000..af14283
--- /dev/null
+++ b/t/01use.t
@@ -0,0 +1,3 @@
+use Test::More tests => 1;
+
+use_ok('Catalyst::Plugin::Static::Simple');
diff --git a/t/02pod.t b/t/02pod.t
new file mode 100644 (file)
index 0000000..1647794
--- /dev/null
+++ b/t/02pod.t
@@ -0,0 +1,7 @@
+use Test::More;
+
+eval "use Test::Pod 1.14";
+plan skip_all => 'Test::Pod 1.14 required' if $@;
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+
+all_pod_files_ok();
diff --git a/t/03podcoverage.t b/t/03podcoverage.t
new file mode 100644 (file)
index 0000000..d91be5e
--- /dev/null
@@ -0,0 +1,7 @@
+use Test::More;
+
+eval "use Test::Pod::Coverage 1.04";
+plan skip_all => 'Test::Pod::Coverage 1.04 required' if $@;
+plan skip_all => 'set TEST_POD to enable this test' unless $ENV{TEST_POD};
+
+all_pod_coverage_ok();