]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Circ/ScriptBuilder.pm
added some sanity checks to prevent re-fetching objects and logging warnings because...
[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         if( ref $copy->call_number ) {
136                 $ctx->{volume} = $copy->call_number;
137         } else {
138                 $ctx->{volume} = $e->retrieve_asset_call_number(
139                         $copy->call_number) or return $e->event;
140         }
141
142         if( ref $ctx->{volume}->record ) {
143                 $ctx->{title} = $ctx->{volume}->record;
144         } else {
145                 $ctx->{title} = $e->retrieve_biblio_record_entry(
146                         $ctx->{volume}->record) or return $e->event;
147         }
148
149         $copy->age_protect(
150                 $e->retrieve_config_rules_age_hold_protect($copy->age_protect))
151                 if $ctx->{flesh_age_protect} and $copy->age_protect;
152
153         return undef;
154 }
155
156
157
158 sub fetch_user_data {
159         my( $e, $ctx ) = @_;
160         
161         if(!$ctx->{patron}) {
162
163                 if( $ctx->{patron_id} ) {
164                         $ctx->{patron} = $e->retrieve_actor_user($ctx->{patron_id});
165
166                 } elsif( $ctx->{patron_barcode} ) {
167
168                         my $card = $e->search_actor_card( 
169                                 { barcode => $ctx->{patron_barcode} } )->[0] or return $e->event;
170
171                         $ctx->{patron} = $e->search_actor_user( 
172                                 { card => $card->id })->[0] or return $e->event;
173
174                 } elsif( $ctx->{fetch_patron_by_circ_copy} ) {
175
176                         if( my $copy = $ctx->{copy} ) {
177                                 my $circs = $e->search_action_circulation(
178                                         { target_copy => $copy->id, checkin_time => undef });
179
180                                 if( my $circ = $circs->[0] ) {
181                                         $ctx->{patron} = $e->retrieve_actor_user($circ->usr)
182                                                 or return $e->event;
183                                 }
184                         }
185                 }
186         }
187
188         return undef unless my $patron = $ctx->{patron};
189
190         $patron->home_ou( 
191                 $e->retrieve_actor_org_unit($patron->home_ou) ) 
192                 unless ref $patron->home_ou;
193
194         $patron->home_ou->ou_type(
195                 $patron->home_ou->ou_type->id) 
196                 if ref $patron->home_ou->ou_type;
197
198         if(!%GROUP_SET) {
199                 $GROUP_TREE = $e->search_permission_grp_tree(
200                         [
201                                 { parent => undef }, 
202                                 { 
203                                         flesh => 100,
204                                         flesh_fields => { pgt => ['children'] }
205                                 } 
206                         ]
207                 )->[0];
208
209                 flatten_groups($GROUP_TREE);
210         }
211
212         $patron->profile( $GROUP_SET{$patron->profile} )
213                 unless ref $patron->profile;
214
215
216         $ctx->{requestor} = $ctx->{requestor} || $e->requestor;
217
218         if( $ctx->{fetch_patron_circ_info} ) {
219                 my $circ_counts = 
220                         OpenILS::Application::Actor::_checked_out(1, $e, $patron->id);
221
222                 $ctx->{patronOverdue} = $circ_counts->{overdue} || 0;
223                 $ctx->{patronItemsOut} = $ctx->{patronOverdue} + $circ_counts->{out};
224                 $logger->debug("script_builder: patron overdue count is " . $ctx->{patronOverdue});
225         }
226
227         if( $ctx->{fetch_patron_money_info} ) {
228                 $ctx->{patronFines} = $U->patron_money_owed($patron->id);
229                 $logger->debug("script_builder: patron fines determined to be ".$ctx->{patronFines});
230         }
231
232         unless( $ctx->{ignore_user_status} ) {
233                 return OpenILS::Event->new('PATRON_INACTIVE')
234                         unless $U->is_true($patron->active);
235         
236                 $patron->card($e->retrieve_actor_card($patron->card))
237                         unless ref $patron->card;
238         
239                 return OpenILS::Event->new('PATRON_CARD_INACTIVE')
240                         unless $U->is_true($patron->card->active);
241         
242                 my $expire = DateTime::Format::ISO8601->new->parse_datetime(
243                         clense_ISO8601($patron->expire_date));
244         
245                 return OpenILS::Event->new('PATRON_ACCOUNT_EXPIRED')
246                         if( CORE::time > $expire->epoch ) ;
247         }
248
249         return undef;
250 }
251
252
253 sub flatten_groups {
254         my $tree = shift;
255         return undef unless $tree;
256         $GROUP_SET{$tree->id} = $tree;
257         if( $tree->children ) {
258                 flatten_groups($_) for @{$tree->children};
259         }
260 }
261
262 sub flatten_org_tree {
263         my $tree = shift;
264         return undef unless $tree;
265         push( @ORG_LIST, $tree );
266         if( $tree->children ) {
267                 flatten_org_tree($_) for @{$tree->children};
268         }
269 }
270
271
272
273 sub insert_org_methods {
274         my ( $editor, $runner ) = @_;
275
276         if(!$ORG_TREE) {
277                 $ORG_TREE = $editor->search_actor_org_unit(
278                         [
279                                 {"parent_ou" => undef },
280                                 {
281                                         flesh                           => 2,
282                                         flesh_fields    => { aou =>  ['children'] },
283                                         order_by                        => { aou => 'name'}
284                                 }
285                         ]
286                 )->[0];
287                 flatten_org_tree($ORG_TREE);
288         }
289
290         my $r = $runner;
291         weaken($r);
292
293         $r->insert(__OILS_FUNC_isOrgDescendent  => 
294                 sub {
295                         my( $write_key, $sname, $id ) = @_;
296                         my ($parent)    = grep { $_->shortname eq $sname } @ORG_LIST;
297                         my ($child)             = grep { $_->id == $id } @ORG_LIST;
298                         my $val = is_org_descendent( $parent, $child );
299                         $logger->debug("script_builder: is_org_desc returned val $val, writing to $write_key");
300                         $r->insert($write_key, $val, 1) if $val;
301                         return $val;
302                 }
303         );
304
305         $r->insert(__OILS_FUNC_hasCommonAncestor  => 
306                 sub {
307                         my( $write_key, $orgid1, $orgid2, $depth ) = @_;
308                         my $val = has_common_ancestor( $orgid1, $orgid2, $depth );
309                         $logger->debug("script_builder: has_common_ancestor resturned $val");
310                         $r->insert($write_key, $val, 1) if $val;
311                         return $val;
312                 }
313         );
314 }
315
316
317 sub is_org_descendent {
318         my( $parent, $child ) = @_;
319         return 0 unless $parent and $child;
320         $logger->debug("script_builder: is_org_desc checking parent=".$parent->id.", child=".$child->id);
321         do {
322                 return 0 unless defined $child->parent_ou;
323                 return 1 if $parent->id == $child->id;
324         } while( ($child) = grep { $_->id == $child->parent_ou } @ORG_LIST );
325         return 0;
326 }
327
328 sub has_common_ancestor {
329         my( $org1, $org2, $depth ) = @_;
330         return 0 unless $org1 and $org2;
331         $logger->debug("script_builder: has_common_ancestor checking orgs $org1 : $org2");
332
333         return 1 if $org1 == $org2;
334         ($org1) = grep { $_->id == $org1 } @ORG_LIST;
335         ($org2) = grep { $_->id == $org2 } @ORG_LIST;
336
337         my $p1 = find_parent_at_depth($org1, $depth);
338         my $p2 = find_parent_at_depth($org2, $depth);
339
340         return 1 if $p1->id == $p2->id;
341         return 0;
342 }
343
344
345 sub find_parent_at_depth {
346         my $org = shift;
347         my $depth = shift;
348         return undef unless $org and $depth;
349         fetch_ou_types();
350         do {
351                 my ($t) = grep { $_->id == $org->ou_type } @OU_TYPES;
352                 return $org if $t->depth == $depth;
353         } while( ($org) = grep { $_->id == $org->parent_ou } @ORG_LIST );
354         return undef;   
355 }
356
357
358 sub fetch_ou_types {
359         return if @OU_TYPES;
360         @OU_TYPES = @{new_editor()->retrieve_all_actor_org_unit_type()};
361 }
362
363 sub insert_copy_methods {
364         my( $e, $ctx,  $runner ) = @_;
365         if( my $copy = $ctx->{copy} ) {
366                 $runner->insert_method( 'environment.copy', '__OILS_FUNC_fetch_best_hold', sub {
367                                 my $key = shift;
368                                 $logger->debug("script_builder: searching for permitted hold for copy ".$copy->barcode);
369                                 my ($hold) = $holdcode->find_nearest_permitted_hold(
370                                         OpenSRF::AppSession->create('open-ils.storage'), $copy, $e->requestor );
371                                 $runner->insert( $key, $hold, 1 );
372                         }
373                 );
374         }
375 }
376
377
378
379
380
381 1;