]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Circ/ScriptBuilder.pm
added some sanity checks, moved patron error event checks to end of script builder...
[working/Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Circ / ScriptBuilder.pm
1 package OpenILS::Application::Circ::ScriptBuilder;
2 use strict; use warnings;
3 use OpenILS::Utils::ScriptRunner;
4 use OpenILS::Utils::CStoreEditor qw/:funcs/;
5 use OpenILS::Application::AppUtils;
6 use OpenILS::Application::Actor;
7 use OpenSRF::Utils::Logger qw/$logger/;
8 use OpenILS::Application::Circ::Holds;
9 use DateTime::Format::ISO8601;
10 use OpenSRF::Utils qw/:datetime/;
11 use Scalar::Util qw/weaken/;
12 my $U = "OpenILS::Application::AppUtils";
13 use Data::Dumper;
14
15 my $holdcode = "OpenILS::Application::Circ::Holds";
16
17 my $evt = "environment";
18 my %GROUP_SET;
19 my $GROUP_TREE;
20 my $ORG_TREE;
21 my @ORG_LIST;
22 my @OU_TYPES;
23
24
25 # -----------------------------------------------------------------------
26 # Possible Args:
27 #  copy
28 #  copy_id
29 #  copy_barcode
30 #
31 #  patron
32 #  patron_id
33 #  patron_barcode
34 #
35 #  fetch_patron_circ_info - load info on items out, overdues, and fines.
36 #
37 #  _direct - this is a hash of key/value pairs to shove directly into the 
38 #  script runner.  Use this to cover data not covered by this module
39 # -----------------------------------------------------------------------
40 sub build {
41         my( $class, $args ) = @_;
42
43         my $evt;
44         my @evts;
45
46         my $editor = $$args{editor} || new_editor(xact => 1);
47
48         $args->{_direct} = {} unless $args->{_direct};
49         $args->{editor} = $editor;
50         
51         $evt = fetch_bib_data($editor, $args);
52         push(@evts, $evt) if $evt;
53         $evt = fetch_user_data($editor, $args);
54         push(@evts, $evt) if $evt;
55
56         if(@evts) {
57                 my @e;
58                 push( @e, $_->{textcode} ) for @evts;
59                 $logger->info("script_builder: some events occurred: @e");
60                 $logger->debug("script_builder: some events occurred: " . Dumper(\@evts));
61                 $args->{_events} = \@evts;
62         }
63
64         return build_runner($editor, $args);
65 }
66
67
68 sub build_runner {
69         my $editor      = shift;
70         my $ctx         = shift;
71
72         my $runner = OpenILS::Utils::ScriptRunner->new;
73
74         my $gt = $GROUP_TREE;
75         $runner->insert( "$evt.groupTree",      $gt, 1);
76
77
78         $runner->insert( "$evt.patron",         $ctx->{patron}, 1);
79         $runner->insert( "$evt.copy",                   $ctx->{copy}, 1);
80         $runner->insert( "$evt.volume",         $ctx->{volume}, 1);
81         $runner->insert( "$evt.title",          $ctx->{title}, 1);
82
83         if( ref $ctx->{requestor} ) {
84                 $runner->insert( "$evt.requestor",      $ctx->{requestor}, 1);
85                 if($ctx->{requestor}->ws_ou) {
86                         $runner->insert( "$evt.location",       
87                                 $editor->retrieve_actor_org_unit($ctx->{requestor}->ws_ou), 1);
88                 }
89         }
90
91         $runner->insert( "$evt.patronItemsOut", $ctx->{patronItemsOut}, 1 );
92         $runner->insert( "$evt.patronOverdueCount", $ctx->{patronOverdue}, 1 );
93         $runner->insert( "$evt.patronFines", $ctx->{patronFines}, 1 );
94
95         $runner->insert("$evt.$_", $ctx->{_direct}->{$_}, 1) for keys %{$ctx->{_direct}};
96
97         insert_org_methods( $editor, $runner );
98         insert_copy_methods( $editor, $ctx, $runner );
99
100         return $runner;
101 }
102
103 sub fetch_bib_data {
104         my $e = shift;
105         my $ctx = shift;
106
107         if(!$ctx->{copy}) {
108
109                 my $flesh = { flesh => 1, flesh_fields => { acp => [ 'location', 'status', 'circ_lib' ] } };
110
111                 if($ctx->{copy_id}) {
112                         $ctx->{copy} = $e->retrieve_asset_copy(
113                                 [$ctx->{copy_id}, $flesh ]) or return $e->event;
114
115                 } elsif( $ctx->{copy_barcode} ) {
116
117                         $ctx->{copy} = $e->search_asset_copy(
118                                 [{barcode => $ctx->{copy_barcode}, deleted => 'f'}, $flesh ])->[0]
119                                 or return $e->event;
120                 }
121         }
122
123         return undef unless my $copy = $ctx->{copy};
124
125         $copy->location($e->retrieve_asset_copy_location($copy->location))
126                 unless( ref $copy->location );
127
128         $copy->status($e->retrieve_config_copy_status($copy->status))
129                 unless( ref $copy->status );
130
131         $copy->circ_lib( 
132                 $e->retrieve_actor_org_unit($copy->circ_lib)) 
133                 unless ref $copy->circ_lib;
134
135         $ctx->{volume} = $e->retrieve_asset_call_number(
136                 $ctx->{copy}->call_number) or return $e->event;
137
138         $ctx->{title} = $e->retrieve_biblio_record_entry(
139                 $ctx->{volume}->record) or return $e->event;
140
141         $copy->age_protect(
142                 $e->retrieve_config_rules_age_hold_protect($copy->age_protect))
143                 if $ctx->{flesh_age_protect} and $copy->age_protect;
144
145         return undef;
146 }
147
148
149
150 sub fetch_user_data {
151         my( $e, $ctx ) = @_;
152         
153         if(!$ctx->{patron}) {
154
155                 if( $ctx->{patron_id} ) {
156                         $ctx->{patron} = $e->retrieve_actor_user($ctx->{patron_id});
157
158                 } elsif( $ctx->{patron_barcode} ) {
159
160                         my $card = $e->search_actor_card( 
161                                 { barcode => $ctx->{patron_barcode} } )->[0] or return $e->event;
162
163                         $ctx->{patron} = $e->search_actor_user( 
164                                 { card => $card->id })->[0] or return $e->event;
165
166                 } elsif( $ctx->{fetch_patron_by_circ_copy} ) {
167
168                         if( my $copy = $ctx->{copy} ) {
169                                 my $circs = $e->search_action_circulation(
170                                         { target_copy => $copy->id, checkin_time => undef });
171
172                                 if( my $circ = $circs->[0] ) {
173                                         $ctx->{patron} = $e->retrieve_actor_user($circ->usr)
174                                                 or return $e->event;
175                                 }
176                         }
177                 }
178         }
179
180         return undef unless my $patron = $ctx->{patron};
181
182         $patron->home_ou( 
183                 $e->retrieve_actor_org_unit($patron->home_ou) ) 
184                 unless ref $patron->home_ou;
185
186         $patron->home_ou->ou_type(
187                 $patron->home_ou->ou_type->id) 
188                 if ref $patron->home_ou->ou_type;
189
190         if(!%GROUP_SET) {
191                 $GROUP_TREE = $e->search_permission_grp_tree(
192                         [
193                                 { parent => undef }, 
194                                 { 
195                                         flesh => 100,
196                                         flesh_fields => { pgt => ['children'] }
197                                 } 
198                         ]
199                 )->[0];
200
201                 flatten_groups($GROUP_TREE);
202         }
203
204         $patron->profile( $GROUP_SET{$patron->profile} )
205                 unless ref $patron->profile;
206
207
208         $ctx->{requestor} = $ctx->{requestor} || $e->requestor;
209
210         if( $ctx->{fetch_patron_circ_info} ) {
211                 my $circ_counts = 
212                         OpenILS::Application::Actor::_checked_out(1, $e, $patron->id);
213
214                 $ctx->{patronOverdue} = $circ_counts->{overdue} || 0;
215                 $ctx->{patronItemsOut} = $ctx->{patronOverdue} + $circ_counts->{out};
216                 $logger->debug("script_builder: patron overdue count is " . $ctx->{patronOverdue});
217         }
218
219         if( $ctx->{fetch_patron_money_info} ) {
220                 $ctx->{patronFines} = $U->patron_money_owed($patron->id);
221                 $logger->debug("script_builder: patron fines determined to be ".$ctx->{patronFines});
222         }
223
224         unless( $ctx->{ignore_user_status} ) {
225                 return OpenILS::Event->new('PATRON_INACTIVE')
226                         unless $U->is_true($patron->active);
227         
228                 $patron->card($e->retrieve_actor_card($patron->card))
229                         unless ref $patron->card;
230         
231                 return OpenILS::Event->new('PATRON_CARD_INACTIVE')
232                         unless $U->is_true($patron->card->active);
233         
234                 my $expire = DateTime::Format::ISO8601->new->parse_datetime(
235                         clense_ISO8601($patron->expire_date));
236         
237                 return OpenILS::Event->new('PATRON_ACCOUNT_EXPIRED')
238                         if( CORE::time > $expire->epoch ) ;
239         }
240
241         return undef;
242 }
243
244
245 sub flatten_groups {
246         my $tree = shift;
247         return undef unless $tree;
248         $GROUP_SET{$tree->id} = $tree;
249         if( $tree->children ) {
250                 flatten_groups($_) for @{$tree->children};
251         }
252 }
253
254 sub flatten_org_tree {
255         my $tree = shift;
256         return undef unless $tree;
257         push( @ORG_LIST, $tree );
258         if( $tree->children ) {
259                 flatten_org_tree($_) for @{$tree->children};
260         }
261 }
262
263
264
265 sub insert_org_methods {
266         my ( $editor, $runner ) = @_;
267
268         if(!$ORG_TREE) {
269                 $ORG_TREE = $editor->search_actor_org_unit(
270                         [
271                                 {"parent_ou" => undef },
272                                 {
273                                         flesh                           => 2,
274                                         flesh_fields    => { aou =>  ['children'] },
275                                         order_by                        => { aou => 'name'}
276                                 }
277                         ]
278                 )->[0];
279                 flatten_org_tree($ORG_TREE);
280         }
281
282         my $r = $runner;
283         weaken($r);
284
285         $r->insert(__OILS_FUNC_isOrgDescendent  => 
286                 sub {
287                         my( $write_key, $sname, $id ) = @_;
288                         my ($parent)    = grep { $_->shortname eq $sname } @ORG_LIST;
289                         my ($child)             = grep { $_->id == $id } @ORG_LIST;
290                         my $val = is_org_descendent( $parent, $child );
291                         $logger->debug("script_builder: is_org_desc returned val $val, writing to $write_key");
292                         $r->insert($write_key, $val, 1) if $val;
293                         return $val;
294                 }
295         );
296
297         $r->insert(__OILS_FUNC_hasCommonAncestor  => 
298                 sub {
299                         my( $write_key, $orgid1, $orgid2, $depth ) = @_;
300                         my $val = has_common_ancestor( $orgid1, $orgid2, $depth );
301                         $logger->debug("script_builder: has_common_ancestor resturned $val");
302                         $r->insert($write_key, $val, 1) if $val;
303                         return $val;
304                 }
305         );
306 }
307
308
309 sub is_org_descendent {
310         my( $parent, $child ) = @_;
311         return 0 unless $parent and $child;
312         $logger->debug("script_builder: is_org_desc checking parent=".$parent->id.", child=".$child->id);
313         do {
314                 return 0 unless defined $child->parent_ou;
315                 return 1 if $parent->id == $child->id;
316         } while( ($child) = grep { $_->id == $child->parent_ou } @ORG_LIST );
317         return 0;
318 }
319
320 sub has_common_ancestor {
321         my( $org1, $org2, $depth ) = @_;
322         return 0 unless $org1 and $org2;
323         $logger->debug("script_builder: has_common_ancestor checking orgs $org1 : $org2");
324
325         return 1 if $org1 == $org2;
326         ($org1) = grep { $_->id == $org1 } @ORG_LIST;
327         ($org2) = grep { $_->id == $org2 } @ORG_LIST;
328
329         my $p1 = find_parent_at_depth($org1, $depth);
330         my $p2 = find_parent_at_depth($org2, $depth);
331
332         return 1 if $p1->id == $p2->id;
333         return 0;
334 }
335
336
337 sub find_parent_at_depth {
338         my $org = shift;
339         my $depth = shift;
340         return undef unless $org and $depth;
341         fetch_ou_types();
342         do {
343                 my ($t) = grep { $_->id == $org->ou_type } @OU_TYPES;
344                 return $org if $t->depth == $depth;
345         } while( ($org) = grep { $_->id == $org->parent_ou } @ORG_LIST );
346         return undef;   
347 }
348
349
350 sub fetch_ou_types {
351         return if @OU_TYPES;
352         @OU_TYPES = @{new_editor()->retrieve_all_actor_org_unit_type()};
353 }
354
355 sub insert_copy_methods {
356         my( $e, $ctx,  $runner ) = @_;
357         if( my $copy = $ctx->{copy} ) {
358                 $runner->insert_method( 'environment.copy', '__OILS_FUNC_fetch_best_hold', sub {
359                                 my $key = shift;
360                                 $logger->debug("script_builder: searching for permitted hold for copy ".$copy->barcode);
361                                 my ($hold) = $holdcode->find_nearest_permitted_hold(
362                                         OpenSRF::AppSession->create('open-ils.storage'), $copy, $e->requestor );
363                                 $runner->insert( $key, $hold, 1 );
364                         }
365                 );
366         }
367 }
368
369
370
371
372
373 1;