File Coverage

blib/lib/Mojolicious/Plugin/EPLRenderer.pm
Criterion Covered Total %
statement 32 32 100.0
branch 15 16 93.7
condition 2 3 66.6
subroutine 6 6 100.0
pod 1 1 100.0
total 56 58 96.5


line stmt bran cond sub pod time code
1             package Mojolicious::Plugin::EPLRenderer;
2 48     48   381 use Mojo::Base 'Mojolicious::Plugin';
  48         124  
  48         454  
3              
4 48     48   385 use Mojo::Template;
  48         118  
  48         473  
5 48     48   330 use Mojo::Util qw(encode md5_sum);
  48         156  
  48         35710  
6              
7             sub register {
8 104     104 1 377 my ($self, $app) = @_;
9 104     75   536 $app->renderer->add_handler(epl => sub { _render(@_, Mojo::Template->new, $_[1]) });
  75         502  
10             }
11              
12             sub _render {
13 570     570   1902 my ($renderer, $c, $output, $options, $mt, @args) = @_;
14              
15             # Cached
16 570 100       1978 if ($mt->compiled) {
17 163         684 $c->helpers->log->trace("Rendering cached @{[$mt->name]}");
  163         671  
18 163         990 $$output = $mt->process(@args);
19             }
20              
21             # Not cached
22             else {
23 407         1033 my $inline = $options->{inline};
24 407 100       1131 my $name = defined $inline ? md5_sum encode('UTF-8', $inline) : undef;
25 407 50 66     1872 return unless defined($name //= $renderer->template_name($options));
26              
27             # Inline
28 407 100       1081 if (defined $inline) {
29 24         109 $c->helpers->log->trace(qq{Rendering inline template "$name"});
30 24         208 $$output = $mt->name(qq{inline template "$name"})->render($inline, @args);
31             }
32              
33             # File
34             else {
35 383 100       1117 if (my $encoding = $renderer->encoding) { $mt->encoding($encoding) }
  378         1297  
36              
37             # Try template
38 383 100       1260 if (defined(my $path = $renderer->template_path($options))) {
    100          
39 51         360 $c->helpers->log->trace(qq{Rendering template "$name"});
40 51         486 $$output = $mt->name(qq{template "$name"})->render_file($path, @args);
41             }
42              
43             # Try DATA section
44             elsif (defined(my $d = $renderer->get_data_template($options))) {
45 152         654 $c->helpers->log->trace(qq{Rendering template "$name" from DATA section});
46 152         1282 $$output = $mt->name(qq{template "$name" from DATA section})->render($d, @args);
47             }
48              
49             # No template
50 180         753 else { $c->helpers->log->trace(qq{Template "$name" not found}) }
51             }
52             }
53              
54             # Exception
55 570 100       4543 die $$output if ref $$output;
56             }
57              
58             1;
59              
60             =encoding utf8
61              
62             =head1 NAME
63              
64             Mojolicious::Plugin::EPLRenderer - Embedded Perl Lite renderer plugin
65              
66             =head1 SYNOPSIS
67              
68             # Mojolicious
69             $app->plugin('EPLRenderer');
70              
71             # Mojolicious::Lite
72             plugin 'EPLRenderer';
73              
74             =head1 DESCRIPTION
75              
76             L is a renderer for C templates, which are pretty much just raw
77             L.
78              
79             This is a core plugin, that means it is always enabled and its code a good example for learning to build new plugins,
80             you're welcome to fork it.
81              
82             See L for a list of plugins that are available by default.
83              
84             =head1 METHODS
85              
86             L inherits all methods from L and implements the following new
87             ones.
88              
89             =head2 register
90              
91             $plugin->register(Mojolicious->new);
92              
93             Register renderer in L application.
94              
95             =head1 SEE ALSO
96              
97             L, L, L.
98              
99             =cut