]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Cat.pm
adding authoritative method varients
[working/Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Cat.pm
1 use strict; use warnings;
2 package OpenILS::Application::Cat;
3 use OpenILS::Application::AppUtils;
4 use OpenILS::Application;
5 use OpenILS::Application::Cat::Utils;
6 use OpenILS::Application::Cat::Merge;
7 use base qw/OpenILS::Application/;
8 use Time::HiRes qw(time);
9 use OpenSRF::EX qw(:try);
10 use OpenSRF::Utils::JSON;
11 use OpenILS::Utils::Fieldmapper;
12 use OpenILS::Event;
13 use OpenILS::Const qw/:const/;
14
15 use XML::LibXML;
16 use Unicode::Normalize;
17 use Data::Dumper;
18 use OpenILS::Utils::FlatXML;
19 use OpenILS::Utils::CStoreEditor q/:funcs/;
20 use OpenILS::Perm;
21 use OpenSRF::Utils::SettingsClient;
22 use OpenSRF::Utils::Logger qw($logger);
23 use OpenSRF::AppSession;
24
25 my $apputils = "OpenILS::Application::AppUtils";
26
27 my $utils = "OpenILS::Application::Cat::Utils";
28 my $U = "OpenILS::Application::AppUtils";
29
30 my $conf;
31
32 my %marctemplates;
33
34 sub entityize { 
35         my $stuff = shift;
36         my $form = shift || "";
37
38         if ($form eq 'D') {
39                 $stuff = NFD($stuff);
40         } else {
41                 $stuff = NFC($stuff);
42         }
43
44         $stuff =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
45         return $stuff;
46 }
47
48 __PACKAGE__->register_method(
49         method  => "retrieve_marc_template",
50         api_name        => "open-ils.cat.biblio.marc_template.retrieve",
51         notes           => <<"  NOTES");
52         Returns a MARC 'record tree' based on a set of pre-defined templates.
53         Templates include : book
54         NOTES
55
56 sub retrieve_marc_template {
57         my( $self, $client, $type ) = @_;
58         return $marctemplates{$type} if defined($marctemplates{$type});
59         $marctemplates{$type} = _load_marc_template($type);
60         return $marctemplates{$type};
61 }
62
63 __PACKAGE__->register_method(
64         method => 'fetch_marc_template_types',
65         api_name => 'open-ils.cat.marc_template.types.retrieve'
66 );
67
68 my $marc_template_files;
69
70 sub fetch_marc_template_types {
71         my( $self, $conn ) = @_;
72         __load_marc_templates();
73         return [ keys %$marc_template_files ];
74 }
75
76 sub __load_marc_templates {
77         return if $marc_template_files;
78         if(!$conf) { $conf = OpenSRF::Utils::SettingsClient->new; }
79
80         $marc_template_files = $conf->config_value(                                     
81                 "apps", "open-ils.cat","app_settings", "marctemplates" );
82
83         $logger->info("Loaded marc templates: " . Dumper($marc_template_files));
84 }
85
86 sub _load_marc_template {
87         my $type = shift;
88
89         __load_marc_templates();
90
91         my $template = $$marc_template_files{$type};
92         open( F, $template ) or 
93                 throw OpenSRF::EX::ERROR ("Unable to open MARC template file: $template : $@");
94
95         my @xml = <F>;
96         close(F);
97         my $xml = join('', @xml);
98
99         return XML::LibXML->new->parse_string($xml)->documentElement->toString;
100 }
101
102 my $__bib_sources;
103 sub bib_source_from_name {
104         my $name = shift;
105         $logger->debug("searching for bib source: $name");
106
107         fetch_bib_sources();
108
109         my ($s) = grep { lc($_->source) eq lc($name) } @$__bib_sources;
110
111         return $s->id if $s;
112         return undef;
113 }
114
115
116 __PACKAGE__->register_method(
117         method => 'fetch_bib_sources',
118         api_name => 'open-ils.cat.bib_sources.retrieve.all');
119
120 sub fetch_bib_sources {
121         $__bib_sources = new_editor()->retrieve_all_config_bib_source()
122                 unless $__bib_sources;
123         return $__bib_sources;
124 }
125
126
127
128 __PACKAGE__->register_method(
129         method  => "create_record_xml",
130         api_name        => "open-ils.cat.biblio.record.xml.create.override",
131         signature       => q/@see open-ils.cat.biblio.record.xml.create/);
132
133 __PACKAGE__->register_method(
134         method          => "create_record_xml",
135         api_name                => "open-ils.cat.biblio.record.xml.create",
136         signature       => q/
137                 Inserts a new biblio with the given XML
138         /
139 );
140
141 sub create_record_xml {
142         my( $self, $client, $login, $xml, $source ) = @_;
143
144         my $override = 1 if $self->api_name =~ /override/;
145
146         my( $user_obj, $evt ) = $U->checksesperm($login, 'CREATE_MARC');
147         return $evt if $evt;
148
149         $logger->activity("user ".$user_obj->id." creating new MARC record");
150
151         my $meth = $self->method_lookup("open-ils.cat.biblio.record.xml.import");
152
153         $meth = $self->method_lookup(
154                 "open-ils.cat.biblio.record.xml.import.override") if $override;
155
156         my ($s) = $meth->run($login, $xml, $source);
157         return $s;
158 }
159
160
161
162 __PACKAGE__->register_method(
163         method  => "biblio_record_replace_marc",
164         api_name        => "open-ils.cat.biblio.record.xml.update",
165         argc            => 3, 
166         signature       => q/
167                 Updates the XML for a given biblio record.
168                 This does not change any other aspect of the record entry
169                 exception the XML, the editor, and the edit date.
170                 @return The update record object
171         /
172 );
173
174 __PACKAGE__->register_method(
175         method          => 'biblio_record_replace_marc',
176         api_name                => 'open-ils.cat.biblio.record.marc.replace',
177         signature       => q/
178                 @param auth The authtoken
179                 @param recid The record whose MARC we're replacing
180                 @param newxml The new xml to use
181         /
182 );
183
184 __PACKAGE__->register_method(
185         method          => 'biblio_record_replace_marc',
186         api_name                => 'open-ils.cat.biblio.record.marc.replace.override',
187         signature       => q/@see open-ils.cat.biblio.record.marc.replace/
188 );
189
190 sub biblio_record_replace_marc  {
191         my( $self, $conn, $auth, $recid, $newxml, $source ) = @_;
192
193         warn "Updating MARC with xml\n$newxml\n";
194
195         my $e = new_editor(authtoken=>$auth, xact=>1);
196         return $e->die_event unless $e->checkauth;
197         return $e->die_event unless $e->allowed('CREATE_MARC');
198
199         my $rec = $e->retrieve_biblio_record_entry($recid)
200                 or return $e->die_event;
201
202         my $fixtcn = 1 if $self->api_name =~ /replace/o;
203
204         # See if there is a different record in the database that has our TCN value
205         # If we're not updating the TCN, all we care about it the marcdoc
206         my $override = $self->api_name =~ /override/;
207
208    # XXX should .update even bother with the tcn_info if it's not going to replace it?
209    # there is the potential for returning a TCN_EXISTS event, even though no replacement happens
210
211         my( $tcn, $tsource, $marcdoc, $evt);
212
213     if($fixtcn or $override) {
214
215             ($tcn, $tsource, $marcdoc, $evt) = 
216                     _find_tcn_info($e, $newxml, $override, $recid);
217
218             return $evt if $evt;
219
220                 $rec->tcn_value($tcn);
221                 $rec->tcn_source($tsource);
222
223     } else {
224
225         $marcdoc = __make_marc_doc($newxml);
226     }
227
228
229
230         $rec->source(bib_source_from_name($source)) if $source;
231         $rec->editor($e->requestor->id);
232         $rec->edit_date('now');
233         $rec->marc( entityize( $marcdoc->documentElement->toString ) );
234
235         $logger->activity("user ".$e->requestor->id." replacing MARC for record $recid");
236
237         $e->update_biblio_record_entry($rec) or return $e->event;
238         $e->commit;
239
240         $conn->respond_complete($rec);
241
242         $U->simplereq(
243                 'open-ils.ingest',
244                 'open-ils.ingest.full.biblio.record', $recid );
245
246         return undef;
247 }
248
249
250
251
252 __PACKAGE__->register_method(
253         method  => "biblio_record_xml_import",
254         api_name        => "open-ils.cat.biblio.record.xml.import.override",
255         signature       => q/@see open-ils.cat.biblio.record.xml.import/);
256
257 __PACKAGE__->register_method(
258         method  => "biblio_record_xml_import",
259         api_name        => "open-ils.cat.biblio.record.xml.import",
260         notes           => <<"  NOTES");
261         Takes a marcxml record and imports the record into the database.  In this
262         case, the marcxml record is assumed to be a complete record (i.e. valid
263         MARC).  The title control number is taken from (whichever comes first)
264         tags 001, 039[ab], 020a, 022a, 010, 035a and whichever does not already exist
265         in the database.
266         user_session must have IMPORT_MARC permissions
267         NOTES
268
269
270 sub biblio_record_xml_import {
271         my( $self, $client, $authtoken, $xml, $source, $auto_tcn) = @_;
272
273         my $override = 1 if $self->api_name =~ /override/;
274     my $e = new_editor(xact=>1, authtoken=>$authtoken);
275     return $e->die_event unless $e->checkauth;
276     return $e->die_event unless $e->allowed('IMPORT_MARC');
277
278         my( $evt, $tcn, $tcn_source, $marcdoc );
279
280         if( $auto_tcn ) {
281                 # auto_tcn forces a blank TCN value so the DB will have to generate one for us
282                 $marcdoc = __make_marc_doc($xml);
283         } else {
284                 ( $tcn, $tcn_source, $marcdoc, $evt ) = _find_tcn_info($e, $xml, $override);
285                 return $evt if $evt;
286         }
287
288         $logger->info("user ".$e->requestor->id.
289                 " creating new biblio entry with tcn=$tcn and tcn_source $tcn_source");
290
291         my $record = Fieldmapper::biblio::record_entry->new;
292
293         $record->source(bib_source_from_name($source)) if $source;
294         $record->tcn_source($tcn_source);
295         $record->tcn_value($tcn);
296         $record->creator($e->requestor->id);
297         $record->editor($e->requestor->id);
298         $record->create_date('now');
299         $record->edit_date('now');
300         $record->marc( entityize( $marcdoc->documentElement->toString ) );
301
302     $record = $e->create_biblio_record_entry($record) or return $e->die_event;
303         $logger->info("marc create/import created new record ".$record->id);
304
305     $e->commit;
306
307         $logger->debug("Sending record off to be ingested and indexed");
308
309         $client->respond_complete($record);
310
311         $U->simplereq(
312                 'open-ils.ingest',
313                 'open-ils.ingest.full.biblio.record', $record->id );
314
315         return undef;
316 }
317
318 sub __make_marc_doc {
319         my $xml = shift;
320         my $marcxml = XML::LibXML->new->parse_string( $xml );
321         $marcxml->documentElement->setNamespace( 
322                 "http://www.loc.gov/MARC21/slim", "marc", 1 );
323         return $marcxml;
324 }
325
326
327 sub _find_tcn_info { 
328         my $editor              = shift;
329         my $xml                 = shift;
330         my $override    = shift;
331         my $existing_rec        = shift || 0;
332
333         # parse the XML
334         my $marcxml = __make_marc_doc($xml);
335
336         my $xpath = '//marc:controlfield[@tag="001"]';
337         my $tcn = $marcxml->documentElement->findvalue($xpath);
338         $logger->info("biblio import located 001 (tcn) value of $tcn");
339
340         $xpath = '//marc:controlfield[@tag="003"]';
341         my $tcn_source = $marcxml->documentElement->findvalue($xpath) || "System Local";
342
343         if(my $rec = _tcn_exists($editor, $tcn, $tcn_source, $existing_rec) ) {
344
345                 my $origtcn = $tcn;
346                 $tcn = find_free_tcn( $marcxml, $editor, $existing_rec );
347
348                 # if we're overriding, try to find a different TCN to use
349                 if( $override ) {
350
351          # XXX Create ALLOW_ALT_TCN permission check support 
352
353                         $logger->info("tcn value $tcn already exists, attempting to override");
354
355                         if(!$tcn) {
356                                 return ( 
357                                         undef, 
358                                         undef, 
359                                         undef,
360                                         OpenILS::Event->new(
361                                                 'OPEN_TCN_NOT_FOUND', 
362                                                         payload => $marcxml->toString())
363                                         );
364                         }
365
366                 } else {
367
368                         $logger->warn("tcn value $origtcn already exists in import/create");
369
370                         # otherwise, return event
371                         return ( 
372                                 undef, 
373                                 undef, 
374                                 undef,
375                                 OpenILS::Event->new( 
376                                         'TCN_EXISTS', payload => { 
377                                                 dup_record      => $rec, 
378                                                 tcn                     => $origtcn,
379                                                 new_tcn         => $tcn
380                                                 }
381                                         )
382                                 );
383                 }
384         }
385
386         return ($tcn, $tcn_source, $marcxml);
387 }
388
389 sub find_free_tcn {
390
391         my $marcxml = shift;
392         my $editor = shift;
393         my $existing_rec = shift;
394
395         my $add_039 = 0;
396
397         my $xpath = '//marc:datafield[@tag="039"]/subfield[@code="a"]';
398         my ($tcn) = $marcxml->documentElement->findvalue($xpath) =~ /(\w+)\s*$/o;
399         $xpath = '//marc:datafield[@tag="039"]/subfield[@code="b"]';
400         my $tcn_source = $marcxml->documentElement->findvalue($xpath) || "System Local";
401
402         if(_tcn_exists($editor, $tcn, $tcn_source, $existing_rec)) {
403                 $tcn = undef;
404         } else {
405                 $add_039++;
406         }
407
408
409         if(!$tcn) {
410                 $xpath = '//marc:datafield[@tag="020"]/subfield[@code="a"]';
411                 ($tcn) = $marcxml->documentElement->findvalue($xpath) =~ /(\w+)\s*$/o;
412                 $tcn_source = "ISBN";
413                 if(_tcn_exists($editor, $tcn, $tcn_source, $existing_rec)) {$tcn = undef;}
414         }
415
416         if(!$tcn) { 
417                 $xpath = '//marc:datafield[@tag="022"]/subfield[@code="a"]';
418                 ($tcn) = $marcxml->documentElement->findvalue($xpath) =~ /(\w+)\s*$/o;
419                 $tcn_source = "ISSN";
420                 if(_tcn_exists($editor, $tcn, $tcn_source, $existing_rec)) {$tcn = undef;}
421         }
422
423         if(!$tcn) {
424                 $xpath = '//marc:datafield[@tag="010"]';
425                 ($tcn) = $marcxml->documentElement->findvalue($xpath) =~ /(\w+)\s*$/o;
426                 $tcn_source = "LCCN";
427                 if(_tcn_exists($editor, $tcn, $tcn_source, $existing_rec)) {$tcn = undef;}
428         }
429
430         if(!$tcn) {
431                 $xpath = '//marc:datafield[@tag="035"]/subfield[@code="a"]';
432                 ($tcn) = $marcxml->documentElement->findvalue($xpath) =~ /(\w+)\s*$/o;
433                 $tcn_source = "System Legacy";
434                 if(_tcn_exists($editor, $tcn, $tcn_source, $existing_rec)) {$tcn = undef;}
435
436                 if($tcn) {
437                         $marcxml->documentElement->removeChild(
438                                 $marcxml->documentElement->findnodes( '//datafield[@tag="035"]' )
439                         );
440                 }
441         }
442
443         return undef unless $tcn;
444
445         if ($add_039) {
446                 my $df = $marcxml->createElementNS( 'http://www.loc.gov/MARC21/slim', 'datafield');
447                 $df->setAttribute( tag => '039' );
448                 $df->setAttribute( ind1 => ' ' );
449                 $df->setAttribute( ind2 => ' ' );
450                 $marcxml->documentElement->appendChild( $df );
451
452                 my $sfa = $marcxml->createElementNS( 'http://www.loc.gov/MARC21/slim', 'subfield');
453                 $sfa->setAttribute( code => 'a' );
454                 $sfa->appendChild( $marcxml->createTextNode( $tcn ) );
455                 $df->appendChild( $sfa );
456
457                 my $sfb = $marcxml->createElementNS( 'http://www.loc.gov/MARC21/slim', 'subfield');
458                 $sfb->setAttribute( code => 'b' );
459                 $sfb->appendChild( $marcxml->createTextNode( $tcn_source ) );
460                 $df->appendChild( $sfb );
461         }
462
463         return $tcn;
464 }
465
466
467
468 sub _tcn_exists {
469         my $editor = shift;
470         my $tcn = shift;
471         my $source = shift;
472         my $existing_rec = shift || 0;
473
474         if(!$tcn) {return 0;}
475
476         $logger->debug("tcn_exists search for tcn $tcn and source $source and id $existing_rec");
477
478         # XXX why does the source matter?
479 #       my $req = $session->request(      
480 #               { tcn_value => $tcn, tcn_source => $source, deleted => 'f' } );
481
482     my $recs = $editor->search_biblio_record_entry(
483         {tcn_value => $tcn, deleted => 'f', id => {'!=' => $existing_rec}}, {idlist =>1});
484
485         if(@$recs) {
486                 $logger->debug("_tcn_exists is true for tcn : $tcn ($source)");
487                 return $recs->[0];
488         }
489
490         $logger->debug("_tcn_exists is false for tcn : $tcn ($source)");
491         return 0;
492 }
493
494
495 __PACKAGE__->register_method(
496         method  => "biblio_record_record_metadata",
497         api_name        => "open-ils.cat.biblio.record.metadata.retrieve",
498     authoritative => 1,
499         argc            => 1, #(session_id, biblio_tree ) 
500         notes           => "Walks the tree and commits any changed nodes " .
501                                         "adds any new nodes, and deletes any deleted nodes",
502 );
503
504 sub biblio_record_record_metadata {
505         my( $self, $client, $authtoken, $ids ) = @_;
506
507         return [] unless $ids and @$ids;
508
509         my $editor = new_editor(authtoken => $authtoken);
510         return $editor->event unless $editor->checkauth;
511         return $editor->event unless $editor->allowed('VIEW_USER');
512
513         my @results;
514
515         for(@$ids) {
516                 return $editor->event unless 
517                         my $rec = $editor->retrieve_biblio_record_entry($_);
518                 $rec->creator($editor->retrieve_actor_user($rec->creator));
519                 $rec->editor($editor->retrieve_actor_user($rec->editor));
520                 $rec->clear_marc; # slim the record down
521                 push( @results, $rec );
522         }
523
524         return \@results;
525 }
526
527
528
529 __PACKAGE__->register_method(
530         method  => "biblio_record_marc_cn",
531         api_name        => "open-ils.cat.biblio.record.marc_cn.retrieve",
532         argc            => 1, #(bib id ) 
533 );
534
535 sub biblio_record_marc_cn {
536         my( $self, $client, $id ) = @_;
537
538         my $session = OpenSRF::AppSession->create("open-ils.cstore");
539         my $marc = $session
540                 ->request("open-ils.cstore.direct.biblio.record_entry.retrieve", $id )
541                 ->gather(1)
542                 ->marc;
543
544         my $doc = XML::LibXML->new->parse_string($marc);
545         $doc->documentElement->setNamespace( "http://www.loc.gov/MARC21/slim", "marc", 1 );
546         
547         my @res;
548         for my $tag ( qw/050 055 060 070 080 082 086 088 090 092 096 098 099/ ) {
549                 my @node = $doc->findnodes("//marc:datafield[\@tag='$tag']");
550                 for my $x (@node) {
551                         my $cn = $x->findvalue("marc:subfield[\@code='a' or \@code='b']");
552                         push @res, {$tag => $cn} if ($cn);
553                 }
554         }
555
556         return \@res
557 }
558
559 sub _get_id_by_userid {
560
561         my @users = @_;
562         my @ids;
563
564         my $session = OpenSRF::AppSession->create( "open-ils.cstore" );
565         my $request = $session->request( 
566                 "open-ils.cstore.direct.actor.user.search.atomic", { usrname => \@users } );
567
568         $request->wait_complete;
569         my $response = $request->recv();
570         if(!$request->complete) { 
571                 throw OpenSRF::EX::ERROR ("no response from cstore on user retrieve");
572         }
573
574         if(UNIVERSAL::isa( $response, "Error")){
575                 throw $response ($response);
576         }
577
578         for my $u (@{$response->content}) {
579                 next unless ref($u);
580                 push @ids, $u->id();
581         }
582
583         $request->finish;
584         $session->disconnect;
585         $session->kill_me();
586
587         return @ids;
588 }
589
590
591 # commits metadata objects to the db
592 sub _update_record_metadata {
593
594         my ($session, @docs ) = @_;
595
596         for my $doc (@docs) {
597
598                 my $user_obj = $doc->{user};
599                 my $docid = $doc->{docid};
600
601                 warn "Updating metata for doc $docid\n";
602
603                 my $request = $session->request( 
604                         "open-ils.storage.direct.biblio.record_entry.retrieve", $docid );
605                 my $record = $request->gather(1);
606
607                 warn "retrieved record\n";
608                 my ($id) = _get_id_by_userid($user_obj->usrname);
609
610                 warn "got $id from _get_id_by_userid\n";
611                 $record->editor($id);
612                 
613                 warn "Grabbed the record, updating and moving on\n";
614
615                 $request = $session->request( 
616                         "open-ils.storage.direct.biblio.record_entry.update", $record );
617                 $request->gather(1);
618         }
619
620         warn "committing metarecord update\n";
621
622         return 1;
623 }
624
625
626
627 __PACKAGE__->register_method(
628         method  => "orgs_for_title",
629     authoritative => 1,
630         api_name        => "open-ils.cat.actor.org_unit.retrieve_by_title"
631 );
632
633 sub orgs_for_title {
634         my( $self, $client, $record_id ) = @_;
635
636         my $vols = $apputils->simple_scalar_request(
637                 "open-ils.cstore",
638                 "open-ils.cstore.direct.asset.call_number.search.atomic",
639                 { record => $record_id, deleted => 'f' });
640
641         my $orgs = { map {$_->owning_lib => 1 } @$vols };
642         return [ keys %$orgs ];
643 }
644
645
646 __PACKAGE__->register_method(
647         method  => "retrieve_copies",
648     authoritative => 1,
649         api_name        => "open-ils.cat.asset.copy_tree.retrieve");
650
651 __PACKAGE__->register_method(
652         method  => "retrieve_copies",
653         api_name        => "open-ils.cat.asset.copy_tree.global.retrieve");
654
655 # user_session may be null/undef
656 sub retrieve_copies {
657
658         my( $self, $client, $user_session, $docid, @org_ids ) = @_;
659
660         if(ref($org_ids[0])) { @org_ids = @{$org_ids[0]}; }
661
662         $docid = "$docid";
663
664         warn " $$ retrieving copy tree for orgs @org_ids and doc $docid at " . time() . "\n";
665
666         # grabbing copy trees should be available for everyone..
667         if(!@org_ids and $user_session) {
668                 my $user_obj = 
669                         OpenILS::Application::AppUtils->check_user_session( $user_session ); #throws EX on error
670                         @org_ids = ($user_obj->home_ou);
671         }
672
673         if( $self->api_name =~ /global/ ) {
674                 warn "performing global copy_tree search for $docid\n";
675                 return _build_volume_list( { record => $docid, deleted => 'f' } );
676
677         } else {
678
679                 my @all_vols;
680                 for my $orgid (@org_ids) {
681                         my $vols = _build_volume_list( 
682                                         { record => $docid, owning_lib => $orgid, deleted => 'f' } );
683                         warn "Volumes built for org $orgid\n";
684                         push( @all_vols, @$vols );
685                 }
686                 
687                 warn " $$ Finished copy_tree at " . time() . "\n";
688                 return \@all_vols;
689         }
690
691         return undef;
692 }
693
694
695 sub _build_volume_list {
696         my $search_hash = shift;
697
698         $search_hash->{deleted} = 'f';
699         my $e = new_editor();
700
701         my $vols = $e->search_asset_call_number($search_hash);
702
703         my @volumes;
704
705         for my $volume (@$vols) {
706
707                 my $copies = $e->search_asset_copy(
708                         { call_number => $volume->id , deleted => 'f' });
709
710                 $copies = [ sort { $a->barcode cmp $b->barcode } @$copies  ];
711
712                 for my $c (@$copies) {
713                         if( $c->status == OILS_COPY_STATUS_CHECKED_OUT ) {
714                                 $c->circulations(
715                                         $e->search_action_circulation(
716                                                 [
717                                                         { target_copy => $c->id },
718                                                         {
719                                                                 order_by => { circ => 'xact_start desc' },
720                                                                 limit => 1
721                                                         }
722                                                 ]
723                                         )
724                                 )
725                         }
726                 }
727
728                 $volume->copies($copies);
729                 push( @volumes, $volume );
730         }
731
732         #$session->disconnect();
733         return \@volumes;
734
735 }
736
737
738 __PACKAGE__->register_method(
739         method  => "fleshed_copy_update",
740         api_name        => "open-ils.cat.asset.copy.fleshed.batch.update",);
741
742 __PACKAGE__->register_method(
743         method  => "fleshed_copy_update",
744         api_name        => "open-ils.cat.asset.copy.fleshed.batch.update.override",);
745
746
747 sub fleshed_copy_update {
748         my( $self, $conn, $auth, $copies, $delete_stats ) = @_;
749         return 1 unless ref $copies;
750         my( $reqr, $evt ) = $U->checkses($auth);
751         return $evt if $evt;
752         my $editor = new_editor(requestor => $reqr, xact => 1);
753         my $override = $self->api_name =~ /override/;
754         $evt = update_fleshed_copies($editor, $override, undef, $copies, $delete_stats);
755         if( $evt ) { 
756                 $logger->info("fleshed copy update failed with event: ".OpenSRF::Utils::JSON->perl2JSON($evt));
757                 $editor->rollback; 
758                 return $evt; 
759         }
760         $editor->commit;
761         $logger->info("fleshed copy update successfully updated ".scalar(@$copies)." copies");
762         return 1;
763 }
764
765
766 __PACKAGE__->register_method(
767         method => 'merge',
768         api_name        => 'open-ils.cat.biblio.records.merge',
769         signature       => q/
770                 Merges a group of records
771                 @param auth The login session key
772                 @param master The id of the record all other r
773                         ecords should be merged into
774                 @param records Array of records to be merged into the master record
775                 @return 1 on success, Event on error.
776         /
777 );
778
779 sub merge {
780         my( $self, $conn, $auth, $master, $records ) = @_;
781         my( $reqr, $evt ) = $U->checkses($auth);
782         return $evt if $evt;
783         my $editor = new_editor( requestor => $reqr, xact => 1 );
784         my $v = OpenILS::Application::Cat::Merge::merge_records($editor, $master, $records);
785         return $v if $v;
786         $editor->finish;
787         return 1;
788 }
789
790
791
792
793 # ---------------------------------------------------------------------------
794 # ---------------------------------------------------------------------------
795
796 # returns true if the given title (id) has no un-deleted
797 # copies attached
798 sub title_is_empty {
799         my( $editor, $rid ) = @_;
800
801         return 0 if $rid == OILS_PRECAT_RECORD;
802
803         my $cnlist = $editor->search_asset_call_number(
804                 { record => $rid, deleted => 'f' }, { idlist => 1 } );
805         return 1 unless @$cnlist;
806
807         for my $cn (@$cnlist) {
808                 my $copylist = $editor->search_asset_copy(
809                         [
810                                 { call_number => $cn, deleted => 'f' }, 
811                                 { limit => 1 },
812                         ], { idlist => 1 });
813                 return 0 if @$copylist; # false if we find any copies
814         }
815
816         return 1;
817 }
818
819
820 __PACKAGE__->register_method(
821         method  => "fleshed_volume_update",
822         api_name        => "open-ils.cat.asset.volume.fleshed.batch.update",);
823
824 __PACKAGE__->register_method(
825         method  => "fleshed_volume_update",
826         api_name        => "open-ils.cat.asset.volume.fleshed.batch.update.override",);
827
828 sub fleshed_volume_update {
829         my( $self, $conn, $auth, $volumes, $delete_stats ) = @_;
830         my( $reqr, $evt ) = $U->checkses($auth);
831         return $evt if $evt;
832
833         my $override = ($self->api_name =~ /override/);
834         my $editor = new_editor( requestor => $reqr, xact => 1 );
835
836         for my $vol (@$volumes) {
837                 $logger->info("vol-update: investigating volume ".$vol->id);
838
839                 $vol->editor($reqr->id);
840                 $vol->edit_date('now');
841
842                 my $copies = $vol->copies;
843                 $vol->clear_copies;
844
845                 $vol->editor($editor->requestor->id);
846                 $vol->edit_date('now');
847
848                 if( $vol->isdeleted ) {
849
850                         $logger->info("vol-update: deleting volume");
851                         my $cs = $editor->search_asset_copy(
852                                 { call_number => $vol->id, deleted => 'f' } );
853                         return OpenILS::Event->new(
854                                 'VOLUME_NOT_EMPTY', payload => $vol->id ) if @$cs;
855
856                         $vol->deleted('t');
857                         return $editor->event unless
858                                 $editor->update_asset_call_number($vol);
859
860                         
861                 } elsif( $vol->isnew ) {
862                         $logger->info("vol-update: creating volume");
863                         $evt = create_volume( $override, $editor, $vol );
864                         return $evt if $evt;
865
866                 } elsif( $vol->ischanged ) {
867                         $logger->info("vol-update: update volume");
868                         $evt = update_volume($vol, $editor);
869                         return $evt if $evt;
870                 }
871
872                 # now update any attached copies
873                 if( @$copies and !$vol->isdeleted ) {
874                         $_->call_number($vol->id) for @$copies;
875                         $evt = update_fleshed_copies( $editor, $override, $vol, $copies, $delete_stats );
876                         return $evt if $evt;
877                 }
878         }
879
880         $editor->finish;
881         return scalar(@$volumes);
882 }
883
884
885 sub update_volume {
886         my $vol = shift;
887         my $editor = shift;
888         my $evt;
889
890         return $evt if ( $evt = org_cannot_have_vols($editor, $vol->owning_lib) );
891
892         my $vols = $editor->search_asset_call_number( { 
893                         owning_lib      => $vol->owning_lib,
894                         record          => $vol->record,
895                         label                   => $vol->label,
896                         deleted         => 'f'
897                 }
898         );
899
900         # There exists a different volume in the DB with the same properties
901         return OpenILS::Event->new('VOLUME_LABEL_EXISTS', payload => $vol->id)
902                 if grep { $_->id ne $vol->id } @$vols;
903
904         return $editor->event unless $editor->update_asset_call_number($vol);
905         return undef;
906 }
907
908
909
910 sub copy_perm_org {
911         my( $vol, $copy ) = @_;
912         my $org = $vol->owning_lib;
913         if( $vol->id == OILS_PRECAT_CALL_NUMBER ) {
914                 $org = ref($copy->circ_lib) ? $copy->circ_lib->id : $copy->circ_lib;
915         }
916         $logger->debug("using copy perm org $org");
917         return $org;
918 }
919
920
921 # this does the actual work
922 sub update_fleshed_copies {
923         my( $editor, $override, $vol, $copies, $delete_stats ) = @_;
924
925         my $evt;
926         my $fetchvol = ($vol) ? 0 : 1;
927
928         my %cache;
929         $cache{$vol->id} = $vol if $vol;
930
931         for my $copy (@$copies) {
932
933                 my $copyid = $copy->id;
934                 $logger->info("vol-update: inspecting copy $copyid");
935
936                 if( !($vol = $cache{$copy->call_number}) ) {
937                         $vol = $cache{$copy->call_number} = 
938                                 $editor->retrieve_asset_call_number($copy->call_number);
939                         return $editor->event unless $vol;
940                 }
941
942                 return $editor->event unless 
943                         $editor->allowed('UPDATE_COPY', copy_perm_org($vol, $copy));
944
945                 $copy->editor($editor->requestor->id);
946                 $copy->edit_date('now');
947
948                 $copy->status( $copy->status->id ) if ref($copy->status);
949                 $copy->location( $copy->location->id ) if ref($copy->location);
950                 $copy->circ_lib( $copy->circ_lib->id ) if ref($copy->circ_lib);
951                 
952                 my $sc_entries = $copy->stat_cat_entries;
953                 $copy->clear_stat_cat_entries;
954
955                 if( $copy->isdeleted ) {
956                         $evt = delete_copy($editor, $override, $vol, $copy);
957                         return $evt if $evt;
958
959                 } elsif( $copy->isnew ) {
960                         $evt = create_copy( $editor, $vol, $copy );
961                         return $evt if $evt;
962
963                 } elsif( $copy->ischanged ) {
964
965                         $evt = update_copy( $editor, $override, $vol, $copy );
966                         return $evt if $evt;
967                 }
968
969                 $copy->stat_cat_entries( $sc_entries );
970                 $evt = update_copy_stat_entries($editor, $copy, $delete_stats);
971                 return $evt if $evt;
972         }
973
974         $logger->debug("vol-update: done updating copy batch");
975
976         return undef;
977 }
978
979 sub fix_copy_price {
980         my $copy = shift;
981         my $p = $copy->price || 0;
982         $p =~ s/\$//og;
983         $copy->price($p);
984
985         my $d = $copy->deposit_amount || 0;
986         $d =~ s/\$//og;
987         $copy->deposit_amount($d);
988 }
989
990
991 sub update_copy {
992         my( $editor, $override, $vol, $copy ) = @_;
993
994         my $evt;
995         my $org = (ref $copy->circ_lib) ? $copy->circ_lib->id : $copy->circ_lib;
996         return $evt if ( $evt = org_cannot_have_vols($editor, $org) );
997
998         $logger->info("vol-update: updating copy ".$copy->id);
999         my $orig_copy = $editor->retrieve_asset_copy($copy->id);
1000         my $orig_vol  = $editor->retrieve_asset_call_number($copy->call_number);
1001
1002         $copy->editor($editor->requestor->id);
1003         $copy->edit_date('now');
1004
1005         $copy->age_protect( $copy->age_protect->id )
1006                 if ref $copy->age_protect;
1007
1008         fix_copy_price($copy);
1009
1010         return $editor->event unless $editor->update_asset_copy($copy);
1011         return remove_empty_objects($editor, $override, $orig_vol);
1012 }
1013
1014
1015 sub remove_empty_objects {
1016         my( $editor, $override, $vol ) = @_; 
1017         if( title_is_empty($editor, $vol->record) ) {
1018
1019                 # disable the TITLE_LAST_COPY event for now
1020                 # if( $override ) {
1021                 if( 1 ) {
1022
1023                         # delete this volume if it's not already marked as deleted
1024                         unless( $U->is_true($vol->deleted) || $vol->isdeleted ) {
1025                                 $vol->deleted('t');
1026                                 $vol->editor($editor->requestor->id);
1027                                 $vol->edit_date('now');
1028                                 $editor->update_asset_call_number($vol) or return $editor->event;
1029                         }
1030
1031          my $evt = delete_rec($editor, $vol->record);
1032          return $evt if $evt;
1033
1034                 } else {
1035                         return OpenILS::Event->new('TITLE_LAST_COPY', payload => $vol->record );
1036                 }
1037         }
1038
1039         return undef;
1040 }
1041
1042
1043 __PACKAGE__->register_method (
1044         method => 'delete_bib_record',
1045         api_name => 'open-ils.cat.biblio.record_entry.delete');
1046
1047 sub delete_bib_record {
1048     my($self, $conn, $auth, $rec_id) = @_;
1049     my $e = new_editor(xact=>1, authtoken=>$auth);
1050     return $e->die_event unless $e->checkauth;
1051     return $e->die_event unless $e->allowed('DELETE_RECORD');
1052     my $vols = $e->search_asset_call_number({record=>$rec_id, deleted=>'f'});
1053     return OpenILS::Event->new('RECORD_NOT_EMPTY', payload=>$rec_id) if @$vols;
1054     my $evt = delete_rec($e, $rec_id);
1055     if($evt) { $e->rollback; return $evt; }   
1056     $e->commit;
1057     return 1;
1058 }
1059
1060
1061 # marks a record as deleted
1062 sub delete_rec {
1063    my( $editor, $rec_id ) = @_;
1064
1065    my $rec = $editor->retrieve_biblio_record_entry($rec_id)
1066       or return $editor->event;
1067
1068    return undef if $U->is_true($rec->deleted);
1069    
1070    $rec->deleted('t');
1071    $rec->active('f');
1072    $rec->editor( $editor->requestor->id );
1073    $rec->edit_date('now');
1074    $editor->update_biblio_record_entry($rec) or return $editor->event;
1075
1076    return undef;
1077 }
1078
1079
1080 sub delete_copy {
1081         my( $editor, $override, $vol, $copy ) = @_;
1082
1083    return $editor->event unless 
1084       $editor->allowed('DELETE_COPY',copy_perm_org($vol, $copy));
1085
1086         my $stat = $U->copy_status($copy->status)->id;
1087
1088         unless($override) {
1089                 return OpenILS::Event->new('COPY_DELETE_WARNING', payload => $copy->id )
1090                         if $stat == OILS_COPY_STATUS_CHECKED_OUT or
1091                                 $stat == OILS_COPY_STATUS_IN_TRANSIT or
1092                                 $stat == OILS_COPY_STATUS_ON_HOLDS_SHELF or
1093                                 $stat == OILS_COPY_STATUS_ILL;
1094         }
1095
1096         $logger->info("vol-update: deleting copy ".$copy->id);
1097         $copy->deleted('t');
1098
1099         $copy->editor($editor->requestor->id);
1100         $copy->edit_date('now');
1101         $editor->update_asset_copy($copy) or return $editor->event;
1102
1103         # Delete any open transits for this copy
1104         my $transits = $editor->search_action_transit_copy(
1105                 { target_copy=>$copy->id, dest_recv_time => undef } );
1106
1107         for my $t (@$transits) {
1108                 $editor->delete_action_transit_copy($t)
1109                         or return $editor->event;
1110         }
1111
1112         return remove_empty_objects($editor, $override, $vol);
1113 }
1114
1115
1116 sub create_copy {
1117         my( $editor, $vol, $copy ) = @_;
1118
1119         my $existing = $editor->search_asset_copy(
1120                 { barcode => $copy->barcode, deleted => 'f' } );
1121         
1122         return OpenILS::Event->new('ITEM_BARCODE_EXISTS') if @$existing;
1123
1124    # see if the volume this copy references is marked as deleted
1125    my $evol = $editor->retrieve_asset_call_number($copy->call_number)
1126       or return $editor->event;
1127    return OpenILS::Event->new('VOLUME_DELETED', vol => $evol->id) 
1128       if $U->is_true($evol->deleted);
1129
1130         my $evt;
1131         my $org = (ref $copy->circ_lib) ? $copy->circ_lib->id : $copy->circ_lib;
1132         return $evt if ( $evt = org_cannot_have_vols($editor, $org) );
1133
1134         $copy->clear_id;
1135         $copy->creator($editor->requestor->id);
1136         $copy->create_date('now');
1137         fix_copy_price($copy);
1138
1139         $editor->create_asset_copy($copy) or return $editor->event;
1140         return undef;
1141 }
1142
1143 # if 'delete_stats' is true, the copy->stat_cat_entries data is 
1144 # treated as the authoritative list for the copy. existing entries
1145 # that are not in said list will be deleted from the DB
1146 sub update_copy_stat_entries {
1147         my( $editor, $copy, $delete_stats ) = @_;
1148
1149         return undef if $copy->isdeleted;
1150         return undef unless $copy->ischanged or $copy->isnew;
1151
1152         my $evt;
1153         my $entries = $copy->stat_cat_entries;
1154
1155         if( $delete_stats ) {
1156                 $entries = ($entries and @$entries) ? $entries : [];
1157         } else {
1158                 return undef unless ($entries and @$entries);
1159         }
1160
1161         my $maps = $editor->search_asset_stat_cat_entry_copy_map({owning_copy=>$copy->id});
1162
1163         if(!$copy->isnew) {
1164                 # if there is no stat cat entry on the copy who's id matches the
1165                 # current map's id, remove the map from the database
1166                 for my $map (@$maps) {
1167                         if(! grep { $_->id == $map->stat_cat_entry } @$entries ) {
1168
1169                                 $logger->info("copy update found stale ".
1170                                         "stat cat entry map ".$map->id. " on copy ".$copy->id);
1171
1172                                 $editor->delete_asset_stat_cat_entry_copy_map($map)
1173                                         or return $editor->event;
1174                         }
1175                 }
1176         }
1177
1178         # go through the stat cat update/create process
1179         for my $entry (@$entries) { 
1180                 next unless $entry;
1181
1182                 # if this link already exists in the DB, don't attempt to re-create it
1183                 next if( grep{$_->stat_cat_entry == $entry->id} @$maps );
1184         
1185                 my $new_map = Fieldmapper::asset::stat_cat_entry_copy_map->new();
1186
1187                 my $sc = ref($entry->stat_cat) ? $entry->stat_cat->id : $entry->stat_cat;
1188                 
1189                 $new_map->stat_cat( $sc );
1190                 $new_map->stat_cat_entry( $entry->id );
1191                 $new_map->owning_copy( $copy->id );
1192
1193                 $editor->create_asset_stat_cat_entry_copy_map($new_map)
1194                         or return $editor->event;
1195
1196                 $logger->info("copy update created new stat cat entry map ".$editor->data);
1197         }
1198
1199         return undef;
1200 }
1201
1202
1203 sub create_volume {
1204         my( $override, $editor, $vol ) = @_;
1205         my $evt;
1206
1207         return $evt if ( $evt = org_cannot_have_vols($editor, $vol->owning_lib) );
1208
1209    # see if the record this volume references is marked as deleted
1210    my $rec = $editor->retrieve_biblio_record_entry($vol->record)
1211       or return $editor->event;
1212    return OpenILS::Event->new('BIB_RECORD_DELETED', rec => $rec->id) 
1213       if $U->is_true($rec->deleted);
1214
1215         # first lets see if there are any collisions
1216         my $vols = $editor->search_asset_call_number( { 
1217                         owning_lib      => $vol->owning_lib,
1218                         record          => $vol->record,
1219                         label                   => $vol->label,
1220                         deleted         => 'f'
1221                 }
1222         );
1223
1224         my $label = undef;
1225         if(@$vols) {
1226       # we've found an exising volume
1227                 if($override) { 
1228                         $label = $vol->label;
1229                 } else {
1230                         return OpenILS::Event->new(
1231                                 'VOLUME_LABEL_EXISTS', payload => $vol->id);
1232                 }
1233         }
1234
1235         # create a temp label so we can create the new volume, 
1236    # then de-dup it with the existing volume
1237         $vol->label( "__SYSTEM_TMP_$$".time) if $label;
1238
1239         $vol->creator($editor->requestor->id);
1240         $vol->create_date('now');
1241         $vol->editor($editor->requestor->id);
1242         $vol->edit_date('now');
1243         $vol->clear_id;
1244
1245         $editor->create_asset_call_number($vol) or return $editor->event;
1246
1247         if($label) {
1248                 # now restore the label and merge into the existing record
1249                 $vol->label($label);
1250                 (undef, $evt) = 
1251                         OpenILS::Application::Cat::Merge::merge_volumes($editor, [$vol], $$vols[0]);
1252                 return $evt if $evt;
1253         }
1254
1255         return undef;
1256 }
1257
1258
1259 __PACKAGE__->register_method (
1260         method => 'batch_volume_transfer',
1261         api_name => 'open-ils.cat.asset.volume.batch.transfer',
1262 );
1263
1264 __PACKAGE__->register_method (
1265         method => 'batch_volume_transfer',
1266         api_name => 'open-ils.cat.asset.volume.batch.transfer.override',
1267 );
1268
1269
1270 sub batch_volume_transfer {
1271         my( $self, $conn, $auth, $args ) = @_;
1272
1273         my $evt;
1274         my $rec         = $$args{docid};
1275         my $o_lib       = $$args{lib};
1276         my $vol_ids = $$args{volumes};
1277
1278         my $override = 1 if $self->api_name =~ /override/;
1279
1280         $logger->info("merge: transferring volumes to lib=$o_lib and record=$rec");
1281
1282         my $e = new_editor(authtoken => $auth, xact =>1);
1283         return $e->event unless $e->checkauth;
1284         return $e->event unless $e->allowed('UPDATE_VOLUME', $o_lib);
1285
1286         my $dorg = $e->retrieve_actor_org_unit($o_lib)
1287                 or return $e->event;
1288
1289         my $ou_type = $e->retrieve_actor_org_unit_type($dorg->ou_type)
1290                 or return $e->event;
1291
1292         return $evt if ( $evt = org_cannot_have_vols($e, $o_lib) );
1293
1294         my $vols = $e->batch_retrieve_asset_call_number($vol_ids);
1295         my @seen;
1296
1297    my @rec_ids;
1298
1299         for my $vol (@$vols) {
1300
1301                 # if we've already looked at this volume, go to the next
1302                 next if !$vol or grep { $vol->id == $_ } @seen;
1303
1304                 # grab all of the volumes in the list that have 
1305                 # the same label so they can be merged
1306                 my @all = grep { $_->label eq $vol->label } @$vols;
1307
1308                 # take note of the fact that we've looked at this set of volumes
1309                 push( @seen, $_->id ) for @all;
1310       push( @rec_ids, $_->record ) for @all;
1311
1312                 # for each volume, see if there are any copies that have a 
1313                 # remote circ_lib (circ_lib != vol->owning_lib and != $o_lib ).  
1314                 # if so, warn them
1315                 unless( $override ) {
1316                         for my $v (@all) {
1317
1318                                 $logger->debug("merge: searching for copies with remote circ_lib for volume ".$v->id);
1319                                 my $args = { 
1320                                         call_number     => $v->id, 
1321                                         circ_lib                => { "not in" => [ $o_lib, $v->owning_lib ] },
1322                                         deleted         => 'f'
1323                                 };
1324
1325                                 my $copies = $e->search_asset_copy($args, {idlist=>1});
1326
1327                                 # if the copy's circ_lib matches the destination lib,
1328                                 # that's ok too
1329                                 return OpenILS::Event->new('COPY_REMOTE_CIRC_LIB') if @$copies;
1330                         }
1331                 }
1332
1333                 # see if there is a volume at the destination lib that 
1334                 # already has the requested label
1335                 my $existing_vol = $e->search_asset_call_number(
1336                         {
1337                                 label                   => $vol->label, 
1338                                 record          =>$rec, 
1339                                 owning_lib      =>$o_lib,
1340                                 deleted         => 'f'
1341                         }
1342                 )->[0];
1343
1344                 if( $existing_vol ) {
1345
1346                         if( grep { $_->id == $existing_vol->id } @all ) {
1347                                 # this volume is already accounted for in our list of volumes to merge
1348                                 $existing_vol = undef;
1349
1350                         } else {
1351                                 # this volume exists on the destination record/owning_lib and must
1352                                 # be used as the destination for merging
1353                                 $logger->debug("merge: volume already exists at destination record: ".
1354                                         $existing_vol->id.' : '.$existing_vol->label) if $existing_vol;
1355                         }
1356                 } 
1357
1358                 if( @all > 1 || $existing_vol ) {
1359                         $logger->info("merge: found collisions in volume transfer");
1360                         my @args = ($e, \@all);
1361                         @args = ($e, \@all, $existing_vol) if $existing_vol;
1362                         ($vol, $evt) = OpenILS::Application::Cat::Merge::merge_volumes(@args);
1363                         return $evt if $evt;
1364                 } 
1365                 
1366                 if( !$existing_vol ) {
1367
1368                         $vol->owning_lib($o_lib);
1369                         $vol->record($rec);
1370                         $vol->editor($e->requestor->id);
1371                         $vol->edit_date('now');
1372         
1373                         $logger->info("merge: updating volume ".$vol->id);
1374                         $e->update_asset_call_number($vol) or return $e->event;
1375
1376                 } else {
1377                         $logger->info("merge: bypassing volume update because existing volume used as target");
1378                 }
1379
1380                 # regardless of what volume was used as the destination, 
1381                 # update any copies that have moved over to the new lib
1382                 my $copies = $e->search_asset_copy({call_number=>$vol->id, deleted => 'f'});
1383
1384                 # update circ lib on the copies - make this a method flag?
1385                 for my $copy (@$copies) {
1386                         next if $copy->circ_lib == $o_lib;
1387                         $logger->info("merge: transfer moving circ lib on copy ".$copy->id);
1388                         $copy->circ_lib($o_lib);
1389                         $copy->editor($e->requestor->id);
1390                         $copy->edit_date('now');
1391                         $e->update_asset_copy($copy) or return $e->event;
1392                 }
1393
1394                 # Now see if any empty records need to be deleted after all of this
1395
1396       for(@rec_ids) {
1397          $logger->debug("merge: seeing if we should delete record $_...");
1398          $evt = delete_rec($e, $_) if title_is_empty($e, $_);
1399                         return $evt if $evt;
1400       }
1401
1402                 #for(@all) {
1403                 #       $evt = remove_empty_objects($e, $override, $_);
1404                 #}
1405         }
1406
1407         $logger->info("merge: transfer succeeded");
1408         $e->commit;
1409         return 1;
1410 }
1411
1412
1413
1414 sub org_cannot_have_vols {
1415         my $e = shift;
1416         my $org_id = shift;
1417
1418         my $org = $e->retrieve_actor_org_unit($org_id)
1419                 or return $e->event;
1420
1421         my $ou_type = $e->retrieve_actor_org_unit_type($org->ou_type)
1422                 or return $e->event;
1423
1424         return OpenILS::Event->new('ORG_CANNOT_HAVE_VOLS')
1425                 unless $U->is_true($ou_type->can_have_vols);
1426
1427         return 0;
1428 }
1429
1430
1431
1432
1433 __PACKAGE__->register_method(
1434         api_name => 'open-ils.cat.call_number.find_or_create',
1435         method => 'find_or_create_volume',
1436 );
1437
1438 sub find_or_create_volume {
1439         my( $self, $conn, $auth, $label, $record_id, $org_id ) = @_;
1440         my $e = new_editor(authtoken=>$auth, xact=>1);
1441         return $e->die_event unless $e->checkauth;
1442
1443     my $vol;
1444
1445     if($record_id == OILS_PRECAT_RECORD) {
1446
1447         $vol = $e->retrieve_asset_call_number(OILS_PRECAT_CALL_NUMBER)
1448             or return $e->die_event;
1449
1450     } else {
1451         
1452             $vol = $e->search_asset_call_number(
1453                     {label => $label, record => $record_id, owning_lib => $org_id, deleted => 'f'}, 
1454                     {idlist=>1}
1455             )->[0];
1456     }
1457
1458         # If the volume exists, return the ID
1459         if( $vol ) { $e->rollback; return $vol; }
1460
1461         # -----------------------------------------------------------------
1462         # Otherwise, create a new volume with the given attributes
1463         # -----------------------------------------------------------------
1464
1465         return $e->die_event unless $e->allowed('UPDATE_VOLUME', $org_id);
1466
1467         $vol = Fieldmapper::asset::call_number->new;
1468         $vol->owning_lib($org_id);
1469         $vol->label($label);
1470         $vol->record($record_id);
1471
1472    my $evt = create_volume( 0, $e, $vol );
1473    return $evt if $evt;
1474
1475         $e->commit;
1476         return $vol->id;
1477 }
1478
1479
1480
1481 1;