]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm
put container handling inside cstore transactions, added some logging, etc.
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / AppUtils.pm
1 package OpenILS::Application::AppUtils;
2 use strict; use warnings;
3 use base qw/OpenSRF::Application/;
4 use OpenSRF::Utils::Cache;
5 use OpenSRF::Utils::Logger qw/$logger/;
6 use OpenILS::Utils::ModsParser;
7 use OpenSRF::EX qw(:try);
8 use OpenILS::Event;
9 use Data::Dumper;
10 use OpenILS::Utils::CStoreEditor;
11
12
13 my $cache_client = "OpenSRF::Utils::Cache";
14
15 my $storage_session = undef;
16
17 # ---------------------------------------------------------------------------
18 # Pile of utilty methods used accross applications.
19 # ---------------------------------------------------------------------------
20
21
22 # ---------------------------------------------------------------------------
23 # on sucess, returns the created session, on failure throws ERROR exception
24 # ---------------------------------------------------------------------------
25 sub start_db_session {
26
27         my $self = shift;
28         my $session = OpenSRF::AppSession->connect( "open-ils.storage" );
29         my $trans_req = $session->request( "open-ils.storage.transaction.begin" );
30
31         my $trans_resp = $trans_req->recv();
32         if(ref($trans_resp) and UNIVERSAL::isa($trans_resp,"Error")) { throw $trans_resp; }
33         if( ! $trans_resp->content() ) {
34                 throw OpenSRF::ERROR 
35                         ("Unable to Begin Transaction with database" );
36         }
37         $trans_req->finish();
38
39         $logger->debug("Setting global storage session to ".
40                 "session: " . $session->session_id . " : " . $session->app );
41
42         $storage_session = $session;
43         return $session;
44 }
45
46
47 # returns undef if user has all of the perms provided
48 # returns the first failed perm on failure
49 sub check_user_perms {
50         my($self, $user_id, $org_id, @perm_types ) = @_;
51         $logger->debug("Checking perms with user : $user_id , org: $org_id, @perm_types");
52         for my $type (@perm_types) {
53                 return $type unless ($self->storagereq(
54                         "open-ils.storage.permission.user_has_perm", 
55                         $user_id, $type, $org_id ));
56         }
57         return undef;
58 }
59
60 # checks the list of user perms.  The first one that fails returns a new
61 sub check_perms {
62         my( $self, $user_id, $org_id, @perm_types ) = @_;
63         my $t = $self->check_user_perms( $user_id, $org_id, @perm_types );
64         return OpenILS::Event->new('PERM_FAILURE', ilsperm => $t, ilspermloc => $org_id ) if $t;
65         return undef;
66 }
67
68
69
70 # ---------------------------------------------------------------------------
71 # commits and destroys the session
72 # ---------------------------------------------------------------------------
73 sub commit_db_session {
74         my( $self, $session ) = @_;
75
76         my $req = $session->request( "open-ils.storage.transaction.commit" );
77         my $resp = $req->recv();
78
79         if(!$resp) {
80                 throw OpenSRF::EX::ERROR ("Unable to commit db session");
81         }
82
83         if(UNIVERSAL::isa($resp,"Error")) { 
84                 throw $resp ($resp->stringify); 
85         }
86
87         if(!$resp->content) {
88                 throw OpenSRF::EX::ERROR ("Unable to commit db session");
89         }
90
91         $session->finish();
92         $session->disconnect();
93         $session->kill_me();
94         $storage_session = undef;
95 }
96
97 sub rollback_db_session {
98         my( $self, $session ) = @_;
99
100         my $req = $session->request("open-ils.storage.transaction.rollback");
101         my $resp = $req->recv();
102         if(UNIVERSAL::isa($resp,"Error")) { throw $resp;  }
103
104         $session->finish();
105         $session->disconnect();
106         $session->kill_me();
107         $storage_session = undef;
108 }
109
110
111 # returns undef it the event is not an ILS event
112 # returns the event code otherwise
113 sub event_code {
114         my( $self, $evt ) = @_;
115         return $evt->{ilsevent} if( ref($evt) eq 'HASH' and defined($evt->{ilsevent})) ;
116         return undef;
117 }
118
119 # ---------------------------------------------------------------------------
120 # Checks to see if a user is logged in.  Returns the user record on success,
121 # throws an exception on error.
122 # ---------------------------------------------------------------------------
123 sub check_user_session {
124
125         my( $self, $user_session ) = @_;
126
127         my $content = $self->simplereq( 
128                 'open-ils.auth', 
129                 'open-ils.auth.session.retrieve', $user_session );
130
131         if(! $content or $self->event_code($content)) {
132                 throw OpenSRF::EX::ERROR 
133                         ("Session [$user_session] cannot be authenticated" );
134         }
135
136         $logger->debug("Fetch user session $user_session found user " . $content->id );
137
138         return $content;
139 }
140
141 # generic simple request returning a scalar value
142 sub simplereq {
143         my($self, $service, $method, @params) = @_;
144         return $self->simple_scalar_request($service, $method, @params);
145 }
146
147 sub get_storage_session {
148
149         return undef; # XXX testing
150
151         if(     $storage_session and 
152                         $storage_session->connected and
153                         $storage_session->transport_connected and
154                         $storage_session->app eq 'open-ils.storage' ) {
155
156                 $logger->debug("get_storage_session(): returning existing session");
157                 return $storage_session;
158         }
159         $logger->debug("get_storage_session(): returning undef");
160         $storage_session = undef;
161         return undef;
162 }
163
164
165 sub simple_scalar_request {
166         my($self, $service, $method, @params) = @_;
167
168         my $session = undef;
169
170         if( $service eq 'open-ils.storage' ) {
171                 if( $session = get_storage_session() ) {
172                         $logger->debug("simple request using existing storage session ".$session->session_id);
173                 } else { $session = undef; }
174         }
175
176         $session = OpenSRF::AppSession->create( $service ) unless $session;
177
178         my $request = $session->request( $method, @params );
179
180         my $val;
181         my $err;
182         try  {
183
184                 $val = $request->gather(1);     
185
186         } catch Error with {
187                 $err = shift;
188         };
189
190         if( $err ) {
191                 warn "received error : service=$service : method=$method : params=".Dumper(\@params) . "\n $err";
192                 throw $err ("Call to $service for method $method \n failed with exception: $err : " );
193         }
194
195         return $val;
196 }
197
198
199
200
201
202 my $tree                                                = undef;
203 my $orglist                                     = undef;
204 my $org_typelist                        = undef;
205 my $org_typelist_hash   = {};
206
207 sub get_org_tree {
208
209         my $self = shift;
210         if($tree) { return $tree; }
211
212         # see if it's in the cache
213         $tree = $cache_client->new()->get_cache('_orgtree');
214         if($tree) { return $tree; }
215
216         if(!$orglist) {
217                 warn "Retrieving Org Tree\n";
218                 $orglist = $self->simple_scalar_request( 
219                         "open-ils.cstore", 
220                         "open-ils.cstore.direct.actor.org_unit.search.atomic",
221                         { id => { '!=' => undef } }
222                 );
223         }
224
225         if( ! $org_typelist ) {
226                 warn "Retrieving org types\n";
227                 $org_typelist = $self->simple_scalar_request( 
228                         "open-ils.cstore", 
229                         "open-ils.cstore.direct.actor.org_unit_type.search.atomic",
230                         { id => { '!=' => undef } }
231                 );
232                 $self->build_org_type($org_typelist);
233         }
234
235         $tree = $self->build_org_tree($orglist,1);
236         $cache_client->new()->put_cache('_orgtree', $tree);
237         return $tree;
238
239 }
240
241 my $slimtree = undef;
242 sub get_slim_org_tree {
243
244         my $self = shift;
245         if($slimtree) { return $slimtree; }
246
247         # see if it's in the cache
248         $slimtree = $cache_client->new()->get_cache('slimorgtree');
249         if($slimtree) { return $slimtree; }
250
251         if(!$orglist) {
252                 warn "Retrieving Org Tree\n";
253                 $orglist = $self->simple_scalar_request( 
254                         "open-ils.cstore", 
255                         "open-ils.cstore.direct.actor.org_unit.search.atomic",
256                         { id => { '!=' => undef } }
257                 );
258         }
259
260         $slimtree = $self->build_org_tree($orglist);
261         $cache_client->new->put_cache('slimorgtree', $slimtree);
262         return $slimtree;
263
264 }
265
266
267 sub build_org_type { 
268         my($self, $org_typelist)  = @_;
269         for my $type (@$org_typelist) {
270                 $org_typelist_hash->{$type->id()} = $type;
271         }
272 }
273
274
275
276 sub build_org_tree {
277
278         my( $self, $orglist, $add_types ) = @_;
279
280         return $orglist unless ( 
281                         ref($orglist) and @$orglist > 1 );
282
283         my @list = sort { 
284                 $a->ou_type <=> $b->ou_type ||
285                 $a->name cmp $b->name } @$orglist;
286
287         for my $org (@list) {
288
289                 next unless ($org);
290
291                 if(!ref($org->ou_type()) and $add_types) {
292                         $org->ou_type( $org_typelist_hash->{$org->ou_type()});
293                 }
294
295                 next unless (defined($org->parent_ou));
296
297                 my ($parent) = grep { $_->id == $org->parent_ou } @list;
298                 next unless $parent;
299                 $parent->children([]) unless defined($parent->children); 
300                 push( @{$parent->children}, $org );
301         }
302
303         return $list[0];
304
305 }
306
307 sub fetch_closed_date {
308         my( $self, $cd ) = @_;
309         my $evt;
310         
311         $logger->debug("Fetching closed_date $cd from cstore");
312
313         my $cd_obj = $self->simplereq(
314                 'open-ils.cstore',
315                 'open-ils.cstore.direct.actor.org_unit.closed_date.retrieve', $cd );
316
317         if(!$cd_obj) {
318                 $logger->info("closed_date $cd not found in the db");
319                 $evt = OpenILS::Event->new('ACTOR_USER_NOT_FOUND');
320         }
321
322         return ($cd_obj, $evt);
323 }
324
325 sub fetch_user {
326         my( $self, $userid ) = @_;
327         my( $user, $evt );
328         
329         $logger->debug("Fetching user $userid from cstore");
330
331         $user = $self->simplereq(
332                 'open-ils.cstore',
333                 'open-ils.cstore.direct.actor.user.retrieve', $userid );
334
335         if(!$user) {
336                 $logger->info("User $userid not found in the db");
337                 $evt = OpenILS::Event->new('ACTOR_USER_NOT_FOUND');
338         }
339
340         return ($user, $evt);
341 }
342
343 sub checkses {
344         my( $self, $session ) = @_;
345         my $user; my $evt; my $e; 
346
347         $logger->debug("Checking user session $session");
348
349         try {
350                 $user = $self->check_user_session($session);
351         } catch Error with { $e = 1; };
352
353         $logger->debug("Done checking user session $session " . (($e) ? "error = $e" : "") );
354
355         if( $e or !$user ) { $evt = OpenILS::Event->new('NO_SESSION'); }
356         return ( $user, $evt );
357 }
358
359
360 # verifiese the session and checks the permissions agains the
361 # session user and the user's home_ou as the org id
362 sub checksesperm {
363         my( $self, $session, @perms ) = @_;
364         my $user; my $evt; my $e; 
365         $logger->debug("Checking user session $session and perms @perms");
366         ($user, $evt) = $self->checkses($session);
367         return (undef, $evt) if $evt;
368         $evt = $self->check_perms($user->id, $user->home_ou, @perms);
369         return ($user, $evt);
370 }
371
372
373 sub checkrequestor {
374         my( $self, $staffobj, $userid, @perms ) = @_;
375         my $user; my $evt;
376         $userid = $staffobj->id unless defined $userid;
377
378         $logger->debug("checkrequestor(): requestor => " . $staffobj->id . ", target => $userid");
379
380         if( $userid ne $staffobj->id ) {
381                 ($user, $evt) = $self->fetch_user($userid);
382                 return (undef, $evt) if $evt;
383                 $evt = $self->check_perms( $staffobj->id, $user->home_ou, @perms );
384
385         } else {
386                 $user = $staffobj;
387         }
388
389         return ($user, $evt);
390 }
391
392 sub checkses_requestor {
393         my( $self, $authtoken, $targetid, @perms ) = @_;
394         my( $requestor, $target, $evt );
395
396         ($requestor, $evt) = $self->checkses($authtoken);
397         return (undef, undef, $evt) if $evt;
398
399         ($target, $evt) = $self->checkrequestor( $requestor, $targetid, @perms );
400         return( $requestor, $target, $evt);
401 }
402
403 sub fetch_copy {
404         my( $self, $copyid ) = @_;
405         my( $copy, $evt );
406
407         $logger->debug("Fetching copy $copyid from cstore");
408
409         $copy = $self->simplereq(
410                 'open-ils.cstore',
411                 'open-ils.cstore.direct.asset.copy.retrieve', $copyid );
412
413         if(!$copy) { $evt = OpenILS::Event->new('ASSET_COPY_NOT_FOUND'); }
414
415         return( $copy, $evt );
416 }
417
418
419 # retrieves a circ object by id
420 sub fetch_circulation {
421         my( $self, $circid ) = @_;
422         my $circ; my $evt;
423         
424         $logger->debug("Fetching circ $circid from cstore");
425
426         $circ = $self->simplereq(
427                 'open-ils.cstore',
428                 "open-ils.cstore.direct.action.circulation.retrieve", $circid );
429
430         if(!$circ) {
431                 $evt = OpenILS::Event->new('ACTION_CIRCULATION_NOT_FOUND', circid => $circid );
432         }
433
434         return ( $circ, $evt );
435 }
436
437 sub fetch_record_by_copy {
438         my( $self, $copyid ) = @_;
439         my( $record, $evt );
440
441         $logger->debug("Fetching record by copy $copyid from cstore");
442
443         $record = $self->simplereq(
444                 'open-ils.cstore',
445                 'open-ils.cstore.direct.asset.copy.retrieve', $copyid,
446                 { flesh => 3,
447                   flesh_fields => {     bre => [ 'fixed_fields' ],
448                                         acn => [ 'record' ],
449                                         acp => [ 'call_number' ],
450                                   }
451                 }
452         );
453
454         if(!$record) {
455                 $evt = OpenILS::Event->new('BIBLIO_RECORD_ENTRY_NOT_FOUND');
456         } else {
457                 $record = $record->call_number->record;
458         }
459
460         return ($record, $evt);
461 }
462
463 # turns a record object into an mvr (mods) object
464 sub record_to_mvr {
465         my( $self, $record ) = @_;
466         my $u = OpenILS::Utils::ModsParser->new();
467         $u->start_mods_batch( $record->marc );
468         my $mods = $u->finish_mods_batch();
469         $mods->doc_id($record->id);
470         return $mods;
471 }
472
473 sub fetch_hold {
474         my( $self, $holdid ) = @_;
475         my( $hold, $evt );
476
477         $logger->debug("Fetching hold $holdid from cstore");
478
479         $hold = $self->simplereq(
480                 'open-ils.cstore',
481                 'open-ils.cstore.direct.action.hold_request.retrieve', $holdid);
482
483         $evt = OpenILS::Event->new('ACTION_HOLD_REQUEST_NOT_FOUND', holdid => $holdid) unless $hold;
484
485         return ($hold, $evt);
486 }
487
488
489 sub fetch_hold_transit_by_hold {
490         my( $self, $holdid ) = @_;
491         my( $transit, $evt );
492
493         $logger->debug("Fetching transit by hold $holdid from cstore");
494
495         $transit = $self->simplereq(
496                 'open-ils.cstore',
497                 'open-ils.cstore.direct.action.hold_transit_copy.search', { hold => $holdid } );
498
499         $evt = OpenILS::Event->new('ACTION_HOLD_TRANSIT_COPY_NOT_FOUND', holdid => $holdid) unless $transit;
500
501         return ($transit, $evt );
502 }
503
504 # fetches the captured, but not fulfilled hold attached to a given copy
505 sub fetch_open_hold_by_copy {
506         my( $self, $copyid ) = @_;
507         $logger->debug("Searching for active hold for copy $copyid");
508         my( $hold, $evt );
509
510         $hold = $self->cstorereq(
511                 'open-ils.cstore.direct.action.hold_request.search',
512                 { 
513                         current_copy            => $copyid , 
514                         capture_time            => { "!=" => undef }, 
515                         fulfillment_time        => undef 
516                 } );
517
518         $evt = OpenILS::Event->new('ACTION_HOLD_REQUEST_NOT_FOUND', copyid => $copyid) unless $hold;
519         return ($hold, $evt);
520 }
521
522 sub fetch_hold_transit {
523         my( $self, $transid ) = @_;
524         my( $htransit, $evt );
525         $logger->debug("Fetching hold transit with hold id $transid");
526         $htransit = $self->cstorereq(
527                 'open-ils.cstore.direct.action.hold_transit_copy.retrieve', $transid );
528         $evt = OpenILS::Event->new('ACTION_HOLD_TRANSIT_COPY_NOT_FOUND', id => $transid) unless $htransit;
529         return ($htransit, $evt);
530 }
531
532 sub fetch_copy_by_barcode {
533         my( $self, $barcode ) = @_;
534         my( $copy, $evt );
535
536         $logger->debug("Fetching copy by barcode $barcode from cstore");
537
538         $copy = $self->simplereq( 'open-ils.cstore',
539                 'open-ils.cstore.direct.asset.copy.search', { barcode => $barcode, deleted => 'f'} );
540                 #'open-ils.storage.direct.asset.copy.search.barcode', $barcode );
541
542         $evt = OpenILS::Event->new('ASSET_COPY_NOT_FOUND', barcode => $barcode) unless $copy;
543
544         return ($copy, $evt);
545 }
546
547 sub fetch_open_billable_transaction {
548         my( $self, $transid ) = @_;
549         my( $transaction, $evt );
550
551         $logger->debug("Fetching open billable transaction $transid from cstore");
552
553         $transaction = $self->simplereq(
554                 'open-ils.cstore',
555                 'open-ils.cstore.direct.money.open_billable_transaction_summary.retrieve',  $transid);
556
557         $evt = OpenILS::Event->new(
558                 'MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND', transid => $transid ) unless $transaction;
559
560         return ($transaction, $evt);
561 }
562
563
564
565 my %buckets;
566 $buckets{'biblio'} = 'biblio_record_entry_bucket';
567 $buckets{'callnumber'} = 'call_number_bucket';
568 $buckets{'copy'} = 'copy_bucket';
569 $buckets{'user'} = 'user_bucket';
570
571 sub fetch_container {
572         my( $self, $id, $type ) = @_;
573         my( $bucket, $evt );
574
575         $logger->debug("Fetching container $id with type $type");
576
577         my $e = 'CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND';
578         $e = 'CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND' if $type eq 'biblio';
579         $e = 'CONTAINER_USER_BUCKET_NOT_FOUND' if $type eq 'user';
580         $e = 'CONTAINER_COPY_BUCKET_NOT_FOUND' if $type eq 'copy';
581
582         my $meth = $buckets{$type};
583         $bucket = $self->simplereq(
584                 'open-ils.cstore',
585                 "open-ils.cstore.direct.container.$meth.retrieve", $id );
586
587         $evt = OpenILS::Event->new(
588                 $e, container => $id, container_type => $type ) unless $bucket;
589
590         return ($bucket, $evt);
591 }
592
593
594 sub fetch_container_e {
595         my( $self, $editor, $id, $type ) = @_;
596
597         my( $bucket, $evt );
598         $bucket = $editor->retrieve_container_copy_bucket($id) if $type eq 'copy';
599         $bucket = $editor->retrieve_container_call_number_bucket($id) if $type eq 'callnumber';
600         $bucket = $editor->retrieve_container_biblio_record_entry_bucket($id) if $type eq 'biblio';
601         $bucket = $editor->retrieve_container_user_bucket($id) if $type eq 'user';
602
603         $evt = $editor->event unless $bucket;
604         return ($bucket, $evt);
605 }
606
607 sub fetch_container_item_e {
608         my( $self, $editor, $id, $type ) = @_;
609
610         my( $bucket, $evt );
611         $bucket = $editor->retrieve_container_copy_bucket_item($id) if $type eq 'copy';
612         $bucket = $editor->retrieve_container_call_number_bucket_item($id) if $type eq 'callnumber';
613         $bucket = $editor->retrieve_container_biblio_record_entry_bucket_item($id) if $type eq 'biblio';
614         $bucket = $editor->retrieve_container_user_bucket_item($id) if $type eq 'user';
615
616         $evt = $editor->event unless $bucket;
617         return ($bucket, $evt);
618 }
619
620
621
622
623
624 sub fetch_container_item {
625         my( $self, $id, $type ) = @_;
626         my( $bucket, $evt );
627
628         $logger->debug("Fetching container item $id with type $type");
629
630         my $meth = $buckets{$type} . "_item";
631
632         $bucket = $self->simplereq(
633                 'open-ils.cstore',
634                 "open-ils.cstore.direct.container.$meth.retrieve", $id );
635
636
637         my $e = 'CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND';
638         $e = 'CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND' if $type eq 'biblio';
639         $e = 'CONTAINER_USER_BUCKET_ITEM_NOT_FOUND' if $type eq 'user';
640         $e = 'CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND' if $type eq 'copy';
641
642         $evt = OpenILS::Event->new(
643                 $e, itemid => $id, container_type => $type ) unless $bucket;
644
645         return ($bucket, $evt);
646 }
647
648
649 sub fetch_patron_standings {
650         my $self = shift;
651         $logger->debug("Fetching patron standings");    
652         return $self->simplereq(
653                 'open-ils.cstore', 
654                 'open-ils.cstore.direct.config.standing.search.atomic', { id => { '!=' => undef } });
655 }
656
657
658 sub fetch_permission_group_tree {
659         my $self = shift;
660         $logger->debug("Fetching patron profiles");     
661         return $self->simplereq(
662                 'open-ils.actor', 
663                 'open-ils.actor.groups.tree.retrieve' );
664 }
665
666
667 sub fetch_patron_circ_summary {
668         my( $self, $userid ) = @_;
669         $logger->debug("Fetching patron summary for $userid");
670         my $summary = $self->simplereq(
671                 'open-ils.storage', 
672                 "open-ils.storage.action.circulation.patron_summary", $userid );
673
674         if( $summary ) {
675                 $summary->[0] ||= 0;
676                 $summary->[1] ||= 0.0;
677                 return $summary;
678         }
679         return undef;
680 }
681
682
683 sub fetch_copy_statuses {
684         my( $self ) = @_;
685         $logger->debug("Fetching copy statuses");
686         return $self->simplereq(
687                 'open-ils.cstore', 
688                 'open-ils.cstore.direct.config.copy_status.search.atomic', { id => { '!=' => undef } });
689 }
690
691 sub fetch_copy_location {
692         my( $self, $id ) = @_;
693         my $evt;
694         my $cl = $self->cstorereq(
695                 'open-ils.cstore.direct.asset.copy_location.retrieve', $id );
696         $evt = OpenILS::Event->new('ASSET_COPY_LOCATION_NOT_FOUND') unless $cl;
697         return ($cl, $evt);
698 }
699
700 sub fetch_copy_locations {
701         my $self = shift; 
702         return $self->simplereq(
703                 'open-ils.cstore', 
704                 'open-ils.cstore.direct.asset.copy_location.search.atomic', { id => { '!=' => undef } });
705 }
706
707 sub fetch_copy_location_by_name {
708         my( $self, $name, $org ) = @_;
709         my $evt;
710         my $cl = $self->cstorereq(
711                 'open-ils.cstore.direct.asset.copy_location.search',
712                         { name => $name, owning_lib => $org } );
713         $evt = OpenILS::Event->new('ASSET_COPY_LOCATION_NOT_FOUND') unless $cl;
714         return ($cl, $evt);
715 }
716
717 sub fetch_callnumber {
718         my( $self, $id ) = @_;
719         my $evt = undef;
720         $logger->debug("Fetching callnumber $id");
721
722         my $cn = $self->simplereq(
723                 'open-ils.cstore',
724                 'open-ils.cstore.direct.asset.call_number.retrieve', $id );
725         $evt = OpenILS::Event->new( 'ASSET_CALL_NUMBER_NOT_FOUND', id => $id ) unless $cn;
726
727         return ( $cn, $evt );
728 }
729
730 my %ORG_CACHE; # - these rarely change, so cache them..
731 sub fetch_org_unit {
732         my( $self, $id ) = @_;
733         return $id if( ref($id) eq 'Fieldmapper::actor::org_unit' );
734         return $ORG_CACHE{$id} if $ORG_CACHE{$id};
735         $logger->debug("Fetching org unit $id");
736         my $evt = undef;
737
738         my $org = $self->simplereq(
739                 'open-ils.cstore', 
740                 'open-ils.cstore.direct.actor.org_unit.retrieve', $id );
741         $evt = OpenILS::Event->new( 'ACTOR_ORG_UNIT_NOT_FOUND', id => $id ) unless $org;
742         $ORG_CACHE{$id}  = $org;
743
744         return ($org, $evt);
745 }
746
747 sub fetch_stat_cat {
748         my( $self, $type, $id ) = @_;
749         my( $cat, $evt );
750         $logger->debug("Fetching $type stat cat: $id");
751         $cat = $self->simplereq(
752                 'open-ils.cstore', 
753                 "open-ils.cstore.direct.$type.stat_cat.retrieve", $id );
754
755         my $e = 'ASSET_STAT_CAT_NOT_FOUND';
756         $e = 'ACTOR_STAT_CAT_NOT_FOUND' if $type eq 'actor';
757
758         $evt = OpenILS::Event->new( $e, id => $id ) unless $cat;
759         return ( $cat, $evt );
760 }
761
762 sub fetch_stat_cat_entry {
763         my( $self, $type, $id ) = @_;
764         my( $entry, $evt );
765         $logger->debug("Fetching $type stat cat entry: $id");
766         $entry = $self->simplereq(
767                 'open-ils.cstore', 
768                 "open-ils.cstore.direct.$type.stat_cat_entry.retrieve", $id );
769
770         my $e = 'ASSET_STAT_CAT_ENTRY_NOT_FOUND';
771         $e = 'ACTOR_STAT_CAT_ENTRY_NOT_FOUND' if $type eq 'actor';
772
773         $evt = OpenILS::Event->new( $e, id => $id ) unless $entry;
774         return ( $entry, $evt );
775 }
776
777
778 sub find_org {
779         my( $self, $org_tree, $orgid )  = @_;
780         return $org_tree if ( $org_tree->id eq $orgid );
781         return undef unless ref($org_tree->children);
782         for my $c (@{$org_tree->children}) {
783                 my $o = $self->find_org($c, $orgid);
784                 return $o if $o;
785         }
786         return undef;
787 }
788
789 sub fetch_non_cat_type_by_name_and_org {
790         my( $self, $name, $orgId ) = @_;
791         $logger->debug("Fetching non cat type $name at org $orgId");
792         my $types = $self->simplereq(
793                 'open-ils.cstore',
794                 'open-ils.cstore.direct.config.non_cataloged_type.search.atomic',
795                 { name => $name, owning_lib => $orgId } );
796         return ($types->[0], undef) if($types and @$types);
797         return (undef, OpenILS::Event->new('CONFIG_NON_CATALOGED_TYPE_NOT_FOUND') );
798 }
799
800 sub fetch_non_cat_type {
801         my( $self, $id ) = @_;
802         $logger->debug("Fetching non cat type $id");
803         my( $type, $evt );
804         $type = $self->simplereq(
805                 'open-ils.cstore', 
806                 'open-ils.cstore.direct.config.non_cataloged_type.retrieve', $id );
807         $evt = OpenILS::Event->new('CONFIG_NON_CATALOGED_TYPE_NOT_FOUND') unless $type;
808         return ($type, $evt);
809 }
810
811 sub DB_UPDATE_FAILED { 
812         my( $self, $payload ) = @_;
813         return OpenILS::Event->new('DATABASE_UPDATE_FAILED', 
814                 payload => ($payload) ? $payload : undef ); 
815 }
816
817 sub fetch_circ_duration_by_name {
818         my( $self, $name ) = @_;
819         my( $dur, $evt );
820         $dur = $self->simplereq(
821                 'open-ils.cstore', 
822                 'open-ils.cstore.direct.config.rules.circ_duration.search.atomic', { name => $name } );
823         $dur = $dur->[0];
824         $evt = OpenILS::Event->new('CONFIG_RULES_CIRC_DURATION_NOT_FOUND') unless $dur;
825         return ($dur, $evt);
826 }
827
828 sub fetch_recurring_fine_by_name {
829         my( $self, $name ) = @_;
830         my( $obj, $evt );
831         $obj = $self->simplereq(
832                 'open-ils.cstore', 
833                 'open-ils.cstore.direct.config.rules.recuring_fine.search.atomic', { name => $name } );
834         $obj = $obj->[0];
835         $evt = OpenILS::Event->new('CONFIG_RULES_RECURING_FINE_NOT_FOUND') unless $obj;
836         return ($obj, $evt);
837 }
838
839 sub fetch_max_fine_by_name {
840         my( $self, $name ) = @_;
841         my( $obj, $evt );
842         $obj = $self->simplereq(
843                 'open-ils.cstore', 
844                 'open-ils.cstore.direct.config.rules.max_fine.search.atomic', { name => $name } );
845         $obj = $obj->[0];
846         $evt = OpenILS::Event->new('CONFIG_RULES_MAX_FINE_NOT_FOUND') unless $obj;
847         return ($obj, $evt);
848 }
849
850 sub storagereq {
851         my( $self, $method, @params ) = @_;
852         return $self->simplereq(
853                 'open-ils.storage', $method, @params );
854 }
855
856 sub cstorereq {
857         my( $self, $method, @params ) = @_;
858         return $self->simplereq(
859                 'open-ils.cstore', $method, @params );
860 }
861
862 sub event_equals {
863         my( $self, $e, $name ) =  @_;
864         if( $e and ref($e) eq 'HASH' and 
865                 defined($e->{textcode}) and $e->{textcode} eq $name ) {
866                 return 1 ;
867         }
868         return 0;
869 }
870
871 sub logmark {
872         my( undef, $f, $l ) = caller(0);
873         my( undef, undef, undef, $s ) = caller(1);
874         $s =~ s/.*:://g;
875         $f =~ s/.*\///g;
876         $logger->debug("LOGMARK: $f:$l:$s");
877 }
878
879 # takes a copy id 
880 sub fetch_open_circulation {
881         my( $self, $cid ) = @_;
882         my $evt;
883         $self->logmark;
884         my $circ = $self->cstorereq(
885                 'open-ils.cstore.direct.action.open_circulation.search',
886                 { target_copy => $cid, stop_fines_time => undef } );
887         $evt = OpenILS::Event->new('ACTION_CIRCULATION_NOT_FOUND') unless $circ;        
888         return ($circ, $evt);
889 }
890
891 sub fetch_all_open_circulation {
892         my( $self, $cid ) = @_;
893         my $evt;
894         $self->logmark;
895         my $circ = $self->cstorereq(
896                 'open-ils.cstore.direct.action.open_circulation.search',
897                 { target_copy => $cid, xact_finish => undef } );
898         $evt = OpenILS::Event->new('ACTION_CIRCULATION_NOT_FOUND') unless $circ;        
899         return ($circ, $evt);
900 }
901
902 my $copy_statuses;
903 sub copy_status_from_name {
904         my( $self, $name ) = @_;
905         $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
906         for my $status (@$copy_statuses) { 
907                 return $status if( $status->name =~ /$name/i );
908         }
909         return undef;
910 }
911
912 sub copy_status_to_name {
913         my( $self, $sid ) = @_;
914         $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
915         for my $status (@$copy_statuses) { 
916                 return $status->name if( $status->id == $sid );
917         }
918         return undef;
919 }
920
921 sub fetch_open_transit_by_copy {
922         my( $self, $copyid ) = @_;
923         my($transit, $evt);
924         $transit = $self->cstorereq(
925                 'open-ils.cstore.direct.action.transit_copy.search',
926                 { target_copy => $copyid, dest_recv_time => undef });
927         $evt = OpenILS::Event->new('ACTION_TRANSIT_COPY_NOT_FOUND') unless $transit;
928         return ($transit, $evt);
929 }
930
931 sub unflesh_copy {
932         my( $self, $copy ) = @_;
933         return undef unless $copy;
934         $copy->status( $copy->status->id ) if ref($copy->status);
935         $copy->location( $copy->location->id ) if ref($copy->location);
936         $copy->circ_lib( $copy->circ_lib->id ) if ref($copy->circ_lib);
937         return $copy;
938 }
939
940 # un-fleshes a copy and updates it in the DB
941 # returns a DB_UPDATE_FAILED event on error
942 # returns undef on success
943 sub update_copy {
944         my( $self, %params ) = @_;
945
946         my $copy                = $params{copy} || die "update_copy(): copy required";
947         my $editor      = $params{editor} || die "update_copy(): copy editor required";
948         my $session = $params{session};
949
950         $logger->debug("Updating copy in the database: " . $copy->id);
951
952         $self->unflesh_copy($copy);
953         $copy->editor( $editor );
954         $copy->edit_date( 'now' );
955
956         my $s;
957         my $meth = 'open-ils.storage.direct.asset.copy.update';
958
959         $s = $session->request( $meth, $copy )->gather(1) if $session;
960         $s = $self->storagereq( $meth, $copy ) unless $session;
961
962         $logger->debug("Update of copy ".$copy->id." returned: $s");
963
964         return $self->DB_UPDATE_FAILED($copy) unless $s;
965         return undef;
966 }
967
968 sub fetch_billable_xact {
969         my( $self, $id ) = @_;
970         my($xact, $evt);
971         $logger->debug("Fetching billable transaction %id");
972         $xact = $self->cstorereq(
973                 'open-ils.cstore.direct.money.billable_transaction.retrieve', $id );
974         $evt = OpenILS::Event->new('MONEY_BILLABLE_TRANSACTION_NOT_FOUND') unless $xact;
975         return ($xact, $evt);
976 }
977
978
979 sub fetch_fleshed_copy {
980         my( $self, $id ) = @_;
981         my( $copy, $evt );
982         $logger->info("Fetching fleshed copy $id");
983         $copy = $self->cstorereq(
984                 "open-ils.cstore.direct.asset.copy.retrieve", $id,
985                 { flesh => 1,
986                   flesh_fields => { acp => [ qw/ circ_lib location status stat_cat_entries / ] }
987                 }
988         );
989         $evt = OpenILS::Event->new('ASSET_COPY_NOT_FOUND', id => $id) unless $copy;
990         return ($copy, $evt);
991 }
992
993
994 # returns the org that owns the callnumber that the copy
995 # is attached to
996 sub fetch_copy_owner {
997         my( $self, $copyid ) = @_;
998         my( $copy, $cn, $evt );
999         $logger->debug("Fetching copy owner $copyid");
1000         ($copy, $evt) = $self->fetch_copy($copyid);
1001         return (undef,$evt) if $evt;
1002         ($cn, $evt) = $self->fetch_callnumber($copy->call_number);
1003         return (undef,$evt) if $evt;
1004         return ($cn->owning_lib);
1005 }
1006
1007 sub fetch_copy_note {
1008         my( $self, $id ) = @_;
1009         my( $note, $evt );
1010         $logger->debug("Fetching copy note $id");
1011         $note = $self->cstorereq(
1012                 'open-ils.cstore.direct.asset.copy_note.retrieve', $id );
1013         $evt = OpenILS::Event->new('ASSET_COPY_NOTE_NOT_FOUND', id => $id ) unless $note;
1014         return ($note, $evt);
1015 }
1016
1017 sub fetch_call_numbers_by_title {
1018         my( $self, $titleid ) = @_;
1019         $logger->info("Fetching call numbers by title $titleid");
1020         return $self->cstorereq(
1021                 'open-ils.cstore.direct.asset.call_number.search.atomic', 
1022                 { record => $titleid, deleted => 'f' });
1023                 #'open-ils.storage.direct.asset.call_number.search.record.atomic', $titleid);
1024 }
1025
1026 sub fetch_copies_by_call_number {
1027         my( $self, $cnid ) = @_;
1028         $logger->info("Fetching copies by call number $cnid");
1029         return $self->cstorereq(
1030                 'open-ils.cstore.direct.asset.copy.search.atomic', { call_number => $cnid, deleted => 'f' } );
1031                 #'open-ils.storage.direct.asset.copy.search.call_number.atomic', $cnid );
1032 }
1033
1034 sub fetch_user_by_barcode {
1035         my( $self, $bc ) = @_;
1036         my $cardid = $self->cstorereq(
1037                 'open-ils.cstore.direct.actor.card.id_list', { barcode => $bc } );
1038         return (undef, OpenILS::Event->new('ACTOR_CARD_NOT_FOUND', barcode => $bc)) unless $cardid;
1039         my $user = $self->cstorereq(
1040                 'open-ils.cstore.direct.actor.user.search', { card => $cardid } );
1041         return (undef, OpenILS::Event->new('ACTOR_USER_NOT_FOUND', card => $cardid)) unless $user;
1042         return ($user);
1043         
1044 }
1045
1046
1047 # ---------------------------------------------------------------------
1048 # Updates and returns the patron penalties
1049 # ---------------------------------------------------------------------
1050 sub update_patron_penalties {
1051         my( $self, %args ) = @_;
1052         return $self->simplereq(
1053                 'open-ils.penalty',
1054                 'open-ils.penalty.patron_penalty.calculate', 
1055                 { update => 1, %args }
1056         );
1057 }
1058
1059 sub fetch_bill {
1060         my( $self, $billid ) = @_;
1061         $logger->debug("Fetching billing $billid");
1062         my $bill = $self->cstorereq(
1063                 'open-ils.cstore.direct.money.billing.retrieve', $billid );
1064         my $evt = OpenILS::Event->new('MONEY_BILLING_NOT_FOUND') unless $bill;
1065         return($bill, $evt);
1066 }
1067
1068
1069
1070 my $ORG_TREE;
1071 sub fetch_org_tree {
1072         my $self = shift;
1073         return $ORG_TREE if $ORG_TREE;
1074         return $ORG_TREE = OpenILS::Utils::CStoreEditor->new->search_actor_org_unit( 
1075                 [
1076                         {"parent_ou" => undef },
1077                         {
1078                                 flesh                           => 2,
1079                                 flesh_fields    => { aou =>  ['children'] },
1080                                 order_by       => { aou => 'name'}
1081                         }
1082                 ]
1083         )->[0];
1084 }
1085
1086 sub walk_org_tree {
1087         my( $self, $node, $callback ) = @_;
1088         return unless $node;
1089         $callback->($node);
1090         if( $node->children ) {
1091                 $self->walk_org_tree($_, $callback) for @{$node->children};
1092         }
1093 }
1094
1095
1096
1097
1098 1;
1099