]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm
added check for inactive card
[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
721         my $e = OpenILS::Event->new( 'ASSET_CALL_NUMBER_NOT_FOUND', id => $id );
722         return( undef, $e ) unless $id;
723
724         $logger->debug("Fetching callnumber $id");
725
726         my $cn = $self->simplereq(
727                 'open-ils.cstore',
728                 'open-ils.cstore.direct.asset.call_number.retrieve', $id );
729         $evt = $e  unless $cn;
730
731         return ( $cn, $evt );
732 }
733
734 my %ORG_CACHE; # - these rarely change, so cache them..
735 sub fetch_org_unit {
736         my( $self, $id ) = @_;
737         return $id if( ref($id) eq 'Fieldmapper::actor::org_unit' );
738         return $ORG_CACHE{$id} if $ORG_CACHE{$id};
739         $logger->debug("Fetching org unit $id");
740         my $evt = undef;
741
742         my $org = $self->simplereq(
743                 'open-ils.cstore', 
744                 'open-ils.cstore.direct.actor.org_unit.retrieve', $id );
745         $evt = OpenILS::Event->new( 'ACTOR_ORG_UNIT_NOT_FOUND', id => $id ) unless $org;
746         $ORG_CACHE{$id}  = $org;
747
748         return ($org, $evt);
749 }
750
751 sub fetch_stat_cat {
752         my( $self, $type, $id ) = @_;
753         my( $cat, $evt );
754         $logger->debug("Fetching $type stat cat: $id");
755         $cat = $self->simplereq(
756                 'open-ils.cstore', 
757                 "open-ils.cstore.direct.$type.stat_cat.retrieve", $id );
758
759         my $e = 'ASSET_STAT_CAT_NOT_FOUND';
760         $e = 'ACTOR_STAT_CAT_NOT_FOUND' if $type eq 'actor';
761
762         $evt = OpenILS::Event->new( $e, id => $id ) unless $cat;
763         return ( $cat, $evt );
764 }
765
766 sub fetch_stat_cat_entry {
767         my( $self, $type, $id ) = @_;
768         my( $entry, $evt );
769         $logger->debug("Fetching $type stat cat entry: $id");
770         $entry = $self->simplereq(
771                 'open-ils.cstore', 
772                 "open-ils.cstore.direct.$type.stat_cat_entry.retrieve", $id );
773
774         my $e = 'ASSET_STAT_CAT_ENTRY_NOT_FOUND';
775         $e = 'ACTOR_STAT_CAT_ENTRY_NOT_FOUND' if $type eq 'actor';
776
777         $evt = OpenILS::Event->new( $e, id => $id ) unless $entry;
778         return ( $entry, $evt );
779 }
780
781
782 sub find_org {
783         my( $self, $org_tree, $orgid )  = @_;
784         return $org_tree if ( $org_tree->id eq $orgid );
785         return undef unless ref($org_tree->children);
786         for my $c (@{$org_tree->children}) {
787                 my $o = $self->find_org($c, $orgid);
788                 return $o if $o;
789         }
790         return undef;
791 }
792
793 sub fetch_non_cat_type_by_name_and_org {
794         my( $self, $name, $orgId ) = @_;
795         $logger->debug("Fetching non cat type $name at org $orgId");
796         my $types = $self->simplereq(
797                 'open-ils.cstore',
798                 'open-ils.cstore.direct.config.non_cataloged_type.search.atomic',
799                 { name => $name, owning_lib => $orgId } );
800         return ($types->[0], undef) if($types and @$types);
801         return (undef, OpenILS::Event->new('CONFIG_NON_CATALOGED_TYPE_NOT_FOUND') );
802 }
803
804 sub fetch_non_cat_type {
805         my( $self, $id ) = @_;
806         $logger->debug("Fetching non cat type $id");
807         my( $type, $evt );
808         $type = $self->simplereq(
809                 'open-ils.cstore', 
810                 'open-ils.cstore.direct.config.non_cataloged_type.retrieve', $id );
811         $evt = OpenILS::Event->new('CONFIG_NON_CATALOGED_TYPE_NOT_FOUND') unless $type;
812         return ($type, $evt);
813 }
814
815 sub DB_UPDATE_FAILED { 
816         my( $self, $payload ) = @_;
817         return OpenILS::Event->new('DATABASE_UPDATE_FAILED', 
818                 payload => ($payload) ? $payload : undef ); 
819 }
820
821 sub fetch_circ_duration_by_name {
822         my( $self, $name ) = @_;
823         my( $dur, $evt );
824         $dur = $self->simplereq(
825                 'open-ils.cstore', 
826                 'open-ils.cstore.direct.config.rules.circ_duration.search.atomic', { name => $name } );
827         $dur = $dur->[0];
828         $evt = OpenILS::Event->new('CONFIG_RULES_CIRC_DURATION_NOT_FOUND') unless $dur;
829         return ($dur, $evt);
830 }
831
832 sub fetch_recurring_fine_by_name {
833         my( $self, $name ) = @_;
834         my( $obj, $evt );
835         $obj = $self->simplereq(
836                 'open-ils.cstore', 
837                 'open-ils.cstore.direct.config.rules.recuring_fine.search.atomic', { name => $name } );
838         $obj = $obj->[0];
839         $evt = OpenILS::Event->new('CONFIG_RULES_RECURING_FINE_NOT_FOUND') unless $obj;
840         return ($obj, $evt);
841 }
842
843 sub fetch_max_fine_by_name {
844         my( $self, $name ) = @_;
845         my( $obj, $evt );
846         $obj = $self->simplereq(
847                 'open-ils.cstore', 
848                 'open-ils.cstore.direct.config.rules.max_fine.search.atomic', { name => $name } );
849         $obj = $obj->[0];
850         $evt = OpenILS::Event->new('CONFIG_RULES_MAX_FINE_NOT_FOUND') unless $obj;
851         return ($obj, $evt);
852 }
853
854 sub storagereq {
855         my( $self, $method, @params ) = @_;
856         return $self->simplereq(
857                 'open-ils.storage', $method, @params );
858 }
859
860 sub cstorereq {
861         my( $self, $method, @params ) = @_;
862         return $self->simplereq(
863                 'open-ils.cstore', $method, @params );
864 }
865
866 sub event_equals {
867         my( $self, $e, $name ) =  @_;
868         if( $e and ref($e) eq 'HASH' and 
869                 defined($e->{textcode}) and $e->{textcode} eq $name ) {
870                 return 1 ;
871         }
872         return 0;
873 }
874
875 sub logmark {
876         my( undef, $f, $l ) = caller(0);
877         my( undef, undef, undef, $s ) = caller(1);
878         $s =~ s/.*:://g;
879         $f =~ s/.*\///g;
880         $logger->debug("LOGMARK: $f:$l:$s");
881 }
882
883 # takes a copy id 
884 sub fetch_open_circulation {
885         my( $self, $cid ) = @_;
886         my $evt;
887         $self->logmark;
888         my $circ = $self->cstorereq(
889                 'open-ils.cstore.direct.action.open_circulation.search',
890                 { target_copy => $cid, stop_fines_time => undef } );
891         $evt = OpenILS::Event->new('ACTION_CIRCULATION_NOT_FOUND') unless $circ;        
892         return ($circ, $evt);
893 }
894
895 sub fetch_all_open_circulation {
896         my( $self, $cid ) = @_;
897         my $evt;
898         $self->logmark;
899         my $circ = $self->cstorereq(
900                 'open-ils.cstore.direct.action.open_circulation.search',
901                 { target_copy => $cid, xact_finish => undef } );
902         $evt = OpenILS::Event->new('ACTION_CIRCULATION_NOT_FOUND') unless $circ;        
903         return ($circ, $evt);
904 }
905
906 my $copy_statuses;
907 sub copy_status_from_name {
908         my( $self, $name ) = @_;
909         $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
910         for my $status (@$copy_statuses) { 
911                 return $status if( $status->name =~ /$name/i );
912         }
913         return undef;
914 }
915
916 sub copy_status_to_name {
917         my( $self, $sid ) = @_;
918         $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
919         for my $status (@$copy_statuses) { 
920                 return $status->name if( $status->id == $sid );
921         }
922         return undef;
923 }
924
925 sub fetch_open_transit_by_copy {
926         my( $self, $copyid ) = @_;
927         my($transit, $evt);
928         $transit = $self->cstorereq(
929                 'open-ils.cstore.direct.action.transit_copy.search',
930                 { target_copy => $copyid, dest_recv_time => undef });
931         $evt = OpenILS::Event->new('ACTION_TRANSIT_COPY_NOT_FOUND') unless $transit;
932         return ($transit, $evt);
933 }
934
935 sub unflesh_copy {
936         my( $self, $copy ) = @_;
937         return undef unless $copy;
938         $copy->status( $copy->status->id ) if ref($copy->status);
939         $copy->location( $copy->location->id ) if ref($copy->location);
940         $copy->circ_lib( $copy->circ_lib->id ) if ref($copy->circ_lib);
941         return $copy;
942 }
943
944 # un-fleshes a copy and updates it in the DB
945 # returns a DB_UPDATE_FAILED event on error
946 # returns undef on success
947 sub update_copy {
948         my( $self, %params ) = @_;
949
950         my $copy                = $params{copy} || die "update_copy(): copy required";
951         my $editor      = $params{editor} || die "update_copy(): copy editor required";
952         my $session = $params{session};
953
954         $logger->debug("Updating copy in the database: " . $copy->id);
955
956         $self->unflesh_copy($copy);
957         $copy->editor( $editor );
958         $copy->edit_date( 'now' );
959
960         my $s;
961         my $meth = 'open-ils.storage.direct.asset.copy.update';
962
963         $s = $session->request( $meth, $copy )->gather(1) if $session;
964         $s = $self->storagereq( $meth, $copy ) unless $session;
965
966         $logger->debug("Update of copy ".$copy->id." returned: $s");
967
968         return $self->DB_UPDATE_FAILED($copy) unless $s;
969         return undef;
970 }
971
972 sub fetch_billable_xact {
973         my( $self, $id ) = @_;
974         my($xact, $evt);
975         $logger->debug("Fetching billable transaction %id");
976         $xact = $self->cstorereq(
977                 'open-ils.cstore.direct.money.billable_transaction.retrieve', $id );
978         $evt = OpenILS::Event->new('MONEY_BILLABLE_TRANSACTION_NOT_FOUND') unless $xact;
979         return ($xact, $evt);
980 }
981
982
983 sub fetch_fleshed_copy {
984         my( $self, $id ) = @_;
985         my( $copy, $evt );
986         $logger->info("Fetching fleshed copy $id");
987         $copy = $self->cstorereq(
988                 "open-ils.cstore.direct.asset.copy.retrieve", $id,
989                 { flesh => 1,
990                   flesh_fields => { acp => [ qw/ circ_lib location status stat_cat_entries / ] }
991                 }
992         );
993         $evt = OpenILS::Event->new('ASSET_COPY_NOT_FOUND', id => $id) unless $copy;
994         return ($copy, $evt);
995 }
996
997
998 # returns the org that owns the callnumber that the copy
999 # is attached to
1000 sub fetch_copy_owner {
1001         my( $self, $copyid ) = @_;
1002         my( $copy, $cn, $evt );
1003         $logger->debug("Fetching copy owner $copyid");
1004         ($copy, $evt) = $self->fetch_copy($copyid);
1005         return (undef,$evt) if $evt;
1006         ($cn, $evt) = $self->fetch_callnumber($copy->call_number);
1007         return (undef,$evt) if $evt;
1008         return ($cn->owning_lib);
1009 }
1010
1011 sub fetch_copy_note {
1012         my( $self, $id ) = @_;
1013         my( $note, $evt );
1014         $logger->debug("Fetching copy note $id");
1015         $note = $self->cstorereq(
1016                 'open-ils.cstore.direct.asset.copy_note.retrieve', $id );
1017         $evt = OpenILS::Event->new('ASSET_COPY_NOTE_NOT_FOUND', id => $id ) unless $note;
1018         return ($note, $evt);
1019 }
1020
1021 sub fetch_call_numbers_by_title {
1022         my( $self, $titleid ) = @_;
1023         $logger->info("Fetching call numbers by title $titleid");
1024         return $self->cstorereq(
1025                 'open-ils.cstore.direct.asset.call_number.search.atomic', 
1026                 { record => $titleid, deleted => 'f' });
1027                 #'open-ils.storage.direct.asset.call_number.search.record.atomic', $titleid);
1028 }
1029
1030 sub fetch_copies_by_call_number {
1031         my( $self, $cnid ) = @_;
1032         $logger->info("Fetching copies by call number $cnid");
1033         return $self->cstorereq(
1034                 'open-ils.cstore.direct.asset.copy.search.atomic', { call_number => $cnid, deleted => 'f' } );
1035                 #'open-ils.storage.direct.asset.copy.search.call_number.atomic', $cnid );
1036 }
1037
1038 sub fetch_user_by_barcode {
1039         my( $self, $bc ) = @_;
1040         my $cardid = $self->cstorereq(
1041                 'open-ils.cstore.direct.actor.card.id_list', { barcode => $bc } );
1042         return (undef, OpenILS::Event->new('ACTOR_CARD_NOT_FOUND', barcode => $bc)) unless $cardid;
1043         my $user = $self->cstorereq(
1044                 'open-ils.cstore.direct.actor.user.search', { card => $cardid } );
1045         return (undef, OpenILS::Event->new('ACTOR_USER_NOT_FOUND', card => $cardid)) unless $user;
1046         return ($user);
1047         
1048 }
1049
1050
1051 # ---------------------------------------------------------------------
1052 # Updates and returns the patron penalties
1053 # ---------------------------------------------------------------------
1054 sub update_patron_penalties {
1055         my( $self, %args ) = @_;
1056         return $self->simplereq(
1057                 'open-ils.penalty',
1058                 'open-ils.penalty.patron_penalty.calculate', 
1059                 { update => 1, %args }
1060         );
1061 }
1062
1063 sub fetch_bill {
1064         my( $self, $billid ) = @_;
1065         $logger->debug("Fetching billing $billid");
1066         my $bill = $self->cstorereq(
1067                 'open-ils.cstore.direct.money.billing.retrieve', $billid );
1068         my $evt = OpenILS::Event->new('MONEY_BILLING_NOT_FOUND') unless $bill;
1069         return($bill, $evt);
1070 }
1071
1072
1073
1074 my $ORG_TREE;
1075 sub fetch_org_tree {
1076         my $self = shift;
1077         return $ORG_TREE if $ORG_TREE;
1078         return $ORG_TREE = OpenILS::Utils::CStoreEditor->new->search_actor_org_unit( 
1079                 [
1080                         {"parent_ou" => undef },
1081                         {
1082                                 flesh                           => 2,
1083                                 flesh_fields    => { aou =>  ['children'] },
1084                                 order_by       => { aou => 'name'}
1085                         }
1086                 ]
1087         )->[0];
1088 }
1089
1090 sub walk_org_tree {
1091         my( $self, $node, $callback ) = @_;
1092         return unless $node;
1093         $callback->($node);
1094         if( $node->children ) {
1095                 $self->walk_org_tree($_, $callback) for @{$node->children};
1096         }
1097 }
1098
1099 sub is_true {
1100         my( $self, $item ) = @_;
1101         return 1 if $item and $item !~ /^f$/i;
1102         return 0;
1103 }
1104
1105
1106 1;
1107