File Coverage

blib/lib/Mojolicious/Plugin/ToolkitRenderer.pm
Criterion Covered Total %
statement 32 39 82.0
branch 3 12 25.0
condition 5 20 25.0
subroutine 9 9 100.0
pod 1 1 100.0
total 50 81 61.7


line stmt bran cond sub pod time code
1             package Mojolicious::Plugin::ToolkitRenderer;
2             # ABSTRACT: Template Toolkit Renderer Mojolicious Plugin
3              
4 1     1   607 use 5.010;
  1         6  
5 1     1   4 use strict;
  1         2  
  1         15  
6 1     1   4 use warnings;
  1         2  
  1         20  
7              
8 1     1   5 use Mojo::Base 'Mojolicious::Plugin';
  1         1  
  1         7  
9 1     1   189 use Mojo::Exception;
  1         2  
  1         75  
10              
11             BEGIN {
12 1     1   5 local $SIG{__WARN__} = sub {};
13 1         384 require Template;
14 1         14829 Template->import;
15             }
16              
17             our $VERSION = '1.12'; # VERSION
18              
19             sub register {
20 1     1 1 55 my ( $self, $app, $settings ) = @_;
21              
22 1   50     5 $settings->{config}{RELATIVE} //= 1;
23 1   50     4 $settings->{config}{EVAL_PERL} //= 0;
24 1   33     10 $settings->{config}{INCLUDE_PATH} //= $app->renderer->paths;
25              
26 1         24 my $template = Template->new( $settings->{config} );
27              
28 1 50       17987 $settings->{context}->( $template->context ) if ( $settings->{context} );
29              
30             $app->renderer->add_handler( tt => sub {
31 1     1   147 my ( $renderer, $controller, $output, $options ) = @_;
32 1   50     7 my $inline = $settings->{settings}{inline_template} || 'inline';
33              
34             $template->process(
35             ( ( $options->{$inline} ) ? \$options->{$inline} : $renderer->template_name($options) ),
36             {
37             content => $controller->content,
38 1         48 %{ $controller->stash },
39             ( $settings->{settings}{controller} || 'c' ) => $controller,
40             },
41             $output,
42 1 50 50     9 ) || do {
    50          
43 0 0       0 if ( ref( $settings->{settings}{error_handler} ) eq 'CODE' ) {
44 0         0 $settings->{settings}{error_handler}->( $controller, $renderer, $app, $template );
45             }
46             else {
47 0 0 0     0 unless (
      0        
48             $template->error and (
49             $template->error eq 'file error - exception.html.tt: not found' or
50             $template->error eq 'file error - exception.' . $app->mode . '.html.tt: not found'
51             )
52             ) {
53 0         0 $$output = $template->error;
54 0         0 $controller->res->headers->content_type('text/plain');
55              
56 0         0 $controller->log->error( $template->error );
57 0 0 0     0 $controller->rendered(
58             ( $template->error and $template->error =~ /not found/ ) ? 404 : 500
59             );
60             }
61             }
62             };
63              
64 1         24475 return $$output;
65 1         40 } );
66              
67             $app->helper(
68             render_tt => sub {
69 1     1   17810 shift->render( handler => 'tt', @_ );
70             }
71 1         39 );
72              
73 1         134 return;
74             }
75              
76             1;
77              
78             __END__