source: trunk/gsdl/perllib/plugins/HBPlug.pm@ 1020

Last change on this file since 1020 was 1020, checked in by sjboddie, 24 years ago

changed paths to collection images (again!)

  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 7.5 KB
Line 
1###########################################################################
2#
3# HBPlug.pm --
4# A component of the Greenstone digital library software
5# from the New Zealand Digital Library Project at the
6# University of Waikato, New Zealand.
7#
8# Copyright (C) 1999 New Zealand Digital Library Project
9#
10# This program is free software; you can redistribute it and/or modify
11# it under the terms of the GNU General Public License as published by
12# the Free Software Foundation; either version 2 of the License, or
13# (at your option) any later version.
14#
15# This program is distributed in the hope that it will be useful,
16# but WITHOUT ANY WARRANTY; without even the implied warranty of
17# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18# GNU General Public License for more details.
19#
20# You should have received a copy of the GNU General Public License
21# along with this program; if not, write to the Free Software
22# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23#
24###########################################################################
25
26# plugin which process an HTML book directory
27
28package HBPlug;
29
30use plugin;
31use ghtml;
32use BasPlug;
33use util;
34use lang;
35use doc;
36use cfgread;
37
38
39sub BEGIN {
40 @ISA = ('BasPlug');
41}
42
43sub new {
44 my ($class) = @_;
45 $self = new BasPlug ();
46
47 return bless $self, $class;
48}
49
50sub is_recursive {
51 my $self = shift (@_);
52
53 return 0; # this is not a recursive plugin
54}
55
56sub HB_read_html_file {
57 my $self = shift (@_);
58 my ($htmlfile, $text) = @_;
59
60 # load in the file
61 if (!open (FILE, $htmlfile)) {
62 print STDERR "ERROR - could not open $htmlfile\n";
63 return;
64 }
65
66 my $foundbody = 0;
67 $self->HB_gettext (\$foundbody, $text, FILE);
68 close FILE;
69
70 # just in case there was no <body> tag
71 if (!$foundbody) {
72 $foundbody = 1;
73 open (FILE, $htmlfile) || return;
74 $self->HB_gettext (\$foundbody, $text, FILE);
75 close FILE;
76 }
77}
78
79sub HB_gettext {
80 my $self = shift (@_);
81 my ($foundbody, $text, $handle) = @_;
82
83 my $line = "";
84 while (defined ($line = <$handle>)) {
85 # look for body tag
86 if (!$$foundbody) {
87 if ($line =~ s/^.*<body[^>]*>//i) {
88 $$foundbody = 1;
89 } else {
90 next;
91 }
92 }
93
94 # check for symbol fonts
95 if ($line =~ /<font [^>]*?face\s*=\s*\"?(\w+)\"?/i) {
96 my $font = $1;
97 print STDERR "HBPlug::HB_gettext - warning removed font $font\n"
98 if ($font !~ /^arial$/i);
99 }
100
101 $line =~ s/<\/p>//ig; # remove </p> tags
102 $line =~ s/<\/?(body|html|font)\b[^>]*>//ig; # remove any unwanted tags
103
104 # convert any alphanumeric character entities to their extended
105 # ascii equivalent for indexing purposes
106 &ghtml::convertcharentities ($line);
107
108 $$text .= $line;
109 }
110 $$text =~ s/\s+/ /g; # remove \n's
111}
112
113sub HB_clean_section {
114 my $self = shift (@_);
115 my ($section) = @_;
116
117 # remove tags without a starting tag from the section
118 my ($tag, $tagstart);
119 while ($section =~ /<\/([^>]{1,10})>/) {
120 $tag = $1;
121 $tagstart = index($section, "<$tag");
122 last if (($tagstart >= 0) && ($tagstart < index($section, "<\/$tag")));
123 $section =~ s/<\/$tag>//;
124 }
125
126 # remove extra paragraph tags
127 while ($section =~ s/<p\b[^>]*>\s*<p\b/<p/ig) {}
128
129 # remove extra stuff at the end of the section
130 while ($section =~ s/(<u>|<i>|<b>|<p\b[^>]*>|&nbsp;|\s)$//i) {}
131
132 # add a newline at the beginning of each paragraph
133 $section =~ s/(.)\s*<p\b/$1\n\n<p/gi;
134
135 # add a newline every 80 characters at a word boundary
136 # Note: this regular expression puts a line feed before
137 # the last word in each section, even when it is not
138 # needed.
139 $section =~ s/(.{1,80})\s/$1\n/g;
140
141 # fix up the image links
142 $section =~ s/<img[^>]*?src=\"?([^\">]+)\"?[^>]*>/
143 <center><img src=\"_httpdocimg_\/$1\"><\/center><br>/ig;
144 $section =~ s/&lt;&lt;I&gt;&gt;\s*([^\.]+\.(png|jpg|gif))/
145 <center><img src=\"_httpdocimg_\/$1\"><\/center><br>/ig;
146
147 return $section;
148}
149
150
151sub shorten {
152 my $self = shift (@_);
153 my ($text) = @_;
154
155 return "\"$text\"" if (length($text) < 100);
156
157 return "\"" . substr ($text, 0, 50) . "\" ... \"" .
158 substr ($text, length($text)-50) . "\"";
159}
160
161
162# return number of files processed, undef if can't process
163# Note that $base_dir might be "" and that $file might
164# include directories
165sub read {
166 my $self = shift (@_);
167 my ($pluginfo, $base_dir, $file, $metadata, $processor) = @_;
168
169 # get the html filename and see if this is an HTML Book...
170 my $jobnumber = $file;
171 if ($file =~ /[\\\/]/) {
172 ($jobnumber) = $file =~ /[\\\/]([^\\\/]+)$/;
173 }
174 return undef unless defined $jobnumber;
175 my $htmlfile = &util::filename_cat($base_dir, $file, "$jobnumber.htm");
176 return undef unless -e $htmlfile;
177
178 print STDERR "HBPlug: processing $file\n";
179
180 # read in the file and do basic html cleaning (removing header etc)
181 my $html = "";
182 $self->HB_read_html_file ($htmlfile, \$html);
183
184 # create a new document
185 my $doc_obj = new doc ($file, "indexed_doc");
186
187 # copy the book cover if it exists
188 my $bookcover = &util::filename_cat($base_dir, $file, "$jobnumber.jpg");
189 $doc_obj->associate_file($bookcover, "cover.jpg", "image/jpeg");
190
191 my $cursection = $doc_obj->get_top_section();
192
193 # add metadata for top level of document
194 foreach $field (keys(%$metadata)) {
195 # $metadata->{$field} may be an array reference
196 if (ref ($metadata->{$field}) eq "ARRAY") {
197 map {
198 $doc_obj->add_metadata ($cursection, $field, $_);
199 } @{$metadata->{$field}};
200 } else {
201 $doc_obj->add_metadata ($cursection, $field, $metadata->{$field});
202 }
203 }
204
205 # process the file one section at a time
206 my $curtoclevel = 1;
207 my $firstsection = 1;
208 while (length ($html) > 0) {
209 if ($html =~ s/^.*?(?:<p\b[^>]*>)?((<b>|<i>|<u>|\s)*)&lt;&lt;TOC(\d+)&gt;&gt;\s*(.*?)<p\b/<p/i) {
210 my $toclevel = $3;
211 my $title = $4;
212 my $sectiontext = "";
213 if ($html =~ s/^(.*?)((?:<p\b[^>]*>)?((<b>|<i>|<u>|\s)*)&lt;&lt;TOC\d+&gt;&gt;)/$2/i) {
214 $sectiontext = $1;
215 } else {
216 $sectiontext = $html;
217 $html = "";
218 }
219
220 # remove tags and extra spaces from the title
221 $title =~ s/<\/?[^>]+>//g;
222 $title =~ s/^\s+|\s+$//g;
223
224 # close any sections below the current level and
225 # create a new section (special case for the firstsection)
226 while (($curtoclevel > $toclevel) ||
227 (!$firstsection && $curtoclevel == $toclevel)) {
228 $cursection = $doc_obj->get_parent_section ($cursection);
229 $curtoclevel--;
230 }
231 if ($curtoclevel+1 < $toclevel) {
232 print STDERR "WARNING - jump in toc levels in $htmlfile " .
233 "from $curtoclevel to $toclevel\n";
234 }
235 while ($curtoclevel < $toclevel) {
236 $curtoclevel++;
237 $cursection =
238 $doc_obj->insert_section($doc_obj->get_end_child($cursection));
239 }
240
241 # add the metadata to this section
242 $doc_obj->add_metadata ($cursection, "Title", $title);
243
244 # clean up the section html
245 $sectiontext = $self->HB_clean_section($sectiontext);
246
247 # associate any files
248 map { $doc_obj->associate_file(&util::filename_cat ($base_dir, $file, $1), $1)
249 if /_httpdocimg_\/([^\"]+)\"/; 0; }
250 split (/(_httpdocimg_\/[^\"]+\")/, $sectiontext);
251
252 # add the text for this section
253 $doc_obj->add_text ($cursection, $sectiontext);
254
255 } else {
256 print STDERR "WARNING - leftover text\n" , $self->shorten($html),
257 "\nin $htmlfile\n";
258 last;
259 }
260 $firstsection = 0;
261 }
262
263 # add a OID
264 $doc_obj->set_OID ();
265
266 # process the document
267 $processor->process($doc_obj, &util::filename_cat($file, "$jobnumber.htm"));
268
269 return 1; # processed the file
270}
271
272
2731;
Note: See TracBrowser for help on using the repository browser.