]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm
updating cstore request
[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_item {
595         my( $self, $id, $type ) = @_;
596         my( $bucket, $evt );
597
598         $logger->debug("Fetching container item $id with type $type");
599
600         my $meth = $buckets{$type} . "_item";
601
602         $bucket = $self->simplereq(
603                 'open-ils.cstore',
604                 "open-ils.cstore.direct.container.$meth.retrieve", $id );
605
606
607         my $e = 'CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND';
608         $e = 'CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND' if $type eq 'biblio';
609         $e = 'CONTAINER_USER_BUCKET_ITEM_NOT_FOUND' if $type eq 'user';
610         $e = 'CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND' if $type eq 'copy';
611
612
613         $evt = OpenILS::Event->new(
614                 $e, itemid => $id, container_type => $type ) unless $bucket;
615
616         return ($bucket, $evt);
617 }
618
619
620 sub fetch_patron_standings {
621         my $self = shift;
622         $logger->debug("Fetching patron standings");    
623         return $self->simplereq(
624                 'open-ils.cstore', 
625                 'open-ils.cstore.direct.config.standing.search.atomic', { id => { '!=' => undef } });
626 }
627
628
629 sub fetch_permission_group_tree {
630         my $self = shift;
631         $logger->debug("Fetching patron profiles");     
632         return $self->simplereq(
633                 'open-ils.actor', 
634                 'open-ils.actor.groups.tree.retrieve' );
635 }
636
637
638 sub fetch_patron_circ_summary {
639         my( $self, $userid ) = @_;
640         $logger->debug("Fetching patron summary for $userid");
641         my $summary = $self->simplereq(
642                 'open-ils.storage', 
643                 "open-ils.storage.action.circulation.patron_summary", $userid );
644
645         if( $summary ) {
646                 $summary->[0] ||= 0;
647                 $summary->[1] ||= 0.0;
648                 return $summary;
649         }
650         return undef;
651 }
652
653
654 sub fetch_copy_statuses {
655         my( $self ) = @_;
656         $logger->debug("Fetching copy statuses");
657         return $self->simplereq(
658                 'open-ils.cstore', 
659                 'open-ils.cstore.direct.config.copy_status.search.atomic', { id => { '!=' => undef } });
660 }
661
662 sub fetch_copy_location {
663         my( $self, $id ) = @_;
664         my $evt;
665         my $cl = $self->cstorereq(
666                 'open-ils.cstore.direct.asset.copy_location.retrieve', $id );
667         $evt = OpenILS::Event->new('ASSET_COPY_LOCATION_NOT_FOUND') unless $cl;
668         return ($cl, $evt);
669 }
670
671 sub fetch_copy_locations {
672         my $self = shift; 
673         return $self->simplereq(
674                 'open-ils.cstore', 
675                 'open-ils.cstore.direct.asset.copy_location.search.atomic', { id => { '!=' => undef } });
676 }
677
678 sub fetch_copy_location_by_name {
679         my( $self, $name, $org ) = @_;
680         my $evt;
681         my $cl = $self->cstorereq(
682                 'open-ils.cstore.direct.asset.copy_location.search',
683                         { name => $name, owning_lib => $org } );
684         $evt = OpenILS::Event->new('ASSET_COPY_LOCATION_NOT_FOUND') unless $cl;
685         return ($cl, $evt);
686 }
687
688 sub fetch_callnumber {
689         my( $self, $id ) = @_;
690         my $evt = undef;
691         $logger->debug("Fetching callnumber $id");
692
693         my $cn = $self->simplereq(
694                 'open-ils.cstore',
695                 'open-ils.cstore.direct.asset.call_number.retrieve', $id );
696         $evt = OpenILS::Event->new( 'ASSET_CALL_NUMBER_NOT_FOUND', id => $id ) unless $cn;
697
698         return ( $cn, $evt );
699 }
700
701 my %ORG_CACHE; # - these rarely change, so cache them..
702 sub fetch_org_unit {
703         my( $self, $id ) = @_;
704         return $id if( ref($id) eq 'Fieldmapper::actor::org_unit' );
705         return $ORG_CACHE{$id} if $ORG_CACHE{$id};
706         $logger->debug("Fetching org unit $id");
707         my $evt = undef;
708
709         my $org = $self->simplereq(
710                 'open-ils.cstore', 
711                 'open-ils.cstore.direct.actor.org_unit.retrieve', $id );
712         $evt = OpenILS::Event->new( 'ACTOR_ORG_UNIT_NOT_FOUND', id => $id ) unless $org;
713         $ORG_CACHE{$id}  = $org;
714
715         return ($org, $evt);
716 }
717
718 sub fetch_stat_cat {
719         my( $self, $type, $id ) = @_;
720         my( $cat, $evt );
721         $logger->debug("Fetching $type stat cat: $id");
722         $cat = $self->simplereq(
723                 'open-ils.cstore', 
724                 "open-ils.cstore.direct.$type.stat_cat.retrieve", $id );
725
726         my $e = 'ASSET_STAT_CAT_NOT_FOUND';
727         $e = 'ACTOR_STAT_CAT_NOT_FOUND' if $type eq 'actor';
728
729         $evt = OpenILS::Event->new( $e, id => $id ) unless $cat;
730         return ( $cat, $evt );
731 }
732
733 sub fetch_stat_cat_entry {
734         my( $self, $type, $id ) = @_;
735         my( $entry, $evt );
736         $logger->debug("Fetching $type stat cat entry: $id");
737         $entry = $self->simplereq(
738                 'open-ils.cstore', 
739                 "open-ils.cstore.direct.$type.stat_cat_entry.retrieve", $id );
740
741         my $e = 'ASSET_STAT_CAT_ENTRY_NOT_FOUND';
742         $e = 'ACTOR_STAT_CAT_ENTRY_NOT_FOUND' if $type eq 'actor';
743
744         $evt = OpenILS::Event->new( $e, id => $id ) unless $entry;
745         return ( $entry, $evt );
746 }
747
748
749 sub find_org {
750         my( $self, $org_tree, $orgid )  = @_;
751         return $org_tree if ( $org_tree->id eq $orgid );
752         return undef unless ref($org_tree->children);
753         for my $c (@{$org_tree->children}) {
754                 my $o = $self->find_org($c, $orgid);
755                 return $o if $o;
756         }
757         return undef;
758 }
759
760 sub fetch_non_cat_type_by_name_and_org {
761         my( $self, $name, $orgId ) = @_;
762         $logger->debug("Fetching non cat type $name at org $orgId");
763         my $types = $self->simplereq(
764                 'open-ils.cstore',
765                 'open-ils.cstore.direct.config.non_cataloged_type.search.atomic',
766                 { name => $name, owning_lib => $orgId } );
767         return ($types->[0], undef) if($types and @$types);
768         return (undef, OpenILS::Event->new('CONFIG_NON_CATALOGED_TYPE_NOT_FOUND') );
769 }
770
771 sub fetch_non_cat_type {
772         my( $self, $id ) = @_;
773         $logger->debug("Fetching non cat type $id");
774         my( $type, $evt );
775         $type = $self->simplereq(
776                 'open-ils.cstore', 
777                 'open-ils.cstore.direct.config.non_cataloged_type.retrieve', $id );
778         $evt = OpenILS::Event->new('CONFIG_NON_CATALOGED_TYPE_NOT_FOUND') unless $type;
779         return ($type, $evt);
780 }
781
782 sub DB_UPDATE_FAILED { 
783         my( $self, $payload ) = @_;
784         return OpenILS::Event->new('DATABASE_UPDATE_FAILED', 
785                 payload => ($payload) ? $payload : undef ); 
786 }
787
788 sub fetch_circ_duration_by_name {
789         my( $self, $name ) = @_;
790         my( $dur, $evt );
791         $dur = $self->simplereq(
792                 'open-ils.cstore', 
793                 'open-ils.cstore.direct.config.rules.circ_duration.search.atomic', { name => $name } );
794         $dur = $dur->[0];
795         $evt = OpenILS::Event->new('CONFIG_RULES_CIRC_DURATION_NOT_FOUND') unless $dur;
796         return ($dur, $evt);
797 }
798
799 sub fetch_recurring_fine_by_name {
800         my( $self, $name ) = @_;
801         my( $obj, $evt );
802         $obj = $self->simplereq(
803                 'open-ils.cstore', 
804                 'open-ils.cstore.direct.config.rules.recuring_fine.search.atomic', { name => $name } );
805         $obj = $obj->[0];
806         $evt = OpenILS::Event->new('CONFIG_RULES_RECURING_FINE_NOT_FOUND') unless $obj;
807         return ($obj, $evt);
808 }
809
810 sub fetch_max_fine_by_name {
811         my( $self, $name ) = @_;
812         my( $obj, $evt );
813         $obj = $self->simplereq(
814                 'open-ils.cstore', 
815                 'open-ils.cstore.direct.config.rules.max_fine.search.atomic', { name => $name } );
816         $obj = $obj->[0];
817         $evt = OpenILS::Event->new('CONFIG_RULES_MAX_FINE_NOT_FOUND') unless $obj;
818         return ($obj, $evt);
819 }
820
821 sub storagereq {
822         my( $self, $method, @params ) = @_;
823         return $self->simplereq(
824                 'open-ils.storage', $method, @params );
825 }
826
827 sub cstorereq {
828         my( $self, $method, @params ) = @_;
829         return $self->simplereq(
830                 'open-ils.cstore', $method, @params );
831 }
832
833 sub event_equals {
834         my( $self, $e, $name ) =  @_;
835         if( $e and ref($e) eq 'HASH' and 
836                 defined($e->{textcode}) and $e->{textcode} eq $name ) {
837                 return 1 ;
838         }
839         return 0;
840 }
841
842 sub logmark {
843         my( undef, $f, $l ) = caller(0);
844         my( undef, undef, undef, $s ) = caller(1);
845         $s =~ s/.*:://g;
846         $f =~ s/.*\///g;
847         $logger->debug("LOGMARK: $f:$l:$s");
848 }
849
850 # takes a copy id 
851 sub fetch_open_circulation {
852         my( $self, $cid ) = @_;
853         my $evt;
854         $self->logmark;
855         my $circ = $self->cstorereq(
856                 'open-ils.cstore.direct.action.open_circulation.search',
857                 { target_copy => $cid, stop_fines_time => undef } );
858         $evt = OpenILS::Event->new('ACTION_CIRCULATION_NOT_FOUND') unless $circ;        
859         return ($circ, $evt);
860 }
861
862 sub fetch_all_open_circulation {
863         my( $self, $cid ) = @_;
864         my $evt;
865         $self->logmark;
866         my $circ = $self->cstorereq(
867                 'open-ils.cstore.direct.action.open_circulation.search',
868                 { target_copy => $cid, xact_finish => undef } );
869         $evt = OpenILS::Event->new('ACTION_CIRCULATION_NOT_FOUND') unless $circ;        
870         return ($circ, $evt);
871 }
872
873 my $copy_statuses;
874 sub copy_status_from_name {
875         my( $self, $name ) = @_;
876         $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
877         for my $status (@$copy_statuses) { 
878                 return $status if( $status->name =~ /$name/i );
879         }
880         return undef;
881 }
882
883 sub copy_status_to_name {
884         my( $self, $sid ) = @_;
885         $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
886         for my $status (@$copy_statuses) { 
887                 return $status->name if( $status->id == $sid );
888         }
889         return undef;
890 }
891
892 sub fetch_open_transit_by_copy {
893         my( $self, $copyid ) = @_;
894         my($transit, $evt);
895         $transit = $self->cstorereq(
896                 'open-ils.cstore.direct.action.transit_copy.search',
897                 { target_copy => $copyid, dest_recv_time => undef });
898         $evt = OpenILS::Event->new('ACTION_TRANSIT_COPY_NOT_FOUND') unless $transit;
899         return ($transit, $evt);
900 }
901
902 sub unflesh_copy {
903         my( $self, $copy ) = @_;
904         return undef unless $copy;
905         $copy->status( $copy->status->id ) if ref($copy->status);
906         $copy->location( $copy->location->id ) if ref($copy->location);
907         $copy->circ_lib( $copy->circ_lib->id ) if ref($copy->circ_lib);
908         return $copy;
909 }
910
911 # un-fleshes a copy and updates it in the DB
912 # returns a DB_UPDATE_FAILED event on error
913 # returns undef on success
914 sub update_copy {
915         my( $self, %params ) = @_;
916
917         my $copy                = $params{copy} || die "update_copy(): copy required";
918         my $editor      = $params{editor} || die "update_copy(): copy editor required";
919         my $session = $params{session};
920
921         $logger->debug("Updating copy in the database: " . $copy->id);
922
923         $self->unflesh_copy($copy);
924         $copy->editor( $editor );
925         $copy->edit_date( 'now' );
926
927         my $s;
928         my $meth = 'open-ils.storage.direct.asset.copy.update';
929
930         $s = $session->request( $meth, $copy )->gather(1) if $session;
931         $s = $self->storagereq( $meth, $copy ) unless $session;
932
933         $logger->debug("Update of copy ".$copy->id." returned: $s");
934
935         return $self->DB_UPDATE_FAILED($copy) unless $s;
936         return undef;
937 }
938
939 sub fetch_billable_xact {
940         my( $self, $id ) = @_;
941         my($xact, $evt);
942         $logger->debug("Fetching billable transaction %id");
943         $xact = $self->cstorereq(
944                 'open-ils.cstore.direct.money.billable_transaction.retrieve', $id );
945         $evt = OpenILS::Event->new('MONEY_BILLABLE_TRANSACTION_NOT_FOUND') unless $xact;
946         return ($xact, $evt);
947 }
948
949
950 sub fetch_fleshed_copy {
951         my( $self, $id ) = @_;
952         my( $copy, $evt );
953         $logger->info("Fetching fleshed copy $id");
954         $copy = $self->cstorereq(
955                 "open-ils.cstore.direct.asset.copy.retrieve", $id,
956                 { flesh => 1,
957                   flesh_fields => { acp => [ qw/ circ_lib location status stat_cat_entries / ] }
958                 }
959         );
960         $evt = OpenILS::Event->new('ASSET_COPY_NOT_FOUND', id => $id) unless $copy;
961         return ($copy, $evt);
962 }
963
964
965 # returns the org that owns the callnumber that the copy
966 # is attached to
967 sub fetch_copy_owner {
968         my( $self, $copyid ) = @_;
969         my( $copy, $cn, $evt );
970         $logger->debug("Fetching copy owner $copyid");
971         ($copy, $evt) = $self->fetch_copy($copyid);
972         return (undef,$evt) if $evt;
973         ($cn, $evt) = $self->fetch_callnumber($copy->call_number);
974         return (undef,$evt) if $evt;
975         return ($cn->owning_lib);
976 }
977
978 sub fetch_copy_note {
979         my( $self, $id ) = @_;
980         my( $note, $evt );
981         $logger->debug("Fetching copy note $id");
982         $note = $self->cstorereq(
983                 'open-ils.cstore.direct.asset.copy_note.retrieve', $id );
984         $evt = OpenILS::Event->new('ASSET_COPY_NOTE_NOT_FOUND', id => $id ) unless $note;
985         return ($note, $evt);
986 }
987
988 sub fetch_call_numbers_by_title {
989         my( $self, $titleid ) = @_;
990         $logger->info("Fetching call numbers by title $titleid");
991         return $self->cstorereq(
992                 'open-ils.cstore.direct.asset.call_number.search.atomic', 
993                 { record => $titleid, deleted => 'f' });
994                 #'open-ils.storage.direct.asset.call_number.search.record.atomic', $titleid);
995 }
996
997 sub fetch_copies_by_call_number {
998         my( $self, $cnid ) = @_;
999         $logger->info("Fetching copies by call number $cnid");
1000         return $self->cstorereq(
1001                 'open-ils.cstore.direct.asset.copy.search.atomic', { call_number => $cnid, deleted => 'f' } );
1002                 #'open-ils.storage.direct.asset.copy.search.call_number.atomic', $cnid );
1003 }
1004
1005 sub fetch_user_by_barcode {
1006         my( $self, $bc ) = @_;
1007         my $cardid = $self->cstorereq(
1008                 'open-ils.cstore.id_list.actor.card.search', { barcode => $bc } );
1009         return (undef, OpenILS::Event->new('ACTOR_CARD_NOT_FOUND', barcode => $bc)) unless $cardid;
1010         my $user = $self->cstorereq(
1011                 'open-ils.cstore.direct.actor.user.search', { card => $cardid } );
1012         return (undef, OpenILS::Event->new('ACTOR_USER_NOT_FOUND', card => $cardid)) unless $user;
1013         return ($user);
1014         
1015 }
1016
1017
1018 # ---------------------------------------------------------------------
1019 # Updates and returns the patron penalties
1020 # ---------------------------------------------------------------------
1021 sub update_patron_penalties {
1022         my( $self, %args ) = @_;
1023         return $self->simplereq(
1024                 'open-ils.penalty',
1025                 'open-ils.penalty.patron_penalty.calculate', 
1026                 { update => 1, %args }
1027         );
1028 }
1029
1030 sub fetch_bill {
1031         my( $self, $billid ) = @_;
1032         $logger->debug("Fetching billing $billid");
1033         my $bill = $self->cstorereq(
1034                 'open-ils.cstore.direct.money.billing.retrieve', $billid );
1035         my $evt = OpenILS::Event->new('MONEY_BILLING_NOT_FOUND') unless $bill;
1036         return($bill, $evt);
1037 }
1038
1039
1040
1041 my $ORG_TREE;
1042 sub fetch_org_tree {
1043         my $self = shift;
1044         return $ORG_TREE if $ORG_TREE;
1045         return $ORG_TREE = OpenILS::Utils::CStoreEditor->new->search_actor_org_unit( 
1046                 [
1047                         {"parent_ou" => undef },
1048                         {
1049                                 flesh                           => 2,
1050                                 flesh_fields    => { aou =>  ['children'] },
1051                                 order_by       => { aou => 'name'}
1052                         }
1053                 ]
1054         )->[0];
1055 }
1056
1057 sub walk_org_tree {
1058         my( $self, $node, $callback ) = @_;
1059         return unless $node;
1060         $callback->($node);
1061         if( $node->children ) {
1062                 $self->walk_org_tree($_, $callback) for @{$node->children};
1063         }
1064 }
1065
1066
1067
1068
1069 1;
1070