]> git.decadent.org.uk Git - maypole.git/blob - lib/Apache/MVC/View/TT.pm
Now it really is producing pages.
[maypole.git] / lib / Apache / MVC / View / TT.pm
1 package Apache::MVC::View::TT;
2 use Lingua::EN::Inflect;
3 use Template;
4 use File::Spec;
5 use UNIVERSAL::moniker;
6 use strict;
7
8
9 sub new { bless {}, shift } # Not worth having
10
11 sub _tt {
12     my ($self, $r) = @_;
13     my $root = $r->config->{template_root};
14     Template->new({ INCLUDE_PATH => [
15         $root,
16         File::Spec->catdir($root, $r->model_class->moniker),
17         File::Spec->catdir($root, "custom"),
18         File::Spec->catdir($root, "factory")
19     ]});
20 }
21
22 sub _args {
23     my ($self, $r) = @_;
24     my $class = $r->model_class;
25     my %args = (
26         request => $r,
27         class   => $class,
28         objects => $r->objects,
29         # ...
30     );
31     $args{classmetadata} = {
32         name => $class,
33         columns => [ $class->columns ],
34         colnames => { $class->column_names },
35         moniker => $class->moniker,
36         plural  => $class->plural_moniker,
37         cgi => { $class->to_cgi },
38         description => $class->description
39     };
40
41     # User-friendliness facility for custom template writers.
42     if (@{$r->objects} > 1){
43         $args{$r->model_class->plural_moniker} = $r->objects;
44     } else {
45         ($args{$r->model_class->moniker}) = @{$r->objects};
46     }
47     %args;
48 }
49
50 sub process {
51     my ($self, $r) = @_;
52     my $template = $self->_tt($r);
53     my $output;
54     $template->process($r->template, { $self->_args($r) }, \$output)
55     || $self->error($r, $template->error);
56     $r->{ar}->content_type("text/html");
57     $r->{ar}->headers_out->set("Content-Length" => length $output);
58     $r->{ar}->send_http_header;
59     $r->{ar}->print($output);
60     return 200;
61 }
62
63 sub error {
64     my ($self, $r, $error) = @_;
65     $r->{ar}->send_http_header("text/plain");
66     $r->{ar}->print($error);
67     exit;
68 }