/[webpac2]/trunk/lib/WebPAC/Output/TT.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /trunk/lib/WebPAC/Output/TT.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/lib/WebPAC/Output/html.pm revision 1 by dpavlin, Sat Jun 25 20:23:23 2005 UTC trunk/lib/WebPAC/Output/TT.pm revision 318 by dpavlin, Fri Dec 23 22:52:48 2005 UTC
# Line 1  Line 1 
1  package WebPAC::Output::html;  package WebPAC::Output::TT;
2    
3  use warnings;  use warnings;
4  use strict;  use strict;
5    
6    use base qw/WebPAC::Common/;
7    
8    use Template;
9    use List::Util qw/first/;
10    use Data::Dumper;
11    use URI::Escape qw/uri_escape_utf8/;
12    
13  =head1 NAME  =head1 NAME
14    
15  WebPAC::Output::html - The great new WebPAC::Output::html!  WebPAC::Output::TT - use Template Toolkit to produce output
16    
17  =head1 VERSION  =head1 VERSION
18    
19  Version 0.01  Version 0.06
20    
21  =cut  =cut
22    
23  our $VERSION = '0.01';  our $VERSION = '0.06';
24    
25  =head1 SYNOPSIS  =head1 SYNOPSIS
26    
27  Quick summary of what the module does.  Produce output using Template Toolkit.
28    
29  Perhaps a little code snippet.  =head1 FUNCTIONS
30    
31      use WebPAC::Output::html;  =head2 new
32    
33      my $foo = WebPAC::Output::html->new();  Create new instance.
     ...  
34    
35  =head1 EXPORT   my $tt = new WebPAC::Output::TT(
36            include_path => '/path/to/conf/output/tt',
37            filters => {
38                    filter_1 => sub { uc(shift) },
39            },
40     );
41    
42  A list of functions that can be exported.  You can delete this section  By default, Template Toolkit will C<EVAL_PERL> if included in templates.
 if you don't export anything, such as for a purely object-oriented module.  
43    
44  =head1 FUNCTIONS  =cut
45    
46  =head2 function1  sub new {
47            my $class = shift;
48            my $self = {@_};
49            bless($self, $class);
50    
51            my $log = $self->_get_logger;
52    
53            # create Template toolkit instance
54            $self->{'tt'} = Template->new(
55                    INCLUDE_PATH => $self->{'include_path'},
56                    FILTERS => $self->{'filter'},
57                    EVAL_PERL => 1,
58            );
59            
60            $log->logdie("can't create TT object: $Template::ERROR") unless ($self->{'tt'});
61    
62  =cut          $log->debug("filters defined: ",Dumper($self->{'filter'}));
63    
64  sub function1 {          $self ? return $self : return undef;
65  }  }
66    
67  =head2 function2  
68    =head2 apply
69    
70    Create output from in-memory data structure using Template Toolkit template.
71    
72     my $text = $tt->apply(
73            template => 'text.tt',
74            data => $ds,
75            record_uri => 'database/prefix/mfn',
76     );
77    
78    It also has follwing template toolikit filter routies defined:
79    
80    =cut
81    
82    sub apply {
83            my $self = shift;
84    
85            my $args = {@_};
86    
87            my $log = $self->_get_logger();
88    
89            foreach my $a (qw/template data/) {
90                    $log->logconfess("need $a") unless ($args->{$a});
91            }
92    
93    =head3 tt_filter_type
94    
95    filter to return values of specified from $ds, usage from TT template is in form
96    C<d('FieldName','delimiter')>, where C<delimiter> is optional, like this:
97    
98      [% d('Title') %]
99      [% d('Author',', ' %]
100    
101    =cut
102    
103            sub tt_filter_type {
104                    my ($data,$type) = @_;
105                    
106                    die "no data?" unless ($data);
107                    $type ||= 'display';
108    
109                    my $default_delimiter = {
110                            'display' => '&#182;<br/>',
111                            'index' => '\n',
112                    };
113    
114                    return sub {
115    
116                            my ($name,$join) = @_;
117    
118                            die "no data hash" unless ($data->{'data'} && ref($data->{'data'}) eq 'HASH');
119                            # Hm? Should we die here?
120                            return unless ($name);
121    
122                            my $item = $data->{'data'}->{$name} || return;
123    
124                            my $v = $item->{$type} || return;
125    
126                            if (ref($v) eq 'ARRAY') {
127                                    if ($#{$v} == 0) {
128                                            $v = $v->[0];
129                                    } else {
130                                            $join = $default_delimiter->{$type} unless defined($join);
131                                            $v = join($join, @{$v});
132                                    }
133                            } else {
134                                    warn("TT filter $type(): field $name values aren't ARRAY, ignoring");
135                            }
136    
137                            return $v;
138                    }
139            }
140    
141            $args->{'d'} = tt_filter_type($args, 'display');
142            $args->{'display'} = tt_filter_type($args, 'display');
143    
144    =head3 tt_filter_search
145    
146    filter to return links to search, usage in TT:
147    
148      [% search('FieldToDisplay','FieldToSearch','optional delimiter') %]
149    
150  =cut  =cut
151    
152  sub function2 {          sub tt_filter_search {
153    
154                    my ($data) = @_;
155    
156                    die "no data?" unless ($data);
157                    
158                    return sub {
159    
160                            my ($display,$search,$delimiter) = @_;
161                            
162                            # default delimiter
163                            $delimiter ||= '&#182;<br/>',
164    
165                            die "no data hash" unless ($data->{'data'} && ref($data->{'data'}) eq 'HASH');
166                            # Hm? Should we die here?
167                            return unless ($display);
168    
169                            my $item = $data->{'data'}->{$display} || return;
170    
171                            return unless($item->{'display'});
172                            die "error in TT template: field $display didn't insert anything into search, use d('$display') and not search('$display'...)" unless($item->{'search'});
173    
174                            my @warn;
175                            foreach my $type (qw/display search/) {
176                                    push @warn, "field $display type $type values aren't ARRAY" unless (ref($item->{$type}) eq 'ARRAY');
177                            }
178    
179                            if (@warn) {
180                                    warn("TT filter search(): " . join(",", @warn) . ", skipping");
181                                    return;
182                            }
183                            my @html;
184    
185                            my $d_el = $#{ $item->{'display'} };
186                            my $s_el = $#{ $item->{'search'} };
187    
188                            # easy, both fields have same number of elements or there is just
189                            # one search and multiple display
190                            if ( $d_el == $s_el || $s_el == 0 ) {
191    
192                                    foreach my $i ( 0 .. $d_el ) {
193    
194                                            my $s;
195                                            if ($s_el > 0) {
196                                                    $s = $item->{'search'}->[$i] || die "can't find value $i for type search in field $search";
197                                            } else {
198                                                    $s = $item->{'search'}->[0];
199                                            }
200                                            #$s =~ s/([^\w.-])/sprintf("%%%02X",ord($1))/eg;
201                                            $s = uri_escape_utf8( $s );
202    
203                                            my $d = $item->{'display'}->[$i] || die "can't find value $i for type display in field $display";
204    
205                                            push @html, qq{<a href="#" onclick="return search_via_link('$search','$s')">$d</a>};
206                                    }
207    
208                                    return join($delimiter, @html);
209                            } else {
210                                    my $html = qq{<div class="notice">WARNING: we should really support if there is $d_el display elements and $s_el search elements, but currently there is no nice way to do so, so we will just display values</div>};
211                                    my $v = $item->{'display'};
212    
213                                    if ($#{$v} == 0) {
214                                            $html .= $v->[0];
215                                    } else {
216                                            $html .= join($delimiter, @{$v});
217                                    }
218                                    return $html;
219                            }
220                    }
221            }
222    
223            $args->{'search'} = tt_filter_search($args);
224    
225    =head3 load_rec
226    
227    Used mostly for onClick events like this:
228    
229      <a href="#" onClick="[% load_rec( record_uri, 'template_name.tt') %]>foo</a>
230    
231    It will automatically do sanity checking and create correct JavaScript code.
232    
233    =cut
234    
235            $args->{'load_rec'} = sub {
236                    my @errors;
237    
238                    my $record_uri = shift or push @errors, "record_uri missing";
239                    my $template = shift or push @errors, "template missing";
240    
241                    if ($record_uri !~ m#^[^/]+/[^/]+/[^/]+$#) {
242                            push @errors, "invalid format of record_uri: $record_uri";
243                    }
244    
245                    if (@errors) {
246                            return "Logger.error('errors in load_rec: " . join(", ", @errors) . "'); return false;";
247                    } else {
248                            return "load_rec('$record_uri','$template'); return false;";
249                    }
250            };
251    
252    =head3 load_template
253    
254    Used to re-submit search request and load results in different template
255    
256      <a href="#" onClick="[% load_template( 'template_name.tt' ) %]">bar</a>
257    
258    =cut
259    
260            $args->{'load_template'} = sub {
261                    my $template = shift or return "Logger.error('load_template missing template name!'); return false;";
262                    return "load_template($template); return false;";
263            };
264    
265            my $out;
266    
267            $self->{'tt'}->process(
268                    $args->{'template'},
269                    $args,
270                    \$out
271            ) || $log->logconfess( "apply can't process template: ", $self->{'tt'}->error() );
272    
273            return $out;
274  }  }
275    
276  =head1 AUTHOR  =head2 to_file
277    
278  Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>  Create output from in-memory data structure using Template Toolkit template
279    to a file.
280    
281     $tt->to_file(
282            file => 'out.txt',
283            template => 'text.tt',
284            data => $ds
285     );
286    
287    =cut
288    
289  =head1 BUGS  sub to_file {
290            my $self = shift;
291    
292  Please report any bugs or feature requests to          my $args = {@_};
 C<bug-webpac-output-html@rt.cpan.org>, or through the web interface at  
 L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WebPAC>.  
 I will be notified, and then you'll automatically be notified of progress on  
 your bug as I make changes.  
293    
294  =head1 ACKNOWLEDGEMENTS          my $log = $self->_get_logger();
295    
296            my $file = $args->{'file'} || $log->logconfess("need file name");
297    
298            $log->debug("creating file ",$file);
299    
300            open(my $fh, ">", $file) || $log->logdie("can't open output file '$file': $!");
301            print $fh $self->output(
302                    template => $args->{'template'},
303                    data => $args->{'data'},
304            ) || $log->logdie("print: $!");
305            close($fh) || $log->logdie("close: $!");
306    
307            return 1;
308    }
309    
310    
311    =head1 AUTHOR
312    
313    Dobrica Pavlinusic, C<< <dpavlin@rot13.org> >>
314    
315  =head1 COPYRIGHT & LICENSE  =head1 COPYRIGHT & LICENSE
316    
# Line 70  under the same terms as Perl itself. Line 321  under the same terms as Perl itself.
321    
322  =cut  =cut
323    
324  1; # End of WebPAC::Output::html  1; # End of WebPAC::Output::TT

Legend:
Removed from v.1  
changed lines
  Added in v.318

  ViewVC Help
Powered by ViewVC 1.1.26