source: trunk/gsdl/perllib/plugins/StructuredHTMLPlug.pm@ 10452

Last change on this file since 10452 was 10443, checked in by chi, 19 years ago

Modifications to check different StructuredHTML formating conditions.

  • Property svn:keywords set to Author Date Id Revision
File size: 13.2 KB
Line 
1###########################################################################
2#
3# StructuredHTMLPlug.pm -- html plugin with extra facilities for teasing out
4# hierarchical structure (such as h1, h2, h3, or user-defined tags) in an
5# HTML document
6#
7# A component of the Greenstone digital library software
8# from the New Zealand Digital Library Project at the
9# University of Waikato, New Zealand.
10#
11# Copyright (C) 1999 New Zealand Digital Library Project
12#
13# This program is free software; you can redistribute it and/or modify
14# it under the terms of the GNU General Public License as published by
15# the Free Software Foundation; either version 2 of the License, or
16# (at your option) any later version.
17#
18# This program is distributed in the hope that it will be useful,
19# but WITHOUT ANY WARRANTY; without even the implied warranty of
20# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21# GNU General Public License for more details.
22#
23# You should have received a copy of the GNU General Public License
24# along with this program; if not, write to the Free Software
25# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26#
27###########################################################################
28# This plugin is to process an HTML file where sections are divided by
29# user-defined headings tags. As it is difficult to predict what user's definition
30# this plugin allows to detect the user-defined titles up to three levels (level1, level2, level3...)
31# as well as allows to get rid of user-defined Table of Content (TOC)...
32# format:e.g. level1 (Abstract_title|ChapterTitle|Referencing Heading) level2(SectionHeading)...
33
34package StructuredHTMLPlug;
35
36use HTMLPlug;
37use ImagePlug;
38
39#use strict; # every perl program should have this!
40#no strict 'refs'; # make an exception so we can use variables as filehandles
41
42sub BEGIN {
43 @StructuredHTMLPlug::ISA = ('HTMLPlug');
44}
45
46my $arguments = [];
47
48my $options = { 'name' => "StructuredHTMLPlug",
49 'desc' => "{StructuredHTMLPlug.desc}",
50 'abstract' => "no",
51 'inherits' => "yes",
52 'args' => $arguments };
53
54sub new {
55 my ($class) = shift (@_);
56 my ($pluginlist,$inputargs,$hashArgOptLists) = @_;
57 push(@$pluginlist, $class);
58
59 if(defined $arguments){ push(@{$hashArgOptLists->{"ArgList"}},@{$arguments});}
60 if(defined $options) { push(@{$hashArgOptLists->{"OptList"}},$options)};
61
62 my $self = (defined $hashArgOptLists)? new HTMLPlug($pluginlist,$inputargs,$hashArgOptLists): new HTMLPlug($pluginlist,$inputargs);
63
64 return bless $self, $class;
65}
66
67sub read {
68 my $self = shift (@_);
69 my ($pluginfo, $base_dir, $file, $metadata, $processor, $maxdocs, $gli) = @_;
70
71 my $filename = $file;
72 $filename = &util::filename_cat ($base_dir, $file) if $base_dir =~ /\w/;
73
74 if ($filename =~ m/\.html?$/) {
75 my $poss_doc_filename = $filename;
76 $poss_doc_filename =~ s/\.html?$/.doc/;
77
78 if (-e $poss_doc_filename) {
79 # this file has already been processed by Word plugin
80 return 0;
81 }
82 }
83 return $self->SUPER::read(@_);
84}
85
86sub process {
87 my $self = shift (@_);
88 #my ($textref, $pluginfo, $base_dir, $file, $metadata, $doc_obj) = @_;
89 my ($textref, $pluginfo, $base_dir, $file, $metadata, $doc_obj, $gli) = @_;
90 my $outhandle = $self->{'outhandle'};
91
92 print $outhandle "StructuredHTMLPlug: processing $file\n"
93 if $self->{'verbosity'} > 1;
94 my @head_and_body = split(/<body/i,$$textref);
95 my $head = shift(@head_and_body);
96 my $body_text = join("<body", @head_and_body);
97
98 if (defined $self->{'extracted_word_metadata_fields'}) {
99 my @doc_properties = split(/<xml>/i,$head);
100 my $doc_heading = shift(@doc_properties);
101 my $rest_doc_properties = join(" ", @doc_properties);
102 my @extracted_metadata = split(/<\/xml>/i, $rest_doc_properties);
103 my $extracted_metadata = shift (@extracted_metadata);
104 $self->extract_metadata($extracted_metadata, $metadata, $doc_obj);
105 }
106
107 # If checkout_toc is enables, it means to get rid of toc and tof contents.
108 # get rid of TOC and TOF sections and their title
109 if (defined $self->{'checkout_toc'}){
110 #line-height:150%;mso-ansi-language:FR'>Contents<o:p></o:p></span></b></p>
111 # get rid of Table of Contents title and Table of Figures
112 #$body_text =~ s/<p[^>]*><b><span[^>]*>(Table of Content.|Content.)<o:p><\/o:p><\/span><\/b><\/p>//isg;
113 #$body_text =~ s/<p[^>]*><b><span[^>]*>(Table of Figure.|Figure.)<o:p><\/o:p><\/span><\/b><\/p>//isg;
114 $body_text =~ s/<p class=(($self->{'toc_header'})[^>]*)>(.+?)<\/p>//isg;
115 $body_text =~ s/<p class=(($self->{'tof_header'})[^>]*)>(.+?)<\/p>//isg;
116 }
117
118 if (defined $self->{'title_header'}){
119 $self->{'title_header'} =~ s/^(\()(.*)(\))/$2/is;
120 $body_text =~ s/<p class=(($self->{'title_header'})[^>]*)>(.+?)<\/p>/<p class=$1><title>$3<\/title><\/p>/isg;
121 }
122
123 if (defined $self->{'level1_header'} && $self->{'level1_header'}=~ /\S/ ){
124 $self->{'level1_header'} =~ s/^\((.*)\)/$1/i;
125 $body_text =~ s/<p class=(($self->{'level1_header'})[^>]*)>(.+?)<\/p>/<p class=$1><h1>$3<\/h1><\/p>/ig;
126 }
127
128 if (defined $self->{'level2_header'}){
129 $self->{'level2_header'} =~ s/^\((.*)\)/$1/i;
130 $body_text =~ s/<p class=(($self->{'level2_header'})[^>]*)>(.+?)<\/p>/<p class=$1><h2>$3<\/h2><\/p>/ig;
131 }
132
133 if (defined $self->{'level3_header'}&& $self->{'level3_header'}=~ /\S/ ){
134 $self->{'level3_header'} =~ s/^\((.*)\)/$1/is;
135 $body_text =~ s/<p class=(($self->{'level3_header'})[^>]*)>(.+?)<\/p>/<p class=$1><h3>$3<\/h3><\/p>/isg;
136 }
137 # Tidy up extra new lines
138 $body_text =~ s/(<p[^>]*><span[^>]*><o:p>&nbsp;<\/o:p><\/span><\/p>)//isg;
139 $body_text =~ s/(<p[^>]*><o:p>&nbsp;<\/o:p><\/p>)//isg;
140
141 my $body = "<body".$body_text;
142
143 my $section_text = $head;
144 $section_text .= "<!--\n<Section>\n-->\n";
145
146 # split HTML text on <h1>, <h2> etc tags
147 my @h_split = split(/<h/i,$body);
148
149 my $hnum = 0;
150
151 my $sectionh1 = 0;
152 $section_text .= shift(@h_split);
153
154 my $hc;
155 foreach $hc ( @h_split )
156 {
157 if ($hc =~ m/^([1-3])\s*.*?>(.*)$/s)
158 {
159 my $new_hnum = $1;
160 my $hc_after = $2;
161
162 if ($hc_after =~ m/^(.*?)<\/h$new_hnum>/is)
163 {
164 my $h_text = $1;
165 $hc =~ s/^(\&nbsp\;)+/\&nbsp\;/g;
166 # boil HTML down to some interesting text
167 $h_text =~ s/^[1-3]>//;
168 $h_text =~ s/<\/?.*?>//sg;
169 $h_text =~ s/\s+/ /sg;
170 $h_text =~ s/^\s$//s;
171 $h_text =~ s/(&nbsp;)+\W*/&nbsp;/sg;
172
173 if ($h_text =~ m/\w+/)
174 {
175 if ($new_hnum > $hnum)
176 {
177 # increase section nesting
178 $hnum++;
179 while ($hnum < $new_hnum)
180 {
181 my $spacing = " " x $hnum;
182 $section_text .= "<!--\n";
183 $section_text .= $spacing."<Section>\n";
184 $section_text .= "-->\n";
185 $hnum++;
186 }
187 }
188 else # ($new_hnum <= $hnum)
189 {
190 # descrease section nesting
191 while ($hnum >= $new_hnum)
192 {
193 my $spacing = " " x $hnum;
194 $section_text .= "<!--\n";
195 $section_text .= $spacing."</Section>\n";
196 $section_text .= "-->\n";
197 $hnum--;
198 }
199 $hnum++;
200 }
201
202 my $spacing = " " x $hnum;
203 $section_text .= "<!--\n";
204 $section_text .= $spacing."<Section>\n";
205 $section_text .= $spacing." <Description>\n";
206 $section_text .= $spacing." <Metadata name=\"Title\">$h_text</Metadata>";
207 $section_text .= $spacing." </Description>\n";
208 $section_text .= "-->\n";
209
210 print $outhandle $spacing."$h_text\n"
211 if $self->{'verbosity'} > 2;
212
213 $sectionh1++ if ($hnum==1);
214 }
215 }
216 else {
217### print STDERR "***** hc = <h$hc\n\n";
218
219 }
220 $section_text .= "<h$hc";
221 }
222 else
223 {
224 $section_text .= "<h$hc";
225 }
226 }
227
228 while ($hnum >= 1)
229 {
230 my $spacing = " " x $hnum;
231 $section_text .= "<!--\n";
232 $section_text .= $spacing."</Section>\n";
233 $section_text .= "-->\n";
234 $hnum--;
235 }
236
237 $section_text .= "<!--\n</Section>\n-->\n";
238
239 $$textref = $section_text;
240
241 # should be textref not testref???
242 #$$testref =~ s/<h(\d+)>(.*?)<\/h$1>/<Section><Metadata name=\"Title\">$1<\/Metadata></Section><h$1><\/h$1>/gi;
243
244 if ($sectionh1>0)
245 {
246 print $outhandle " Located section headings ..."
247 if $self->{'verbosity'} > 1;
248 }
249 print $outhandle " Passing on the HTMLPlug\n"
250 if $self->{'verbosity'} > 1;
251
252 $$textref =~ s/<!\[if !vml\]>/<![if vml]>/g;
253
254 $$textref =~ s/(&nbsp;)+/&nbsp;/sg;
255
256 ## $$textref =~ s/<o:p>&nbsp;<\/o:p>//g; # used with VML to space figures?
257
258 $self->SUPER::process(@_);
259
260 # associate original file with doc object
261 my $cursection = $doc_obj->get_top_section();
262 my $filename = &util::filename_cat($base_dir, $file);
263 if (-e $filename)
264 {
265 print $outhandle " Adding associated Word document\n"
266 if $self->{'verbosity'} > 1;
267
268 $doc_obj->associate_file($filename, "doc.doc", undef, $cursection);
269
270 my $doclink = "<a href=_httpcollection_/index/assoc/[archivedir]/doc.doc>";
271 $doc_obj->add_utf8_metadata ($cursection, "srclink", $doclink);
272 $doc_obj->add_utf8_metadata ($cursection, "srcicon", "_icondoc_");
273 $doc_obj->add_utf8_metadata ($cursection, "/srclink", "</a>");
274
275 my $file_size = -s $filename;
276 if ($file_size>1024)
277 {
278 my $fs_kbytes = sprintf("%d",$file_size/1024);
279 $doc_obj->add_utf8_metadata ($cursection, "filesize", "$fs_kbytes Kb");
280 }
281 else
282 {
283 $doc_obj->add_utf8_metadata ($cursection, "filesize", "$file_size bytes");
284 }
285
286 if ($file_size > 200000)
287 {
288 $doc_obj->add_utf8_metadata ($cursection, "fswarning", "1");
289 }
290 }
291}
292
293
294sub resize_if_necessary
295{
296 my ($self,$front,$back,$base_dir,$href) = @_;
297
298 # dig out width and height of image, if there
299 my $img_attributes = "$front back";
300 my ($img_width) = ($img_attributes =~ m/\s+width=\"?(\d+)\"?/i);
301 my ($img_height) = ($img_attributes =~ m/\s+height=\"?(\d+)\"?/i);
302
303 # derive local filename for image based on its URL
304 my $img_filename = $href;
305 $img_filename =~ s/^[^:]*:\/\///;
306 $img_filename = &util::filename_cat($base_dir, $img_filename);
307
308 # Replace %20's in URL with a space if required. Note that the filename
309 # may include the %20 in some situations
310 if ($img_filename =~ /\%20/) {
311 if (!-e $img_filename) {
312 $img_filename =~ s/\%20/ /g;
313 }
314 }
315 if ((-e $img_filename) && (defined $img_width) && (defined $img_height)) {
316 # get image info on width and height
317
318 my $outhandle = $self->{'outhandle'};
319 my $verbosity = $self->{'verbosity'};
320
321 my ($image_type, $actual_width, $actual_height, $image_size)
322 = &ImagePlug::identify($img_filename, $outhandle, $verbosity);
323
324 #print STDERR "**** $actual_width x $actual_height";
325 #print STDERR " (requested: $img_width x $img_height)\n";
326
327 if (($img_width < $actual_width) || ($img_height < $actual_height)) {
328 print $outhandle "Resizing $img_filename\n" if ($verbosity > 0);
329
330 # derive new image name based on current image
331 my ($tailname, $dirname, $suffix)
332 = &File::Basename::fileparse($input_filename, "\\.[^\\.]+\$");
333
334 my $resized_filename
335 = &util::filename_cat($dirname, $tailname."_resized".$suffix);
336
337 #print STDERR "**** suffix = $suffix\n";
338
339 # Generate smaller image with convert
340 my $newsize = "$img_widthx$image_height";
341 my $command = "convert -interlace plane -verbose "
342 ."-geometry $newsize \"img_$filename\" \"$resized_filename\"";
343 print $outhandle "ImageResize: $command\n" if ($verbosity > 2);
344 my $result = '';
345 print $outhandle "ImageResize result: $result\n" if ($verbosity > 2);
346 }
347 }
348 return $href;
349}
350
351sub replace_images {
352 my $self = shift (@_);
353 my ($front, $link, $back, $base_dir,
354 $file, $doc_obj, $section) = @_;
355 # remove quotes from link at start and end if necessary
356 if ($link=~/^\"/) {
357 $link=~s/^\"//;$link=~s/\"$//;
358 $front.='"';
359 $back="\"$back";
360 }
361
362 $link =~ s/\n/ /g;
363
364 my ($href, $hash_part, $rl) = $self->format_link ($link, $base_dir, $file);
365
366## $href = $self->resize_if_necessary($front,$back,$base_dir,$href);
367
368 my $middle = $self->add_file ($href, $rl, $hash_part, $base_dir, $doc_obj, $section);
369
370 return $front . $middle . $back;
371}
372
373sub extract_metadata
374{
375 my $self = shift (@_);
376 my ($textref, $metadata, $doc_obj) = @_;
377 my $outhandle = $self->{'outhandle'};
378
379 # metadata fields to extract/save. 'key' is the (lowercase) name of the
380 # html meta, 'value' is the metadata name for greenstone to use
381 my %find_fields = ();
382 my ($tag,$value);
383
384 my $orig_field = "";
385 foreach my $field (split /,/, $self->{'extracted_word_metadata_fields'}) {
386 # support tag<tagname>
387 if ($field =~ /^(.*?)<(.*?)>$/) {
388 # "$2" is the user's preferred gs metadata name
389 $find_fields{lc($1)}=$2; # lc = lowercase
390 $orig_field = $1;
391 } else { # no <tagname> for mapping
392 # "$field" is the user's preferred gs metadata name
393 $find_fields{lc($field)}=$field; # lc = lowercase
394 $orig_field = $field;
395 }
396 if ($textref =~ m/<o:$orig_field>(.*)<\/o:$orig_field>/i){
397 $tag = $orig_field;
398 $value = $1;
399 if (!defined $value || !defined $tag){
400 print $outhandle "StructuredHTMLPlug: can't find VALUE in \"$tag\"\n";
401 next;
402 } else {
403 # clean up and add
404 chomp($value); # remove trailing \n, if any
405 $tag = $find_fields{lc($tag)};
406 print $outhandle " extracted \"$tag\" metadata \"$value\"\n"
407 if ($self->{'verbosity'} > 2);
408 $doc_obj->add_utf8_metadata($doc_obj->get_top_section(), $tag, $value);
409 }
410 }
411 }
412}
413
4141;
Note: See TracBrowser for help on using the repository browser.