]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/Application/AppUtils.pm
Fix Lp bug 965656 WRT back dated checkins with fines.
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / Application / AppUtils.pm
1 package OpenILS::Application::AppUtils;
2 # vim:noet:ts=4
3 use strict; use warnings;
4 use OpenILS::Application;
5 use base qw/OpenILS::Application/;
6 use OpenSRF::Utils::Cache;
7 use OpenSRF::Utils::Logger qw/$logger/;
8 use OpenILS::Utils::ModsParser;
9 use OpenSRF::EX qw(:try);
10 use OpenILS::Event;
11 use Data::Dumper;
12 use OpenILS::Utils::CStoreEditor;
13 use OpenILS::Const qw/:const/;
14 use Unicode::Normalize;
15 use OpenSRF::Utils::SettingsClient;
16 use UUID::Tiny;
17 use Encode;
18 use DateTime;
19 use DateTime::Format::ISO8601;
20 use List::MoreUtils qw/uniq/;
21
22 # ---------------------------------------------------------------------------
23 # Pile of utilty methods used accross applications.
24 # ---------------------------------------------------------------------------
25 my $cache_client = "OpenSRF::Utils::Cache";
26
27
28 # ---------------------------------------------------------------------------
29 # on sucess, returns the created session, on failure throws ERROR exception
30 # ---------------------------------------------------------------------------
31 sub start_db_session {
32
33     my $self = shift;
34     my $session = OpenSRF::AppSession->connect( "open-ils.storage" );
35     my $trans_req = $session->request( "open-ils.storage.transaction.begin" );
36
37     my $trans_resp = $trans_req->recv();
38     if(ref($trans_resp) and UNIVERSAL::isa($trans_resp,"Error")) { throw $trans_resp; }
39     if( ! $trans_resp->content() ) {
40         throw OpenSRF::ERROR 
41             ("Unable to Begin Transaction with database" );
42     }
43     $trans_req->finish();
44
45     $logger->debug("Setting global storage session to ".
46         "session: " . $session->session_id . " : " . $session->app );
47
48     return $session;
49 }
50
51 sub set_audit_info {
52     my $self = shift;
53     my $session = shift;
54     my $authtoken = shift;
55     my $user_id = shift;
56     my $ws_id = shift;
57     
58     my $audit_req = $session->request( "open-ils.storage.set_audit_info", $authtoken, $user_id, $ws_id );
59     my $audit_resp = $audit_req->recv();
60     $audit_req->finish();
61 }
62
63 my $PERM_QUERY = {
64     select => {
65         au => [ {
66             transform => 'permission.usr_has_perm',
67             alias => 'has_perm',
68             column => 'id',
69             params => []
70         } ]
71     },
72     from => 'au',
73     where => {},
74 };
75
76
77 # returns undef if user has all of the perms provided
78 # returns the first failed perm on failure
79 sub check_user_perms {
80     my($self, $user_id, $org_id, @perm_types ) = @_;
81     $logger->debug("Checking perms with user : $user_id , org: $org_id, @perm_types");
82
83     for my $type (@perm_types) {
84         $PERM_QUERY->{select}->{au}->[0]->{params} = [$type, $org_id];
85         $PERM_QUERY->{where}->{id} = $user_id;
86         return $type unless $self->is_true(OpenILS::Utils::CStoreEditor->new->json_query($PERM_QUERY)->[0]->{has_perm});
87     }
88     return undef;
89 }
90
91 # checks the list of user perms.  The first one that fails returns a new
92 sub check_perms {
93     my( $self, $user_id, $org_id, @perm_types ) = @_;
94     my $t = $self->check_user_perms( $user_id, $org_id, @perm_types );
95     return OpenILS::Event->new('PERM_FAILURE', ilsperm => $t, ilspermloc => $org_id ) if $t;
96     return undef;
97 }
98
99
100
101 # ---------------------------------------------------------------------------
102 # commits and destroys the session
103 # ---------------------------------------------------------------------------
104 sub commit_db_session {
105     my( $self, $session ) = @_;
106
107     my $req = $session->request( "open-ils.storage.transaction.commit" );
108     my $resp = $req->recv();
109
110     if(!$resp) {
111         throw OpenSRF::EX::ERROR ("Unable to commit db session");
112     }
113
114     if(UNIVERSAL::isa($resp,"Error")) { 
115         throw $resp ($resp->stringify); 
116     }
117
118     if(!$resp->content) {
119         throw OpenSRF::EX::ERROR ("Unable to commit db session");
120     }
121
122     $session->finish();
123     $session->disconnect();
124     $session->kill_me();
125 }
126
127 sub rollback_db_session {
128     my( $self, $session ) = @_;
129
130     my $req = $session->request("open-ils.storage.transaction.rollback");
131     my $resp = $req->recv();
132     if(UNIVERSAL::isa($resp,"Error")) { throw $resp;  }
133
134     $session->finish();
135     $session->disconnect();
136     $session->kill_me();
137 }
138
139
140 # returns undef it the event is not an ILS event
141 # returns the event code otherwise
142 sub event_code {
143     my( $self, $evt ) = @_;
144     return $evt->{ilsevent} if $self->is_event($evt);
145     return undef;
146 }
147
148 # some events, in particular auto-generated events, don't have an 
149 # ilsevent key.  treat hashes with a 'textcode' key as events.
150 sub is_event {
151     my ($self, $evt) = @_;
152     return (
153         ref($evt) eq 'HASH' and (
154             defined $evt->{ilsevent} or
155             defined $evt->{textcode}
156         )
157     );
158 }
159
160 # ---------------------------------------------------------------------------
161 # Checks to see if a user is logged in.  Returns the user record on success,
162 # throws an exception on error.
163 # ---------------------------------------------------------------------------
164 sub check_user_session {
165     my( $self, $user_session ) = @_;
166
167     my $content = $self->simplereq( 
168         'open-ils.auth', 
169         'open-ils.auth.session.retrieve', $user_session);
170
171     return undef if (!$content) or $self->event_code($content);
172     return $content;
173 }
174
175 # generic simple request returning a scalar value
176 sub simplereq {
177     my($self, $service, $method, @params) = @_;
178     return $self->simple_scalar_request($service, $method, @params);
179 }
180
181
182 sub simple_scalar_request {
183     my($self, $service, $method, @params) = @_;
184
185     my $session = OpenSRF::AppSession->create( $service );
186
187     my $request = $session->request( $method, @params );
188
189     my $val;
190     my $err;
191     try  {
192
193         $val = $request->gather(1); 
194
195     } catch Error with {
196         $err = shift;
197     };
198
199     if( $err ) {
200         warn "received error : service=$service : method=$method : params=".Dumper(\@params) . "\n $err";
201         throw $err ("Call to $service for method $method \n failed with exception: $err : " );
202     }
203
204     return $val;
205 }
206
207 sub build_org_tree {
208     my( $self, $orglist ) = @_;
209
210     return $orglist unless ref $orglist; 
211     return $$orglist[0] if @$orglist == 1;
212
213     my @list = sort { 
214         $a->ou_type <=> $b->ou_type ||
215         $a->name cmp $b->name } @$orglist;
216
217     for my $org (@list) {
218
219         next unless ($org);
220         next if (!defined($org->parent_ou) || $org->parent_ou eq "");
221
222         my ($parent) = grep { $_->id == $org->parent_ou } @list;
223         next unless $parent;
224         $parent->children([]) unless defined($parent->children); 
225         push( @{$parent->children}, $org );
226     }
227
228     return $list[0];
229 }
230
231 sub fetch_closed_date {
232     my( $self, $cd ) = @_;
233     my $evt;
234     
235     $logger->debug("Fetching closed_date $cd from cstore");
236
237     my $cd_obj = $self->simplereq(
238         'open-ils.cstore',
239         'open-ils.cstore.direct.actor.org_unit.closed_date.retrieve', $cd );
240
241     if(!$cd_obj) {
242         $logger->info("closed_date $cd not found in the db");
243         $evt = OpenILS::Event->new('ACTOR_USER_NOT_FOUND');
244     }
245
246     return ($cd_obj, $evt);
247 }
248
249 sub fetch_user {
250     my( $self, $userid ) = @_;
251     my( $user, $evt );
252     
253     $logger->debug("Fetching user $userid from cstore");
254
255     $user = $self->simplereq(
256         'open-ils.cstore',
257         'open-ils.cstore.direct.actor.user.retrieve', $userid );
258
259     if(!$user) {
260         $logger->info("User $userid not found in the db");
261         $evt = OpenILS::Event->new('ACTOR_USER_NOT_FOUND');
262     }
263
264     return ($user, $evt);
265 }
266
267 sub checkses {
268     my( $self, $session ) = @_;
269     my $user = $self->check_user_session($session) or 
270         return (undef, OpenILS::Event->new('NO_SESSION'));
271     return ($user);
272 }
273
274
275 # verifiese the session and checks the permissions agains the
276 # session user and the user's home_ou as the org id
277 sub checksesperm {
278     my( $self, $session, @perms ) = @_;
279     my $user; my $evt; my $e; 
280     $logger->debug("Checking user session $session and perms @perms");
281     ($user, $evt) = $self->checkses($session);
282     return (undef, $evt) if $evt;
283     $evt = $self->check_perms($user->id, $user->home_ou, @perms);
284     return ($user, $evt);
285 }
286
287
288 sub checkrequestor {
289     my( $self, $staffobj, $userid, @perms ) = @_;
290     my $user; my $evt;
291     $userid = $staffobj->id unless defined $userid;
292
293     $logger->debug("checkrequestor(): requestor => " . $staffobj->id . ", target => $userid");
294
295     if( $userid ne $staffobj->id ) {
296         ($user, $evt) = $self->fetch_user($userid);
297         return (undef, $evt) if $evt;
298         $evt = $self->check_perms( $staffobj->id, $user->home_ou, @perms );
299
300     } else {
301         $user = $staffobj;
302     }
303
304     return ($user, $evt);
305 }
306
307 sub checkses_requestor {
308     my( $self, $authtoken, $targetid, @perms ) = @_;
309     my( $requestor, $target, $evt );
310
311     ($requestor, $evt) = $self->checkses($authtoken);
312     return (undef, undef, $evt) if $evt;
313
314     ($target, $evt) = $self->checkrequestor( $requestor, $targetid, @perms );
315     return( $requestor, $target, $evt);
316 }
317
318 sub fetch_copy {
319     my( $self, $copyid ) = @_;
320     my( $copy, $evt );
321
322     $logger->debug("Fetching copy $copyid from cstore");
323
324     $copy = $self->simplereq(
325         'open-ils.cstore',
326         'open-ils.cstore.direct.asset.copy.retrieve', $copyid );
327
328     if(!$copy) { $evt = OpenILS::Event->new('ASSET_COPY_NOT_FOUND'); }
329
330     return( $copy, $evt );
331 }
332
333
334 # retrieves a circ object by id
335 sub fetch_circulation {
336     my( $self, $circid ) = @_;
337     my $circ; my $evt;
338     
339     $logger->debug("Fetching circ $circid from cstore");
340
341     $circ = $self->simplereq(
342         'open-ils.cstore',
343         "open-ils.cstore.direct.action.circulation.retrieve", $circid );
344
345     if(!$circ) {
346         $evt = OpenILS::Event->new('ACTION_CIRCULATION_NOT_FOUND', circid => $circid );
347     }
348
349     return ( $circ, $evt );
350 }
351
352 sub fetch_record_by_copy {
353     my( $self, $copyid ) = @_;
354     my( $record, $evt );
355
356     $logger->debug("Fetching record by copy $copyid from cstore");
357
358     $record = $self->simplereq(
359         'open-ils.cstore',
360         'open-ils.cstore.direct.asset.copy.retrieve', $copyid,
361         { flesh => 3,
362           flesh_fields => { bre => [ 'fixed_fields' ],
363                     acn => [ 'record' ],
364                     acp => [ 'call_number' ],
365                   }
366         }
367     );
368
369     if(!$record) {
370         $evt = OpenILS::Event->new('BIBLIO_RECORD_ENTRY_NOT_FOUND');
371     } else {
372         $record = $record->call_number->record;
373     }
374
375     return ($record, $evt);
376 }
377
378 # turns a record object into an mvr (mods) object
379 sub record_to_mvr {
380     my( $self, $record ) = @_;
381     return undef unless $record and $record->marc;
382     my $u = OpenILS::Utils::ModsParser->new();
383     $u->start_mods_batch( $record->marc );
384     my $mods = $u->finish_mods_batch();
385     $mods->doc_id($record->id);
386    $mods->tcn($record->tcn_value);
387     return $mods;
388 }
389
390 sub fetch_hold {
391     my( $self, $holdid ) = @_;
392     my( $hold, $evt );
393
394     $logger->debug("Fetching hold $holdid from cstore");
395
396     $hold = $self->simplereq(
397         'open-ils.cstore',
398         'open-ils.cstore.direct.action.hold_request.retrieve', $holdid);
399
400     $evt = OpenILS::Event->new('ACTION_HOLD_REQUEST_NOT_FOUND', holdid => $holdid) unless $hold;
401
402     return ($hold, $evt);
403 }
404
405
406 sub fetch_hold_transit_by_hold {
407     my( $self, $holdid ) = @_;
408     my( $transit, $evt );
409
410     $logger->debug("Fetching transit by hold $holdid from cstore");
411
412     $transit = $self->simplereq(
413         'open-ils.cstore',
414         'open-ils.cstore.direct.action.hold_transit_copy.search', { hold => $holdid } );
415
416     $evt = OpenILS::Event->new('ACTION_HOLD_TRANSIT_COPY_NOT_FOUND', holdid => $holdid) unless $transit;
417
418     return ($transit, $evt );
419 }
420
421 # fetches the captured, but not fulfilled hold attached to a given copy
422 sub fetch_open_hold_by_copy {
423     my( $self, $copyid ) = @_;
424     $logger->debug("Searching for active hold for copy $copyid");
425     my( $hold, $evt );
426
427     $hold = $self->cstorereq(
428         'open-ils.cstore.direct.action.hold_request.search',
429         { 
430             current_copy        => $copyid , 
431             capture_time        => { "!=" => undef }, 
432             fulfillment_time    => undef,
433             cancel_time         => undef,
434         } );
435
436     $evt = OpenILS::Event->new('ACTION_HOLD_REQUEST_NOT_FOUND', copyid => $copyid) unless $hold;
437     return ($hold, $evt);
438 }
439
440 sub fetch_hold_transit {
441     my( $self, $transid ) = @_;
442     my( $htransit, $evt );
443     $logger->debug("Fetching hold transit with hold id $transid");
444     $htransit = $self->cstorereq(
445         'open-ils.cstore.direct.action.hold_transit_copy.retrieve', $transid );
446     $evt = OpenILS::Event->new('ACTION_HOLD_TRANSIT_COPY_NOT_FOUND', id => $transid) unless $htransit;
447     return ($htransit, $evt);
448 }
449
450 sub fetch_copy_by_barcode {
451     my( $self, $barcode ) = @_;
452     my( $copy, $evt );
453
454     $logger->debug("Fetching copy by barcode $barcode from cstore");
455
456     $copy = $self->simplereq( 'open-ils.cstore',
457         'open-ils.cstore.direct.asset.copy.search', { barcode => $barcode, deleted => 'f'} );
458         #'open-ils.storage.direct.asset.copy.search.barcode', $barcode );
459
460     $evt = OpenILS::Event->new('ASSET_COPY_NOT_FOUND', barcode => $barcode) unless $copy;
461
462     return ($copy, $evt);
463 }
464
465 sub fetch_open_billable_transaction {
466     my( $self, $transid ) = @_;
467     my( $transaction, $evt );
468
469     $logger->debug("Fetching open billable transaction $transid from cstore");
470
471     $transaction = $self->simplereq(
472         'open-ils.cstore',
473         'open-ils.cstore.direct.money.open_billable_transaction_summary.retrieve',  $transid);
474
475     $evt = OpenILS::Event->new(
476         'MONEY_OPEN_BILLABLE_TRANSACTION_SUMMARY_NOT_FOUND', transid => $transid ) unless $transaction;
477
478     return ($transaction, $evt);
479 }
480
481
482
483 my %buckets;
484 $buckets{'biblio'} = 'biblio_record_entry_bucket';
485 $buckets{'callnumber'} = 'call_number_bucket';
486 $buckets{'copy'} = 'copy_bucket';
487 $buckets{'user'} = 'user_bucket';
488
489 sub fetch_container {
490     my( $self, $id, $type ) = @_;
491     my( $bucket, $evt );
492
493     $logger->debug("Fetching container $id with type $type");
494
495     my $e = 'CONTAINER_CALL_NUMBER_BUCKET_NOT_FOUND';
496     $e = 'CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_NOT_FOUND' if $type eq 'biblio';
497     $e = 'CONTAINER_USER_BUCKET_NOT_FOUND' if $type eq 'user';
498     $e = 'CONTAINER_COPY_BUCKET_NOT_FOUND' if $type eq 'copy';
499
500     my $meth = $buckets{$type};
501     $bucket = $self->simplereq(
502         'open-ils.cstore',
503         "open-ils.cstore.direct.container.$meth.retrieve", $id );
504
505     $evt = OpenILS::Event->new(
506         $e, container => $id, container_type => $type ) unless $bucket;
507
508     return ($bucket, $evt);
509 }
510
511
512 sub fetch_container_e {
513     my( $self, $editor, $id, $type ) = @_;
514
515     my( $bucket, $evt );
516     $bucket = $editor->retrieve_container_copy_bucket($id) if $type eq 'copy';
517     $bucket = $editor->retrieve_container_call_number_bucket($id) if $type eq 'callnumber';
518     $bucket = $editor->retrieve_container_biblio_record_entry_bucket($id) if $type eq 'biblio';
519     $bucket = $editor->retrieve_container_user_bucket($id) if $type eq 'user';
520
521     $evt = $editor->event unless $bucket;
522     return ($bucket, $evt);
523 }
524
525 sub fetch_container_item_e {
526     my( $self, $editor, $id, $type ) = @_;
527
528     my( $bucket, $evt );
529     $bucket = $editor->retrieve_container_copy_bucket_item($id) if $type eq 'copy';
530     $bucket = $editor->retrieve_container_call_number_bucket_item($id) if $type eq 'callnumber';
531     $bucket = $editor->retrieve_container_biblio_record_entry_bucket_item($id) if $type eq 'biblio';
532     $bucket = $editor->retrieve_container_user_bucket_item($id) if $type eq 'user';
533
534     $evt = $editor->event unless $bucket;
535     return ($bucket, $evt);
536 }
537
538
539
540
541
542 sub fetch_container_item {
543     my( $self, $id, $type ) = @_;
544     my( $bucket, $evt );
545
546     $logger->debug("Fetching container item $id with type $type");
547
548     my $meth = $buckets{$type} . "_item";
549
550     $bucket = $self->simplereq(
551         'open-ils.cstore',
552         "open-ils.cstore.direct.container.$meth.retrieve", $id );
553
554
555     my $e = 'CONTAINER_CALL_NUMBER_BUCKET_ITEM_NOT_FOUND';
556     $e = 'CONTAINER_BIBLIO_RECORD_ENTRY_BUCKET_ITEM_NOT_FOUND' if $type eq 'biblio';
557     $e = 'CONTAINER_USER_BUCKET_ITEM_NOT_FOUND' if $type eq 'user';
558     $e = 'CONTAINER_COPY_BUCKET_ITEM_NOT_FOUND' if $type eq 'copy';
559
560     $evt = OpenILS::Event->new(
561         $e, itemid => $id, container_type => $type ) unless $bucket;
562
563     return ($bucket, $evt);
564 }
565
566
567 sub fetch_patron_standings {
568     my $self = shift;
569     $logger->debug("Fetching patron standings");    
570     return $self->simplereq(
571         'open-ils.cstore', 
572         'open-ils.cstore.direct.config.standing.search.atomic', { id => { '!=' => undef } });
573 }
574
575
576 sub fetch_permission_group_tree {
577     my $self = shift;
578     $logger->debug("Fetching patron profiles"); 
579     return $self->simplereq(
580         'open-ils.actor', 
581         'open-ils.actor.groups.tree.retrieve' );
582 }
583
584 sub fetch_permission_group_descendants {
585     my( $self, $profile ) = @_;
586     my $group_tree = $self->fetch_permission_group_tree();
587     my $start_here;
588     my @groups;
589
590     # FIXME: okay, so it's not an org tree, but it is compatible
591     $self->walk_org_tree($group_tree, sub {
592         my $g = shift;
593         if ($g->id == $profile) {
594             $start_here = $g;
595         }
596     });
597
598     $self->walk_org_tree($start_here, sub {
599         my $g = shift;
600         push(@groups,$g->id);
601     });
602
603     return \@groups;
604 }
605
606 sub fetch_patron_circ_summary {
607     my( $self, $userid ) = @_;
608     $logger->debug("Fetching patron summary for $userid");
609     my $summary = $self->simplereq(
610         'open-ils.storage', 
611         "open-ils.storage.action.circulation.patron_summary", $userid );
612
613     if( $summary ) {
614         $summary->[0] ||= 0;
615         $summary->[1] ||= 0.0;
616         return $summary;
617     }
618     return undef;
619 }
620
621
622 sub fetch_copy_statuses {
623     my( $self ) = @_;
624     $logger->debug("Fetching copy statuses");
625     return $self->simplereq(
626         'open-ils.cstore', 
627         'open-ils.cstore.direct.config.copy_status.search.atomic', { id => { '!=' => undef } });
628 }
629
630 sub fetch_copy_location {
631     my( $self, $id ) = @_;
632     my $evt;
633     my $cl = $self->cstorereq(
634         'open-ils.cstore.direct.asset.copy_location.retrieve', $id );
635     $evt = OpenILS::Event->new('ASSET_COPY_LOCATION_NOT_FOUND') unless $cl;
636     return ($cl, $evt);
637 }
638
639 sub fetch_copy_locations {
640     my $self = shift; 
641     return $self->simplereq(
642         'open-ils.cstore', 
643         'open-ils.cstore.direct.asset.copy_location.search.atomic', { id => { '!=' => undef } });
644 }
645
646 sub fetch_copy_location_by_name {
647     my( $self, $name, $org ) = @_;
648     my $evt;
649     my $cl = $self->cstorereq(
650         'open-ils.cstore.direct.asset.copy_location.search',
651             { name => $name, owning_lib => $org } );
652     $evt = OpenILS::Event->new('ASSET_COPY_LOCATION_NOT_FOUND') unless $cl;
653     return ($cl, $evt);
654 }
655
656 sub fetch_callnumber {
657     my( $self, $id, $flesh, $e ) = @_;
658
659     $e ||= OpenILS::Utils::CStoreEditor->new;
660
661     my $evt = OpenILS::Event->new( 'ASSET_CALL_NUMBER_NOT_FOUND', id => $id );
662     return( undef, $evt ) unless $id;
663
664     $logger->debug("Fetching callnumber $id");
665
666     my $cn = $e->retrieve_asset_call_number([
667         $id,
668         { flesh => $flesh, flesh_fields => { acn => [ 'prefix', 'suffix', 'label_class' ] } },
669     ]);
670
671     return ( $cn, $e->event );
672 }
673
674 my %ORG_CACHE; # - these rarely change, so cache them..
675 sub fetch_org_unit {
676     my( $self, $id ) = @_;
677     return undef unless $id;
678     return $id if( ref($id) eq 'Fieldmapper::actor::org_unit' );
679     return $ORG_CACHE{$id} if $ORG_CACHE{$id};
680     $logger->debug("Fetching org unit $id");
681     my $evt = undef;
682
683     my $org = $self->simplereq(
684         'open-ils.cstore', 
685         'open-ils.cstore.direct.actor.org_unit.retrieve', $id );
686     $evt = OpenILS::Event->new( 'ACTOR_ORG_UNIT_NOT_FOUND', id => $id ) unless $org;
687     $ORG_CACHE{$id}  = $org;
688
689     return ($org, $evt);
690 }
691
692 sub fetch_stat_cat {
693     my( $self, $type, $id ) = @_;
694     my( $cat, $evt );
695     $logger->debug("Fetching $type stat cat: $id");
696     $cat = $self->simplereq(
697         'open-ils.cstore', 
698         "open-ils.cstore.direct.$type.stat_cat.retrieve", $id );
699
700     my $e = 'ASSET_STAT_CAT_NOT_FOUND';
701     $e = 'ACTOR_STAT_CAT_NOT_FOUND' if $type eq 'actor';
702
703     $evt = OpenILS::Event->new( $e, id => $id ) unless $cat;
704     return ( $cat, $evt );
705 }
706
707 sub fetch_stat_cat_entry {
708     my( $self, $type, $id ) = @_;
709     my( $entry, $evt );
710     $logger->debug("Fetching $type stat cat entry: $id");
711     $entry = $self->simplereq(
712         'open-ils.cstore', 
713         "open-ils.cstore.direct.$type.stat_cat_entry.retrieve", $id );
714
715     my $e = 'ASSET_STAT_CAT_ENTRY_NOT_FOUND';
716     $e = 'ACTOR_STAT_CAT_ENTRY_NOT_FOUND' if $type eq 'actor';
717
718     $evt = OpenILS::Event->new( $e, id => $id ) unless $entry;
719     return ( $entry, $evt );
720 }
721
722 sub fetch_stat_cat_entry_default {
723     my( $self, $type, $id ) = @_;
724     my( $entry_default, $evt );
725     $logger->debug("Fetching $type stat cat entry default: $id");
726     $entry_default = $self->simplereq(
727         'open-ils.cstore', 
728         "open-ils.cstore.direct.$type.stat_cat_entry_default.retrieve", $id );
729
730     my $e = 'ASSET_STAT_CAT_ENTRY_DEFAULT_NOT_FOUND';
731     $e = 'ACTOR_STAT_CAT_ENTRY_DEFAULT_NOT_FOUND' if $type eq 'actor';
732
733     $evt = OpenILS::Event->new( $e, id => $id ) unless $entry_default;
734     return ( $entry_default, $evt );
735 }
736
737 sub fetch_stat_cat_entry_default_by_stat_cat_and_org {
738     my( $self, $type, $stat_cat, $orgId ) = @_;
739     my $entry_default;
740     $logger->info("### Fetching $type stat cat entry default with stat_cat $stat_cat owned by org_unit $orgId");
741     $entry_default = $self->simplereq(
742         'open-ils.cstore', 
743         "open-ils.cstore.direct.$type.stat_cat_entry_default.search.atomic", 
744         { stat_cat => $stat_cat, owner => $orgId } );
745
746     $entry_default = $entry_default->[0];
747     return ($entry_default, undef) if $entry_default;
748
749     my $e = 'ASSET_STAT_CAT_ENTRY_DEFAULT_NOT_FOUND';
750     $e = 'ACTOR_STAT_CAT_ENTRY_DEFAULT_NOT_FOUND' if $type eq 'actor';
751     return (undef, OpenILS::Event->new($e) );
752 }
753
754 sub find_org {
755     my( $self, $org_tree, $orgid )  = @_;
756     return undef unless $org_tree and defined $orgid;
757     return $org_tree if ( $org_tree->id eq $orgid );
758     return undef unless ref($org_tree->children);
759     for my $c (@{$org_tree->children}) {
760         my $o = $self->find_org($c, $orgid);
761         return $o if $o;
762     }
763     return undef;
764 }
765
766 sub fetch_non_cat_type_by_name_and_org {
767     my( $self, $name, $orgId ) = @_;
768     $logger->debug("Fetching non cat type $name at org $orgId");
769     my $types = $self->simplereq(
770         'open-ils.cstore',
771         'open-ils.cstore.direct.config.non_cataloged_type.search.atomic',
772         { name => $name, owning_lib => $orgId } );
773     return ($types->[0], undef) if($types and @$types);
774     return (undef, OpenILS::Event->new('CONFIG_NON_CATALOGED_TYPE_NOT_FOUND') );
775 }
776
777 sub fetch_non_cat_type {
778     my( $self, $id ) = @_;
779     $logger->debug("Fetching non cat type $id");
780     my( $type, $evt );
781     $type = $self->simplereq(
782         'open-ils.cstore', 
783         'open-ils.cstore.direct.config.non_cataloged_type.retrieve', $id );
784     $evt = OpenILS::Event->new('CONFIG_NON_CATALOGED_TYPE_NOT_FOUND') unless $type;
785     return ($type, $evt);
786 }
787
788 sub DB_UPDATE_FAILED { 
789     my( $self, $payload ) = @_;
790     return OpenILS::Event->new('DATABASE_UPDATE_FAILED', 
791         payload => ($payload) ? $payload : undef ); 
792 }
793
794 sub fetch_booking_reservation {
795     my( $self, $id ) = @_;
796     my( $res, $evt );
797
798     $res = $self->simplereq(
799         'open-ils.cstore', 
800         'open-ils.cstore.direct.booking.reservation.retrieve', $id
801     );
802
803     # simplereq doesn't know how to flesh so ...
804     if ($res) {
805         $res->usr(
806             $self->simplereq(
807                 'open-ils.cstore', 
808                 'open-ils.cstore.direct.actor.user.retrieve', $res->usr
809             )
810         );
811
812         $res->target_resource_type(
813             $self->simplereq(
814                 'open-ils.cstore', 
815                 'open-ils.cstore.direct.booking.resource_type.retrieve', $res->target_resource_type
816             )
817         );
818
819         if ($res->current_resource) {
820             $res->current_resource(
821                 $self->simplereq(
822                     'open-ils.cstore', 
823                     'open-ils.cstore.direct.booking.resource.retrieve', $res->current_resource
824                 )
825             );
826
827             if ($self->is_true( $res->target_resource_type->catalog_item )) {
828                 $res->current_resource->catalog_item( $self->fetch_copy_by_barcode( $res->current_resource->barcode ) );
829             }
830         }
831
832         if ($res->target_resource) {
833             $res->target_resource(
834                 $self->simplereq(
835                     'open-ils.cstore', 
836                     'open-ils.cstore.direct.booking.resource.retrieve', $res->target_resource
837                 )
838             );
839
840             if ($self->is_true( $res->target_resource_type->catalog_item )) {
841                 $res->target_resource->catalog_item( $self->fetch_copy_by_barcode( $res->target_resource->barcode ) );
842             }
843         }
844
845     } else {
846         $evt = OpenILS::Event->new('RESERVATION_NOT_FOUND');
847     }
848
849     return ($res, $evt);
850 }
851
852 sub fetch_circ_duration_by_name {
853     my( $self, $name ) = @_;
854     my( $dur, $evt );
855     $dur = $self->simplereq(
856         'open-ils.cstore', 
857         'open-ils.cstore.direct.config.rules.circ_duration.search.atomic', { name => $name } );
858     $dur = $dur->[0];
859     $evt = OpenILS::Event->new('CONFIG_RULES_CIRC_DURATION_NOT_FOUND') unless $dur;
860     return ($dur, $evt);
861 }
862
863 sub fetch_recurring_fine_by_name {
864     my( $self, $name ) = @_;
865     my( $obj, $evt );
866     $obj = $self->simplereq(
867         'open-ils.cstore', 
868         'open-ils.cstore.direct.config.rules.recurring_fine.search.atomic', { name => $name } );
869     $obj = $obj->[0];
870     $evt = OpenILS::Event->new('CONFIG_RULES_RECURRING_FINE_NOT_FOUND') unless $obj;
871     return ($obj, $evt);
872 }
873
874 sub fetch_max_fine_by_name {
875     my( $self, $name ) = @_;
876     my( $obj, $evt );
877     $obj = $self->simplereq(
878         'open-ils.cstore', 
879         'open-ils.cstore.direct.config.rules.max_fine.search.atomic', { name => $name } );
880     $obj = $obj->[0];
881     $evt = OpenILS::Event->new('CONFIG_RULES_MAX_FINE_NOT_FOUND') unless $obj;
882     return ($obj, $evt);
883 }
884
885 sub fetch_hard_due_date_by_name {
886     my( $self, $name ) = @_;
887     my( $obj, $evt );
888     $obj = $self->simplereq(
889         'open-ils.cstore', 
890         'open-ils.cstore.direct.config.hard_due_date.search.atomic', { name => $name } );
891     $obj = $obj->[0];
892     $evt = OpenILS::Event->new('CONFIG_RULES_HARD_DUE_DATE_NOT_FOUND') unless $obj;
893     return ($obj, $evt);
894 }
895
896 sub storagereq {
897     my( $self, $method, @params ) = @_;
898     return $self->simplereq(
899         'open-ils.storage', $method, @params );
900 }
901
902 sub storagereq_xact {
903     my($self, $method, @params) = @_;
904     my $ses = $self->start_db_session();
905     my $val = $ses->request($method, @params)->gather(1);
906     $self->rollback_db_session($ses);
907     return $val;
908 }
909
910 sub cstorereq {
911     my( $self, $method, @params ) = @_;
912     return $self->simplereq(
913         'open-ils.cstore', $method, @params );
914 }
915
916 sub event_equals {
917     my( $self, $e, $name ) =  @_;
918     if( $e and ref($e) eq 'HASH' and 
919         defined($e->{textcode}) and $e->{textcode} eq $name ) {
920         return 1 ;
921     }
922     return 0;
923 }
924
925 sub logmark {
926     my( undef, $f, $l ) = caller(0);
927     my( undef, undef, undef, $s ) = caller(1);
928     $s =~ s/.*:://g;
929     $f =~ s/.*\///g;
930     $logger->debug("LOGMARK: $f:$l:$s");
931 }
932
933 # takes a copy id 
934 sub fetch_open_circulation {
935     my( $self, $cid ) = @_;
936     $self->logmark;
937
938     my $e = OpenILS::Utils::CStoreEditor->new;
939     my $circ = $e->search_action_circulation({
940         target_copy => $cid, 
941         stop_fines_time => undef, 
942         checkin_time => undef
943     })->[0];
944     
945     return ($circ, $e->event);
946 }
947
948 my $copy_statuses;
949 sub copy_status_from_name {
950     my( $self, $name ) = @_;
951     $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
952     for my $status (@$copy_statuses) { 
953         return $status if( $status->name =~ /$name/i );
954     }
955     return undef;
956 }
957
958 sub copy_status_to_name {
959     my( $self, $sid ) = @_;
960     $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
961     for my $status (@$copy_statuses) { 
962         return $status->name if( $status->id == $sid );
963     }
964     return undef;
965 }
966
967
968 sub copy_status {
969     my( $self, $arg ) = @_;
970     return $arg if ref $arg;
971     $copy_statuses = $self->fetch_copy_statuses unless $copy_statuses;
972     my ($stat) = grep { $_->id == $arg } @$copy_statuses;
973     return $stat;
974 }
975
976 sub fetch_open_transit_by_copy {
977     my( $self, $copyid ) = @_;
978     my($transit, $evt);
979     $transit = $self->cstorereq(
980         'open-ils.cstore.direct.action.transit_copy.search',
981         { target_copy => $copyid, dest_recv_time => undef });
982     $evt = OpenILS::Event->new('ACTION_TRANSIT_COPY_NOT_FOUND') unless $transit;
983     return ($transit, $evt);
984 }
985
986 sub unflesh_copy {
987     my( $self, $copy ) = @_;
988     return undef unless $copy;
989     $copy->status( $copy->status->id ) if ref($copy->status);
990     $copy->location( $copy->location->id ) if ref($copy->location);
991     $copy->circ_lib( $copy->circ_lib->id ) if ref($copy->circ_lib);
992     return $copy;
993 }
994
995 sub unflesh_reservation {
996     my( $self, $reservation ) = @_;
997     return undef unless $reservation;
998     $reservation->usr( $reservation->usr->id ) if ref($reservation->usr);
999     $reservation->target_resource_type( $reservation->target_resource_type->id ) if ref($reservation->target_resource_type);
1000     $reservation->target_resource( $reservation->target_resource->id ) if ref($reservation->target_resource);
1001     $reservation->current_resource( $reservation->current_resource->id ) if ref($reservation->current_resource);
1002     return $reservation;
1003 }
1004
1005 # un-fleshes a copy and updates it in the DB
1006 # returns a DB_UPDATE_FAILED event on error
1007 # returns undef on success
1008 sub update_copy {
1009     my( $self, %params ) = @_;
1010
1011     my $copy        = $params{copy} || die "update_copy(): copy required";
1012     my $editor  = $params{editor} || die "update_copy(): copy editor required";
1013     my $session = $params{session};
1014
1015     $logger->debug("Updating copy in the database: " . $copy->id);
1016
1017     $self->unflesh_copy($copy);
1018     $copy->editor( $editor );
1019     $copy->edit_date( 'now' );
1020
1021     my $s;
1022     my $meth = 'open-ils.storage.direct.asset.copy.update';
1023
1024     $s = $session->request( $meth, $copy )->gather(1) if $session;
1025     $s = $self->storagereq( $meth, $copy ) unless $session;
1026
1027     $logger->debug("Update of copy ".$copy->id." returned: $s");
1028
1029     return $self->DB_UPDATE_FAILED($copy) unless $s;
1030     return undef;
1031 }
1032
1033 sub update_reservation {
1034     my( $self, %params ) = @_;
1035
1036     my $reservation = $params{reservation}  || die "update_reservation(): reservation required";
1037     my $editor      = $params{editor} || die "update_reservation(): copy editor required";
1038     my $session     = $params{session};
1039
1040     $logger->debug("Updating copy in the database: " . $reservation->id);
1041
1042     $self->unflesh_reservation($reservation);
1043
1044     my $s;
1045     my $meth = 'open-ils.cstore.direct.booking.reservation.update';
1046
1047     $s = $session->request( $meth, $reservation )->gather(1) if $session;
1048     $s = $self->cstorereq( $meth, $reservation ) unless $session;
1049
1050     $logger->debug("Update of copy ".$reservation->id." returned: $s");
1051
1052     return $self->DB_UPDATE_FAILED($reservation) unless $s;
1053     return undef;
1054 }
1055
1056 sub fetch_billable_xact {
1057     my( $self, $id ) = @_;
1058     my($xact, $evt);
1059     $logger->debug("Fetching billable transaction %id");
1060     $xact = $self->cstorereq(
1061         'open-ils.cstore.direct.money.billable_transaction.retrieve', $id );
1062     $evt = OpenILS::Event->new('MONEY_BILLABLE_TRANSACTION_NOT_FOUND') unless $xact;
1063     return ($xact, $evt);
1064 }
1065
1066 sub fetch_billable_xact_summary {
1067     my( $self, $id ) = @_;
1068     my($xact, $evt);
1069     $logger->debug("Fetching billable transaction summary %id");
1070     $xact = $self->cstorereq(
1071         'open-ils.cstore.direct.money.billable_transaction_summary.retrieve', $id );
1072     $evt = OpenILS::Event->new('MONEY_BILLABLE_TRANSACTION_NOT_FOUND') unless $xact;
1073     return ($xact, $evt);
1074 }
1075
1076 sub fetch_fleshed_copy {
1077     my( $self, $id ) = @_;
1078     my( $copy, $evt );
1079     $logger->info("Fetching fleshed copy $id");
1080     $copy = $self->cstorereq(
1081         "open-ils.cstore.direct.asset.copy.retrieve", $id,
1082         { flesh => 1,
1083           flesh_fields => { acp => [ qw/ circ_lib location status stat_cat_entries / ] }
1084         }
1085     );
1086     $evt = OpenILS::Event->new('ASSET_COPY_NOT_FOUND', id => $id) unless $copy;
1087     return ($copy, $evt);
1088 }
1089
1090
1091 # returns the org that owns the callnumber that the copy
1092 # is attached to
1093 sub fetch_copy_owner {
1094     my( $self, $copyid ) = @_;
1095     my( $copy, $cn, $evt );
1096     $logger->debug("Fetching copy owner $copyid");
1097     ($copy, $evt) = $self->fetch_copy($copyid);
1098     return (undef,$evt) if $evt;
1099     ($cn, $evt) = $self->fetch_callnumber($copy->call_number);
1100     return (undef,$evt) if $evt;
1101     return ($cn->owning_lib);
1102 }
1103
1104 sub fetch_copy_note {
1105     my( $self, $id ) = @_;
1106     my( $note, $evt );
1107     $logger->debug("Fetching copy note $id");
1108     $note = $self->cstorereq(
1109         'open-ils.cstore.direct.asset.copy_note.retrieve', $id );
1110     $evt = OpenILS::Event->new('ASSET_COPY_NOTE_NOT_FOUND', id => $id ) unless $note;
1111     return ($note, $evt);
1112 }
1113
1114 sub fetch_call_numbers_by_title {
1115     my( $self, $titleid ) = @_;
1116     $logger->info("Fetching call numbers by title $titleid");
1117     return $self->cstorereq(
1118         'open-ils.cstore.direct.asset.call_number.search.atomic', 
1119         { record => $titleid, deleted => 'f' });
1120         #'open-ils.storage.direct.asset.call_number.search.record.atomic', $titleid);
1121 }
1122
1123 sub fetch_copies_by_call_number {
1124     my( $self, $cnid ) = @_;
1125     $logger->info("Fetching copies by call number $cnid");
1126     return $self->cstorereq(
1127         'open-ils.cstore.direct.asset.copy.search.atomic', { call_number => $cnid, deleted => 'f' } );
1128         #'open-ils.storage.direct.asset.copy.search.call_number.atomic', $cnid );
1129 }
1130
1131 sub fetch_user_by_barcode {
1132     my( $self, $bc ) = @_;
1133     my $cardid = $self->cstorereq(
1134         'open-ils.cstore.direct.actor.card.id_list', { barcode => $bc } );
1135     return (undef, OpenILS::Event->new('ACTOR_CARD_NOT_FOUND', barcode => $bc)) unless $cardid;
1136     my $user = $self->cstorereq(
1137         'open-ils.cstore.direct.actor.user.search', { card => $cardid } );
1138     return (undef, OpenILS::Event->new('ACTOR_USER_NOT_FOUND', card => $cardid)) unless $user;
1139     return ($user);
1140     
1141 }
1142
1143 sub fetch_bill {
1144     my( $self, $billid ) = @_;
1145     $logger->debug("Fetching billing $billid");
1146     my $bill = $self->cstorereq(
1147         'open-ils.cstore.direct.money.billing.retrieve', $billid );
1148     my $evt = OpenILS::Event->new('MONEY_BILLING_NOT_FOUND') unless $bill;
1149     return($bill, $evt);
1150 }
1151
1152 sub walk_org_tree {
1153     my( $self, $node, $callback ) = @_;
1154     return unless $node;
1155     $callback->($node);
1156     if( $node->children ) {
1157         $self->walk_org_tree($_, $callback) for @{$node->children};
1158     }
1159 }
1160
1161 sub is_true {
1162     my( $self, $item ) = @_;
1163     return 1 if $item and $item !~ /^f$/i;
1164     return 0;
1165 }
1166
1167
1168 sub patientreq {
1169     my ($self, $client, $service, $method, @params) = @_;
1170     my ($response, $err);
1171
1172     my $session = create OpenSRF::AppSession($service);
1173     my $request = $session->request($method, @params);
1174
1175     my $spurt = 10;
1176     my $give_up = time + 1000;
1177
1178     try {
1179         while (time < $give_up) {
1180             $response = $request->recv("timeout" => $spurt);
1181             last if $request->complete;
1182
1183             $client->status(new OpenSRF::DomainObject::oilsContinueStatus);
1184         }
1185     } catch Error with {
1186         $err = shift;
1187     };
1188
1189     if ($err) {
1190         warn "received error : service=$service : method=$method : params=".Dumper(\@params) . "\n $err";
1191         throw $err ("Call to $service for method $method \n failed with exception: $err : " );
1192     }
1193
1194     return $response->content;
1195 }
1196
1197 # This logic now lives in storage
1198 sub __patron_money_owed {
1199     my( $self, $patronid ) = @_;
1200     my $ses = OpenSRF::AppSession->create('open-ils.storage');
1201     my $req = $ses->request(
1202         'open-ils.storage.money.billable_transaction.summary.search',
1203         { usr => $patronid, xact_finish => undef } );
1204
1205     my $total = 0;
1206     my $data;
1207     while( $data = $req->recv ) {
1208         $data = $data->content;
1209         $total += $data->balance_owed;
1210     }
1211     return $total;
1212 }
1213
1214 sub patron_money_owed {
1215     my( $self, $userid ) = @_;
1216     my $ses = $self->start_db_session();
1217     my $val = $ses->request(
1218         'open-ils.storage.actor.user.total_owed', $userid)->gather(1);
1219     $self->rollback_db_session($ses);
1220     return $val;
1221 }
1222
1223 sub patron_total_items_out {
1224     my( $self, $userid ) = @_;
1225     my $ses = $self->start_db_session();
1226     my $val = $ses->request(
1227         'open-ils.storage.actor.user.total_out', $userid)->gather(1);
1228     $self->rollback_db_session($ses);
1229     return $val;
1230 }
1231
1232
1233
1234
1235 #---------------------------------------------------------------------
1236 # Returns  ($summary, $event) 
1237 #---------------------------------------------------------------------
1238 sub fetch_mbts {
1239     my $self = shift;
1240     my $id  = shift;
1241     my $e = shift || OpenILS::Utils::CStoreEditor->new;
1242     $id = $id->id if ref($id);
1243     
1244     my $xact = $e->retrieve_money_billable_transaction_summary($id)
1245         or return (undef, $e->event);
1246
1247     return ($xact);
1248 }
1249
1250
1251 #---------------------------------------------------------------------
1252 # Given a list of money.billable_transaction objects, this creates
1253 # transaction summary objects for each
1254 #--------------------------------------------------------------------
1255 sub make_mbts {
1256     my $self = shift;
1257     my $e = shift;
1258     my @xacts = @_;
1259     return () if (!@xacts);
1260     return @{$e->search_money_billable_transaction_summary({id => [ map { $_->id } @xacts ]})};
1261 }
1262         
1263         
1264 sub ou_ancestor_setting_value {
1265     my($self, $org_id, $name, $e) = @_;
1266     $e = $e || OpenILS::Utils::CStoreEditor->new;
1267     my $set = $self->ou_ancestor_setting($org_id, $name, $e);
1268     return $set->{value} if $set;
1269     return undef;
1270 }
1271
1272
1273 # If an authentication token is provided AND this org unit setting has a
1274 # view_perm, then make sure the user referenced by the auth token has
1275 # that permission.  This means that if you call this method without an
1276 # authtoken param, you can get whatever org unit setting values you want.
1277 # API users beware.
1278 #
1279 # NOTE: If you supply an editor ($e) arg AND an auth token arg, the editor's
1280 # authtoken is checked, but the $auth arg is NOT checked.  To say that another
1281 # way, be sure NOT to pass an editor argument if you want your token checked.
1282 # Otherwise the auth arg is just a flag saying "check the editor".  
1283
1284 sub ou_ancestor_setting {
1285     my( $self, $orgid, $name, $e, $auth ) = @_;
1286     $e = $e || OpenILS::Utils::CStoreEditor->new(
1287         (defined $auth) ? (authtoken => $auth) : ()
1288     );
1289     my $coust = $e->retrieve_config_org_unit_setting_type([
1290         $name, {flesh => 1, flesh_fields => {coust => ['view_perm']}}
1291     ]);
1292
1293     if ($auth && $coust && $coust->view_perm) {
1294         # And you can't have permission if you don't have a valid session.
1295         return undef if not $e->checkauth;
1296         # And now that we know you MIGHT have permission, we check it.
1297         return undef if not $e->allowed($coust->view_perm->code, $orgid);
1298     }
1299
1300     my $query = {from => ['actor.org_unit_ancestor_setting', $name, $orgid]};
1301     my $setting = $e->json_query($query)->[0];
1302     return undef unless $setting;
1303     return {org => $setting->{org_unit}, value => OpenSRF::Utils::JSON->JSON2perl($setting->{value})};
1304 }   
1305         
1306
1307 # returns the ISO8601 string representation of the requested epoch in GMT
1308 sub epoch2ISO8601 {
1309     my( $self, $epoch ) = @_;
1310     my ($sec,$min,$hour,$mday,$mon,$year) = gmtime($epoch);
1311     $year += 1900; $mon += 1;
1312     my $date = sprintf(
1313         '%s-%0.2d-%0.2dT%0.2d:%0.2d:%0.2d-00',
1314         $year, $mon, $mday, $hour, $min, $sec);
1315     return $date;
1316 }
1317             
1318 sub find_highest_perm_org {
1319     my ( $self, $perm, $userid, $start_org, $org_tree ) = @_;
1320     my $org = $self->find_org($org_tree, $start_org );
1321
1322     my $lastid = -1;
1323     while( $org ) {
1324         last if ($self->check_perms( $userid, $org->id, $perm )); # perm failed
1325         $lastid = $org->id;
1326         $org = $self->find_org( $org_tree, $org->parent_ou() );
1327     }
1328
1329     return $lastid;
1330 }
1331
1332
1333 # returns the org_unit ID's 
1334 sub user_has_work_perm_at {
1335     my($self, $e, $perm, $options, $user_id) = @_;
1336     $options ||= {};
1337     $user_id = (defined $user_id) ? $user_id : $e->requestor->id;
1338
1339     my $func = 'permission.usr_has_perm_at';
1340     $func = $func.'_all' if $$options{descendants};
1341
1342     my $orgs = $e->json_query({from => [$func, $user_id, $perm]});
1343     $orgs = [map { $_->{ (keys %$_)[0] } } @$orgs];
1344
1345     return $orgs unless $$options{objects};
1346
1347     return $e->search_actor_org_unit({id => $orgs});
1348 }
1349
1350 sub get_user_work_ou_ids {
1351     my($self, $e, $userid) = @_;
1352     my $work_orgs = $e->json_query({
1353         select => {puwoum => ['work_ou']},
1354         from => 'puwoum',
1355         where => {usr => $e->requestor->id}});
1356
1357     return [] unless @$work_orgs;
1358     my @work_orgs;
1359     push(@work_orgs, $_->{work_ou}) for @$work_orgs;
1360
1361     return \@work_orgs;
1362 }
1363
1364
1365 my $org_types;
1366 sub get_org_types {
1367     my($self, $client) = @_;
1368     return $org_types if $org_types;
1369     return $org_types = OpenILS::Utils::CStoreEditor->new->retrieve_all_actor_org_unit_type();
1370 }
1371
1372 my %ORG_TREE;
1373 sub get_org_tree {
1374     my $self = shift;
1375     my $locale = shift || '';
1376     my $cache = OpenSRF::Utils::Cache->new("global", 0);
1377     my $tree = $ORG_TREE{$locale} || $cache->get_cache("orgtree.$locale");
1378     return $tree if $tree;
1379
1380     my $ses = OpenILS::Utils::CStoreEditor->new;
1381     $ses->session->session_locale($locale);
1382     $tree = $ses->search_actor_org_unit( 
1383         [
1384             {"parent_ou" => undef },
1385             {
1386                 flesh               => -1,
1387                 flesh_fields    => { aou =>  ['children'] },
1388                 order_by            => { aou => 'name'}
1389             }
1390         ]
1391     )->[0];
1392
1393     $ORG_TREE{$locale} = $tree;
1394     $cache->put_cache("orgtree.$locale", $tree);
1395     return $tree;
1396 }
1397
1398 sub get_org_descendants {
1399     my($self, $org_id, $depth) = @_;
1400
1401     my $select = {
1402         transform => 'actor.org_unit_descendants',
1403         column => 'id',
1404         result_field => 'id',
1405     };
1406     $select->{params} = [$depth] if defined $depth;
1407
1408     my $org_list = OpenILS::Utils::CStoreEditor->new->json_query({
1409         select => {aou => [$select]},
1410         from => 'aou',
1411         where => {id => $org_id}
1412     });
1413     my @orgs;
1414     push(@orgs, $_->{id}) for @$org_list;
1415     return \@orgs;
1416 }
1417
1418 sub get_org_ancestors {
1419     my($self, $org_id, $use_cache) = @_;
1420
1421     my ($cache, $orgs);
1422
1423     if ($use_cache) {
1424         $cache = OpenSRF::Utils::Cache->new("global", 0);
1425         $orgs = $cache->get_cache("org.ancestors.$org_id");
1426         return $orgs if $orgs;
1427     }
1428
1429     my $org_list = OpenILS::Utils::CStoreEditor->new->json_query({
1430         select => {
1431             aou => [{
1432                 transform => 'actor.org_unit_ancestors',
1433                 column => 'id',
1434                 result_field => 'id',
1435                 params => []
1436             }],
1437         },
1438         from => 'aou',
1439         where => {id => $org_id}
1440     });
1441
1442     $orgs = [ map { $_->{id} } @$org_list ];
1443
1444     $cache->put_cache("org.ancestors.$org_id", $orgs) if $use_cache;
1445     return $orgs;
1446 }
1447
1448 sub get_org_full_path {
1449     my($self, $org_id, $depth) = @_;
1450
1451     my $query = {
1452         select => {
1453             aou => [{
1454                 transform => 'actor.org_unit_full_path',
1455                 column => 'id',
1456                 result_field => 'id',
1457             }],
1458         },
1459         from => 'aou',
1460         where => {id => $org_id}
1461     };
1462
1463     $query->{select}->{aou}->[0]->{params} = [$depth] if defined $depth;
1464     my $org_list = OpenILS::Utils::CStoreEditor->new->json_query($query);
1465     return [ map {$_->{id}} @$org_list ];
1466 }
1467
1468 # returns the ID of the org unit ancestor at the specified depth
1469 sub org_unit_ancestor_at_depth {
1470     my($class, $org_id, $depth) = @_;
1471     my $resp = OpenILS::Utils::CStoreEditor->new->json_query(
1472         {from => ['actor.org_unit_ancestor_at_depth', $org_id, $depth]})->[0];
1473     return ($resp) ? $resp->{id} : undef;
1474 }
1475
1476 # returns the user's configured locale as a string.  Defaults to en-US if none is configured.
1477 sub get_user_locale {
1478     my($self, $user_id, $e) = @_;
1479     $e ||= OpenILS::Utils::CStoreEditor->new;
1480
1481     # first, see if the user has an explicit locale set
1482     my $setting = $e->search_actor_user_setting(
1483         {usr => $user_id, name => 'global.locale'})->[0];
1484     return OpenSRF::Utils::JSON->JSON2perl($setting->value) if $setting;
1485
1486     my $user = $e->retrieve_actor_user($user_id) or return $e->event;
1487     return $self->get_org_locale($user->home_ou, $e);
1488 }
1489
1490 # returns org locale setting
1491 sub get_org_locale {
1492     my($self, $org_id, $e) = @_;
1493     $e ||= OpenILS::Utils::CStoreEditor->new;
1494
1495     my $locale;
1496     if(defined $org_id) {
1497         $locale = $self->ou_ancestor_setting_value($org_id, 'global.default_locale', $e);
1498         return $locale if $locale;
1499     }
1500
1501     # system-wide default
1502     my $sclient = OpenSRF::Utils::SettingsClient->new;
1503     $locale = $sclient->config_value('default_locale');
1504     return $locale if $locale;
1505
1506     # if nothing else, fallback to locale=cowboy
1507     return 'en-US';
1508 }
1509
1510
1511 # xml-escape non-ascii characters
1512 sub entityize { 
1513     my($self, $string, $form) = @_;
1514     $form ||= "";
1515
1516     # If we're going to convert non-ASCII characters to XML entities,
1517     # we had better be dealing with a UTF8 string to begin with
1518     $string = decode_utf8($string);
1519
1520     if ($form eq 'D') {
1521         $string = NFD($string);
1522     } else {
1523         $string = NFC($string);
1524     }
1525
1526     # Convert raw ampersands to entities
1527     $string =~ s/&(?!\S+;)/&amp;/gso;
1528
1529     # Convert Unicode characters to entities
1530     $string =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
1531
1532     return $string;
1533 }
1534
1535 # x0000-x0008 isn't legal in XML documents
1536 # XXX Perhaps this should just go into our standard entityize method
1537 sub strip_ctrl_chars {
1538     my ($self, $string) = @_;
1539
1540     $string =~ s/([\x{0000}-\x{0008}])//sgoe; 
1541     return $string;
1542 }
1543
1544 sub get_copy_price {
1545     my($self, $e, $copy, $volume) = @_;
1546
1547     $copy->price(0) if $copy->price and $copy->price < 0;
1548
1549     return $copy->price if $copy->price and $copy->price > 0;
1550
1551
1552     my $owner;
1553     if(ref $volume) {
1554         if($volume->id == OILS_PRECAT_CALL_NUMBER) {
1555             $owner = $copy->circ_lib;
1556         } else {
1557             $owner = $volume->owning_lib;
1558         }
1559     } else {
1560         if($copy->call_number == OILS_PRECAT_CALL_NUMBER) {
1561             $owner = $copy->circ_lib;
1562         } else {
1563             $owner = $e->retrieve_asset_call_number($copy->call_number)->owning_lib;
1564         }
1565     }
1566
1567     my $default_price = $self->ou_ancestor_setting_value(
1568         $owner, OILS_SETTING_DEF_ITEM_PRICE, $e) || 0;
1569
1570     return $default_price unless defined $copy->price;
1571
1572     # price is 0.  Use the default?
1573     my $charge_on_0 = $self->ou_ancestor_setting_value(
1574         $owner, OILS_SETTING_CHARGE_LOST_ON_ZERO, $e) || 0;
1575
1576     return $default_price if $charge_on_0;
1577     return 0;
1578 }
1579
1580 # given a transaction ID, this returns the context org_unit for the transaction
1581 sub xact_org {
1582     my($self, $xact_id, $e) = @_;
1583     $e ||= OpenILS::Utils::CStoreEditor->new;
1584     
1585     my $loc = $e->json_query({
1586         "select" => {circ => ["circ_lib"]},
1587         from     => "circ",
1588         "where"  => {id => $xact_id},
1589     });
1590
1591     return $loc->[0]->{circ_lib} if @$loc;
1592
1593     $loc = $e->json_query({
1594         "select" => {bresv => ["request_lib"]},
1595         from     => "bresv",
1596         "where"  => {id => $xact_id},
1597     });
1598
1599     return $loc->[0]->{request_lib} if @$loc;
1600
1601     $loc = $e->json_query({
1602         "select" => {mg => ["billing_location"]},
1603         from     => "mg",
1604         "where"  => {id => $xact_id},
1605     });
1606
1607     return $loc->[0]->{billing_location};
1608 }
1609
1610
1611 sub find_event_def_by_hook {
1612     my($self, $hook, $context_org, $e) = @_;
1613
1614     $e ||= OpenILS::Utils::CStoreEditor->new;
1615
1616     my $orgs = $self->get_org_ancestors($context_org);
1617
1618     # search from the context org up
1619     for my $org_id (reverse @$orgs) {
1620
1621         my $def = $e->search_action_trigger_event_definition(
1622             {hook => $hook, owner => $org_id})->[0];
1623
1624         return $def if $def;
1625     }
1626
1627     return undef;
1628 }
1629
1630
1631
1632 # If an event_def ID is not provided, use the hook and context org to find the 
1633 # most appropriate event.  create the event, fire it, then return the resulting
1634 # event with fleshed template_output and error_output
1635 sub fire_object_event {
1636     my($self, $event_def, $hook, $object, $context_org, $granularity, $user_data, $client) = @_;
1637
1638     my $e = OpenILS::Utils::CStoreEditor->new;
1639     my $def;
1640
1641     my $auto_method = "open-ils.trigger.event.autocreate.by_definition";
1642
1643     if($event_def) {
1644         $def = $e->retrieve_action_trigger_event_definition($event_def)
1645             or return $e->event;
1646
1647         $auto_method .= '.include_inactive';
1648
1649     } else {
1650
1651         # find the most appropriate event def depending on context org
1652         $def = $self->find_event_def_by_hook($hook, $context_org, $e) 
1653             or return $e->event;
1654     }
1655
1656     my $final_resp;
1657
1658     if($def->group_field) {
1659         # we have a list of objects
1660         $object = [$object] unless ref $object eq 'ARRAY';
1661
1662         my @event_ids;
1663         $user_data ||= [];
1664         for my $i (0..$#$object) {
1665             my $obj = $$object[$i];
1666             my $udata = $$user_data[$i];
1667             my $event_id = $self->simplereq(
1668                 'open-ils.trigger', $auto_method, $def->id, $obj, $context_org, $udata);
1669             push(@event_ids, $event_id);
1670         }
1671
1672         $logger->info("EVENTS = " . OpenSRF::Utils::JSON->perl2JSON(\@event_ids));
1673
1674         my $resp;
1675         if (not defined $client) {
1676             $resp = $self->simplereq(
1677                 'open-ils.trigger',
1678                 'open-ils.trigger.event_group.fire',
1679                 \@event_ids);
1680         } else {
1681             $resp = $self->patientreq(
1682                 $client,
1683                 "open-ils.trigger", "open-ils.trigger.event_group.fire",
1684                 \@event_ids
1685             );
1686         }
1687
1688         if($resp and $resp->{events} and @{$resp->{events}}) {
1689
1690             $e->xact_begin;
1691             $final_resp = $e->retrieve_action_trigger_event([
1692                 $resp->{events}->[0]->id,
1693                 {flesh => 1, flesh_fields => {atev => ['template_output', 'error_output']}}
1694             ]);
1695             $e->rollback;
1696         }
1697
1698     } else {
1699
1700         $object = $$object[0] if ref $object eq 'ARRAY';
1701
1702         my $event_id;
1703         my $resp;
1704
1705         if (not defined $client) {
1706             $event_id = $self->simplereq(
1707                 'open-ils.trigger',
1708                 $auto_method, $def->id, $object, $context_org, $user_data
1709             );
1710
1711             $resp = $self->simplereq(
1712                 'open-ils.trigger',
1713                 'open-ils.trigger.event.fire',
1714                 $event_id
1715             );
1716         } else {
1717             $event_id = $self->patientreq(
1718                 $client,
1719                 'open-ils.trigger',
1720                 $auto_method, $def->id, $object, $context_org, $user_data
1721             );
1722
1723             $resp = $self->patientreq(
1724                 $client,
1725                 'open-ils.trigger',
1726                 'open-ils.trigger.event.fire',
1727                 $event_id
1728             );
1729         }
1730         
1731         if($resp and $resp->{event}) {
1732             $e->xact_begin;
1733             $final_resp = $e->retrieve_action_trigger_event([
1734                 $resp->{event}->id,
1735                 {flesh => 1, flesh_fields => {atev => ['template_output', 'error_output']}}
1736             ]);
1737             $e->rollback;
1738         }
1739     }
1740
1741     return $final_resp;
1742 }
1743
1744
1745 sub create_events_for_hook {
1746     my($self, $hook, $obj, $org_id, $granularity, $user_data, $wait) = @_;
1747     my $ses = OpenSRF::AppSession->create('open-ils.trigger');
1748     my $req = $ses->request('open-ils.trigger.event.autocreate', 
1749         $hook, $obj, $org_id, $granularity, $user_data);
1750     return undef unless $wait;
1751     my $resp = $req->recv;
1752     return $resp->content if $resp;
1753 }
1754
1755 sub create_uuid_string {
1756     return create_UUID_as_string();
1757 }
1758
1759 sub create_circ_chain_summary {
1760     my($class, $e, $circ_id) = @_;
1761     my $sum = $e->json_query({from => ['action.summarize_circ_chain', $circ_id]})->[0];
1762     return undef unless $sum;
1763     my $obj = Fieldmapper::action::circ_chain_summary->new;
1764     $obj->$_($sum->{$_}) for keys %$sum;
1765     return $obj;
1766 }
1767
1768
1769 # Returns "mra" attribute key/value pairs for a set of bre's
1770 # Takes a list of bre IDs, returns a hash of hashes,
1771 # {bre_id1 => {key1 => {code => value1, label => label1}, ...}...}
1772 my $ccvm_cache;
1773 sub get_bre_attrs {
1774     my ($class, $bre_ids, $e) = @_;
1775     $e = $e || OpenILS::Utils::CStoreEditor->new;
1776
1777     my $attrs = {};
1778     return $attrs unless defined $bre_ids;
1779     $bre_ids = [$bre_ids] unless ref $bre_ids;
1780
1781     my $mra = $e->json_query({
1782         select => {
1783             mra => [
1784                 {
1785                     column => 'id',
1786                     alias => 'bre'
1787                 }, {
1788                     column => 'attrs',
1789                     transform => 'each',
1790                     result_field => 'key',
1791                     alias => 'key'
1792                 },{
1793                     column => 'attrs',
1794                     transform => 'each',
1795                     result_field => 'value',
1796                     alias => 'value'
1797                 }
1798             ]
1799         },
1800         from => 'mra',
1801         where => {id => $bre_ids}
1802     });
1803
1804     return $attrs unless $mra;
1805
1806     $ccvm_cache = $ccvm_cache || $e->search_config_coded_value_map({id => {'!=' => undef}});
1807
1808     for my $id (@$bre_ids) {
1809         $attrs->{$id} = {};
1810         for my $mra (grep { $_->{bre} eq $id } @$mra) {
1811             my $ctype = $mra->{key};
1812             my $code = $mra->{value};
1813             $attrs->{$id}->{$ctype} = {code => $code};
1814             if($code) {
1815                 my ($ccvm) = grep { $_->ctype eq $ctype and $_->code eq $code } @$ccvm_cache;
1816                 $attrs->{$id}->{$ctype}->{label} = $ccvm->value if $ccvm;
1817             }
1818         }
1819     }
1820
1821     return $attrs;
1822 }
1823
1824 # Shorter version of bib_container_items_via_search() below, only using
1825 # the queryparser record_list filter instead of the container filter.
1826 sub bib_record_list_via_search {
1827     my ($class, $search_query, $search_args) = @_;
1828
1829     # First, Use search API to get container items sorted in any way that crad
1830     # sorters support.
1831     my $search_result = $class->simplereq(
1832         "open-ils.search", "open-ils.search.biblio.multiclass.query",
1833         $search_args, $search_query
1834     );
1835
1836     unless ($search_result) {
1837         # empty result sets won't cause this, but actual errors should.
1838         $logger->warn("bib_record_list_via_search() got nothing from search");
1839         return;
1840     }
1841
1842     # Throw away other junk from search, keeping only bib IDs.
1843     return [ map { pop @$_ } @{$search_result->{ids}} ];
1844 }
1845
1846 # 'no_flesh' avoids fleshing the target_biblio_record_entry
1847 sub bib_container_items_via_search {
1848     my ($class, $container_id, $search_query, $search_args, $no_flesh) = @_;
1849
1850     # First, Use search API to get container items sorted in any way that crad
1851     # sorters support.
1852     my $search_result = $class->simplereq(
1853         "open-ils.search", "open-ils.search.biblio.multiclass.query",
1854         $search_args, $search_query
1855     );
1856     unless ($search_result) {
1857         # empty result sets won't cause this, but actual errors should.
1858         $logger->warn("bib_container_items_via_search() got nothing from search");
1859         return;
1860     }
1861
1862     # Throw away other junk from search, keeping only bib IDs.
1863     my $id_list = [ map { pop @$_ } @{$search_result->{ids}} ];
1864
1865     return [] unless @$id_list;
1866
1867     # Now get the bib container items themselves...
1868     my $e = new OpenILS::Utils::CStoreEditor;
1869     unless ($e) {
1870         $logger->warn("bib_container_items_via_search() couldn't get cstoreeditor");
1871         return;
1872     }
1873
1874     my @flesh_fields = qw/notes/;
1875     push(@flesh_fields, 'target_biblio_record_entry') unless $no_flesh;
1876
1877     my $items = $e->search_container_biblio_record_entry_bucket_item([
1878         {
1879             "target_biblio_record_entry" => $id_list,
1880             "bucket" => $container_id
1881         }, {
1882             flesh => 1,
1883             flesh_fields => {"cbrebi" => \@flesh_fields}
1884         }
1885     ], {substream => 1});
1886
1887     unless ($items) {
1888         $logger->warn(
1889             "bib_container_items_via_search() couldn't get bucket items: " .
1890             $e->die_event->{textcode}
1891         );
1892         return;
1893     }
1894
1895     # ... and put them in the same order that the search API said they
1896     # should be in.
1897     my %ordering_hash = map { 
1898         ($no_flesh) ? $_->target_biblio_record_entry : $_->target_biblio_record_entry->id, 
1899         $_ 
1900     } @$items;
1901
1902     return [map { $ordering_hash{$_} } @$id_list];
1903 }
1904
1905 # returns undef on success, Event on error
1906 sub log_user_activity {
1907     my ($class, $user_id, $who, $what, $e, $async) = @_;
1908
1909     my $commit = 0;
1910     if (!$e) {
1911         $e = OpenILS::Utils::CStoreEditor->new(xact => 1);
1912         $commit = 1;
1913     }
1914
1915     my $res = $e->json_query({
1916         from => [
1917             'actor.insert_usr_activity', 
1918             $user_id, $who, $what, OpenSRF::AppSession->ingress
1919         ]
1920     });
1921
1922     if ($res) { # call returned OK
1923
1924         $e->commit   if $commit and @$res;
1925         $e->rollback if $commit and !@$res;
1926
1927     } else {
1928         return $e->die_event;
1929     }
1930
1931     return undef;
1932 }
1933
1934 # I hate to put this here exactly, but this code needs to be shared between
1935 # the TPAC's mod_perl module and open-ils.serial.
1936 #
1937 # There is a reason every part of the query *except* those parts dealing
1938 # with scope are moved here from the code's origin in TPAC.  The serials
1939 # use case does *not* want the same scoping logic.
1940 #
1941 # Also, note that for the serials uses case, we may filter in OPAC visible
1942 # status and copy/call_number deletedness, but we don't filter on any
1943 # particular values for serial.item.status or serial.item.date_received.
1944 # Since we're only using this *after* winnowing down the set of issuances
1945 # that copies should be related to, I'm not sure we need any such serial.item
1946 # filters.
1947
1948 sub basic_opac_copy_query {
1949     ######################################################################
1950     # Pass a defined value for either $rec_id OR ($iss_id AND $dist_id), #
1951     # not both.                                                          #
1952     ######################################################################
1953     my ($self,$rec_id,$iss_id,$dist_id,$copy_limit,$copy_offset,$staff) = @_;
1954
1955     return {
1956         select => {
1957             acp => ['id', 'barcode', 'circ_lib', 'create_date',
1958                     'age_protect', 'holdable', 'copy_number'],
1959             acpl => [
1960                 {column => 'name', alias => 'copy_location'},
1961                 {column => 'holdable', alias => 'location_holdable'}
1962             ],
1963             ccs => [
1964                 {column => 'name', alias => 'copy_status'},
1965                 {column => 'holdable', alias => 'status_holdable'}
1966             ],
1967             acn => [
1968                 {column => 'label', alias => 'call_number_label'},
1969                 {column => 'id', alias => 'call_number'}
1970             ],
1971             circ => ['due_date'],
1972             acnp => [
1973                 {column => 'label', alias => 'call_number_prefix_label'},
1974                 {column => 'id', alias => 'call_number_prefix'}
1975             ],
1976             acns => [
1977                 {column => 'label', alias => 'call_number_suffix_label'},
1978                 {column => 'id', alias => 'call_number_suffix'}
1979             ],
1980             bmp => [
1981                 {column => 'label', alias => 'part_label'},
1982             ],
1983             ($iss_id ? (sitem => ["issuance"]) : ())
1984         },
1985
1986         from => {
1987             acp => {
1988                 ($iss_id ? (
1989                     sitem => {
1990                         fkey => 'id',
1991                         field => 'unit',
1992                         filter => {issuance => $iss_id},
1993                         join => {
1994                             sstr => { }
1995                         }
1996                     }
1997                 ) : ()),
1998                 acn => {
1999                     join => {
2000                         acnp => { fkey => 'prefix' },
2001                         acns => { fkey => 'suffix' }
2002                     },
2003                     filter => [
2004                         {deleted => 'f'},
2005                         ($rec_id ? {record => $rec_id} : ())
2006                     ],
2007                 },
2008                 circ => { # If the copy is circulating, retrieve the open circ
2009                     type => 'left',
2010                     filter => {checkin_time => undef}
2011                 },
2012                 acpl => {
2013                     ($staff ? () : (filter => { opac_visible => 't' }))
2014                 },
2015                 ccs => {
2016                     ($staff ? () : (filter => { opac_visible => 't' }))
2017                 },
2018                 aou => {},
2019                 acpm => {
2020                     type => 'left',
2021                     join => {
2022                         bmp => { type => 'left' }
2023                     }
2024                 }
2025             }
2026         },
2027
2028         where => {
2029             '+acp' => {
2030                 deleted => 'f',
2031                 ($staff ? () : (opac_visible => 't'))
2032             },
2033             ($dist_id ? ( '+sstr' => { distribution => $dist_id } ) : ()),
2034             ($staff ? () : ( '+aou' => { opac_visible => 't' } ))
2035         },
2036
2037         order_by => [
2038             {class => 'aou', field => 'name'},
2039             {class => 'acn', field => 'label_sortkey'},
2040             {class => 'acp', field => 'copy_number'}
2041         ],
2042
2043         limit => $copy_limit,
2044         offset => $copy_offset
2045     };
2046 }
2047
2048 # Compare two dates, date1 and date2. If date2 is not defined, then
2049 # DateTime->now will be used. Assumes dates are in ISO8601 format as
2050 # supported by DateTime::Format::ISO8601. (A future enhancement might
2051 # be to support other formats.)
2052 #
2053 # Returns -1 if $date1 < $date2
2054 # Returns 0 if $date1 == $date2
2055 # Returns 1 if $date1 > $date2
2056 sub datecmp {
2057     my $self = shift;
2058     my $date1 = shift;
2059     my $date2 = shift;
2060
2061     # Check for timezone offsets and limit them to 2 digits:
2062     if ($date1 && $date1 =~ /(?:-|\+)\d\d\d\d$/) {
2063         $date1 = substr($date1, 0, length($date1) - 2);
2064     }
2065     if ($date2 && $date2 =~ /(?:-|\+)\d\d\d\d$/) {
2066         $date2 = substr($date2, 0, length($date2) - 2);
2067     }
2068
2069     # check date1:
2070     unless (UNIVERSAL::isa($date1, "DateTime")) {
2071         $date1 = DateTime::Format::ISO8601->parse_datetime($date1);
2072     }
2073
2074     # Check for date2:
2075     unless ($date2) {
2076         $date2 = DateTime->now;
2077     } else {
2078         unless (UNIVERSAL::isa($date2, "DateTime")) {
2079             $date2 = DateTime::Format::ISO8601->parse_datetime($date2);
2080         }
2081     }
2082
2083     return DateTime->compare($date1, $date2);
2084 }
2085
2086
2087 # marcdoc is an XML::LibXML document
2088 # updates the doc and returns the entityized MARC string
2089 sub strip_marc_fields {
2090     my ($class, $e, $marcdoc, $grps) = @_;
2091     
2092     my $orgs = $class->get_org_ancestors($e->requestor->ws_ou);
2093
2094     my $query = {
2095         select  => {vibtf => ['field']},
2096         from    => {vibtf => 'vibtg'},
2097         where   => {'+vibtg' => {owner => $orgs}},
2098         distinct => 1
2099     };
2100
2101     # give me always-apply groups plus any selected groups
2102     if ($grps and @$grps) {
2103         $query->{where}->{'+vibtg'}->{'-or'} = [
2104             {id => $grps},
2105             {always_apply => 't'}
2106         ];
2107
2108     } else {
2109         $query->{where}->{'+vibtg'}->{always_apply} = 't';
2110     }
2111
2112     my $fields = $e->json_query($query);
2113
2114     for my $field (@$fields) {
2115         my $tag = $field->{field};
2116         for my $node ($marcdoc->findnodes('//*[@tag="'.$tag.'"]')) {
2117             $node->parentNode->removeChild($node);
2118         }
2119     }
2120
2121     return $class->entityize($marcdoc->documentElement->toString);
2122 }
2123
2124 # Given a list of PostgreSQL arrays of numbers,
2125 # unnest the numbers and return a unique set, skipping any list elements
2126 # that are just '{NULL}'.
2127 sub unique_unnested_numbers {
2128     my $class = shift;
2129
2130     no warnings 'numeric';
2131
2132     return uniq(
2133         map(
2134             int,
2135             map { $_ eq 'NULL' ? undef : (split /,/, $_) }
2136                 map { substr($_, 1, -1) } @_
2137         )
2138     );
2139 }
2140
2141 # Check if a transaction should be left open or closed. Close the
2142 # transaction if it should be closed or open it otherwise. Returns
2143 # undef on success or a failure event.
2144 sub check_open_xact {
2145     my( $self, $editor, $xactid, $xact ) = @_;
2146
2147     # Grab the transaction
2148     $xact ||= $editor->retrieve_money_billable_transaction($xactid);
2149     return $editor->event unless $xact;
2150     $xactid ||= $xact->id;
2151
2152     # grab the summary and see how much is owed on this transaction
2153     my ($summary) = $self->fetch_mbts($xactid, $editor);
2154
2155     # grab the circulation if it is a circ;
2156     my $circ = $editor->retrieve_action_circulation($xactid);
2157
2158     # If nothing is owed on the transaction but it is still open
2159     # and this transaction is not an open circulation, close it
2160     if(
2161         ( $summary->balance_owed == 0 and ! $xact->xact_finish ) and
2162         ( !$circ or $circ->stop_fines )) {
2163
2164         $logger->info("closing transaction ".$xact->id. ' because balance_owed == 0');
2165         $xact->xact_finish('now');
2166         $editor->update_money_billable_transaction($xact)
2167             or return $editor->event;
2168         return undef;
2169     }
2170
2171     # If money is owed or a refund is due on the xact and xact_finish
2172     # is set, clear it (to reopen the xact) and update
2173     if( $summary->balance_owed != 0 and $xact->xact_finish ) {
2174         $logger->info("re-opening transaction ".$xact->id. ' because balance_owed != 0');
2175         $xact->clear_xact_finish;
2176         $editor->update_money_billable_transaction($xact)
2177             or return $editor->event;
2178         return undef;
2179     }
2180     return undef;
2181 }
2182
2183 1;
2184