]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/WORM.pm
big changes in little china
[working/Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Storage / WORM.pm
1 package OpenILS::Application::Storage::WORM;
2 use base qw/OpenILS::Application::Storage/;
3 use strict; use warnings;
4
5 use OpenSRF::EX qw/:try/;
6
7 use OpenSRF::Utils::Logger qw/:level/;
8 my $log = 'OpenSRF::Utils::Logger';
9
10 use OpenILS::Utils::FlatXML;
11 use OpenILS::Utils::Fieldmapper;
12 use JSON;
13
14 use XML::LibXML;
15 use XML::LibXSLT;
16 use Time::HiRes qw(time);
17
18 my $xml_util    = OpenILS::Utils::FlatXML->new();
19
20 my $parser              = XML::LibXML->new();
21 my $xslt                        = XML::LibXSLT->new();
22 my $xslt_doc    =       $parser->parse_file( "/home/miker/cvs/OpenILS/app_server/stylesheets/MARC21slim2MODS.xsl" );
23 #my $xslt_doc   = $parser->parse_file( "/pines/cvs/ILS/Open-ILS/xsl/MARC21slim2MODS.xsl" );
24 my $mods_sheet = $xslt->parse_stylesheet( $xslt_doc );
25
26 use open qw/:utf8/;
27
28 my $xpathset = {};
29
30 sub child_init {
31         my $meth = __PACKAGE__->method_lookup('open-ils.storage.direct.config.metabib_field.all');
32         for my $f ($meth->run) {
33                 $xpathset->{ $f->field_class }->{ $f->name }->{xpath} = $f->xpath;
34                 $xpathset->{ $f->field_class }->{ $f->name }->{id} = $f->id;
35                 $log->debug("Loaded XPath from DB: ".$f->field_class." => ".$f->name." : ".$f->xpath, DEBUG);
36         }
37 }
38
39 # --------------------------------------------------------------------------------
40 # Fingerprinting
41
42 my @fp_mods_xpath = (
43         '//mods:mods/mods:typeOfResource[text()="text"]' => [
44                         title   => {
45                                         xpath   => [
46                                                         '//mods:mods/mods:titleInfo[mods:title and (@type="uniform")]',
47                                                         '//mods:mods/mods:titleInfo[mods:title and (@type="translated")]',
48                                                         '//mods:mods/mods:titleInfo[mods:title and (@type="alternative")]',
49                                                         '//mods:mods/mods:titleInfo[mods:title and not(@type)]',
50                                         ],
51                                         fixup   => '
52                                                         do {
53                                                                 $text = lc($text);
54                                                                 $text =~ s/\s+/ /sgo;
55                                                                 $text =~ s/^\s*(.+)\s*$/$1/sgo;
56                                                                 $text =~ s/\b(?:the|an?)\b//sgo;
57                                                                 $text =~ s/\[.[^\]]+\]//sgo;
58                                                                 $text =~ s/\s*[;\/\.]*$//sgo;
59                                                                 $text =~ s/\pM+//gso;
60                                                         };
61                                         ',
62                         },
63                         author  => {
64                                         xpath   => [
65                                                         '//mods:mods/mods:name[mods:role/mods:text/text()="creator" and @type="personal"]/mods:namePart',
66                                                         '//mods:mods/mods:name[mods:role/mods:text/text()="creator"]/mods:namePart',
67                                         ],
68                                         fixup   => '
69                                                         do {
70                                                                 $text = lc($text);
71                                                                 $text =~ s/\s+/ /sgo;
72                                                                 $text =~ s/^\s*(.+)\s*$/$1/sgo;
73                                                                 $text =~ s/,?\s+.*$//sgo;
74                                                                 $text =~ s/\pM+//gso;
75                                                         };
76                                         ',
77                         },
78         ],
79
80         '//mods:mods/mods:relatedItem[@type!="host"]' => [
81                         title   => {
82                                         xpath   => [
83                                                         '//mods:mods/mods:relatedItem/mods:titleInfo[mods:title and (@type="uniform")]',
84                                                         '//mods:mods/mods:relatedItem/mods:titleInfo[mods:title and (@type="translated")]',
85                                                         '//mods:mods/mods:relatedItem/mods:titleInfo[mods:title and (@type="alternative")]',
86                                                         '//mods:mods/mods:relatedItem/mods:titleInfo[mods:title and not(@type)]',
87                                                         '//mods:mods/mods:titleInfo[mods:title and (@type="uniform")]',
88                                                         '//mods:mods/mods:titleInfo[mods:title and (@type="translated")]',
89                                                         '//mods:mods/mods:titleInfo[mods:title and (@type="alternative")]',
90                                                         '//mods:mods/mods:titleInfo[mods:title and not(@type)]',
91                                         ],
92                                         fixup   => '
93                                                         do {
94                                                                 $text = lc($text);
95                                                                 $text =~ s/\s+/ /sgo;
96                                                                 $text =~ s/^\s*(.+)\s*$/$1/sgo;
97                                                                 $text =~ s/\b(?:the|an?)\b//sgo;
98                                                                 $text =~ s/\[.[^\]]+\]//sgo;
99                                                                 $text =~ s/\s*[;\/\.]*$//sgo;
100                                                                 $text =~ s/\pM+//gso;
101                                                         };
102                                         ',
103                         },
104                         author  => {
105                                         xpath   => [
106                                                         '//mods:mods/mods:relatedItem/mods:name[mods:role/mods:text/text()="creator" and @type="personal"]/mods:namePart',
107                                                         '//mods:mods/mods:relatedItem/mods:name[mods:role/mods:text/text()="creator"]/mods:namePart',
108                                                         '//mods:mods/mods:name[mods:role/mods:text/text()="creator" and @type="personal"]/mods:namePart',
109                                                         '//mods:mods/mods:name[mods:role/mods:text/text()="creator"]/mods:namePart',
110                                         ],
111                                         fixup   => '
112                                                         do {
113                                                                 $text = lc($text);
114                                                                 $text =~ s/\s+/ /sgo;
115                                                                 $text =~ s/^\s*(.+)\s*$/$1/sgo;
116                                                                 $text =~ s/,?\s+.*$//sgo;
117                                                                 $text =~ s/\pM+//gso;
118                                                         };
119                                         ',
120                         },
121         ],
122
123 );
124
125 push @fp_mods_xpath, '//mods:mods/mods:titleInfo' => $fp_mods_xpath[1];
126
127 sub fingerprint_mods {
128         my $mods = shift;
129
130         my $fp_string = '';
131
132         my $match_index = 0;
133         my $block_index = 1;
134         while ( my $match_xpath = $fp_mods_xpath[$match_index] ) {
135                 if ( my @nodes = $mods->findnodes( $match_xpath ) ) {
136
137                         my $block_name_index = 0;
138                         my $block_value_index = 1;
139                         my $block = $fp_mods_xpath[$block_index];
140                         while ( my $part = $$block[$block_value_index] ) {
141                                 my $text;
142                                 for my $xpath ( @{ $part->{xpath} } ) {
143                                         $text = $mods->findvalue( $xpath );
144                                         last if ($text);
145                                 }
146
147                                 $log->debug("Found fingerprint text using $$block[$block_name_index] : [$text]", DEBUG);
148
149                                 if ($text) {
150                                         eval $$part{fixup};
151                                         $fp_string .= $text;
152                                 }
153
154                                 $block_name_index += 2;
155                                 $block_value_index += 2;
156                         }
157                 }
158                 if ($fp_string) {
159                         $fp_string =~ s/\W+//gso;
160                         $log->debug("Fingerprint is [$fp_string]", INFO);;
161                         return $fp_string;
162                 }
163
164                 $match_index += 2;
165                 $block_index += 2;
166         }
167         return undef;
168 }
169
170
171
172 # --------------------------------------------------------------------------------
173
174 my $begin;
175 my $commit;
176 my $rollback;
177 my $lookup;
178 my $update_entry;
179 my $mr_lookup;
180 my $mr_create;
181 my $create_source_map;
182 my $sm_lookup;
183 my $rm_old_rd;
184 my $rm_old_sm;
185 my $rm_old_fr;
186 my $rm_old_tr;
187 my $rm_old_ar;
188 my $rm_old_sr;
189 my $rm_old_kr;
190
191 my $fr_create;
192 my $rd_create;
193 my $create = {};
194
195 my %descriptor_code = (
196         item_type => 'substr($ldr,6,1)',
197         item_form => '(substr($ldr,6,1) =~ /^(?:f|g|i|m|o|p|r)$/) ? substr($oo8,29,1) : substr($oo8,23,1)',
198         bib_level => 'substr($ldr,7,1)',
199         control_type => 'substr($ldr,8,1)',
200         char_encoding => 'substr($ldr,9,1)',
201         enc_level => 'substr($ldr,17,1)',
202         cat_form => 'substr($ldr,18,1)',
203         pub_status => 'substr($ldr,5,1)',
204         item_lang => 'substr($oo8,35,3)',
205         audience => 'substr($oo8,22,1)',
206 );
207
208 sub wormize {
209
210         my $self = shift;
211         my $client = shift;
212         my @docids = @_;
213
214         $begin = $self->method_lookup( 'open-ils.storage.transaction.begin')
215                 unless ($begin);
216         $commit = $self->method_lookup( 'open-ils.storage.transaction.commit')
217                 unless ($commit);
218         $rollback = $self->method_lookup( 'open-ils.storage.transaction.rollback')
219                 unless ($rollback);
220         $sm_lookup = $self->method_lookup('open-ils.storage.direct.metabib.metarecord_source_map.search.source')
221                 unless ($sm_lookup);
222         $mr_lookup = $self->method_lookup('open-ils.storage.direct.metabib.metarecord.search.fingerprint')
223                 unless ($mr_lookup);
224         $mr_create = $self->method_lookup('open-ils.storage.direct.metabib.metarecord.create')
225                 unless ($mr_create);
226         $create_source_map = $self->method_lookup('open-ils.storage.direct.metabib.metarecord_source_map.batch.create')
227                 unless ($create_source_map);
228         $lookup = $self->method_lookup('open-ils.storage.direct.biblio.record_entry.batch.retrieve')
229                 unless ($lookup);
230         $update_entry = $self->method_lookup('open-ils.storage.direct.biblio.record_entry.batch.update')
231                 unless ($update_entry);
232         $rm_old_sm = $self->method_lookup( 'open-ils.storage.direct.metabib.metarecord_source_map.mass_delete')
233                 unless ($rm_old_sm);
234         $rm_old_rd = $self->method_lookup( 'open-ils.storage.direct.metabib.record_descriptor.mass_delete')
235                 unless ($rm_old_rd);
236         $rm_old_fr = $self->method_lookup( 'open-ils.storage.direct.metabib.full_rec.mass_delete')
237                 unless ($rm_old_fr);
238         $rm_old_tr = $self->method_lookup( 'open-ils.storage.direct.metabib.title_field_entry.mass_delete')
239                 unless ($rm_old_tr);
240         $rm_old_ar = $self->method_lookup( 'open-ils.storage.direct.metabib.author_field_entry.mass_delete')
241                 unless ($rm_old_ar);
242         $rm_old_sr = $self->method_lookup( 'open-ils.storage.direct.metabib.subject_field_entry.mass_delete')
243                 unless ($rm_old_sr);
244         $rm_old_kr = $self->method_lookup( 'open-ils.storage.direct.metabib.keyword_field_entry.mass_delete')
245                 unless ($rm_old_kr);
246         $rd_create = $self->method_lookup( 'open-ils.storage.direct.metabib.record_descriptor.batch.create')
247                 unless ($rd_create);
248         $fr_create = $self->method_lookup( 'open-ils.storage.direct.metabib.full_rec.batch.create')
249                 unless ($fr_create);
250         $$create{title} = $self->method_lookup( 'open-ils.storage.direct.metabib.title_field_entry.batch.create')
251                 unless ($$create{title});
252         $$create{author} = $self->method_lookup( 'open-ils.storage.direct.metabib.author_field_entry.batch.create')
253                 unless ($$create{author});
254         $$create{subject} = $self->method_lookup( 'open-ils.storage.direct.metabib.subject_field_entry.batch.create')
255                 unless ($$create{subject});
256         $$create{keyword} = $self->method_lookup( 'open-ils.storage.direct.metabib.keyword_field_entry.batch.create')
257                 unless ($$create{keyword});
258
259
260         try {
261                 my ($r) = $begin->run($client);
262                 unless (defined $r and $r) {
263                         $rollback->run;
264                         throw OpenSRF::EX::PANIC ("Couldn't BEGIN transaction!")
265                 }
266         } catch Error with {
267                 throw OpenSRF::EX::PANIC ("WoRM Couldn't BEGIN transaction!")
268         };
269
270         my @source_maps;
271         my @entry_list;
272         my @rd_list;
273         my @ns_list;
274         my @mods_data;
275         my $ret = 0;
276         for my $entry ( $lookup->run(@docids) ) {
277                 # step -1: grab the doc from storage
278                 next unless ($entry);
279
280                 my $xml = $entry->marc;
281                 my $docid = $entry->id;
282                 my $marcdoc = $parser->parse_string($xml);
283                 my $modsdoc = $mods_sheet->transform($marcdoc);
284
285                 my $mods = $modsdoc->documentElement;
286                 $mods->setNamespace( "http://www.loc.gov/mods/", "mods", 1 );
287
288                 $entry->fingerprint( fingerprint_mods( $mods ) );
289                 push @entry_list, $entry;
290
291                 my ($mr) = $mr_lookup->run( $entry->fingerprint );
292                 if (!@$mr) {
293                         $mr = new Fieldmapper::metabib::metarecord;
294                         $mr->fingerprint( $entry->fingerprint );
295                         $mr->master_record( $entry->id );
296                         my ($new_mr) = $mr_create->run($mr);
297                         $mr->id($new_mr);
298                         unless (defined $mr) {
299                                 throw OpenSRF::EX::PANIC ("Couldn't run open-ils.storage.direct.metabib.metarecord.create!")
300                         }
301                 } else {
302                         $mr = $$mr[0];
303                 }
304
305                 my $sm = new Fieldmapper::metabib::metarecord_source_map;
306                 $sm->metarecord( $mr->id );
307                 $sm->source( $entry->id );
308                 push @source_maps, $sm;
309
310                 my $ldr = $marcdoc->documentElement->getChildrenByTagName('leader')->pop->textContent;
311                 my $oo8 = $marcdoc->documentElement->findvalue('//*[local-name()="controlfield" and @tag="008"]');
312
313                 my $rd_obj = Fieldmapper::metabib::record_descriptor->new;
314                 for my $rd_field ( keys %descriptor_code ) {
315                         $rd_obj->$rd_field( eval "$descriptor_code{$rd_field};" );
316                 }
317                 $rd_obj->record( $docid );
318                 push @rd_list, $rd_obj;
319
320                 push @mods_data, { $docid => $self->modsdoc_to_values( $mods ) };
321
322                 # step 2: build the KOHA rows
323                 my @tmp_list = _marcxml_to_full_rows( $marcdoc );
324                 $_->record( $docid ) for (@tmp_list);
325                 push @ns_list, @tmp_list;
326
327                 $ret++;
328
329                 last unless ($self->api_name =~ /batch$/o);
330         }
331
332         $rm_old_rd->run( { record => \@docids } );
333         $rm_old_fr->run( { record => \@docids } );
334         $rm_old_sm->run( { source => \@docids } );
335         $rm_old_tr->run( { source => \@docids } );
336         $rm_old_ar->run( { source => \@docids } );
337         $rm_old_sr->run( { source => \@docids } );
338         $rm_old_kr->run( { source => \@docids } );
339
340         my ($sm) = $create_source_map->run(@source_maps);
341         unless (defined $sm) {
342                 throw OpenSRF::EX::PANIC ("Couldn't run open-ils.storage.direct.metabib.metarecord_source_map.batch.create!")
343         }
344
345         my ($re) = $update_entry->run(@entry_list);
346         unless (defined $re) {
347                 throw OpenSRF::EX::PANIC ("Couldn't run open-ils.storage.direct.biblio.record_entry.batch.update!")
348         }
349
350         my ($rd) = $rd_create->run(@rd_list);
351         unless (defined $rd) {
352                 throw OpenSRF::EX::PANIC ("Couldn't run open-ils.storage.direct.metabib.record_descriptor.batch.create!")
353         }
354
355         my ($fr) = $fr_create->run(@ns_list);
356         unless (defined $fr) {
357                 throw OpenSRF::EX::PANIC ("Couldn't run open-ils.storage.direct.metabib.full_rec.batch.create!")
358         }
359
360         # step 5: insert the new metadata
361         for my $class ( qw/title author subject keyword/ ) {
362                 my @md_list = ();
363                 for my $doc ( @mods_data ) {
364                         my ($did) = keys %$doc;
365                         my ($data) = values %$doc;
366
367                         my $fm_constructor = "Fieldmapper::metabib::${class}_field_entry";
368                         for my $row ( keys %{ $$data{$class} } ) {
369                                 next unless (exists $$data{$class}{$row});
370                                 next unless ($$data{$class}{$row}{value});
371                                 my $fm_obj = $fm_constructor->new;
372                                 $fm_obj->value( $$data{$class}{$row}{value} );
373                                 $fm_obj->field( $$data{$class}{$row}{field_id} );
374                                 $fm_obj->source( $did );
375                                 $log->debug("$class entry: ".$fm_obj->source." => ".$fm_obj->field." : ".$fm_obj->value, DEBUG);
376
377                                 push @md_list, $fm_obj;
378                         }
379                 }
380                         
381                 my ($cr) = $$create{$class}->run(@md_list);
382                 unless (defined $cr) {
383                         throw OpenSRF::EX::PANIC ("Couldn't run open-ils.storage.direct.metabib.${class}_field_entry.batch.create!")
384                 }
385         }
386
387         my ($c) = $commit->run;
388         unless (defined $c and $c) {
389                 $rollback->run;
390                 throw OpenSRF::EX::PANIC ("Couldn't COMMIT changes!")
391         }
392
393         return $ret;
394 }
395 __PACKAGE__->register_method( 
396         api_name        => "open-ils.worm.wormize",
397         method          => "wormize",
398         api_level       => 1,
399         argc            => 1,
400 );
401 __PACKAGE__->register_method( 
402         api_name        => "open-ils.worm.wormize.batch",
403         method          => "wormize",
404         api_level       => 1,
405         argc            => 1,
406 );
407
408
409 # --------------------------------------------------------------------------------
410
411
412 sub _marcxml_to_full_rows {
413
414         my $marcxml = shift;
415
416         my @ns_list;
417         
418         my $root = $marcxml->documentElement;
419
420         for my $tagline ( @{$root->getChildrenByTagName("leader")} ) {
421                 next unless $tagline;
422
423                 my $ns = new Fieldmapper::metabib::full_rec;
424
425                 $ns->tag( 'LDR' );
426                 my $val = $tagline->textContent;
427                 $val =~ s/(\pM)//gso;
428                 $ns->value( $val );
429
430                 push @ns_list, $ns;
431         }
432
433         for my $tagline ( @{$root->getChildrenByTagName("controlfield")} ) {
434                 next unless $tagline;
435
436                 my $ns = new Fieldmapper::metabib::full_rec;
437
438                 $ns->tag( $tagline->getAttribute( "tag" ) );
439                 my $val = $tagline->textContent;
440                 $val =~ s/(\pM)//gso;
441                 $ns->value( $val );
442
443                 push @ns_list, $ns;
444         }
445
446         for my $tagline ( @{$root->getChildrenByTagName("datafield")} ) {
447                 next unless $tagline;
448
449                 my $tag = $tagline->getAttribute( "tag" );
450                 my $ind1 = $tagline->getAttribute( "ind1" );
451                 my $ind2 = $tagline->getAttribute( "ind2" );
452
453                 for my $data ( $tagline->childNodes ) {
454                         next unless $data;
455
456                         my $ns = new Fieldmapper::metabib::full_rec;
457
458                         $ns->tag( $tag );
459                         $ns->ind1( $ind1 );
460                         $ns->ind2( $ind2 );
461                         $ns->subfield( $data->getAttribute( "code" ) );
462                         my $val = $data->textContent;
463                         $val =~ s/(\pM)//gso;
464                         $ns->value( lc($val) );
465
466                         push @ns_list, $ns;
467                 }
468         }
469         return @ns_list;
470 }
471
472 sub _get_field_value {
473
474         my( $root, $xpath ) = @_;
475
476         my $string = "";
477
478         # grab the set of matching nodes
479         my @nodes = $root->findnodes( $xpath );
480         for my $value (@nodes) {
481
482                 # grab all children of the node
483                 my @children = $value->childNodes();
484                 for my $child (@children) {
485
486                         # add the childs content to the growing buffer
487                         my $content = quotemeta($child->textContent);
488                         next if ($string =~ /$content/);  # uniquify the values
489                         $string .= $child->textContent . " ";
490                 }
491                 if( ! @children ) {
492                         $string .= $value->textContent . " ";
493                 }
494         }
495         $string =~ s/(\pM)//gso;
496         return lc($string);
497 }
498
499
500 sub modsdoc_to_values {
501         my( $self, $mods ) = @_;
502         my $data = {};
503         for my $class (keys %$xpathset) {
504                 $data->{$class} = {};
505                 for my $type (keys %{$xpathset->{$class}}) {
506                         $data->{$class}->{$type} = {};
507                         $data->{$class}->{$type}->{value} = _get_field_value( $mods, $xpathset->{$class}->{$type}->{xpath} );
508                         $data->{$class}->{$type}->{field_id} = $xpathset->{$class}->{$type}->{id};
509                 }
510         }
511         return $data;
512 }
513
514
515 1;
516
517