X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FView%2FComponent%2FSubInclude%2FESI.pm;h=6b258fb1b83efc8732f427afe94d983bb2e282ac;hb=f71ea072d1c41d62dd739d23a7eab20fac4b891e;hp=f2e02b93a3961f3494b4602f60558c82a75231a1;hpb=eb99eb06c57d8c812cb929c489710704a2198d6b;p=catagits%2FCatalyst-View-Component-SubInclude.git diff --git a/lib/Catalyst/View/Component/SubInclude/ESI.pm b/lib/Catalyst/View/Component/SubInclude/ESI.pm index f2e02b9..6b258fb 100644 --- a/lib/Catalyst/View/Component/SubInclude/ESI.pm +++ b/lib/Catalyst/View/Component/SubInclude/ESI.pm @@ -2,11 +2,94 @@ package Catalyst::View::Component::SubInclude::ESI; use warnings; use strict; +=head1 NAME + +Catalyst::View::Component::SubInclude::ESI - Edge Side Includes (ESI) plugin for C::V::Component::SubInclude + +=head1 VERSION + +Version 0.07 + +=cut + +our $VERSION = '0.07'; + +=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 => 'ESI' ); + +Then, somewhere in your templates: + + [% subinclude('/my/widget') %] + +=head1 DESCRIPTION + +C renders C calls as +Edge Side Includes (ESI) include directives. This is a feature implemented by +Varnish (L) which allows cache-efficient +uses of includes. + +=head1 CLASS METHODS + +=head2 C + +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 ''; + +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 $class = shift; - my $c = shift; - my $url = $c->uri_for( @_ ); - return ''; + my ($class, $c, $path, @params) = @_; + + my $args = ref $params[0] eq 'ARRAY' ? shift @params : []; + + my $dispatcher = $c->dispatcher; + my ($action) = $dispatcher->_invoke_as_path( $c, $path, $args ); + + my $uri = $c->uri_for( $action, $args, @params ); + + return ''; } +=head1 SEE ALSO + +L, +L, +L + +=head1 AUTHOR + +Nilson Santos Figueiredo Junior, C<< >> + +=head1 SPONSORSHIP + +Development sponsored by Ionzero LLC L. + +=head1 COPYRIGHT & LICENSE + +Copyright (C) 2009 Nilson Santos Figueiredo Junior. + +Copyright (C) 2009 Ionzero LLC. + +This program is free software; you can redistribute it and/or modify it +under the same terms as Perl itself. + +=cut + 1;