summaryrefslogtreecommitdiffstats
path: root/lib/OX/View/TT.pm
blob: 0390231e9dc573305178195a6bf1d7fe851c01c3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
package OX::View::TT;
use Moose;
use MooseX::Types::Path::Class;

use Template;

our $VERSION   = '0.01';
our $AUTHORITY = 'cpan:STEVAN';

has 'template_root' => (
    is       => 'ro',
    isa      => 'Path::Class::Dir',
    coerce   => 1,
    required => 1,
);

has 'template_config' => (
    is      => 'ro',
    isa     => 'HashRef',
    lazy    => 1,
    default => sub { +{} },
);

has 'tt' => (
    is      => 'ro',
    isa     => 'Template',
    lazy    => 1,
    default => sub {
        my $self = shift;
        Template->new(
            INCLUDE_PATH => $self->template_root,
            %{ $self->template_config }
        )
    }
);

sub normalize_web_base {
    my ($self, $r) = @_;
    my $base = $r->script_name;
    $base = '/' . $base unless $base =~ /^\//;
    $base = $base . '/' unless $base =~ /\/$/;
    $base;
}

sub build_template_params {
    my ($self, $r, $params) = @_;
    my $BASE = $self->normalize_web_base( $r );
    return +{
        r           => $r,
        base        => $BASE,
        uri_for     => sub { $BASE . $r->router->uri_for( %{ $_[0] } ) },
        %{ $params || {} }
    }
}

sub render {
    my ($self, $r, $template, $params) = @_;
    my $out = '';
    $self->tt->process(
        $template,
        $self->build_template_params( $r, $params ),
        \$out
    ) || confess $self->tt->error;
    $out;
}

__PACKAGE__->meta->make_immutable;

no Moose; 1;

__END__

=pod

=head1 NAME

OX::View::TT - A Moosey solution to this problem

=head1 SYNOPSIS

  use OX::View::TT;

=head1 DESCRIPTION

=head1 METHODS

=over 4

=item B<>

=back

=head1 BUGS

All complex software has bugs lurking in it, and this module is no
exception. If you find a bug please either email me, or add the bug
to cpan-RT.

=head1 AUTHOR

Stevan Little E<lt>stevan.little@iinteractive.comE<gt>

=head1 COPYRIGHT AND LICENSE

Copyright 2009 Infinity Interactive, Inc.

L<http://www.iinteractive.com>

This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.

=cut