fix author extraction fir just Filozofski fakultet u Zagrebu
[koha-bibliografija] / html.pl
1 #!/usr/bin/perl
2
3 # LC_COLLATE=hr_HR.utf8 KOHA_CONF=/etc/koha/sites/ffzg/koha-conf.xml ./html.pl
4
5 use warnings;
6 use strict;
7
8 use DBI;
9 use Data::Dump qw(dump);
10 use autodie;
11 use locale;
12 use Text::Unaccent;
13 use Carp qw(confess);
14
15 use lib '/srv/koha_ffzg';
16 use C4::Context;
17 use XML::LibXML;
18 use XML::LibXSLT;
19
20 my $dbh = C4::Context->dbh;
21
22 sub debug {
23         my ($title, $data) = @_;
24         print "# $title ",dump($data), $/;
25 }
26
27 my $xslfilename = 'compact.xsl';
28
29 my $auth_header;
30 my $auth_department;
31 my @authors;
32
33 my $skip;
34
35 my $sth_auth = $dbh->prepare(q{
36 select
37         authid,
38         ExtractValue(marcxml,'//datafield[@tag="100"]/subfield[@code="a"]') as full_name,
39         ExtractValue(marcxml,'//datafield[@tag="680"]/subfield[@code="a"]') as department
40 from auth_header
41 });
42
43 $sth_auth->execute();
44 while( my $row = $sth_auth->fetchrow_hashref ) {
45         if ( $row->{department} !~ m/Filozofski fakultet u Zagrebu/ ) {
46                 push @{ $skip->{nije_ffzg} }, $row;
47                 next;
48         }
49         $auth_header->{ $row->{authid} } = $row->{full_name};
50         $row->{department} =~ s/, Filozofski fakultet u Zagrebu.*$//;
51         $row->{department} =~ s/^.+\.\s*//;
52 #       warn dump( $row );
53         push @{ $auth_department->{ $row->{department} } }, $row->{authid};
54         push @authors, $row;
55
56 }
57
58 debug 'auth_department' => $auth_department;
59
60
61 my $authors;
62 my $marcxml;
63
64 my $sth_select_authors  = $dbh->prepare(q{
65 select
66         biblionumber,
67         itemtype,
68         marcxml
69 from biblioitems
70 where
71         agerestriction > 0
72 });
73
74 =for sql
75 --      ExtractValue(marcxml,'//datafield[@tag="100"]/subfield[@code="9"]') as first_author,
76 --      ExtractValue(marcxml,'//datafield[@tag="700"]/subfield[@code="9"]') as other_authors,
77 --      ExtractValue(marcxml,'//datafield[@tag="942"]/subfield[@code="t"]') as category,
78
79 --      and SUBSTR(ExtractValue(marcxml,'//controlfield[@tag="008"]'),8,4) between 2008 and 2013
80 -- order by SUBSTR(ExtractValue(marcxml,'//controlfield[@tag="008"]'),8,4) desc
81 =cut
82
83 my $biblio_year;
84 my $type_stats;
85
86 my $parser = XML::LibXML->new();
87 $parser->recover_silently(0); # don't die when you find &, >, etc
88 my $style_doc = $parser->parse_file($xslfilename);
89 my $xslt = XML::LibXSLT->new();
90 my $parsed = $xslt->parse_stylesheet($style_doc);
91
92 my $biblio_html;
93
94 open(my $xml_fh, '>', '/tmp/bibliografija.xml') if $ENV{XML};
95
96 sub biblioitem_html {
97         my $biblionumber = shift;
98
99         return $biblio_html->{$biblionumber} if exists $biblio_html->{$biblionumber};
100
101         my $xmlrecord = $marcxml->{$biblionumber} || confess "missing $biblionumber marcxml";
102
103         print $xml_fh $xmlrecord if $ENV{XML};
104
105         my $source = eval { $parser->parse_string($xmlrecord) };
106         if ( $@ ) {
107 #               warn "SKIP $biblionumber corrupt XML";
108                 push @{ $skip->{XML_corrupt} }, $biblionumber;
109                 return;
110         }
111
112         my $transformed = $parsed->transform($source);
113         $biblio_html->{$biblionumber} = $parsed->output_string( $transformed );
114
115         return ( $biblio_html->{$biblionumber}, $source ) if wantarray;
116         return $biblio_html->{$biblionumber};
117 }
118
119 $sth_select_authors->execute();
120 while( my $row = $sth_select_authors->fetchrow_hashref ) {
121 #       warn dump($row),$/;
122
123         my $biblio;
124
125         $marcxml->{ $row->{biblionumber} } = $row->{marcxml};
126
127         my ( undef, $doc ) = biblioitem_html( $row->{biblionumber} );
128         if ( ! $doc ) {
129                 warn "ERROR can't parse MARCXML ", $row->{biblionumber}, " ", $row->{marcxml}, "\n";
130                 next;
131         }
132
133         my $root = $doc->documentElement;
134 =for leader
135         my @leaders = $root->getElementsByLocalName('leader');
136         if (@leaders) {
137                 my $leader = $leaders[0]->textContent;
138                 warn "leader $leader\n";
139         }
140 =cut
141
142         my $extract = {
143                 '008' => undef,
144                 '100' => '9',
145                 '700' => '(9|4)',
146                 '942' => 't'
147         };
148
149         my $data;
150
151         foreach my $elt ($root->getChildrenByLocalName('*')) {
152                 my $tag = $elt->getAttribute('tag');
153                 next if ! $tag;
154                 next unless exists $extract->{ $tag };
155
156         if ($elt->localname eq 'controlfield') {
157                         if ( $tag eq '008' ) {
158                                  $biblio_year->{ $row->{biblionumber} } = $elt->textContent;
159                         }
160                         next;
161         } elsif ($elt->localname eq 'datafield') {
162                         my $sf_data;
163             foreach my $sfelt ($elt->getChildrenByLocalName('subfield')) {
164                 my $sf = $sfelt->getAttribute('code');
165                                 next unless $sf =~ m/$extract->{$tag}/;
166                                 if ( exists $sf_data->{$sf} ) {
167                                         $sf_data->{$sf} .= " " . $sfelt->textContent();
168                                 } else {
169                                         $sf_data->{$sf} = $sfelt->textContent();
170                                 }
171                         }
172                         push @{ $data->{$tag} }, $sf_data if $sf_data;
173         }
174     }
175
176 #       warn "# ", $row->{biblionumber}, " data ",dump($data);
177
178         my $category = $data->{942}->[0]->{'t'};
179         if ( ! $category ) {
180 #               warn "# SKIP ", $row->{biblionumber}, " no category in ", dump($data);
181                 push @{ $skip->{no_category} }, $row->{biblionumber};
182                 next;
183         }
184
185
186         my $have_100 = 1;
187
188         if ( exists $data->{100} ) {
189                         my @first_author = map { $_->{'9'} } @{ $data->{100} };
190                         foreach my $authid ( @first_author ) {
191                                 push @{ $authors->{$authid}->{aut}->{ $category } }, $row->{biblionumber};
192                         }
193         } else {
194                 $have_100 = 0;
195         }
196
197         my $have_edt;
198
199         if ( exists $data->{700} ) {
200                         foreach my $auth ( @{ $data->{700} } ) {
201                                 my $authid = $auth->{9} || next;
202                                 my $type   = $auth->{4} || next; #die "no 4 in ",dump($data);
203
204                                 $type_stats->{$type}++;
205
206                                 if ( $type =~ m/(edt|trl|com|ctb)/ ) {
207                                         push @{ $authors->{$authid}->{sec}->{ $category } }, $row->{biblionumber};
208                                         push @{ $authors->{$authid}->{$1}->{ $category } }, $row->{biblionumber};
209                                 } elsif ( $type =~ m/aut/ ) {
210                                         if ( ! $have_100 ) {
211                                                 $have_edt = grep { exists $_->{4} && $_->{4} =~ m/edt/ } @{ $data->{700} } if ! defined $have_edt;
212                                                 if ( $have_edt ) {
213                                                         $skip->{ have_700_edt }->{ $row->{biblionumber} }++;
214                                                 } else {
215                                                         push @{ $authors->{$authid}->{aut}->{ $category } }, $row->{biblionumber};
216                                                 }
217                                         } else {
218                                                 push @{ $authors->{$authid}->{aut}->{ $category } }, $row->{biblionumber};
219                                         }
220                                 } else {
221 #                                       warn "# SKIP ", $row->{biblionumber}, ' no 700$4 in ', dump($data);
222                                         $skip->{ 'no_700$4' }->{ $row->{biblionumber} }++;
223                                 }
224                         }
225         }
226
227 }
228
229 debug 'authors' => $authors;
230 debug 'type_stats' => $type_stats;
231 debug 'skip' => $skip;
232
233 my $category_label;
234 my $sth_categories = $dbh->prepare(q{
235 select authorised_value, lib from authorised_values where category = 'BIBCAT'
236 });
237 $sth_categories->execute();
238 while( my $row = $sth_categories->fetchrow_hashref ) {
239         $category_label->{ $row->{authorised_value} } = $row->{lib};
240
241 }
242 debug 'category_label' => $category_label;
243
244 sub html_title {
245         return qq|<html>
246 <head>
247 <meta charset="UTF-8">
248 <title>|, join(" ", @_), qq|</title>
249 <link href="style.css" type="text/css" rel="stylesheet" />
250 </head>
251 <body>
252 |;
253 }
254
255 sub html_end {
256         return qq|</body>\n</html\n|;
257 }
258
259 mkdir 'html' unless -d 'html';
260
261 open(my $index, '>:encoding(utf-8)', 'html/index.new');
262 print $index html_title('Bibliografija Filozofskog fakulteta');
263
264 my $first_letter = '';
265
266 debug 'authors' => \@authors;
267
268 sub li_biblio {
269         my ($biblionumber) = @_;
270         return qq|<li>|,
271                 qq|<a href="https://koha.ffzg.hr/cgi-bin/koha/opac-detail.pl?biblionumber=$biblionumber">$biblionumber</a>|,
272                 biblioitem_html($biblionumber),
273                 qq|<a href="https://koha.ffzg.hr:8443/cgi-bin/koha/cataloguing/addbiblio.pl?biblionumber=$biblionumber">edit</a>|,
274                 qq|</li>\n|;
275 }
276
277 sub author_html {
278         my ( $fh, $authid, $type, $label ) = @_;
279
280         return unless exists $authors->{$authid}->{$type};
281
282         print $fh qq|<h2>$label</h2>\n|;
283
284         foreach my $category ( sort keys %{ $authors->{$authid}->{$type} } ) {
285                 my $label = $category_label->{$category} || 'Bez kategorije';
286                 print $fh qq|<h3>$label</h3>\n<ul>\n|;
287                 foreach my $biblionumber ( @{ $authors->{$authid}->{$type}->{$category} } ) {
288                         print $fh li_biblio( $biblionumber );
289                 }
290                 print $fh qq|</ul>\n|;
291         }
292 }
293
294 foreach my $row ( sort { $a->{full_name} cmp $b->{full_name} } @authors ) {
295
296         my $first = substr( $row->{full_name}, 0, 1 );
297         if ( $first ne $first_letter ) {
298                 print $index qq{</ul>\n} if $first_letter;
299                 $first_letter = $first;
300                 print $index qq{<h1>$first</h1>\n<ul>\n};
301         }
302         print $index qq{<li><a href="}, $row->{authid}, qq{.html">}, $row->{full_name}, "</a></li>\n";
303
304         my $path = "html/$row->{authid}";
305         open(my $fh, '>:encoding(utf-8)', "$path.new");
306         print $fh html_title($row->{full_name}, "bibliografija");
307         print $fh qq|<h1>$row->{full_name} - bibliografija za razdoblje 2008-2013</h1>|;
308
309         author_html( $fh, $row->{authid}, 'aut' => 'Primarno autorstvo' );
310         author_html( $fh, $row->{authid}, 'sec' => 'Sekundarno autorstvo' );
311
312         print $fh html_end;
313         close($fh);
314         rename "$path.new", "$path.html";
315
316 }
317
318 print $index html_end;
319 close($index);
320 rename 'html/index.new', 'html/index.html';
321
322 debug 'auth_header' => $auth_header;
323
324
325 my $department_category_author;
326 foreach my $department ( sort keys %$auth_department ) {
327         foreach my $authid ( sort @{ $auth_department->{$department} } ) {
328                 my   @categories = keys %{ $authors->{$authid}->{aut} };
329                 push @categories,  keys %{ $authors->{$authid}->{sec} };
330                 foreach my $category ( sort @categories ) {
331                         push @{ $department_category_author->{$department}->{$category} }, $authid;
332                 }
333         }
334 }
335
336 debug 'department_category_author' => $department_category_author;
337
338 mkdir 'html/departments' unless -d 'html/departments';
339
340 open(my $dep_fh, '>:encoding(utf-8)', 'html/departments/index.new');
341 print $dep_fh html_title('Odsijeci Filozofskog fakulteta u Zagrebu'), qq|<ul>\n|;
342 foreach my $department ( sort keys %$department_category_author ) {
343         my $dep = $department || 'Nema odsjeka';
344         my $dep_file = unac_string('utf-8',$dep);
345         print $dep_fh qq|<li><a href="$dep_file.html">$dep</a></li>\n|;
346         open(my $fh, '>:encoding(utf-8)', "html/departments/$dep_file.new");
347
348         print $fh html_title($department . ' bibliografija');
349         print $fh qq|<h1>$department bibliografija</h1>\n|;
350
351         print $fh qq|<h2>Primarno autorstvo</h2>\n|;
352
353         foreach my $category ( sort keys %{ $department_category_author->{$department} } ) {
354
355                 my @authids = @{ $department_category_author->{$department}->{$category} };
356                 next unless @authids;
357
358                 my @biblionumber = map { @{ $authors->{$_}->{aut}->{$category} } } grep { exists $authors->{$_}->{aut}->{$category} } @authids;
359
360                 next unless @biblionumber;
361
362                 my $label = $category_label->{$category} || 'Bez kategorije';
363                 print $fh qq|<h3>$label</h3>\n<ul>\n|;
364
365                 print $fh li_biblio( $_ ) foreach @biblionumber;
366
367                 print $fh qq|</ul>|;
368         }
369
370
371         print $fh qq|<h2>Sekundarno autorstvo</h2>\n|;
372
373         foreach my $category ( sort keys %{ $department_category_author->{$department} } ) {
374
375                 my @authids = @{ $department_category_author->{$department}->{$category} };
376                 next unless @authids;
377
378                 my @biblionumber = map { @{ $authors->{$_}->{sec}->{$category} } } grep { exists $authors->{$_}->{sec}->{$category} } @authids;
379
380                 next unless @biblionumber;
381
382                 my $label = $category_label->{$category} || 'Bez kategorije';
383                 print $fh qq|<h3>$label</h3>\n<ul>\n|;
384
385                 print $fh li_biblio( $_ ) foreach @biblionumber;
386
387                 print $fh qq|</ul>|;
388         }
389
390
391         print $fh html_end;
392         close($fh);
393         rename "html/departments/$dep_file.new", "html/departments/$dep_file.html";
394 }
395 print $dep_fh qq|</ul>\n|, html_end;
396 close($dep_fh);
397 rename 'html/departments/index.new', 'html/departments/index.html';
398
399 my $azvo_stat;
400
401 foreach my $department ( sort keys %$department_category_author ) {
402         foreach my $category ( sort keys %{ $department_category_author->{$department} } ) {
403                 foreach my $authid ( @{ $department_category_author->{$department}->{$category} } ) {
404                         foreach my $type ( keys %{ $authors->{$authid} } ) {
405                                 next unless exists $authors->{$authid}->{$type}->{$category};
406                                 $azvo_stat->{ $department }->{ $category }->{ $type } += $#{ $authors->{$authid}->{$type}->{$category} } + 1;
407                         }
408                 }
409         }
410 }
411
412 debug 'azvo_stat' => $azvo_stat;
413
414 =for later
415 open(my $fh, '>', 'html/azvo.new');
416
417
418
419 close($fh);
420 rename 'html/azvo.new', 'html/azvo.html';
421 =cut
422