Split more path_tos out into app config, add encoding
[catagits/Catalyst-View-TT.git] / lib / Catalyst / View / TT.pm
1 package Catalyst::View::TT;
2
3 use strict;
4 use warnings;
5
6 use base qw/Catalyst::View/;
7 use Data::Dump 'dump';
8 use Template;
9 use Template::Timer;
10 use MRO::Compat;
11 use Scalar::Util qw/blessed weaken/;
12
13 our $VERSION = '0.37';
14 $VERSION = eval $VERSION;
15
16 __PACKAGE__->mk_accessors('template');
17 __PACKAGE__->mk_accessors('expose_methods');
18 __PACKAGE__->mk_accessors('include_path');
19
20 *paths = \&include_path;
21
22 =head1 NAME
23
24 Catalyst::View::TT - Template View Class
25
26 =head1 SYNOPSIS
27
28 # use the helper to create your View
29
30     myapp_create.pl view Web TT
31
32 # add custom configration in View/Web.pm
33
34     __PACKAGE__->config(
35         # any TT configuration items go here
36         TEMPLATE_EXTENSION => '.tt',
37         CATALYST_VAR => 'c',
38         TIMER        => 0,
39         ENCODING     => 'utf-8'
40         # Not set by default
41         PRE_PROCESS        => 'config/main',
42         WRAPPER            => 'site/wrapper',
43         render_die => 1, # Default for new apps, see render method docs
44         expose_methods => [qw/method_in_view_class/],
45     );
46
47 # add include path configuration in MyApp.pm
48
49     __PACKAGE__->config(
50         'View::Web' => {
51             INCLUDE_PATH => [
52                 __PACKAGE__->path_to( 'root', 'src' ),
53                 __PACKAGE__->path_to( 'root', 'lib' ),
54             ],
55         },
56     );
57
58 # render view from lib/MyApp.pm or lib/MyApp::Controller::SomeController.pm
59
60     sub message : Global {
61         my ( $self, $c ) = @_;
62         $c->stash->{template} = 'message.tt2';
63         $c->stash->{message}  = 'Hello World!';
64         $c->forward( $c->view('Web') );
65     }
66
67 # access variables from template
68
69     The message is: [% message %].
70
71     # example when CATALYST_VAR is set to 'Catalyst'
72     Context is [% Catalyst %]
73     The base is [% Catalyst.req.base %]
74     The name is [% Catalyst.config.name %]
75
76     # example when CATALYST_VAR isn't set
77     Context is [% c %]
78     The base is [% base %]
79     The name is [% name %]
80
81 =cut
82
83 sub _coerce_paths {
84     my ( $paths, $dlim ) = shift;
85     return () if ( !$paths );
86     return @{$paths} if ( ref $paths eq 'ARRAY' );
87
88     # tweak delim to ignore C:/
89     unless ( defined $dlim ) {
90         $dlim = ( $^O eq 'MSWin32' ) ? ':(?!\\/)' : ':';
91     }
92     return split( /$dlim/, $paths );
93 }
94
95 sub new {
96     my ( $class, $c, $arguments ) = @_;
97     my $config = {
98         EVAL_PERL          => 0,
99         TEMPLATE_EXTENSION => '',
100         CLASS              => 'Template',
101         %{ $class->config },
102         %{$arguments},
103     };
104     if ( ! (ref $config->{INCLUDE_PATH} eq 'ARRAY') ) {
105         my $delim = $config->{DELIMITER};
106         my @include_path
107             = _coerce_paths( $config->{INCLUDE_PATH}, $delim );
108         if ( !@include_path ) {
109             my $root = $c->config->{root};
110             my $base = Path::Class::dir( $root, 'base' );
111             @include_path = ( "$root", "$base" );
112         }
113         $config->{INCLUDE_PATH} = \@include_path;
114     }
115
116     # if we're debugging and/or the TIMER option is set, then we install
117     # Template::Timer as a custom CONTEXT object, but only if we haven't
118     # already got a custom CONTEXT defined
119
120     if ( $config->{TIMER} ) {
121         if ( $config->{CONTEXT} ) {
122             $c->log->error(
123                 'Cannot use Template::Timer - a TT CONTEXT is already defined'
124             );
125         }
126         else {
127             $config->{CONTEXT} = Template::Timer->new(%$config);
128         }
129     }
130
131     if ( $c->debug && $config->{DUMP_CONFIG} ) {
132         $c->log->debug( "TT Config: ", dump($config) );
133     }
134
135     my $self = $class->next::method(
136         $c, { %$config },
137     );
138
139     # Set base include paths. Local'd in render if needed
140     $self->include_path($config->{INCLUDE_PATH});
141
142     $self->expose_methods($config->{expose_methods});
143     $self->config($config);
144
145     # Creation of template outside of call to new so that we can pass [ $self ]
146     # as INCLUDE_PATH config item, which then gets ->paths() called to get list
147     # of include paths to search for templates.
148
149     # Use a weakend copy of self so we dont have loops preventing GC from working
150     my $copy = $self;
151     Scalar::Util::weaken($copy);
152     $config->{INCLUDE_PATH} = [ sub { $copy->paths } ];
153
154     if ( $config->{PROVIDERS} ) {
155         my @providers = ();
156         if ( ref($config->{PROVIDERS}) eq 'ARRAY') {
157             foreach my $p (@{$config->{PROVIDERS}}) {
158                 my $pname = $p->{name};
159                 my $prov = 'Template::Provider';
160                 if($pname eq '_file_')
161                 {
162                     $p->{args} = { %$config };
163                 }
164                 else
165                 {
166                     if($pname =~ s/^\+//) {
167                         $prov = $pname;
168                     }
169                     else
170                     {
171                         $prov .= "::$pname";
172                     }
173                     # We copy the args people want from the config
174                     # to the args
175                     $p->{args} ||= {};
176                     if ($p->{copy_config}) {
177                         map  { $p->{args}->{$_} = $config->{$_}  }
178                                    grep { exists $config->{$_} }
179                                    @{ $p->{copy_config} };
180                     }
181                 }
182                 local $@;
183                 eval "require $prov";
184                 if(!$@) {
185                     push @providers, "$prov"->new($p->{args});
186                 }
187                 else
188                 {
189                     $c->log->warn("Can't load $prov, ($@)");
190                 }
191             }
192         }
193         delete $config->{PROVIDERS};
194         if(@providers) {
195             $config->{LOAD_TEMPLATES} = \@providers;
196         }
197     }
198
199     $self->{template} =
200         $config->{CLASS}->new($config) || do {
201             my $error = $config->{CLASS}->error();
202             $c->log->error($error);
203             $c->error($error);
204             return undef;
205         };
206
207
208     return $self;
209 }
210
211 sub process {
212     my ( $self, $c ) = @_;
213
214     my $template = $c->stash->{template}
215       ||  $c->action . $self->config->{TEMPLATE_EXTENSION};
216
217     unless (defined $template) {
218         $c->log->debug('No template specified for rendering') if $c->debug;
219         return 0;
220     }
221
222     local $@;
223     my $output = eval { $self->render($c, $template) };
224     if (my $err = $@) {
225         return $self->_rendering_error($c, $template . ': ' . $err);
226     }
227     if (blessed($output) && $output->isa('Template::Exception')) {
228         $self->_rendering_error($c, $output);
229     }
230
231     unless ( $c->response->content_type ) {
232         $c->response->content_type('text/html; charset=utf-8');
233     }
234
235     $c->response->body($output);
236
237     return 1;
238 }
239
240 sub _rendering_error {
241     my ($self, $c, $err) = @_;
242     my $error = qq/Couldn't render template "$err"/;
243     $c->log->error($error);
244     $c->error($error);
245     return 0;
246 }
247
248 sub render {
249     my ($self, $c, $template, $args) = @_;
250
251     $c->log->debug(qq/Rendering template "$template"/) if $c && $c->debug;
252
253     my $output;
254     my $vars = {
255         (ref $args eq 'HASH' ? %$args : %{ $c->stash() }),
256         $self->template_vars($c)
257     };
258
259     local $self->{include_path} =
260         [ @{ $vars->{additional_template_paths} }, @{ $self->{include_path} } ]
261         if ref $vars->{additional_template_paths};
262
263     unless ( $self->template->process( $template, $vars, \$output ) ) {
264         if (exists $self->{render_die}) {
265             die $self->template->error if $self->{render_die};
266             return $self->template->error;
267         }
268         $c->log->debug('The Catalyst::View::TT render() method will start dying on error in a future release. Unless you are calling the render() method manually, you probably want the new behaviour, so set render_die => 1 in config for ' . blessed($self) . '. If you wish to continue to return the exception rather than throwing it, add render_die => 0 to your config.') if $c->debug;
269         return $self->template->error;
270     }
271     return $output;
272 }
273
274 sub template_vars {
275     my ( $self, $c ) = @_;
276
277     return  () unless $c;
278     my $cvar = $self->config->{CATALYST_VAR};
279
280     my %vars = defined $cvar
281       ? ( $cvar => $c )
282       : (
283         c    => $c,
284         base => $c->req->base,
285         name => $c->config->{name}
286       );
287
288     if ($self->expose_methods) {
289         my $meta = $self->meta;
290         foreach my $method_name (@{$self->expose_methods}) {
291             my $method = $meta->find_method_by_name( $method_name );
292             unless ($method) {
293                 Catalyst::Exception->throw( "$method_name not found in TT view" );
294             }
295             my $method_body = $method->body;
296             my $weak_ctx = $c;
297             weaken $weak_ctx;
298             my $sub = sub {
299                 $self->$method_body($weak_ctx, @_);
300             };
301             $vars{$method_name} = $sub;
302         }
303     }
304     return %vars;
305 }
306
307 1;
308
309 __END__
310
311 =head1 DESCRIPTION
312
313 This is the Catalyst view class for the L<Template Toolkit|Template>.
314 Your application should defined a view class which is a subclass of
315 this module. Throughout this manual it will be assumed that your application
316 is named F<MyApp> and you are creating a TT view named F<Web>; these names
317 are placeholders and should always be replaced with whatever name you've
318 chosen for your application and your view. The easiest way to create a TT
319 view class is through the F<myapp_create.pl> script that is created along
320 with the application:
321
322     $ script/myapp_create.pl view Web TT
323
324 This creates a F<MyApp::View::Web.pm> module in the F<lib> directory (again,
325 replacing C<MyApp> with the name of your application) which looks
326 something like this:
327
328     package FooBar::View::Web;
329
330     use strict;
331     use warnings;
332
333     use base 'Catalyst::View::TT';
334
335     __PACKAGE__->config(DEBUG => 'all');
336
337 Now you can modify your action handlers in the main application and/or
338 controllers to forward to your view class.  You might choose to do this
339 in the end() method, for example, to automatically forward all actions
340 to the TT view class.
341
342     # In MyApp or MyApp::Controller::SomeController
343
344     sub end : Private {
345         my( $self, $c ) = @_;
346         $c->forward( $c->view('Web') );
347     }
348
349 But if you are using the standard auto-generated end action, you don't even need
350 to do this!
351
352     # in MyApp::Controller::Root
353     sub end : ActionClass('RenderView') {} # no need to change this line
354
355     # in MyApp.pm
356     __PACKAGE__->config(
357         ...
358         default_view => 'Web',
359     );
360
361 This will Just Work.  And it has the advantages that:
362
363 =over 4
364
365 =item *
366
367 If you want to use a different view for a given request, just set 
368 << $c->stash->{current_view} >>.  (See L<Catalyst>'s C<< $c->view >> method
369 for details.
370
371 =item *
372
373 << $c->res->redirect >> is handled by default.  If you just forward to 
374 C<View::Web> in your C<end> routine, you could break this by sending additional
375 content.
376
377 =back
378
379 See L<Catalyst::Action::RenderView> for more details.
380
381 =head2 CONFIGURATION
382
383 There are a three different ways to configure your view class.  The
384 first way is to call the C<config()> method in the view subclass.  This
385 happens when the module is first loaded.
386
387     package MyApp::View::Web;
388     use Moose;
389     extends 'Catalyst::View::TT';
390
391     __PACKAGE__->config({
392         PRE_PROCESS  => 'config/main',
393         WRAPPER      => 'site/wrapper',
394     });
395
396 You may also override the configuration provided in the view class by adding
397 a 'View::Web' section to your application config.
398
399 This should generally be used to inject the include paths into the view to
400 avoid the view trying to load the application to resolve paths.
401
402     .. inside MyApp.pm ..
403     __PACKAGE__->config(
404         'View::Web' => {
405             INCLUDE_PATH => [
406                 __PACKAGE__->path_to( 'root', 'templates', 'lib' ),
407                 __PACKAGE__->path_to( 'root', 'templates', 'src' ),
408             ],
409         },
410     );
411
412 You can also configure your view from within your config file if you're
413 using L<Catalyst::Plugin::ConfigLoader>. This should be reserved for
414 deployment-specific concerns. For example:
415
416     # MyApp_local.conf (Config::General format)
417
418     <View Web>
419       WRAPPER "custom_wrapper"
420       INCLUDE_PATH __path_to('root/templates/custom_site')__
421       INCLUDE_PATH __path_to('root/templates')__
422     </View>
423
424 might be used as part of a simple way to deploy different instances of the
425 same application with different themes.
426
427 =head2 DYNAMIC INCLUDE_PATH
428
429 Sometimes it is desirable to modify INCLUDE_PATH for your templates at run time.
430
431 Additional paths can be added to the start of INCLUDE_PATH via the stash as
432 follows:
433
434     $c->stash->{additional_template_paths} =
435         [$c->config->{root} . '/test_include_path'];
436
437 If you need to add paths to the end of INCLUDE_PATH, there is also an
438 include_path() accessor available:
439
440     push( @{ $c->view('Web')->include_path }, qw/path/ );
441
442 Note that if you use include_path() to add extra paths to INCLUDE_PATH, you
443 MUST check for duplicate paths. Without such checking, the above code will add
444 "path" to INCLUDE_PATH at every request, causing a memory leak.
445
446 A safer approach is to use include_path() to overwrite the array of paths
447 rather than adding to it. This eliminates both the need to perform duplicate
448 checking and the chance of a memory leak:
449
450     @{ $c->view('Web')->include_path } = qw/path another_path/;
451
452 If you are calling C<render> directly then you can specify dynamic paths by
453 having a C<additional_template_paths> key with a value of additonal directories
454 to search. See L<CAPTURING TEMPLATE OUTPUT> for an example showing this.
455
456 =head2 RENDERING VIEWS
457
458 The view plugin renders the template specified in the C<template>
459 item in the stash.
460
461     sub message : Global {
462         my ( $self, $c ) = @_;
463         $c->stash->{template} = 'message.tt2';
464         $c->forward( $c->view('Web') );
465     }
466
467 If a stash item isn't defined, then it instead uses the
468 stringification of the action dispatched to (as defined by $c->action)
469 in the above example, this would be C<message>, but because the default
470 is to append '.tt', it would load C<root/message.tt>.
471
472 The items defined in the stash are passed to the Template Toolkit for
473 use as template variables.
474
475     sub default : Private {
476         my ( $self, $c ) = @_;
477         $c->stash->{template} = 'message.tt2';
478         $c->stash->{message}  = 'Hello World!';
479         $c->forward( $c->view('Web') );
480     }
481
482 A number of other template variables are also added:
483
484     c      A reference to the context object, $c
485     base   The URL base, from $c->req->base()
486     name   The application name, from $c->config->{ name }
487
488 These can be accessed from the template in the usual way:
489
490 <message.tt2>:
491
492     The message is: [% message %]
493     The base is [% base %]
494     The name is [% name %]
495
496
497 The output generated by the template is stored in C<< $c->response->body >>.
498
499 =head2 CAPTURING TEMPLATE OUTPUT
500
501 If you wish to use the output of a template for some other purpose than
502 displaying in the response, e.g. for sending an email, this is possible using
503 L<Catalyst::Plugin::Email> and the L<render> method:
504
505   sub send_email : Local {
506     my ($self, $c) = @_;
507
508     $c->email(
509       header => [
510         To      => 'me@localhost',
511         Subject => 'A TT Email',
512       ],
513       body => $c->view('Web')->render($c, 'email.tt', {
514         additional_template_paths => [ $c->config->{root} . '/email_templates'],
515         email_tmpl_param1 => 'foo'
516         }
517       ),
518     );
519   # Redirect or display a message
520   }
521
522 =head2 TEMPLATE PROFILING
523
524 See L<C<TIMER>> property of the L<config> method.
525
526 =head2 METHODS
527
528 =head2 new
529
530 The constructor for the TT view. Sets up the template provider,
531 and reads the application config.
532
533 =head2 process($c)
534
535 Renders the template specified in C<< $c->stash->{template} >> or
536 C<< $c->action >> (the private name of the matched action).  Calls L<render> to
537 perform actual rendering. Output is stored in C<< $c->response->body >>.
538
539 It is possible to forward to the process method of a TT view from inside
540 Catalyst like this:
541
542     $c->forward('View::Web');
543
544 N.B. This is usually done automatically by L<Catalyst::Action::RenderView>.
545
546 =head2 render($c, $template, \%args)
547
548 Renders the given template and returns output. Throws a L<Template::Exception>
549 object upon error.
550
551 The template variables are set to C<%$args> if C<$args> is a hashref, or
552 C<< $c->stash >> otherwise. In either case the variables are augmented with
553 C<base> set to C<< $c->req->base >>, C<c> to C<$c>, and C<name> to
554 C<< $c->config->{name} >>. Alternately, the C<CATALYST_VAR> configuration item
555 can be defined to specify the name of a template variable through which the
556 context reference (C<$c>) can be accessed. In this case, the C<c>, C<base>, and
557 C<name> variables are omitted.
558
559 C<$template> can be anything that Template::process understands how to
560 process, including the name of a template file or a reference to a test string.
561 See L<Template::process|Template/process> for a full list of supported formats.
562
563 To use the render method outside of your Catalyst app, just pass a undef context.
564 This can be useful for tests, for instance.
565
566 It is possible to forward to the render method of a TT view from inside Catalyst
567 to render page fragments like this:
568
569     my $fragment = $c->forward("View::Web", "render", $template_name, $c->stash->{fragment_data});
570
571 =head3 Backwards compatibility note
572
573 The render method used to just return the Template::Exception object, rather
574 than just throwing it. This is now deprecated and instead the render method
575 will throw an exception for new applications.
576
577 This behaviour can be activated (and is activated in the default skeleton
578 configuration) by using C<< render_die => 1 >>. If you rely on the legacy
579 behaviour then a warning will be issued.
580
581 To silence this warning, set C<< render_die => 0 >>, but it is recommended
582 you adjust your code so that it works with C<< render_die => 1 >>.
583
584 In a future release, C<< render_die => 1 >> will become the default if
585 unspecified.
586
587 =head2 template_vars
588
589 Returns a list of keys/values to be used as the catalyst variables in the
590 template.
591
592 =head2 config
593
594 This method allows your view subclass to pass additional settings to
595 the TT configuration hash, or to set the options as below:
596
597 =head2 paths
598
599 The list of paths TT will look for templates in.
600
601 =head2 expose_methods
602
603 The list of methods in your View class which should be made available to the templates.
604
605 For example:
606
607   expose_methods => [qw/uri_for_css/],
608
609   ...
610
611   sub uri_for_css {
612     my ($self, $c, $filename) = @_;
613
614     # additional complexity like checking file exists here
615
616     return $c->uri_for('/static/css/' . $filename);
617   }
618
619 Then in the template:
620
621   [% uri_for_css('home.css') %]
622
623 =head2 C<CATALYST_VAR>
624
625 Allows you to change the name of the Catalyst context object. If set, it will also
626 remove the base and name aliases, so you will have access them through <context>.
627
628 For example, if CATALYST_VAR has been set to "Catalyst", a template might
629 contain:
630
631     The base is [% Catalyst.req.base %]
632     The name is [% Catalyst.config.name %]
633
634 =head2 C<TIMER>
635
636 If you have configured Catalyst for debug output, and turned on the TIMER setting,
637 C<Catalyst::View::TT> will enable profiling of template processing
638 (using L<Template::Timer>). This will embed HTML comments in the
639 output from your templates, such as:
640
641     <!-- TIMER START: process mainmenu/mainmenu.ttml -->
642     <!-- TIMER START: include mainmenu/cssindex.tt -->
643     <!-- TIMER START: process mainmenu/cssindex.tt -->
644     <!-- TIMER END: process mainmenu/cssindex.tt (0.017279 seconds) -->
645     <!-- TIMER END: include mainmenu/cssindex.tt (0.017401 seconds) -->
646
647     ....
648
649     <!-- TIMER END: process mainmenu/footer.tt (0.003016 seconds) -->
650
651
652 =head2 C<TEMPLATE_EXTENSION>
653
654 a sufix to add when looking for templates bases on the C<match> method in L<Catalyst::Request>.
655
656 For example:
657
658   package MyApp::Controller::Test;
659   sub test : Local { .. }
660
661 Would by default look for a template in <root>/test/test. If you set TEMPLATE_EXTENSION to '.tt', it will look for
662 <root>/test/test.tt.
663
664 =head2 C<PROVIDERS>
665
666 Allows you to specify the template providers that TT will use.
667
668     MyApp->config(
669         name     => 'MyApp',
670         root     => MyApp->path_to('root'),
671         'View::Web' => {
672             PROVIDERS => [
673                 {
674                     name    => 'DBI',
675                     args    => {
676                         DBI_DSN => 'dbi:DB2:books',
677                         DBI_USER=> 'foo'
678                     }
679                 }, {
680                     name    => '_file_',
681                     args    => {}
682                 }
683             ]
684         },
685     );
686
687 The 'name' key should correspond to the class name of the provider you
688 want to use.  The _file_ name is a special case that represents the default
689 TT file-based provider.  By default the name is will be prefixed with
690 'Template::Provider::'.  You can fully qualify the name by using a unary
691 plus:
692
693     name => '+MyApp::Provider::Foo'
694
695 You can also specify the 'copy_config' key as an arrayref, to copy those keys
696 from the general config, into the config for the provider:
697
698     DEFAULT_ENCODING    => 'utf-8',
699     PROVIDERS => [
700         {
701             name    => 'Encoding',
702             copy_config => [qw(DEFAULT_ENCODING INCLUDE_PATH)]
703         }
704     ]
705
706 This can prove useful when you want to use the additional_template_paths hack
707 in your own provider, or if you need to use Template::Provider::Encoding
708
709 =head2 C<CLASS>
710
711 Allows you to specify a custom class to use as the template class instead of
712 L<Template>.
713
714     package MyApp::View::Web;
715
716     use strict;
717     use base 'Catalyst::View::TT';
718
719     use Template::AutoFilter;
720
721     __PACKAGE__->config({
722         CLASS => 'Template::AutoFilter',
723     });
724
725 This is useful if you want to use your own subclasses of L<Template>, so you
726 can, for example, prevent XSS by automatically filtering all output through
727 C<| html>.
728
729 =head2 HELPERS
730
731 The L<Catalyst::Helper::View::TT> and
732 L<Catalyst::Helper::View::TTSite> helper modules are provided to create
733 your view module.  There are invoked by the F<myapp_create.pl> script:
734
735     $ script/myapp_create.pl view Web TT
736
737     $ script/myapp_create.pl view Web TTSite
738
739 The L<Catalyst::Helper::View::TT> module creates a basic TT view
740 module.  The L<Catalyst::Helper::View::TTSite> module goes a little
741 further.  It also creates a default set of templates to get you
742 started.  It also configures the view module to locate the templates
743 automatically.
744
745 =head1 NOTES
746
747 If you are using the L<CGI> module inside your templates, you will
748 experience that the Catalyst server appears to hang while rendering
749 the web page. This is due to the debug mode of L<CGI> (which is
750 waiting for input in the terminal window). Turning off the
751 debug mode using the "-no_debug" option solves the
752 problem, eg.:
753
754     [% USE CGI('-no_debug') %]
755
756 =head1 SEE ALSO
757
758 L<Catalyst>, L<Catalyst::Helper::View::TT>,
759 L<Catalyst::Helper::View::TTSite>, L<Template::Manual>
760
761 =head1 AUTHORS
762
763 Sebastian Riedel, C<sri@cpan.org>
764
765 Marcus Ramberg, C<mramberg@cpan.org>
766
767 Jesse Sheidlower, C<jester@panix.com>
768
769 Andy Wardley, C<abw@cpan.org>
770
771 Luke Saunders, C<luke.saunders@gmail.com>
772
773 =head1 COPYRIGHT
774
775 This program is free software. You can redistribute it and/or modify it
776 under the same terms as Perl itself.
777
778 =cut