BUG 7143: Add Kyle Hall as the 42nd developer to history
[koha.git] / C4 / TTParser.pm
blobd27e412678ec355a458e7a89ed2fad2b1dbe8278
1 #!/usr/bin/env perl
3 # Copyright Tamil 2011
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20 #simple parser for HTML with Template Toolkit directives. Tokens are put into @tokens and are accesible via next_token and peep_token
21 package C4::TTParser;
22 use base qw(HTML::Parser);
23 use C4::TmplToken;
24 use strict;
25 use warnings;
27 #seems to be handled post tokenizer
28 ##hash where key is tag we are interested in and the value is a hash of the attributes we want
29 #my %interesting_tags = (
30 # img => { alt => 1 },
31 #);
33 #tokens found so far (used like a stack)
34 my ( @tokens );
36 #shiftnext token or undef
37 sub next_token{
38 return shift @tokens;
41 #unshift token back on @tokens
42 sub unshift_token{
43 my $self = shift;
44 unshift @tokens, shift;
47 #have a peep at next token
48 sub peep_token{
49 return $tokens[0];
52 #wrapper for parse
53 #please use this method INSTEAD of the HTML::Parser->parse_file method (and HTML::Parser->parse)
54 #signature build_tokens( self, filename)
55 sub build_tokens{
56 my ($self, $filename) = @_;
57 $self->{filename} = $filename;
58 $self->handler(start => "start", "self, line, tagname, attr, text"); #signature is start( self, linenumber, tagname, hash of attributes, origional text )
59 $self->handler(text => "text", "self, line, text, is_cdata"); #signature is text( self, linenumber, origional text, is_cdata )
60 $self->handler(end => "end", "self, line, tag, attr, text"); #signature is end( self, linenumber, tagename, origional text )
61 $self->handler(declaration => "declaration", "self, line, text, is_cdata"); # declaration
62 $self->handler(comment => "comment", "self, line, text, is_cdata"); # comments
63 # $self->handler(default => "default", "self, line, text, is_cdata"); # anything else
64 $self->marked_sections(1); #treat anything inside CDATA tags as text, should really make it a C4::TmplTokenType::CDATA
65 $self->unbroken_text(1); #make contiguous whitespace into a single token (can span multiple lines)
66 $self->parse_file($filename);
67 return $self;
70 #handle parsing of text
71 sub text{
72 my $self = shift;
73 my $line = shift;
74 my $work = shift; # original text
75 my $is_cdata = shift;
76 while($work){
77 # if there is a template_toolkit tag
78 if( $work =~ m/\[%.*?%\]/ ){
79 #everything before this tag is text (or possibly CDATA), add a text token to tokens if $`
80 if( $` ){
81 my $t = C4::TmplToken->new( $`, ($is_cdata? C4::TmplTokenType::CDATA : C4::TmplTokenType::TEXT), $line, $self->{filename} );
82 push @tokens, $t;
85 #the match itself is a DIRECTIVE $&
86 my $t = C4::TmplToken->new( $&, C4::TmplTokenType::DIRECTIVE, $line, $self->{filename} );
87 push @tokens, $t;
89 # put work still to do back into work
90 $work = $' ? $' : 0;
91 } else {
92 # If there is some left over work, treat it as text token
93 my $t = C4::TmplToken->new( $work, ($is_cdata? C4::TmplTokenType::CDATA : C4::TmplTokenType::TEXT), $line, $self->{filename} );
95 push @tokens, $t;
96 last;
101 sub declaration {
102 my $self = shift;
103 my $line = shift;
104 my $work = shift; #original text
105 my $is_cdata = shift;
106 my $t = C4::TmplToken->new( $work, ($is_cdata? C4::TmplTokenType::CDATA : C4::TmplTokenType::TEXT), $line, $self->{filename} );
107 push @tokens, $t;
110 sub comment {
111 my $self = shift;
112 my $line = shift;
113 my $work = shift; #original text
114 my $is_cdata = shift;
115 my $t = C4::TmplToken->new( $work, ($is_cdata? C4::TmplTokenType::CDATA : C4::TmplTokenType::TEXT), $line, $self->{filename} );
116 push @tokens, $t;
119 sub default {
120 my $self = shift;
121 my $line = shift;
122 my $work = shift; #original text
123 my $is_cdata = shift;
124 my $t = C4::TmplToken->new( $work, ($is_cdata? C4::TmplTokenType::CDATA : C4::TmplTokenType::TEXT), $line, $self->{filename} );
125 push @tokens, $t;
129 #handle opening html tags
130 sub start{
131 my $self = shift;
132 my $line = shift;
133 my $tag = shift;
134 my $hash = shift; #hash of attr/value pairs
135 my $text = shift; #origional text
136 my $t = C4::TmplToken->new( $text, C4::TmplTokenType::TAG, $line, $self->{filename});
137 my %attr;
138 # tags seem to be uses in an 'interesting' way elsewhere..
139 for my $key( %$hash ) {
140 next unless defined $hash->{$key};
141 if ($key eq "/"){
142 $attr{+lc($key)} = [ $key, $hash->{$key}, $key."=".$hash->{$key}, 1 ];
144 else {
145 $attr{+lc($key)} = [ $key, $hash->{$key}, $key."=".$hash->{$key}, 0 ];
148 $t->set_attributes( \%attr );
149 push @tokens, $t;
152 #handle closing html tags
153 sub end{
154 my $self = shift;
155 my $line = shift;
156 my $tag = shift;
157 my $hash = shift;
158 my $text = shift;
159 # what format should this be in?
160 my $t = C4::TmplToken->new( $text, C4::TmplTokenType::TAG, $line, $self->{filename} );
161 my %attr;
162 # tags seem to be uses in an 'interesting' way elsewhere..
163 for my $key( %$hash ) {
164 next unless defined $hash->{$key};
165 $attr{+lc($key)} = [ $key, $hash->{$key}, $key."=".$hash->{$key}, 0 ];
167 $t->set_attributes( \%attr );
168 push @tokens, $t;