]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/AppUtils.pm
more circ tweaks to get the behavior right
[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::EX qw(:try);
6 use OpenILS::Perm;
7 use OpenSRF::Utils::Logger;
8 use OpenILS::Utils::ModsParser;
9 use OpenILS::Event;
10 my $logger = "OpenSRF::Utils::Logger";
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 # OpenILS::Perm object of that type.  Returns undef if all perms are allowed
62 sub check_perms {
63         my( $self, $user_id, $org_id, @perm_types ) = @_;
64         my $t = $self->check_user_perms( $user_id, $org_id, @perm_types );
65         return OpenILS::Event->new('PERM_FAILURE', ilsperm => $t, ilspermloc => $org_id ) if $t;
66         return undef;
67 }
68
69
70
71 # ---------------------------------------------------------------------------
72 # commits and destroys the session
73 # ---------------------------------------------------------------------------
74 sub commit_db_session {
75         my( $self, $session ) = @_;
76
77         my $req = $session->request( "open-ils.storage.transaction.commit" );
78         my $resp = $req->recv();
79
80         if(!$resp) {
81                 throw OpenSRF::EX::ERROR ("Unable to commit db session");
82         }
83
84         if(UNIVERSAL::isa($resp,"Error")) { 
85                 throw $resp ($resp->stringify); 
86         }
87
88         if(!$resp->content) {
89                 throw OpenSRF::EX::ERROR ("Unable to commit db session");
90         }
91
92         $session->finish();
93         $session->disconnect();
94         $session->kill_me();
95         $storage_session = undef;
96 }
97
98 sub rollback_db_session {
99         my( $self, $session ) = @_;
100
101         my $req = $session->request("open-ils.storage.transaction.rollback");
102         my $resp = $req->recv();
103         if(UNIVERSAL::isa($resp,"Error")) { throw $resp;  }
104
105         $session->finish();
106         $session->disconnect();
107         $session->kill_me();
108         $storage_session = undef;
109 }
110
111
112 # returns undef it the event is not an ILS event
113 # returns the event code otherwise
114 sub event_code {
115         my( $self, $evt ) = @_;
116         return $evt->{ilsevent} if( ref($evt) eq 'HASH' and defined($evt->{ilsevent})) ;
117         return undef;
118 }
119
120 # ---------------------------------------------------------------------------
121 # Checks to see if a user is logged in.  Returns the user record on success,
122 # throws an exception on error.
123 # ---------------------------------------------------------------------------
124 sub check_user_session {
125
126         my( $self, $user_session ) = @_;
127
128         my $content = $self->simplereq( 
129                 'open-ils.auth', 
130                 'open-ils.auth.session.retrieve', $user_session );
131
132
133         if(! $content or $self->event_code($content)) {
134                 throw OpenSRF::EX::ERROR 
135                         ("Session [$user_session] cannot be authenticated" );
136         }
137
138         $logger->debug("Fetch user session $user_session found user " . $content->id );
139
140         return $content;
141 }
142
143 # generic simple request returning a scalar value
144 sub simplereq {
145         my($self, $service, $method, @params) = @_;
146         return $self->simple_scalar_request($service, $method, @params);
147 }
148
149 sub get_storage_session {
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         if( $service eq 'open-ils.storage' ) {
170                 if( $session = get_storage_session() ) {
171                         $logger->debug("simple request using existing storage session ".$session->session_id);
172                 } else { $session = undef; }
173         }
174
175         if(!$session) {
176                 $session = OpenSRF::AppSession->create( $service );
177         }
178
179         $logger->debug("simple request for service $service using session " .$session->app);
180
181         my $request = $session->request( $method, @params );
182         my $response = $request->recv(30);
183
184         $request->wait_complete;
185
186         if(!$request->complete) {
187                 throw OpenSRF::EX::ERROR ("Call to $service for method $method with params @params" . 
188                                 "\n did not complete successfully");
189         }
190
191         if(!$response) {
192                 warn "No response from $service for method $method with params @params";
193         }
194
195         if(UNIVERSAL::isa($response,"Error")) {
196                 throw $response ("Call to $service for method $method with params @params" . 
197                                 "\n failed with exception: " . $response->stringify );
198         }
199
200
201         $request->finish();
202
203         if($service ne 'open-ils.storage' or !get_storage_session() ) {
204                 $session->finish();
205                 $session->disconnect();
206         }
207
208         my $value;
209
210         if($response) { $value = $response->content; }
211         else { $value = undef; }
212
213         return $value;
214 }
215
216
217
218
219
220 my $tree                                                = undef;
221 my $orglist                                     = undef;
222 my $org_typelist                        = undef;
223 my $org_typelist_hash   = {};
224
225 sub get_org_tree {
226
227         my $self = shift;
228         if($tree) { return $tree; }
229
230         # see if it's in the cache
231         $tree = $cache_client->new()->get_cache('_orgtree');
232         if($tree) { return $tree; }
233
234         if(!$orglist) {
235                 warn "Retrieving Org Tree\n";
236                 $orglist = $self->simple_scalar_request( 
237                         "open-ils.storage", 
238                         "open-ils.storage.direct.actor.org_unit.retrieve.all.atomic" );
239         }
240
241         if( ! $org_typelist ) {
242                 warn "Retrieving org types\n";
243                 $org_typelist = $self->simple_scalar_request( 
244                         "open-ils.storage", 
245                         "open-ils.storage.direct.actor.org_unit_type.retrieve.all.atomic" );
246                 $self->build_org_type($org_typelist);
247         }
248
249         $tree = $self->build_org_tree($orglist,1);
250         $cache_client->new()->put_cache('_orgtree', $tree);
251         return $tree;
252
253 }
254
255 my $slimtree = undef;
256 sub get_slim_org_tree {
257
258         my $self = shift;
259         if($slimtree) { return $slimtree; }
260
261         # see if it's in the cache
262         $slimtree = $cache_client->new()->get_cache('slimorgtree');
263         if($slimtree) { return $slimtree; }
264
265         if(!$orglist) {
266                 warn "Retrieving Org Tree\n";
267                 $orglist = $self->simple_scalar_request( 
268                         "open-ils.storage", 
269                         "open-ils.storage.direct.actor.org_unit.retrieve.all.atomic" );
270         }
271
272         $slimtree = $self->build_org_tree($orglist);
273         $cache_client->new->put_cache('slimorgtree', $slimtree);
274         return $slimtree;
275
276 }
277
278
279 sub build_org_type { 
280         my($self, $org_typelist)  = @_;
281         for my $type (@$org_typelist) {
282                 $org_typelist_hash->{$type->id()} = $type;
283         }
284 }
285
286
287
288 sub build_org_tree {
289
290         my( $self, $orglist, $add_types ) = @_;
291
292         return $orglist unless ( 
293                         ref($orglist) and @$orglist > 1 );
294
295         my @list = sort { 
296                 $a->ou_type <=> $b->ou_type ||
297                 $a->name cmp $b->name } @$orglist;
298
299         for my $org (@list) {
300
301                 next unless ($org);
302
303                 if(!ref($org->ou_type()) and $add_types) {
304                         $org->ou_type( $org_typelist_hash->{$org->ou_type()});
305                 }
306
307                 next unless (defined($org->parent_ou));
308
309                 my ($parent) = grep { $_->id == $org->parent_ou } @list;
310                 next unless $parent;
311                 $parent->children([]) unless defined($parent->children); 
312                 push( @{$parent->children}, $org );
313         }
314
315         return $list[0];
316
317 }
318
319 sub fetch_user {
320         my( $self, $userid ) = @_;
321         my( $user, $evt );
322
323         $logger->debug("Fetching user $userid from storage");
324
325         $user = $self->simplereq(
326                 'open-ils.storage',
327                 'open-ils.storage.direct.actor.user.retrieve', $userid );
328
329         if(!$user) {
330                 $logger->info("User $userid not found in the db");
331                 $evt = OpenILS::Event->new('USER_NOT_FOUND');
332         }
333
334         return ($user, $evt);
335 }
336
337 sub checkses {
338         my( $self, $session ) = @_;
339         my $user; my $evt; my $e; 
340
341         $logger->debug("Checking user session $session");
342
343         try {
344                 $user = $self->check_user_session($session);
345         } catch Error with { $e = 1; };
346
347         if( $e or !$user ) { $evt = OpenILS::Event->new('NO_SESSION'); }
348         return ( $user, $evt );
349 }
350
351
352 # verifiese the session and checks the permissions agains the
353 # session user and the user's home_ou as the org id
354 sub checksesperm {
355         my( $self, $session, @perms ) = @_;
356         my $user; my $evt; my $e; 
357         $logger->debug("Checking user session $session and perms @perms");
358         ($user, $evt) = $self->checkses($session);
359         return (undef, $evt) if $evt;
360         $evt = $self->check_perms($user->id, $user->home_ou, @perms);
361         return ($user, $evt);
362 }
363
364
365 sub checkrequestor {
366         my( $self, $staffobj, $userid, @perms ) = @_;
367         my $user; my $evt;
368         $userid = $staffobj->id unless defined $userid;
369
370         $logger->debug("checkrequestor(): requestor => " . $staffobj->id . ", target => $userid");
371
372         if( $userid ne $staffobj->id ) {
373                 ($user, $evt) = $self->fetch_user($userid);
374                 return (undef, $evt) if $evt;
375                 $evt = $self->check_perms( $staffobj->id, $user->home_ou, @perms );
376
377         } else {
378                 $user = $staffobj;
379         }
380
381         return ($user, $evt);
382 }
383
384 sub checkses_requestor {
385         my( $self, $authtoken, $targetid, @perms ) = @_;
386         my( $requestor, $target, $evt );
387
388         ($requestor, $evt) = $self->checkses($authtoken);
389         return (undef, undef, $evt) if $evt;
390
391         ($target, $evt) = $self->checkrequestor( $requestor, $targetid, @perms );
392         return( $requestor, $target, $evt);
393 }
394
395 sub fetch_copy {
396         my( $self, $copyid ) = @_;
397         my( $copy, $evt );
398
399         $logger->debug("Fetching copy $copyid from storage");
400
401         $copy = $self->simplereq(
402                 'open-ils.storage',
403                 'open-ils.storage.direct.asset.copy.retrieve', $copyid );
404
405         if(!$copy) { $evt = OpenILS::Event->new('COPY_NOT_FOUND'); }
406
407         return( $copy, $evt );
408 }
409
410
411 # retrieves a circ object by id
412 sub fetch_circulation {
413         my( $self, $circid ) = @_;
414         my $circ; my $evt;
415         
416         $logger->debug("Fetching circ $circid from storage");
417
418         $circ = $self->simplereq(
419                 'open-ils.storage',
420                 "open-ils.storage.direct.action.circulation.retrieve", $circid );
421
422         if(!$circ) {
423                 $evt = OpenILS::Event->new('CIRCULATION_NOT_FOUND', circid => $circid );
424         }
425
426         return ( $circ, $evt );
427 }
428
429 sub fetch_record_by_copy {
430         my( $self, $copyid ) = @_;
431         my( $record, $evt );
432
433         $logger->debug("Fetching record by copy $copyid from storage");
434
435         $record = $self->simplereq(
436                 'open-ils.storage',
437                 'open-ils.storage.fleshed.biblio.record_entry.retrieve_by_copy', $copyid );
438
439         if(!$record) {
440                 $evt = OpenILS::Event->new('BIBLIO_RECORD_NOT_FOUND');
441         }
442
443         return ($record, $evt);
444 }
445
446 # turns a record object into an mvr (mods) object
447 sub record_to_mvr {
448         my( $self, $record ) = @_;
449         my $u = OpenILS::Utils::ModsParser->new();
450         $u->start_mods_batch( $record->marc );
451         my $mods = $u->finish_mods_batch();
452         $mods->doc_id($record->id);
453         return $mods;
454 }
455
456 sub fetch_hold {
457         my( $self, $holdid ) = @_;
458         my( $hold, $evt );
459
460         $logger->debug("Fetching hold $holdid from storage");
461
462         $hold = $self->simplereq(
463                 'open-ils.storage',
464                 'open-ils.storage.direct.action.hold_request.retrieve', $holdid);
465
466         $evt = OpenILS::Event->new('HOLD_NOT_FOUND', holdid => $holdid) unless $hold;
467
468         return ($hold, $evt);
469 }
470
471
472 sub fetch_hold_transit_by_hold {
473         my( $self, $holdid ) = @_;
474         my( $transit, $evt );
475
476         $logger->debug("Fetching transit by hold $holdid from storage");
477
478         $transit = $self->simplereq(
479                 'open-ils.storage',
480                 'open-ils.storage.direct.action.hold_transit_copy.search.hold', $holdid );
481
482         $evt = OpenILS::Event->new('HOLD_TRANSIT_NOT_FOUND', holdid => $holdid) unless $transit;
483
484         return ($transit, $evt );
485 }
486
487 sub fetch_open_hold_by_copy {
488         my( $self, $copyid ) = @_;
489         $logger->debug("Searching for active hold for copy $copyid");
490         my( $hold, $evt );
491
492         $hold = $self->storagereq(
493                 'open-ils.storage.direct.action.hold_request.search_where',
494                 { current_copy => $copyid , fulfillment_time => undef } );
495
496         $evt = OpenILS::Event->new('HOLD_NOT_FOUND', copyid => $copyid) unless $hold;
497         return ($hold, $evt);
498 }
499
500 sub fetch_hold_transit {
501         my( $self, $transid ) = @_;
502         my( $htransit, $evt );
503         $logger->debug("Fetching hold transit with hold id $transid");
504         $htransit = $self->storagereq(
505                 'open-ils.storage.direct.action.hold_transit_copy.retrieve', $transid );
506         $evt = OpenILS::Event->new('HOLD_TRANSIT_NOT_FOUND', id => $transid) unless $htransit;
507         return ($htransit, $evt);
508 }
509
510 sub fetch_copy_by_barcode {
511         my( $self, $barcode ) = @_;
512         my( $copy, $evt );
513
514         $logger->debug("Fetching copy by barcode $barcode from storage");
515
516         $copy = $self->simplereq( 'open-ils.storage',
517                 'open-ils.storage.direct.asset.copy.search.barcode', $barcode );
518
519         $evt = OpenILS::Event->new('COPY_NOT_FOUND', barcode => $barcode) unless $copy;
520
521         return ($copy, $evt);
522 }
523
524 sub fetch_open_billable_transaction {
525         my( $self, $transid ) = @_;
526         my( $transaction, $evt );
527
528         $logger->debug("Fetching open billable transaction $transid from storage");
529
530         $transaction = $self->simplereq(
531                 'open-ils.storage',
532                 'open-ils.storage.direct.money.open_billable_transaction_summary.retrieve',  $transid);
533
534         $evt = OpenILS::Event->new(
535                 'TRANSACTION_NOT_FOUND', transid => $transid ) unless $transaction;
536
537         return ($transaction, $evt);
538 }
539
540
541
542 my %buckets;
543 $buckets{'biblio'} = 'biblio_record_entry_bucket';
544 $buckets{'callnumber'} = 'call_number_bucket';
545 $buckets{'copy'} = 'copy_bucket';
546 $buckets{'user'} = 'user_bucket';
547
548 sub fetch_container {
549         my( $self, $id, $type ) = @_;
550         my( $bucket, $evt );
551
552         $logger->debug("Fetching container $id with type $type");
553
554         my $meth = $buckets{$type};
555         $bucket = $self->simplereq(
556                 'open-ils.storage',
557                 "open-ils.storage.direct.container.$meth.retrieve", $id );
558
559         $evt = OpenILS::Event->new(
560                 'CONTAINER_NOT_FOUND', container => $id, 
561                         container_type => $type ) unless $bucket;
562
563         return ($bucket, $evt);
564 }
565
566
567 sub fetch_container_item {
568         my( $self, $id, $type ) = @_;
569         my( $bucket, $evt );
570
571         $logger->debug("Fetching container item $id with type $type");
572
573         my $meth = $buckets{$type} . "_item";
574
575         $bucket = $self->simplereq(
576                 'open-ils.storage',
577                 "open-ils.storage.direct.container.$meth.retrieve", $id );
578
579         $evt = OpenILS::Event->new(
580                 'CONTAINER_ITEM_NOT_FOUND', itemid => $id, 
581                         container_type => $type ) unless $bucket;
582
583         return ($bucket, $evt);
584 }
585
586
587 sub fetch_patron_standings {
588         my $self = shift;
589         $logger->debug("Fetching patron standings");    
590         return $self->simplereq(
591                 'open-ils.storage', 
592                 'open-ils.storage.direct.config.standing.retrieve.all.atomic');
593 }
594
595
596 sub fetch_permission_group_tree {
597         my $self = shift;
598         $logger->debug("Fetching patron profiles");     
599         return $self->simplereq(
600                 'open-ils.actor', 
601                 'open-ils.actor.groups.tree.retrieve' );
602 }
603
604
605 sub fetch_patron_circ_summary {
606         my( $self, $userid ) = @_;
607         $logger->debug("Fetching patron summary for $userid");
608         my $summary = $self->simplereq(
609                 'open-ils.storage', 
610                 "open-ils.storage.action.circulation.patron_summary", $userid );
611
612         if( $summary ) {
613                 $summary->[0] ||= 0;
614                 $summary->[1] ||= 0.0;
615                 return $summary;
616         }
617         return undef;
618 }
619
620
621 sub fetch_copy_statuses {
622         my( $self ) = @_;
623         $logger->debug("Fetching copy statuses");
624         return $self->simplereq(
625                 'open-ils.storage', 
626                 'open-ils.storage.direct.config.copy_status.retrieve.all.atomic' );
627 }
628
629 sub fetch_copy_location {
630         my( $self, $id ) = @_;
631         my $evt;
632         my $cl = $self->storagereq(
633                 'open-ils.storage.direct.asset.copy_location.retrieve', $id );
634         $evt = OpenILS::Event->new('COPY_LOCATION_NOT_FOUND') unless $cl;
635         return ($cl, $evt);
636 }
637
638 sub fetch_copy_locations {
639         my $self = shift; 
640         return $self->simplereq(
641                 'open-ils.storage', 
642                 'open-ils.storage.direct.asset.copy_location.retrieve.all.atomic');
643 }
644
645 sub fetch_copy_location_by_name {
646         my( $self, $name, $org ) = @_;
647         my $evt;
648         my $cl = $self->storagereq(
649                 'open-ils.storage.direct.asset.copy_location.search_where',
650                         { name => $name, owning_lib => $org } );
651         $evt = OpenILS::Event->new('COPY_LOCATION_NOT_FOUND') unless $cl;
652         return ($cl, $evt);
653 }
654
655 sub fetch_callnumber {
656         my( $self, $id ) = @_;
657         my $evt = undef;
658         $logger->debug("Fetching callnumber $id");
659
660         my $cn = $self->simplereq(
661                 'open-ils.storage',
662                 'open-ils.storage.direct.asset.call_number.retrieve', $id );
663         $evt = OpenILS::Event->new( 'VOLUME_NOT_FOUND', id => $id ) unless $cn;
664
665         return ( $cn, $evt );
666 }
667
668 sub fetch_org_unit {
669         my( $self, $id ) = @_;
670         return $id if( ref($id) eq 'Fieldmapper::actor::org_unit' );
671         $logger->debug("Fetching org unit $id");
672         my $evt = undef;
673
674         my $org = $self->simplereq(
675                 'open-ils.storage', 
676                 'open-ils.storage.direct.actor.org_unit.retrieve', $id );
677         $evt = OpenILS::Event->new( 'ORG_UNIT_NOT_FOUND', id => $id ) unless $org;
678
679         return ($org, $evt);
680 }
681
682 sub fetch_stat_cat {
683         my( $self, $type, $id ) = @_;
684         my( $cat, $evt );
685         $logger->debug("Fetching $type stat cat: $id");
686         $cat = $self->simplereq(
687                 'open-ils.storage', 
688                 "open-ils.storage.direct.$type.stat_cat.retrieve", $id );
689         $evt = OpenILS::Event->new( 'STAT_CAT_NOT_FOUND', id => $id ) unless $cat;
690         return ( $cat, $evt );
691 }
692
693 sub fetch_stat_cat_entry {
694         my( $self, $type, $id ) = @_;
695         my( $entry, $evt );
696         $logger->debug("Fetching $type stat cat entry: $id");
697         $entry = $self->simplereq(
698                 'open-ils.storage', 
699                 "open-ils.storage.direct.$type.stat_cat_entry.retrieve", $id );
700         $evt = OpenILS::Event->new( 'STAT_CAT_ENTRY_NOT_FOUND', id => $id ) unless $entry;
701         return ( $entry, $evt );
702 }
703
704
705 sub find_org {
706         my( $self, $org_tree, $orgid )  = @_;
707         return $org_tree if ( $org_tree->id eq $orgid );
708         return undef unless ref($org_tree->children);
709         for my $c (@{$org_tree->children}) {
710                 my $o = $self->find_org($c, $orgid);
711                 return $o if $o;
712         }
713         return undef;
714 }
715
716 sub fetch_non_cat_type_by_name_and_org {
717         my( $self, $name, $orgId ) = @_;
718         $logger->debug("Fetching non cat type $name at org $orgId");
719         my $types = $self->simplereq(
720                 'open-ils.storage',
721                 'open-ils.storage.direct.config.non_cataloged_type.search_where.atomic',
722                 { name => $name, owning_lib => $orgId } );
723         return ($types->[0], undef) if($types and @$types);
724         return (undef, OpenILS::Event->new('NON_CAT_TYPE_NOT_FOUND') );
725 }
726
727 sub fetch_non_cat_type {
728         my( $self, $id ) = @_;
729         $logger->debug("Fetching non cat type $id");
730         my( $type, $evt );
731         $type = $self->simplereq(
732                 'open-ils.storage', 
733                 'open-ils.storage.direct.config.non_cataloged_type.retrieve', $id );
734         $evt = OpenILS::Event->new('NON_CAT_TYPE_NOT_FOUND') unless $type;
735         return ($type, $evt);
736 }
737
738 sub DB_UPDATE_FAILED { 
739         my( $self, $payload ) = @_;
740         return OpenILS::Event->new('DATABASE_UPDATE_FAILED', 
741                 payload => ($payload) ? $payload : undef ); 
742 }
743
744 sub fetch_circ_duration_by_name {
745         my( $self, $name ) = @_;
746         my( $dur, $evt );
747         $dur = $self->simplereq(
748                 'open-ils.storage', 
749                 'open-ils.storage.direct.config.rules.circ_duration.search.name.atomic', $name );
750         $dur = $dur->[0];
751         $evt = OpenILS::Event->new('CIRC_DURATION_NOT_FOUND') unless $dur;
752         return ($dur, $evt);
753 }
754
755 sub fetch_recurring_fine_by_name {
756         my( $self, $name ) = @_;
757         my( $obj, $evt );
758         $obj = $self->simplereq(
759                 'open-ils.storage', 
760                 'open-ils.storage.direct.config.rules.recuring_fine.search.name.atomic', $name );
761         $obj = $obj->[0];
762         $evt = OpenILS::Event->new('RECURRING_FINE_NOT_FOUND') unless $obj;
763         return ($obj, $evt);
764 }
765
766 sub fetch_max_fine_by_name {
767         my( $self, $name ) = @_;
768         my( $obj, $evt );
769         $obj = $self->simplereq(
770                 'open-ils.storage', 
771                 'open-ils.storage.direct.config.rules.max_fine.search.name.atomic', $name );
772         $obj = $obj->[0];
773         $evt = OpenILS::Event->new('MAX_FINE_NOT_FOUND') unless $obj;
774         return ($obj, $evt);
775 }
776
777 sub storagereq {
778         my( $self, $method, @params ) = @_;
779         return $self->simplereq(
780                 'open-ils.storage', $method, @params );
781 }
782
783 sub event_equals {
784         my( $self, $e, $name ) =  @_;
785         if( $e and ref($e) eq 'HASH' and 
786                 defined($e->{textcode}) and $e->{textcode} eq $name ) {
787                 return 1 ;
788         }
789         return 0;
790 }
791
792 sub logmark {
793         my( undef, $f, $l ) = caller(0);
794         my( undef, undef, undef, $s ) = caller(1);
795         $s =~ s/.*:://g;
796         $f =~ s/.*\///g;
797         $logger->debug("LOGMARK: $f:$l:$s");
798 }
799
800 # takes a copy id 
801 sub fetch_open_circulation {
802         my( $self, $cid ) = @_;
803         my $evt;
804         $self->logmark;
805         my $circ = $self->storagereq(
806                 'open-ils.storage.direct.action.open_circulation.search_where',
807                 { target_copy => $cid, stop_fines_time => undef } );
808         $evt = OpenILS::Event->new('CIRCULATION_NOT_FOUND') unless $circ;       
809         return ($circ, $evt);
810 }
811
812 my $copy_statuses;
813 sub copy_status_from_name {
814         my( $self, $name ) = @_;
815         $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
816         for my $status (@$copy_statuses) { 
817                 return $status if( $status->name =~ /$name/i );
818         }
819         return undef;
820 }
821
822 sub copy_status_to_name {
823         my( $self, $sid ) = @_;
824         $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
825         for my $status (@$copy_statuses) { 
826                 return $status->name if( $status->id == $sid );
827         }
828         return undef;
829 }
830
831 sub fetch_open_transit_by_copy {
832         my( $self, $copyid ) = @_;
833         my($transit, $evt);
834         $transit = $self->storagereq(
835                 'open-ils.storage.direct.action.transit_copy.search_where',
836                 { target_copy => $copyid, dest_recv_time => undef });
837         $evt = OpenILS::Event->new('TRANSIT_NOT_FOUND') unless $transit;
838         return ($transit, $evt);
839 }
840
841 sub unflesh_copy {
842         my( $self, $copy ) = @_;
843         return undef unless $copy;
844         $copy->status( $copy->status->id ) if ref($copy->status);
845         $copy->location( $copy->location->id ) if ref($copy->location);
846         $copy->circ_lib( $copy->circ_lib->id ) if ref($copy->circ_lib);
847         return $copy;
848 }
849
850 # un-fleshes a copy and updates it in the DB
851 # returns a DB_UPDATE_FAILED event on error
852 # returns undef on success
853 sub update_copy {
854         my( $self, %params ) = @_;
855
856         my $copy                = $params{copy} || die "update_copy(): copy required";
857         my $editor      = $params{editor} || die "update_copy(): copy editor required";
858         my $session = $params{session};
859
860         $logger->debug("Updating copy in the database: " . $copy->id);
861
862         $self->unflesh_copy($copy);
863         $copy->editor( $editor );
864         $copy->edit_date( 'now' );
865
866         my $s;
867         my $meth = 'open-ils.storage.direct.asset.copy.update';
868
869         $s = $session->request( $meth, $copy )->gather(1) if $session;
870         $s = $self->storagereq( $meth, $copy );
871
872         $logger->debug("Update of copy ".$copy->id." returned: $s");
873
874         return $self->DB_UPDATE_FAILED($copy) unless $s;
875         return undef;
876 }
877
878 sub fetch_billable_xact {
879         my( $self, $id ) = @_;
880         my($xact, $evt);
881         $logger->debug("Fetching billable transaction %id");
882         $xact = $self->storagereq(
883                 'open-ils.storage.direct.money.billable_transaction.retrieve', $id );
884         $evt = OpenILS::Event->new('TRANSACTION_NOT_FOUND') unless $xact;
885         return ($xact, $evt);
886 }
887
888
889
890 1;
891