]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/Application/Ingest.pm
Fix in-transit hold retarget
[Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / Application / Ingest.pm
1 package OpenILS::Application::Ingest;
2 use OpenILS::Application;
3 use base qw/OpenILS::Application/;
4
5 use Unicode::Normalize;
6 use OpenSRF::EX qw/:try/;
7
8 use OpenSRF::AppSession;
9 use OpenSRF::Utils::SettingsClient;
10 use OpenSRF::Utils::Logger qw/:level/;
11
12 use OpenILS::Application::AppUtils;
13 use OpenILS::Utils::ScriptRunner;
14 use OpenILS::Utils::Fieldmapper;
15 use OpenSRF::Utils::JSON;
16
17 use OpenILS::Utils::Fieldmapper;
18
19 use XML::LibXML;
20 use XML::LibXSLT;
21 use Time::HiRes qw(time);
22
23 our %supported_formats = (
24     mods33    => {ns => 'http://www.loc.gov/mods/v3'},
25     mods32    => {ns => 'http://www.loc.gov/mods/v3'},
26     mods3    => {ns => 'http://www.loc.gov/mods/v3'},
27     mods    => {ns => 'http://www.loc.gov/mods/'},
28     marcxml    => {ns => 'http://www.loc.gov/MARC21/slim'},
29     srw_dc    => {ns => 'info:srw/schema/1/dc-schema'},
30     oai_dc    => {ns => 'http://www.openarchives.org/OAI/2.0/oai_dc/'},
31     rdf_dc    => {ns => 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'},
32     atom    => {ns => 'http://www.w3.org/2005/Atom'},
33     rss091    => {ns => 'http://my.netscape.com/rdf/simple/0.9/'},
34     rss092    => {ns => ''},
35     rss093    => {ns => ''},
36     rss094    => {ns => ''},
37     rss10    => {ns => 'http://purl.org/rss/1.0/'},
38     rss11    => {ns => 'http://purl.org/net/rss1.1#'},
39     rss2    => {ns => ''},
40 );
41
42
43 my $log = 'OpenSRF::Utils::Logger';
44
45 my  $parser = XML::LibXML->new();
46 my  $xslt = XML::LibXSLT->new();
47
48 my  $mods_sheet;
49 my  $mads_sheet;
50 my  $xpathset = {};
51 sub initialize {}
52 sub child_init {}
53
54 sub post_init {
55
56     unless (keys %$xpathset) {
57         $log->debug("Running post_init", DEBUG);
58
59         my $xsldir = OpenSRF::Utils::SettingsClient->new->config_value(dirs => 'xsl');
60
61         unless ($supported_formats{mods}{xslt}) {
62             $log->debug("Loading MODS XSLT", DEBUG);
63              my $xslt_doc = $parser->parse_file( $xsldir . "/MARC21slim2MODS.xsl");
64             $supported_formats{mods}{xslt} = $xslt->parse_stylesheet( $xslt_doc );
65         }
66
67         unless ($supported_formats{mods3}{xslt}) {
68             $log->debug("Loading MODS v3 XSLT", DEBUG);
69              my $xslt_doc = $parser->parse_file( $xsldir . "/MARC21slim2MODS3.xsl");
70             $supported_formats{mods3}{xslt} = $xslt->parse_stylesheet( $xslt_doc );
71         }
72
73         unless ($supported_formats{mods32}{xslt}) {
74             $log->debug("Loading MODS v32 XSLT", DEBUG);
75              my $xslt_doc = $parser->parse_file( $xsldir . "/MARC21slim2MODS32.xsl");
76             $supported_formats{mods32}{xslt} = $xslt->parse_stylesheet( $xslt_doc );
77         }
78
79         unless ($supported_formats{mods33}{xslt}) {
80             $log->debug("Loading MODS v33 XSLT", DEBUG);
81              my $xslt_doc = $parser->parse_file( $xsldir . "/MARC21slim2MODS33.xsl");
82             $supported_formats{mods33}{xslt} = $xslt->parse_stylesheet( $xslt_doc );
83         }
84
85         my $req = OpenSRF::AppSession
86                 ->create('open-ils.cstore')
87                 
88                 # XXX testing new metabib field use for faceting
89                 #->request( 'open-ils.cstore.direct.config.metabib_field.search.atomic', { id => { '!=' => undef } } )
90                 ->request( 'open-ils.cstore.direct.config.metabib_field.search.atomic', { search_field => 't' } )
91
92                 ->gather(1);
93
94         if (ref $req and @$req) {
95             for my $f (@$req) {
96                 $xpathset->{ $f->field_class }->{ $f->name }->{xpath} = $f->xpath;
97                 $xpathset->{ $f->field_class }->{ $f->name }->{id} = $f->id;
98                 $xpathset->{ $f->field_class }->{ $f->name }->{format} = $f->format;
99                 $log->debug("Loaded XPath from DB: ".$f->field_class." => ".$f->name." : ".$f->xpath, DEBUG);
100             }
101         }
102     }
103 }
104
105 # --------------------------------------------------------------------------------
106 # Biblio ingest
107
108 package OpenILS::Application::Ingest::Biblio;
109 use base qw/OpenILS::Application::Ingest/;
110 use Unicode::Normalize;
111
112 sub rw_biblio_ingest_single_object {
113     my $self = shift;
114     my $client = shift;
115     my $bib = shift;
116
117     my ($blob) = $self->method_lookup("open-ils.ingest.full.biblio.object.readonly")->run($bib);
118     return undef unless ($blob);
119
120     $bib->fingerprint( $blob->{fingerprint}->{fingerprint} );
121     $bib->quality( $blob->{fingerprint}->{quality} );
122
123     my $cstore = OpenSRF::AppSession->connect('open-ils.cstore');
124
125     my $xact = $cstore->request('open-ils.cstore.transaction.begin')->gather(1);
126     my $tmp;
127
128     # update uri stuff ...
129
130     # gather URI call numbers for this record
131     my $uri_cns = $u->{call_number} = $cstore->request(
132         'open-ils.cstore.direct.asset.call_number.id_list.atomic' => { record => $bib->id, label => '##URI##' }
133     )->gather(1);
134
135     if (@$uri_cns) {
136         # gather the maps for those call numbers
137         my $uri_maps = $u->{call_number} = $cstore->request(
138             'open-ils.cstore.direct.asset.uri_call_number_map.id_list.atomic' => { call_number => $uri_cns }
139         )->gather(1);
140     
141         # delete the old maps
142         $cstore->request( 'open-ils.cstore.direct.asset.uri_call_number_map.delete' => $_ )->gather(1) for (@$uri_maps);
143     
144         # and delete the call numbers if there are no more URIs
145         if (!@{ $blob->{uri} }) {
146             $cstore->request( 'open-ils.cstore.direct.asset.call_number.delete' => $_ )->gather(1) for (@$uri_cns);
147         }
148     }
149
150     # now, add CNs, URIs and maps
151     my %new_cns_by_owner;
152     my %new_uris_by_owner;
153     for my $u ( @{ $blob->{uri} } ) {
154
155         my $owner = $u->{call_number}->owning_lib;
156
157         if ($u->{call_number}->isnew) {
158             if ($new_cns_by_owner{$owner}) {
159                 $u->{call_number} = $new_cns_by_owner{$owner};
160             } else {
161                 $u->{call_number}->clear_id;
162                 $u->{call_number} = $new_cns_by_owner{$owner} = $cstore->request(
163                     'open-ils.cstore.direct.asset.call_number.create' => $u->{call_number}
164                 )->gather(1);
165             }
166         }
167
168         if ($u->{uri}->isnew) {
169             if ($new_uris_by_owner{$owner}) {
170                 $u->{uri} = $new_uris_by_owner{$owner};
171             } else {
172                 $u->{uri} = $new_uris_by_owner{$owner} = $cstore->request(
173                     'open-ils.cstore.direct.asset.uri.create' => $u->{uri}
174                 )->gather(1);
175             }
176         }
177
178         # Check for an existing CN-URI map
179         $tmp = $cstore->request(
180             'open-ils.cstore.direct.asset.uri_call_number_map.id_list',
181             { call_number => $u->{call_number}->id, uri => $u->{uri}->id }
182         )->gather(1);
183
184         next if ($tmp);
185
186         my $umap = Fieldmapper::asset::uri_call_number_map->new;
187         $umap->uri($u->{uri}->id);
188         $umap->call_number($u->{call_number}->id);
189
190         $cstore->request( 'open-ils.cstore.direct.asset.uri_call_number_map.create' => $umap )->gather(1);
191     }
192
193     # update full_rec stuff ...
194     $tmp = $cstore->request(
195         'open-ils.cstore.direct.metabib.full_rec.id_list.atomic',
196         { record => $bib->id }
197     )->gather(1);
198
199     $cstore->request( 'open-ils.cstore.direct.metabib.full_rec.delete' => $_ )->gather(1) for (@$tmp);
200     $cstore->request( 'open-ils.cstore.direct.metabib.full_rec.create' => $_ )->gather(1) for (@{ $blob->{full_rec} });
201
202     # update rec_descriptor stuff ...
203     $tmp = $cstore->request(
204         'open-ils.cstore.direct.metabib.record_descriptor.id_list.atomic',
205         { record => $bib->id }
206     )->gather(1);
207
208     $cstore->request( 'open-ils.cstore.direct.metabib.record_descriptor.delete' => $_ )->gather(1) for (@$tmp);
209     $cstore->request( 'open-ils.cstore.direct.metabib.record_descriptor.create' => $blob->{descriptor} )->gather(1);
210
211     # deal with classed fields...
212     for my $class ( qw/title author subject keyword series identifier/ ) {
213         $tmp = $cstore->request(
214             "open-ils.cstore.direct.metabib.${class}_field_entry.id_list.atomic",
215             { source => $bib->id }
216         )->gather(1);
217
218         $cstore->request( "open-ils.cstore.direct.metabib.${class}_field_entry.delete" => $_ )->gather(1) for (@$tmp);
219     }
220     for my $obj ( @{ $blob->{field_entries} } ) {
221         my $class = $obj->class_name;
222         $class =~ s/^Fieldmapper:://o;
223         $class =~ s/::/./go;
224         $cstore->request( "open-ils.cstore.direct.$class.create" => $obj )->gather(1);
225     }
226
227     # update MR map ...
228
229     $tmp = $cstore->request(
230         'open-ils.cstore.direct.metabib.metarecord_source_map.search.atomic',
231         { source => $bib->id }
232     )->gather(1);
233
234     $cstore->request( 'open-ils.cstore.direct.metabib.metarecord_source_map.delete' => $_->id )->gather(1) for (@$tmp);
235
236     # get the old MRs
237     my $old_mrs = $cstore->request(
238         'open-ils.cstore.direct.metabib.metarecord.search.atomic' => { id => [map { $_->metarecord } @$tmp] }
239     )->gather(1) if (@$tmp);
240
241     $old_mrs = [] if (!ref($old_mrs));
242
243     my $mr;
244     for my $m (@$old_mrs) {
245         if ($m->fingerprint eq $bib->fingerprint) {
246             $mr = $m;
247         } else {
248             my $others = $cstore->request(
249                 'open-ils.cstore.direct.metabib.metarecord_source_map.id_list.atomic' => { metarecord => $m->id }
250             )->gather(1);
251
252             if (!@$others) {
253                 $cstore->request(
254                     'open-ils.cstore.direct.metabib.metarecord.delete' => $m->id
255                 )->gather(1);
256             }
257
258             $m->isdeleted(1);
259         }
260     }
261
262     my $holds;
263     if (!$mr) {
264         # Get the matchin MR, if any.
265         $mr = $cstore->request(
266             'open-ils.cstore.direct.metabib.metarecord.search',
267             { fingerprint => $bib->fingerprint }
268         )->gather(1);
269
270         $holds = $cstore->request(
271             'open-ils.cstore.direct.action.hold_request.search.atomic',
272             { hold_type => 'M', target => [ map { $_->id } grep { $_->isdeleted } @$old_mrs ] }
273         )->gather(1) if (@$old_mrs);
274
275         if ($mr) {
276             for my $h (@$holds) {
277                 $h->target($mr);
278                 $cstore->request( 'open-ils.cstore.direct.action.hold_request.update' => $h )->gather(1);
279                 $h->ischanged(1);
280             }
281         }
282     }
283
284     if (!$mr) {
285         $mr = new Fieldmapper::metabib::metarecord;
286         $mr->fingerprint( $bib->fingerprint );
287         $mr->master_record( $bib->id );
288         $mr->id(
289             $cstore->request(
290                 "open-ils.cstore.direct.metabib.metarecord.create",
291                 $mr => { quiet => 'true' }
292             )->gather(1)
293         );
294
295         for my $h (grep { !$_->ischanged } @$holds) {
296             $h->target($mr);
297             $cstore->request( 'open-ils.cstore.direct.action.hold_request.update' => $h )->gather(1);
298         }
299     } else {
300         my $mrm = $cstore->request(
301             'open-ils.cstore.direct.metabib.metarecord_source_map.search.atomic',
302             { metarecord => $mr->id }
303         )->gather(1);
304
305         if (@$mrm) {
306             my $best = $cstore->request(
307                 "open-ils.cstore.direct.biblio.record_entry.search",
308                 { id => [ map { $_->source } @$mrm ] },
309                 { 'select'    => { bre => [ qw/id quality/ ] },
310                   order_by    => { bre => "quality desc" },
311                   limit        => 1,
312                 }
313             )->gather(1);
314
315             if ($best->quality > $bib->quality) {
316                 $mr->master_record($best->id);
317             } else {
318                 $mr->master_record($bib->id);
319             }
320         } else {
321             $mr->master_record($bib->id);
322         }
323
324         $mr->clear_mods;
325
326         $cstore->request( 'open-ils.cstore.direct.metabib.metarecord.update' => $mr )->gather(1);
327     }
328
329     my $mrm = new Fieldmapper::metabib::metarecord_source_map;
330     $mrm->source($bib->id);
331     $mrm->metarecord($mr->id);
332
333     $cstore->request( 'open-ils.cstore.direct.metabib.metarecord_source_map.create' => $mrm )->gather(1);
334     $cstore->request( 'open-ils.cstore.direct.biblio.record_entry.update' => $bib )->gather(1);
335
336     $cstore->request( 'open-ils.cstore.json_query.atomic' => { from => [ 'reporter.simple_rec_update', $bib->id ] } )->gather(1);
337
338     $cstore->request( 'open-ils.cstore.transaction.commit' )->gather(1) || return undef;;
339     $cstore->disconnect;
340
341     return $bib->id;
342 }
343 __PACKAGE__->register_method(  
344     api_name    => "open-ils.ingest.full.biblio.object",
345     method        => "rw_biblio_ingest_single_object",
346     api_level    => 1,
347     argc        => 1,
348 );                      
349
350 sub rw_biblio_ingest_single_record {
351     my $self = shift;
352     my $client = shift;
353     my $rec = shift;
354
355     OpenILS::Application::Ingest->post_init();
356     my $cstore = OpenSRF::AppSession->connect( 'open-ils.cstore' );
357     $cstore->request('open-ils.cstore.transaction.begin')->gather(1);
358
359     my $r = $cstore->request( 'open-ils.cstore.direct.biblio.record_entry.retrieve' => $rec )->gather(1);
360
361     $cstore->request('open-ils.cstore.transaction.rollback')->gather(1);
362     $cstore->disconnect;
363
364     return undef unless ($r and @$r);
365
366     return ($self->method_lookup("open-ils.ingest.full.biblio.object")->run($r))[0];
367 }
368 __PACKAGE__->register_method(  
369     api_name    => "open-ils.ingest.full.biblio.record",
370     method        => "rw_biblio_ingest_single_record",
371     api_level    => 1,
372     argc        => 1,
373 );                      
374
375 sub rw_biblio_ingest_record_list {
376     my $self = shift;
377     my $client = shift;
378     my @rec = ref($_[0]) ? @{ $_[0] } : @_ ;
379
380     OpenILS::Application::Ingest->post_init();
381     my $cstore = OpenSRF::AppSession->connect( 'open-ils.cstore' );
382     $cstore->request('open-ils.cstore.transaction.begin')->gather(1);
383
384     my $r = $cstore->request( 'open-ils.cstore.direct.biblio.record_entry.search.atomic' => { id => \@rec } )->gather(1);
385
386     $cstore->request('open-ils.cstore.transaction.rollback')->gather(1);
387     $cstore->disconnect;
388
389     return undef unless ($r and @$r);
390
391     my $count = 0;
392     for (@$r) {
393         if (($self->method_lookup("open-ils.ingest.full.biblio.object")->run($_))[0]) {
394             $count++
395         }
396     }
397     return $count;
398 }
399 __PACKAGE__->register_method(  
400     api_name    => "open-ils.ingest.full.biblio.record_list",
401     method        => "rw_biblio_ingest_record_list",
402     api_level    => 1,
403     argc        => 1,
404 );                      
405
406 sub ro_biblio_ingest_single_object {
407     my $self = shift;
408     my $client = shift;
409     my $bib = shift;
410     my $xml = OpenILS::Application::AppUtils->entityize($bib->marc);
411     my $max_cn = shift;
412     my $max_uri = shift;
413
414     my $cstore = OpenSRF::AppSession->connect( 'open-ils.cstore' );
415
416     if (!$max_cn) {
417         my $cn = $cstore->request( 'open-ils.cstore.direct.asset.call_number.search' => { id => { '!=' => undef } }, { limit => 1, order_by => { acn => 'id desc' } } )->gather(1);
418         $max_cn = int($cn->id) + 1000;
419     }
420
421     if (!$max_uri) {
422         my $cn = $cstore->request( 'open-ils.cstore.direct.asset.call_number.search' => { id => { '!=' => undef } }, { limit => 1, order_by => { acn => 'id desc' } } )->gather(1);
423         $max_uri = int($cn->id) + 1000;
424     }
425
426     $cstore->disconnect;
427
428     my $document = $parser->parse_string($xml);
429
430     my @uris = $self->method_lookup("open-ils.ingest.856_uri.object")->run($bib, $max_cn, $max_uri);
431     my @mfr = $self->method_lookup("open-ils.ingest.flat_marc.biblio.xml")->run($document);
432     my @mXfe = $self->method_lookup("open-ils.ingest.extract.field_entry.all.xml")->run($document);
433     my ($fp) = $self->method_lookup("open-ils.ingest.fingerprint.xml")->run($xml);
434     my ($rd) = $self->method_lookup("open-ils.ingest.descriptor.xml")->run($xml);
435
436     $_->source($bib->id) for (@mXfe);
437     $_->record($bib->id) for (@mfr);
438     $rd->record($bib->id) if ($rd);
439
440     return { full_rec => \@mfr, field_entries => \@mXfe, fingerprint => $fp, descriptor => $rd, uri => \@uris };
441 }
442 __PACKAGE__->register_method(  
443     api_name    => "open-ils.ingest.full.biblio.object.readonly",
444     method        => "ro_biblio_ingest_single_object",
445     api_level    => 1,
446     argc        => 1,
447 );                      
448
449 sub ro_biblio_ingest_single_xml {
450     my $self = shift;
451     my $client = shift;
452     my $xml = OpenILS::Application::AppUtils->entityize(shift);
453
454     my $document = $parser->parse_string($xml);
455
456     my @mfr = $self->method_lookup("open-ils.ingest.flat_marc.biblio.xml")->run($document);
457     my @mXfe = $self->method_lookup("open-ils.ingest.extract.field_entry.all.xml")->run($document);
458     my ($fp) = $self->method_lookup("open-ils.ingest.fingerprint.xml")->run($xml);
459     my ($rd) = $self->method_lookup("open-ils.ingest.descriptor.xml")->run($xml);
460
461     return { full_rec => \@mfr, field_entries => \@mXfe, fingerprint => $fp, descriptor => $rd };
462 }
463 __PACKAGE__->register_method(  
464     api_name    => "open-ils.ingest.full.biblio.xml.readonly",
465     method        => "ro_biblio_ingest_single_xml",
466     api_level    => 1,
467     argc        => 1,
468 );                      
469
470 sub ro_biblio_ingest_single_record {
471     my $self = shift;
472     my $client = shift;
473     my $rec = shift;
474
475     OpenILS::Application::Ingest->post_init();
476     my $r = OpenSRF::AppSession
477             ->create('open-ils.cstore')
478             ->request( 'open-ils.cstore.direct.biblio.record_entry.retrieve' => $rec )
479             ->gather(1);
480
481     return undef unless ($r and @$r);
482
483     my ($res) = $self->method_lookup("open-ils.ingest.full.biblio.xml.readonly")->run($r->marc);
484
485     $_->source($rec) for (@{$res->{field_entries}});
486     $_->record($rec) for (@{$res->{full_rec}});
487     $res->{descriptor}->record($rec);
488
489     return $res;
490 }
491 __PACKAGE__->register_method(  
492     api_name    => "open-ils.ingest.full.biblio.record.readonly",
493     method        => "ro_biblio_ingest_single_record",
494     api_level    => 1,
495     argc        => 1,
496 );                      
497
498 sub ro_biblio_ingest_stream_record {
499     my $self = shift;
500     my $client = shift;
501
502     OpenILS::Application::Ingest->post_init();
503
504     my $ses = OpenSRF::AppSession->create('open-ils.cstore');
505
506     while (my ($resp) = $client->recv( count => 1, timeout => 5 )) {
507     
508         my $rec = $resp->content;
509         last unless (defined $rec);
510
511         $log->debug("Running open-ils.ingest.full.biblio.record.readonly ...");
512         my ($res) = $self->method_lookup("open-ils.ingest.full.biblio.record.readonly")->run($rec);
513
514         $_->source($rec) for (@{$res->{field_entries}});
515         $_->record($rec) for (@{$res->{full_rec}});
516
517         $client->respond( $res );
518     }
519
520     return undef;
521 }
522 __PACKAGE__->register_method(  
523     api_name    => "open-ils.ingest.full.biblio.record_stream.readonly",
524     method        => "ro_biblio_ingest_stream_record",
525     api_level    => 1,
526     stream        => 1,
527 );                      
528
529 sub ro_biblio_ingest_stream_xml {
530     my $self = shift;
531     my $client = shift;
532
533     OpenILS::Application::Ingest->post_init();
534
535     my $ses = OpenSRF::AppSession->create('open-ils.cstore');
536
537     while (my ($resp) = $client->recv( count => 1, timeout => 5 )) {
538     
539         my $xml = $resp->content;
540         last unless (defined $xml);
541
542         $log->debug("Running open-ils.ingest.full.biblio.xml.readonly ...");
543         my ($res) = $self->method_lookup("open-ils.ingest.full.biblio.xml.readonly")->run($xml);
544
545         $client->respond( $res );
546     }
547
548     return undef;
549 }
550 __PACKAGE__->register_method(  
551     api_name    => "open-ils.ingest.full.biblio.xml_stream.readonly",
552     method        => "ro_biblio_ingest_stream_xml",
553     api_level    => 1,
554     stream        => 1,
555 );                      
556
557 sub rw_biblio_ingest_stream_import {
558     my $self = shift;
559     my $client = shift;
560
561     OpenILS::Application::Ingest->post_init();
562
563     my $ses = OpenSRF::AppSession->create('open-ils.cstore');
564
565     while (my ($resp) = $client->recv( count => 1, timeout => 5 )) {
566     
567         my $bib = $resp->content;
568         last unless (defined $bib);
569
570         $log->debug("Running open-ils.ingest.full.biblio.xml.readonly ...");
571         my ($res) = $self->method_lookup("open-ils.ingest.full.biblio.xml.readonly")->run($bib->marc);
572
573         $_->source($bib->id) for (@{$res->{field_entries}});
574         $_->record($bib->id) for (@{$res->{full_rec}});
575
576         $client->respond( $res );
577     }
578
579     return undef;
580 }
581 __PACKAGE__->register_method(  
582     api_name    => "open-ils.ingest.full.biblio.bib_stream.import",
583     method        => "rw_biblio_ingest_stream_import",
584     api_level    => 1,
585     stream        => 1,
586 );                      
587
588
589 # --------------------------------------------------------------------------------
590 # Authority ingest
591
592 package OpenILS::Application::Ingest::Authority;
593 use base qw/OpenILS::Application::Ingest/;
594 use Unicode::Normalize;
595
596 sub rw_authority_ingest_single_object {
597     my $self = shift;
598     my $client = shift;
599     my $auth = shift;
600
601     my ($blob) = $self->method_lookup("open-ils.ingest.full.authority.object.readonly")->run($auth);
602     return undef unless ($blob);
603
604     my $cstore = OpenSRF::AppSession->connect('open-ils.cstore');
605
606     my $xact = $cstore->request('open-ils.cstore.transaction.begin')->gather(1);
607     my $tmp;
608
609     # update full_rec stuff ...
610     $tmp = $cstore->request(
611         'open-ils.cstore.direct.authority.full_rec.id_list.atomic',
612         { record => $auth->id }
613     )->gather(1);
614
615     $cstore->request( 'open-ils.cstore.direct.authority.full_rec.delete' => $_ )->gather(1) for (@$tmp);
616     $cstore->request( 'open-ils.cstore.direct.authority.full_rec.create' => $_ )->gather(1) for (@{ $blob->{full_rec} });
617
618     # XXX when we start extracting authority descriptors and adding sources ...
619     #
620     # update rec_descriptor stuff ...
621     #$tmp = $cstore->request(
622     #    'open-ils.cstore.direct.authority.record_descriptor.id_list.atomic',
623     #    { record => $auth->id }
624     #)->gather(1);
625     #
626     #$cstore->request( 'open-ils.cstore.direct.authority.record_descriptor.delete' => $_ )->gather(1) for (@$tmp);
627     #$cstore->request( 'open-ils.cstore.direct.authority.record_descriptor.create' => $blob->{descriptor} )->gather(1);
628     #$cstore->request( 'open-ils.cstore.direct.authority.record_entry.update' => $auth )->gather(1);
629
630     $cstore->request( 'open-ils.cstore.transaction.commit' )->gather(1) || return undef;;
631     $cstore->disconnect;
632
633     return $auth->id;
634 }
635 __PACKAGE__->register_method(  
636     api_name    => "open-ils.ingest.full.authority.object",
637     method        => "rw_authority_ingest_single_object",
638     api_level    => 1,
639     argc        => 1,
640 );                      
641
642 sub rw_authority_ingest_single_record {
643     my $self = shift;
644     my $client = shift;
645     my $rec = shift;
646
647     OpenILS::Application::Ingest->post_init();
648     my $cstore = OpenSRF::AppSession->connect( 'open-ils.cstore' );
649     $cstore->request('open-ils.cstore.transaction.begin')->gather(1);
650
651     my $r = $cstore->request( 'open-ils.cstore.direct.authority.record_entry.retrieve' => $rec )->gather(1);
652
653     $cstore->request('open-ils.cstore.transaction.rollback')->gather(1);
654     $cstore->disconnect;
655
656     return undef unless ($r and @$r);
657
658     return ($self->method_lookup("open-ils.ingest.full.authority.object")->run($r))[0];
659 }
660 __PACKAGE__->register_method(  
661     api_name    => "open-ils.ingest.full.authority.record",
662     method        => "rw_authority_ingest_single_record",
663     api_level    => 1,
664     argc        => 1,
665 );                      
666
667 sub ro_authority_ingest_single_object {
668     my $self = shift;
669     my $client = shift;
670     my $bib = shift;
671     my $xml = OpenILS::Application::AppUtils->entityize($bib->marc);
672
673     my $document = $parser->parse_string($xml);
674
675     my @mfr = $self->method_lookup("open-ils.ingest.flat_marc.authority.xml")->run($document);
676
677     $_->record($bib->id) for (@mfr);
678
679     return { full_rec => \@mfr };
680 }
681 __PACKAGE__->register_method(  
682     api_name    => "open-ils.ingest.full.authority.object.readonly",
683     method        => "ro_authority_ingest_single_object",
684     api_level    => 1,
685     argc        => 1,
686 );                      
687
688 sub ro_authority_ingest_single_xml {
689     my $self = shift;
690     my $client = shift;
691     my $xml = OpenILS::Application::AppUtils->entityize(shift);
692
693     my $document = $parser->parse_string($xml);
694
695     my @mfr = $self->method_lookup("open-ils.ingest.flat_marc.authority.xml")->run($document);
696
697     return { full_rec => \@mfr };
698 }
699 __PACKAGE__->register_method(  
700     api_name    => "open-ils.ingest.full.authority.xml.readonly",
701     method        => "ro_authority_ingest_single_xml",
702     api_level    => 1,
703     argc        => 1,
704 );                      
705
706 sub ro_authority_ingest_single_record {
707     my $self = shift;
708     my $client = shift;
709     my $rec = shift;
710
711     OpenILS::Application::Ingest->post_init();
712     my $r = OpenSRF::AppSession
713             ->create('open-ils.cstore')
714             ->request( 'open-ils.cstore.direct.authority.record_entry.retrieve' => $rec )
715             ->gather(1);
716
717     return undef unless ($r and @$r);
718
719     my ($res) = $self->method_lookup("open-ils.ingest.full.authority.xml.readonly")->run($r->marc);
720
721     $_->record($rec) for (@{$res->{full_rec}});
722     $res->{descriptor}->record($rec);
723
724     return $res;
725 }
726 __PACKAGE__->register_method(  
727     api_name    => "open-ils.ingest.full.authority.record.readonly",
728     method        => "ro_authority_ingest_single_record",
729     api_level    => 1,
730     argc        => 1,
731 );                      
732
733 sub ro_authority_ingest_stream_record {
734     my $self = shift;
735     my $client = shift;
736
737     OpenILS::Application::Ingest->post_init();
738
739     my $ses = OpenSRF::AppSession->create('open-ils.cstore');
740
741     while (my ($resp) = $client->recv( count => 1, timeout => 5 )) {
742     
743         my $rec = $resp->content;
744         last unless (defined $rec);
745
746         $log->debug("Running open-ils.ingest.full.authority.record.readonly ...");
747         my ($res) = $self->method_lookup("open-ils.ingest.full.authority.record.readonly")->run($rec);
748
749         $_->record($rec) for (@{$res->{full_rec}});
750
751         $client->respond( $res );
752     }
753
754     return undef;
755 }
756 __PACKAGE__->register_method(  
757     api_name    => "open-ils.ingest.full.authority.record_stream.readonly",
758     method        => "ro_authority_ingest_stream_record",
759     api_level    => 1,
760     stream        => 1,
761 );                      
762
763 sub ro_authority_ingest_stream_xml {
764     my $self = shift;
765     my $client = shift;
766
767     OpenILS::Application::Ingest->post_init();
768
769     my $ses = OpenSRF::AppSession->create('open-ils.cstore');
770
771     while (my ($resp) = $client->recv( count => 1, timeout => 5 )) {
772     
773         my $xml = $resp->content;
774         last unless (defined $xml);
775
776         $log->debug("Running open-ils.ingest.full.authority.xml.readonly ...");
777         my ($res) = $self->method_lookup("open-ils.ingest.full.authority.xml.readonly")->run($xml);
778
779         $client->respond( $res );
780     }
781
782     return undef;
783 }
784 __PACKAGE__->register_method(  
785     api_name    => "open-ils.ingest.full.authority.xml_stream.readonly",
786     method        => "ro_authority_ingest_stream_xml",
787     api_level    => 1,
788     stream        => 1,
789 );                      
790
791 sub rw_authority_ingest_stream_import {
792     my $self = shift;
793     my $client = shift;
794
795     OpenILS::Application::Ingest->post_init();
796
797     my $ses = OpenSRF::AppSession->create('open-ils.cstore');
798
799     while (my ($resp) = $client->recv( count => 1, timeout => 5 )) {
800     
801         my $bib = $resp->content;
802         last unless (defined $bib);
803
804         $log->debug("Running open-ils.ingest.full.authority.xml.readonly ...");
805         my ($res) = $self->method_lookup("open-ils.ingest.full.authority.xml.readonly")->run($bib->marc);
806
807         $_->record($bib->id) for (@{$res->{full_rec}});
808
809         $client->respond( $res );
810     }
811
812     return undef;
813 }
814 __PACKAGE__->register_method(  
815     api_name    => "open-ils.ingest.full.authority.bib_stream.import",
816     method        => "rw_authority_ingest_stream_import",
817     api_level    => 1,
818     stream        => 1,
819 );                      
820
821 # --------------------------------------------------------------------------------
822 # MARC index extraction
823
824 package OpenILS::Application::Ingest::XPATH;
825 use base qw/OpenILS::Application::Ingest/;
826 use Unicode::Normalize;
827
828 # give this an XML documentElement and an XPATH expression
829 sub xpath_to_string {
830     my $xml = shift;
831     my $xpath = shift;
832     my $ns_uri = shift;
833     my $ns_prefix = shift;
834     my $unique = shift;
835
836     $xml->setNamespace( $ns_uri, $ns_prefix, 1 ) if ($ns_uri && $ns_prefix);
837
838     my $string = "";
839
840     # grab the set of matching nodes
841     my @nodes = $xml->findnodes( $xpath );
842     for my $value (@nodes) {
843
844         # grab all children of the node
845         my @children = $value->childNodes();
846         for my $child (@children) {
847
848             # add the childs content to the growing buffer
849             my $content = quotemeta($child->textContent);
850             next if ($unique && $string =~ /$content/);  # uniquify the values
851             $string .= $child->textContent . " ";
852         }
853         if( ! @children ) {
854             $string .= $value->textContent . " ";
855         }
856     }
857
858     $string =~ s/(\w+)\/(\w+)/$1 $2/sgo;
859     # Split date ranges and ISSNs on the hyphen
860     $string =~ s/(\d{4})-(\d{3,4}x?)/ $1 $2 /goi;
861
862     return NFD($string);
863 }
864
865 sub class_index_string_xml {
866     my $self = shift;
867     my $client = shift;
868     my $xml = shift;
869     my @classes = @_;
870
871     OpenILS::Application::Ingest->post_init();
872     $xml = $parser->parse_string(OpenILS::Application::AppUtils->entityize($xml)) unless (ref $xml);
873
874     my %transform_cache;
875     
876     for my $class (@classes) {
877         my $class_constructor = "Fieldmapper::metabib::${class}_field_entry";
878         for my $type ( keys %{ $xpathset->{$class} } ) {
879
880             my $def = $xpathset->{$class}->{$type};
881             my $sf = $OpenILS::Application::Ingest::supported_formats{$def->{format}};
882
883             my $document = $xml;
884
885             if ($sf->{xslt}) {
886                 $document = $transform_cache{$def->{format}} || $sf->{xslt}->transform($xml);
887                 $transform_cache{$def->{format}} = $document;
888             }
889
890             my $value =  xpath_to_string(
891                     $document->documentElement    => $def->{xpath},
892                     $sf->{ns}            => $def->{format},
893                     1
894             );
895
896             next unless $value;
897
898             $value = NFD($value);
899             $value =~ s/\pM+//sgo;
900             $value =~ s/\pC+//sgo;
901             $value =~ s/\W+$//sgo;
902
903             # hack to normalize ratio-like strings
904             while ($term =~ /\b\d{1}:[, ]?\d+(?:[ ,]\d+[^:])+/o) {
905                 $term = $` . join ('', split(/[, ]/, $&)) . $';
906             }
907
908             $value =~ s/\b\.+\b//sgo;
909             $value = lc($value);
910
911             my $fm = $class_constructor->new;
912             $fm->value( $value );
913             $fm->field( $xpathset->{$class}->{$type}->{id} );
914             $client->respond($fm);
915         }
916     }
917     return undef;
918 }
919 __PACKAGE__->register_method(  
920     api_name    => "open-ils.ingest.field_entry.class.xml",
921     method        => "class_index_string_xml",
922     api_level    => 1,
923     argc        => 2,
924     stream        => 1,
925 );                      
926
927 sub class_index_string_record {
928     my $self = shift;
929     my $client = shift;
930     my $rec = shift;
931     my @classes = shift;
932
933     OpenILS::Application::Ingest->post_init();
934     my $r = OpenSRF::AppSession
935             ->create('open-ils.cstore')
936             ->request( 'open-ils.cstore.direct.authority.record_entry.retrieve' => $rec )
937             ->gather(1);
938
939     return undef unless ($r and @$r);
940
941     for my $fm ($self->method_lookup("open-ils.ingest.field_entry.class.xml")->run($r->marc, @classes)) {
942         $fm->source($rec);
943         $client->respond($fm);
944     }
945     return undef;
946 }
947 __PACKAGE__->register_method(  
948     api_name    => "open-ils.ingest.field_entry.class.record",
949     method        => "class_index_string_record",
950     api_level    => 1,
951     argc        => 2,
952     stream        => 1,
953 );                      
954
955 sub all_index_string_xml {
956     my $self = shift;
957     my $client = shift;
958     my $xml = shift;
959
960     for my $fm ($self->method_lookup("open-ils.ingest.field_entry.class.xml")->run($xml, keys(%$xpathset))) {
961         $client->respond($fm);
962     }
963     return undef;
964 }
965 __PACKAGE__->register_method(  
966     api_name    => "open-ils.ingest.extract.field_entry.all.xml",
967     method        => "all_index_string_xml",
968     api_level    => 1,
969     argc        => 1,
970     stream        => 1,
971 );                      
972
973 sub all_index_string_record {
974     my $self = shift;
975     my $client = shift;
976     my $rec = shift;
977
978     OpenILS::Application::Ingest->post_init();
979     my $r = OpenSRF::AppSession
980             ->create('open-ils.cstore')
981             ->request( 'open-ils.cstore.direct.biblio.record_entry.retrieve' => $rec )
982             ->gather(1);
983
984     return undef unless ($r and @$r);
985
986     for my $fm ($self->method_lookup("open-ils.ingest.field_entry.class.xml")->run($r->marc, keys(%$xpathset))) {
987         $fm->source($rec);
988         $client->respond($fm);
989     }
990     return undef;
991 }
992 __PACKAGE__->register_method(  
993     api_name    => "open-ils.ingest.extract.field_entry.all.record",
994     method        => "all_index_string_record",
995     api_level    => 1,
996     argc        => 1,
997     stream        => 1,
998 );                      
999
1000 # --------------------------------------------------------------------------------
1001 # Flat MARC
1002
1003 package OpenILS::Application::Ingest::FlatMARC;
1004 use base qw/OpenILS::Application::Ingest/;
1005 use Unicode::Normalize;
1006
1007
1008 sub _marcxml_to_full_rows {
1009
1010     my $marcxml = shift;
1011     my $xmltype = shift || 'metabib';
1012
1013     my $type = "Fieldmapper::${xmltype}::full_rec";
1014
1015     my @ns_list;
1016     
1017     my ($root) = $marcxml->findnodes('//*[local-name()="record"]');
1018
1019     for my $tagline ( @{$root->getChildrenByTagName("leader")} ) {
1020         next unless $tagline;
1021         _special_tag_to_full_rows($type, $tagline, \@ns_list, 'LDR');
1022     }
1023
1024     for my $tagline ( @{$root->getChildrenByTagName("controlfield")} ) {
1025         next unless $tagline;
1026         _special_tag_to_full_rows($type, $tagline, \@ns_list, $tagline->getAttribute( "tag" ));
1027     }
1028
1029     for my $tagline ( @{$root->getChildrenByTagName("datafield")} ) {
1030         next unless $tagline;
1031         _data_tag_to_full_rows($type, $tagline, \@ns_list, $tagline->getAttribute( "tag" ));
1032
1033         if ($xmltype eq 'metabib' and $tag eq '245') {
1034             _data_tag_to_full_rows($type, $tagline, \@ns_list, 'tnf');
1035         }
1036     }
1037
1038     $log->debug("Returning ".scalar(@ns_list)." Fieldmapper nodes from $xmltype xml");
1039     return @ns_list;
1040 }
1041
1042 =head2 _special_tag_to_full_rows
1043
1044 Converts a leader or control field to a set of normalized values
1045
1046 =cut
1047
1048 sub _special_tag_to_full_rows {
1049     my $type = shift;
1050     my $tagline = shift;
1051     my $ns_list = shift;
1052     my $tagname = shift;
1053
1054     my $ns = $type->new;
1055
1056     $ns->tag( $tagname );
1057     my $val = $tagline->textContent;
1058     $val = NFD($val);
1059     $val =~ s/\pM+//sgo;
1060     $val =~ s/\pC+//sgo;
1061     $val =~ s/\W+$//sgo;
1062     $ns->value( $val );
1063
1064     push @$ns_list, $ns;
1065 }
1066
1067 =head2 _data_tag_to_full_rows
1068
1069 Converts a data field to a set of normalized values
1070
1071 =cut
1072
1073 sub _data_tag_to_full_rows {
1074     my $type = shift;
1075     my $tagline = shift;
1076     my $ns_list = shift;
1077     my $tag = shift;
1078
1079     my $ind1 = $tagline->getAttribute( "ind1" );
1080     my $ind2 = $tagline->getAttribute( "ind2" );
1081
1082     for my $data ( @{$tagline->getChildrenByTagName('subfield')} ) {
1083         next unless $data;
1084
1085         my $ns = $type->new;
1086
1087         $ns->tag( $tag );
1088         $ns->ind1( $ind1 );
1089         $ns->ind2( $ind2 );
1090         $ns->subfield( $data->getAttribute( "code" ) );
1091         my $val = $data->textContent;
1092         $val = NFD($val);
1093         $val =~ s/\pM+//sgo;
1094         $val =~ s/\pC+//sgo;
1095         $val =~ s/\W+$//sgo;
1096         # Split date ranges and ISSNs on the hyphen
1097         $val =~ s/(\d{4})-(\d{3,4}x?)/ $1 $2 /goi;
1098         $val =~ s/(\w+)\/(\w+)/$1 $2/sgo;
1099         $ns->value( lc($val) );
1100
1101         push @$ns_list, $ns;
1102     }
1103 }
1104
1105 sub flat_marc_xml {
1106     my $self = shift;
1107     my $client = shift;
1108     my $xml = shift;
1109
1110     $log->debug("processing [$xml]");
1111
1112     $xml = $parser->parse_string(OpenILS::Application::AppUtils->entityize($xml)) unless (ref $xml);
1113
1114     my $type = 'metabib';
1115     $type = 'authority' if ($self->api_name =~ /authority/o);
1116
1117     OpenILS::Application::Ingest->post_init();
1118
1119     $client->respond($_) for (_marcxml_to_full_rows($xml, $type));
1120     return undef;
1121 }
1122 __PACKAGE__->register_method(  
1123     api_name    => "open-ils.ingest.flat_marc.authority.xml",
1124     method        => "flat_marc_xml",
1125     api_level    => 1,
1126     argc        => 1,
1127     stream        => 1,
1128 );                      
1129 __PACKAGE__->register_method(  
1130     api_name    => "open-ils.ingest.flat_marc.biblio.xml",
1131     method        => "flat_marc_xml",
1132     api_level    => 1,
1133     argc        => 1,
1134     stream        => 1,
1135 );                      
1136
1137 sub flat_marc_record {
1138     my $self = shift;
1139     my $client = shift;
1140     my $rec = shift;
1141
1142     my $type = 'biblio';
1143     $type = 'authority' if ($self->api_name =~ /authority/o);
1144
1145     OpenILS::Application::Ingest->post_init();
1146     my $r = OpenSRF::AppSession
1147             ->create('open-ils.cstore')
1148             ->request( "open-ils.cstore.direct.${type}.record_entry.retrieve" => $rec )
1149             ->gather(1);
1150
1151
1152     return undef unless ($r and $r->marc);
1153
1154     my @rows = $self->method_lookup("open-ils.ingest.flat_marc.$type.xml")->run($r->marc);
1155     for my $row (@rows) {
1156         $client->respond($row);
1157         $log->debug(OpenSRF::Utils::JSON->perl2JSON($row), DEBUG);
1158     }
1159     return undef;
1160 }
1161 __PACKAGE__->register_method(  
1162     api_name    => "open-ils.ingest.flat_marc.biblio.record_entry",
1163     method        => "flat_marc_record",
1164     api_level    => 1,
1165     argc        => 1,
1166     stream        => 1,
1167 );                      
1168 __PACKAGE__->register_method(  
1169     api_name    => "open-ils.ingest.flat_marc.authority.record_entry",
1170     method        => "flat_marc_record",
1171     api_level    => 1,
1172     argc        => 1,
1173     stream        => 1,
1174 );                      
1175
1176 # --------------------------------------------------------------------------------
1177 # URI extraction
1178
1179 package OpenILS::Application::Ingest::Biblio::URI;
1180 use base qw/OpenILS::Application::Ingest/;
1181 use Unicode::Normalize;
1182 use OpenSRF::EX qw/:try/;
1183
1184
1185 sub _extract_856_uris {
1186
1187     my $rec   = shift;
1188     my $max_cn = shift;
1189     my $max_uri = shift;
1190     my @objects;
1191     
1192     my $recid = $rec->id;
1193     my $marcxml = $rec->marc;
1194
1195     my $document = $parser->parse_string($marcxml);
1196     my @nodes = $document->findnodes('//*[local-name()="datafield" and @tag="856" and (@ind1="4" or @ind1="1") and (@ind2="0" or @ind2="1")]');
1197
1198     my $cstore = OpenSRF::AppSession->connect('open-ils.cstore');
1199
1200     my %cn_cache;
1201
1202     for my $node (@nodes) {
1203         # first, is there a URI?
1204         my $href = $node->findvalue('*[local-name()="subfield" and @code="u"]/text()');
1205         next unless ($href);
1206
1207         # now, find the best possible label
1208         my $label = $node->findvalue('*[local-name()="subfield" and @code="y"]/text()');
1209         $label ||= $node->findvalue('*[local-name()="subfield" and @code="3"]/text()');
1210         $label ||= $href;
1211
1212         # look for use info
1213         my $use = $node->findvalue('*[local-name()="subfield" and @code="z"]/text()');
1214         $use ||= $node->findvalue('*[local-name()="subfield" and @code="2"]/text()');
1215         $use ||= $node->findvalue('*[local-name()="subfield" and @code="n"]/text()');
1216
1217         # moving on to the URI owner
1218         my $owner = $node->findvalue('*[local-name()="subfield" and @code="9"]/text()'); # Evergreen special sauce
1219         $owner ||= $node->findvalue('*[local-name()="subfield" and @code="w"]/text()');
1220         $owner ||= $node->findvalue('*[local-name()="subfield" and @code="n"]/text()');
1221
1222         $owner =~ s/^.*?\((\w+)\).*$/$1/o; # unwrap first paren-enclosed string and then ...
1223
1224         # no owner? skip it :(
1225         next unless ($owner);
1226
1227         my $org = $cstore
1228             ->request( 'open-ils.cstore.direct.actor.org_unit.search' => { shortname => $owner} )
1229             ->gather(1);
1230
1231         next unless ($org);
1232
1233         # now we can construct the uri object
1234         my $uri = $cstore
1235             ->request( 'open-ils.cstore.direct.asset.uri.search' => { label => $label, href => $href, use_restriction => $use, active => 't' } )
1236             ->gather(1);
1237
1238         if (!$uri) {
1239             $uri = Fieldmapper::asset::uri->new;
1240             $uri->isnew( 1 );
1241             $uri->id( $$max_uri++ );
1242             $uri->label($label);
1243             $uri->href($href);
1244             $uri->active('t');
1245             $uri->use_restriction($use);
1246         }
1247
1248         # see if we need to create a call number
1249         my $cn = $cn_cache{$org->id};
1250         $cn = $cn->clone if ($cn);
1251         $cn->clear_isnew if ($cn);
1252
1253         $cn ||= $cstore
1254             ->request( 'open-ils.cstore.direct.asset.call_number.search' => { owning_lib => $org->id, record => $recid, label => '##URI##' } )
1255             ->gather(1);
1256
1257         if (!$cn) {
1258             $cn = Fieldmapper::asset::call_number->new;
1259             $cn->isnew( 1 );
1260             $cn->deleted('f');
1261             $cn->id( $$max_cn++ );
1262             $cn->owning_lib( $org->id );
1263             $cn->record( $recid );
1264             $cn->create_date( 'now' );
1265             $cn->creator( $rec->creator );
1266             $cn->editor( $rec->editor );
1267             $cn->edit_date( 'now' );
1268             $cn->label( '##URI##' );
1269         }
1270
1271         $cn_cache{$org->id} = $cn;
1272
1273         push @objects, { uri => $uri, call_number => $cn };
1274     }
1275
1276     $log->debug("Returning ".scalar(@objects)." URI nodes for record $recid");
1277     $cstore->disconnect;
1278     return @objects;
1279 }
1280
1281 sub get_uris_record {
1282     my $self = shift;
1283     my $client = shift;
1284     my $rec = shift;
1285
1286     OpenILS::Application::Ingest->post_init();
1287     my $r = OpenSRF::AppSession
1288             ->create('open-ils.cstore')
1289             ->request( "open-ils.cstore.direct.biblio.record_entry.retrieve" => $rec )
1290             ->gather(1);
1291
1292     return undef unless ($r and $r->marc);
1293
1294     $client->respond($_) for (_extract_856_uris($r));
1295     return undef;
1296 }
1297 __PACKAGE__->register_method(  
1298     api_name    => "open-ils.ingest.856_uri.record",
1299     method        => "get_uris_record",
1300     api_level    => 1,
1301     argc        => 1,
1302     stream        => 1,
1303 );                      
1304
1305 sub get_uris_object {
1306     my $self = shift;
1307     my $client = shift;
1308     my $obj = shift;
1309     my $max_cn = shift;
1310     my $max_uri = shift;
1311
1312     return undef unless ($obj and $obj->marc);
1313
1314     $client->respond($_) for (_extract_856_uris($obj, \$max_cn, \$max_uri));
1315     return undef;
1316 }
1317 __PACKAGE__->register_method(  
1318     api_name    => "open-ils.ingest.856_uri.object",
1319     method        => "get_uris_object",
1320     api_level    => 1,
1321     argc        => 1,
1322     stream        => 1,
1323 );                      
1324
1325
1326 # --------------------------------------------------------------------------------
1327 # Fingerprinting
1328
1329 package OpenILS::Application::Ingest::Biblio::Fingerprint;
1330 use base qw/OpenILS::Application::Ingest/;
1331 use Unicode::Normalize;
1332 use OpenSRF::EX qw/:try/;
1333
1334 sub biblio_fingerprint_record {
1335     my $self = shift;
1336     my $client = shift;
1337     my $rec = shift;
1338
1339     OpenILS::Application::Ingest->post_init();
1340
1341     my $r = OpenSRF::AppSession
1342             ->create('open-ils.cstore')
1343             ->request( 'open-ils.cstore.direct.biblio.record_entry.retrieve' => $rec )
1344             ->gather(1);
1345
1346     return undef unless ($r and $r->marc);
1347
1348     my ($fp) = $self->method_lookup('open-ils.ingest.fingerprint.xml')->run($r->marc);
1349     $log->debug("Returning [$fp] as fingerprint for record $rec", INFO);
1350     $fp->{quality} = int($fp->{quality});
1351     return $fp;
1352 }
1353 __PACKAGE__->register_method(  
1354     api_name    => "open-ils.ingest.fingerprint.record",
1355     method        => "biblio_fingerprint_record",
1356     api_level    => 1,
1357     argc        => 1,
1358 );                      
1359
1360 our $fp_script;
1361 sub biblio_fingerprint {
1362     my $self = shift;
1363     my $client = shift;
1364     my $xml = OpenILS::Application::AppUtils->entityize(shift);
1365
1366     $log->internal("Got MARC [$xml]");
1367
1368     if(!$fp_script) {
1369         my @pfx = ( "apps", "open-ils.ingest","app_settings" );
1370         my $conf = OpenSRF::Utils::SettingsClient->new;
1371
1372         my $libs        = $conf->config_value(@pfx, 'script_path');
1373         my $script_file = $conf->config_value(@pfx, 'scripts', 'biblio_fingerprint');
1374         my $script_libs = (ref($libs)) ? $libs : [$libs];
1375
1376         $log->debug("Loading script $script_file for biblio fingerprinting...");
1377         
1378         $fp_script = new OpenILS::Utils::ScriptRunner
1379             ( file        => $script_file,
1380               paths        => $script_libs,
1381               reset_count    => 100 );
1382     }
1383
1384     $fp_script->insert('environment' => {marc => $xml} => 1);
1385
1386     my $res = $fp_script->run || ($log->error( "Fingerprint script died!  $@" ) && return undef);
1387     $log->debug("Script for biblio fingerprinting completed successfully...");
1388
1389     return $res;
1390 }
1391 __PACKAGE__->register_method(  
1392     api_name    => "open-ils.ingest.fingerprint.xml",
1393     method        => "biblio_fingerprint",
1394     api_level    => 1,
1395     argc        => 1,
1396 );                      
1397
1398 our $rd_script;
1399 sub biblio_descriptor {
1400     my $self = shift;
1401     my $client = shift;
1402     my $xml = OpenILS::Application::AppUtils->entityize(shift);
1403
1404     $log->internal("Got MARC [$xml]");
1405
1406     if(!$rd_script) {
1407         my @pfx = ( "apps", "open-ils.ingest","app_settings" );
1408         my $conf = OpenSRF::Utils::SettingsClient->new;
1409
1410         my $libs        = $conf->config_value(@pfx, 'script_path');
1411         my $script_file = $conf->config_value(@pfx, 'scripts', 'biblio_descriptor');
1412         my $script_libs = (ref($libs)) ? $libs : [$libs];
1413
1414         $log->debug("Loading script $script_file for biblio descriptor extraction...");
1415         
1416         $rd_script = new OpenILS::Utils::ScriptRunner
1417             ( file        => $script_file,
1418               paths        => $script_libs,
1419               reset_count    => 100 );
1420     }
1421
1422     $log->debug("Setting up environment for descriptor extraction script...");
1423     $rd_script->insert('environment.marc' => $xml => 1);
1424     $log->debug("Environment building complete...");
1425
1426     my $res = $rd_script->run || ($log->error( "Descriptor script died!  $@" ) && return undef);
1427     $log->debug("Script for biblio descriptor extraction completed successfully");
1428
1429     my $d1 = $res->date1;
1430     if ($d1 && $d1 ne '    ') {
1431         $d1 =~ tr/ux/00/;
1432         $res->date1( $d1 );
1433     }
1434
1435     my $d2 = $res->date2;
1436     if ($d2 && $d2 ne '    ') {
1437         $d2 =~ tr/ux/99/;
1438         $res->date2( $d2 );
1439     }
1440
1441     return $res;
1442 }
1443 __PACKAGE__->register_method(  
1444     api_name    => "open-ils.ingest.descriptor.xml",
1445     method        => "biblio_descriptor",
1446     api_level    => 1,
1447     argc        => 1,
1448 );                      
1449
1450
1451 1;
1452
1453 # vim:et:ts=4:sw=4: