add SSI component, update tests for it
Vladimir Timofeev [Thu, 10 Jun 2010 11:37:11 +0000 (15:37 +0400)]
lib/Catalyst/View/Component/SubInclude/SSI.pm [new file with mode: 0644]
t/app.t
t/lib/ESITest/root/index.tt

diff --git a/lib/Catalyst/View/Component/SubInclude/SSI.pm b/lib/Catalyst/View/Component/SubInclude/SSI.pm
new file mode 100644 (file)
index 0000000..0c94e94
--- /dev/null
@@ -0,0 +1,82 @@
+package Catalyst::View::Component::SubInclude::SSI;
+use Moose;
+use namespace::clean -except => 'meta';
+
+=head1 NAME
+
+Catalyst::View::Component::SubInclude::SSI - Server Side Includes (SSI) plugin for C::V::Component::SubInclude
+
+=head1 VERSION
+
+Version 0.08
+
+=cut
+
+our $VERSION = '0.08';
+$VERSION = eval $VERSION;
+
+=head1 SYNOPSIS
+
+In your view class:
+
+  package MyApp::View::TT;
+  use Moose;
+
+  extends 'Catalyst::View::TT';
+  with 'Catalyst::View::Component::SubInclude';
+
+  __PACKAGE__->config( subinclude_plugin => 'SSI' );
+
+Then, somewhere in your templates:
+
+  [% subinclude('/my/widget') %]
+
+=head1 DESCRIPTION
+
+C<Catalyst::View::Component::SubInclude::SSI> renders C<subinclude> calls as 
+Server Side Includes (SSI) include directives. This is a feature implemented by 
+Apache (L<http://httpd.apache.org/>), nginx (L<http://wiki.nginx.org/Main>)
+and many other web servers which allows cache-efficient uses of includes.
+
+=head1 CLASS METHODS
+
+=head2 C<generate_subinclude( $c, $path, @args )>
+
+Note that C<$path> should be the private action path - translation to the public
+path is handled internally. After translation, this will roughly translate to 
+the following code:
+
+  my $url = $c->uri_for( $translated_path, @args )->path_query;
+  return '<!--# include virtual="$url" -->';
+
+Notice that the stash will always be empty. This behavior could be configurable
+in the future through an additional switch - for now, this behavior guarantees a
+common interface for plugins.
+
+=cut
+
+sub generate_subinclude {
+    my ($self, $c, $path, @params) = @_;
+
+    my $uri = $c->uri_for_action( $path, @params );
+
+    return '<!--# include virtual="' . $uri->path_query . '" -->';
+}
+
+=head1 SEE ALSO
+
+L<Catalyst::View::Component::SubInclude|Catalyst::View::Component::SubInclude>, 
+
+=head1 AUTHOR
+
+Vladimir Timofeev, C<< <vovkasm at gmail.com> >>
+
+=head1 COPYRIGHT & LICENSE
+
+This program is free software; you can redistribute it and/or modify it
+under the same terms as Perl itself.
+
+=cut
+
+__PACKAGE__->meta->make_immutable;
+1;
diff --git a/t/app.t b/t/app.t
index 5dd1cf7..0f4c0d4 100644 (file)
--- a/t/app.t
+++ b/t/app.t
@@ -20,6 +20,8 @@ Current time is: [\w\s:]+ --> | plugin = SubRequest |
 Current time is: [\w\s:]+ --> | plugin = Visit | 
 <br/>
 <!--esi <esi:include src="/time?plugin=ESI" /> --><br/>
+<br/>
+<!--# include virtual="/time?plugin=SSI" --><br/>
 
 <br/><br/>
 
@@ -59,6 +61,17 @@ Test CaptureArgs and Args interaction (ESI):<br/><br/>
 <!--esi <esi:include src="/time/regular_arg?query_arg=val" /> --><br/>
 (using: http://localhost/time/regular_arg?query_arg=val)<br/>
 
+<br/><br/>
+
+Test CaptureArgs and Args interaction (SSI):<br/><br/>
+
+<!--# include virtual="/capture_argtest/time/regular_arg?query_arg=val" --><br/>
+(using: http://localhost/capture_argtest/time/regular_arg?query_arg=val)<br/>
+<br/>
+
+<!--# include virtual="/time/regular_arg?query_arg=val" --><br/>
+(using: http://localhost/time/regular_arg?query_arg=val)<br/>
+
 <br/><br/><br/>
 
 Test Args when Chained is not being used:
index 0e88e0a..272ec27 100644 (file)
@@ -7,6 +7,7 @@ Test subinclude using specific plugins:<br/>
 [% subinclude_using('SubRequest', '/time_include', { 'plugin' => 'SubRequest'} ) %]<br/>
 [% subinclude_using('Visit', '/time_include', { 'plugin' => 'Visit'} ) %]<br/>
 [% subinclude_using('ESI', '/time_include', { 'plugin' => 'ESI'} ) %]<br/>
+[% subinclude_using('SSI', '/time_include', { 'plugin' => 'SSI'} ) %]<br/>
 
 <br/><br/>
 
@@ -42,6 +43,17 @@ Test CaptureArgs and Args interaction (ESI):<br/><br/>
 [% subinclude_using('ESI', '/time_args_without_capture', 'regular_arg', { query_arg => 'val' }) %]<br/>
 (using: [% c.uri_for( c.controller.action_for('time_args_without_capture'), 'regular_arg', { query_arg => 'val' } ) %])<br/>
 
+<br/><br/>
+
+Test CaptureArgs and Args interaction (SSI):<br/><br/>
+
+[% subinclude_using('SSI', '/time_args_with_args', ['capture_argtest'], 'regular_arg', { query_arg => 'val' } ) %]<br/>
+(using: [% c.uri_for( c.controller.action_for('time_args_with_args'), ['capture_argtest'], 'regular_arg', { query_arg => 'val' } ) %])<br/>
+<br/>
+
+[% subinclude_using('SSI', '/time_args_without_capture', 'regular_arg', { query_arg => 'val' }) %]<br/>
+(using: [% c.uri_for( c.controller.action_for('time_args_without_capture'), 'regular_arg', { query_arg => 'val' } ) %])<br/>
+
 <br/><br/><br/>
 
 Test Args when Chained is not being used: