]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm
9c06c6274ecba3eab3e6fbb345fbaf5fc9ac524d
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / Application / Storage / Publisher / action.pm
1 package OpenILS::Application::Storage::Publisher::action;
2 use parent qw/OpenILS::Application::Storage::Publisher/;
3 use strict;
4 use warnings;
5 use OpenSRF::Utils::Logger qw/:level :logger/;
6 use OpenSRF::Utils qw/:datetime/;
7 use OpenSRF::Utils::JSON;
8 use OpenSRF::AppSession;
9 use OpenSRF::EX qw/:try/;
10 use OpenILS::Utils::Fieldmapper;
11 use OpenILS::Utils::PermitHold;
12 use DateTime;
13 use DateTime::Format::ISO8601;
14 use OpenILS::Utils::Penalty;
15 use POSIX qw(ceil);
16 use OpenILS::Application::Circ::CircCommon;
17 use OpenILS::Application::AppUtils;
18 my $U = "OpenILS::Application::AppUtils";
19
20 # Used in build_hold_sort_clause().  See the hash %order_by_sprintf_args in
21 # that sub to confirm what gets used to replace the formatters, and see
22 # nearest_hold() for the main body of the SQL query that these go into.
23 my %HOLD_SORT_ORDER_BY = (
24     pprox => 'p.prox',
25     hprox => 'actor.org_unit_proximity(%d, h.pickup_lib)',  # $cp->call_number->owning_lib
26     aprox => 'COALESCE(hm.proximity, p.prox)',
27     approx => 'action.hold_copy_calculated_proximity(h.id, %d, %d)', # $cp,$here
28     priority => 'pgt.hold_priority',
29     cut => 'CASE WHEN h.cut_in_line IS TRUE THEN 0 ELSE 1 END',
30     depth => 'h.selection_depth',
31     rtime => 'h.request_time',
32     htime => q!
33         CASE WHEN
34             last_event_on_copy.place <> %d AND
35             copy_has_not_been_home.result
36         THEN actor.org_unit_proximity(%d, h.pickup_lib)
37         ELSE 999
38         END
39     !,  # $cp->call_number->owning_lib x 2
40     shtime => q!
41         CASE WHEN
42             last_event_on_copy.place <> %d AND
43             copy_has_not_been_home_even_to_idle.result
44         THEN actor.org_unit_proximity(%d, h.pickup_lib)
45         ELSE 999
46         END
47     !,  # $cp->call_number->owning_lib x 2
48 );
49
50
51 sub isTrue {
52     my $v = shift || '0';
53     return 1 if ($v == 1);
54     return 1 if ($v =~ /^t/io);
55     return 1 if ($v =~ /^y/io);
56     return 0;
57 }
58
59 sub ou_ancestor_setting_value_or_cache {
60     # cache should be specific to setting
61     my ($actor, $org_id, $setting, $cache) = @_;
62
63     if (not exists $cache->{$org_id}) {
64         my $r = $actor->request(
65             'open-ils.actor.ou_setting.ancestor_default', $org_id, $setting
66         )->gather(1);
67
68         if ($r) {
69             $cache->{$org_id} = $r->{value};
70         } else {
71             $cache->{$org_id} = undef;
72         }
73     }
74     return $cache->{$org_id};
75 }
76
77 my $parser = DateTime::Format::ISO8601->new;
78 my $log = 'OpenSRF::Utils::Logger';
79
80 sub open_noncat_circs {
81     my $self = shift;
82     my $client = shift;
83     my $user = shift;
84
85     my $a = action::non_cataloged_circulation->table;
86     my $c = config::non_cataloged_type->table;
87
88     my $sql = <<"    SQL";
89         SELECT  a.id
90           FROM  $a a
91             JOIN $c c ON (a.item_type = c.id)
92           WHERE a.circ_time + c.circ_duration > current_timestamp
93             AND a.patron = ?
94     SQL
95
96     return action::non_cataloged_circulation->db_Main->selectcol_arrayref($sql, {}, $user);
97 }
98 __PACKAGE__->register_method(
99     api_name  => 'open-ils.storage.action.open_non_cataloged_circulation.user',
100     method    => 'open_noncat_circs',
101     api_level => 1,
102     argc      => 1,
103 );
104
105
106 sub ou_hold_requests {
107     my $self = shift;
108     my $client = shift;
109     my $ou = shift;
110
111     my $h_table = action::hold_request->table;
112     my $c_table = asset::copy->table;
113     my $o_table = actor::org_unit->table;
114
115     my $SQL = <<"    SQL";
116         SELECT  h.id
117           FROM  $h_table h
118             JOIN $c_table cp ON (cp.id = h.current_copy)
119             JOIN $o_table ou ON (ou.id = cp.circ_lib)
120           WHERE ou.id = ?
121             AND h.capture_time IS NULL
122             AND h.cancel_time IS NULL
123             AND (h.expire_time IS NULL OR h.expire_time > NOW())
124           ORDER BY h.request_time
125     SQL
126
127     my $sth = action::hold_request->db_Main->prepare_cached($SQL);
128     $sth->execute($ou);
129
130     $client->respond($_) for (
131         map {
132             $self
133                 ->method_lookup('open-ils.storage.direct.action.hold_request.retrieve')
134                 ->run($_)
135         } map {
136             $_->[0]
137         } @{ $sth->fetchall_arrayref }
138     );
139     return undef;
140 }
141 __PACKAGE__->register_method(
142     api_name        => 'open-ils.storage.action.targeted_hold_request.org_unit',
143     api_level       => 1,
144     argc        => 1,
145     stream      => 1,
146     method          => 'ou_hold_requests',
147 );
148
149
150 sub overdue_circs {
151     my $upper_interval = shift || '1 millennium';
152     my $idlist = shift;
153
154     my $c_t = action::circulation->table;
155
156     my $sql = <<"    SQL";
157         SELECT  *
158           FROM  $c_t
159           WHERE stop_fines IS NULL
160             AND due_date < ( CURRENT_TIMESTAMP - grace_period )
161             AND fine_interval < ?::INTERVAL
162     SQL
163
164     my $sth = action::circulation->db_Main->prepare_cached($sql);
165     $sth->execute($upper_interval);
166
167     my @circs = map { $idlist ? $_->{id} : action::circulation->construct($_) } $sth->fetchall_hash;
168
169     $c_t = booking::reservation->table;
170     $sql = <<"    SQL";
171         SELECT  *
172           FROM  $c_t
173           WHERE return_time IS NULL
174             AND end_time < ( CURRENT_TIMESTAMP )
175             AND fine_interval IS NOT NULL
176             AND cancel_time IS NULL
177     SQL
178
179     $sth = action::circulation->db_Main->prepare_cached($sql);
180     $sth->execute();
181
182     push @circs, map { $idlist ? $_->{id} : booking::reservation->construct($_) } $sth->fetchall_hash;
183
184     return @circs;
185 }
186
187 sub complete_reshelving {
188     my $self = shift;
189     my $client = shift;
190     my $window = shift;
191
192     local $OpenILS::Application::Storage::WRITE = 1;
193
194     throw OpenSRF::EX::InvalidArg ("I need an interval of more than 0 seconds!")
195         unless (interval_to_seconds( $window ));
196
197     my $cp = asset::copy->table;
198
199     my $sql = <<"    SQL";
200         UPDATE  $cp
201           SET   status = 0
202           WHERE id IN (
203             SELECT cp.id 
204             FROM  $cp cp
205             WHERE cp.status = 7
206                 AND cp.status_changed_time < NOW() - CAST( COALESCE( BTRIM( (SELECT value FROM actor.org_unit_ancestor_setting('circ.reshelving_complete.interval', cp.circ_lib)),'"' ), ? )  AS INTERVAL)
207           )
208     SQL
209     my $sth = action::circulation->db_Main->prepare_cached($sql);
210     $sth->execute($window);
211
212     return $sth->rows;
213
214 }
215 __PACKAGE__->register_method(
216     api_name        => 'open-ils.storage.action.circulation.reshelving.complete',
217     api_level       => 1,
218     argc        => 1,
219     method          => 'complete_reshelving',
220 );
221
222 sub mark_longoverdue {
223     my $self = shift;
224     my $client = shift;
225     my $window = shift;
226
227     local $OpenILS::Application::Storage::WRITE = 1;
228
229     throw OpenSRF::EX::InvalidArg ("I need an interval of more than 0 seconds!")
230         unless (interval_to_seconds( $window ));
231
232     my $setting = actor::org_unit_setting->table;
233     my $circ = action::circulation->table;
234
235     my $sql = <<"    SQL";
236         UPDATE  $circ
237           SET   stop_fines = 'LONGOVERDUE',
238             stop_fines_time = now()
239           WHERE id IN (
240             SELECT  circ.id
241                       FROM  $circ circ
242                             LEFT JOIN $setting setting
243                                 ON (circ.circ_lib = setting.org_unit AND setting.name = 'circ.long_overdue.interval')
244                       WHERE circ.checkin_time IS NULL AND (stop_fines IS NULL OR stop_fines NOT IN ('LOST','LONGOVERDUE'))
245                             AND AGE(circ.due_date) > CAST( COALESCE( BTRIM( setting.value,'"' ), ? )  AS INTERVAL)
246                   )
247     SQL
248
249     my $sth = action::circulation->db_Main->prepare_cached($sql);
250     $sth->execute($window);
251
252     return $sth->rows;
253
254 }
255 __PACKAGE__->register_method(
256     api_name        => 'open-ils.storage.action.circulation.long_overdue',
257     api_level       => 1,
258     argc        => 1,
259     method          => 'mark_longoverdue',
260 );
261
262 sub auto_thaw_frozen_holds {
263     my $self = shift;
264     my $client = shift;
265
266     local $OpenILS::Application::Storage::WRITE = 1;
267
268     my $holds = action::hold_request->table;
269
270     my $sql = "UPDATE $holds SET frozen = FALSE WHERE frozen IS TRUE AND thaw_date < NOW();";
271
272     my $sth = action::hold_request->db_Main->prepare_cached($sql);
273     $sth->execute();
274
275     return $sth->rows;
276
277 }
278 __PACKAGE__->register_method(
279     api_name        => 'open-ils.storage.action.hold_request.thaw_expired_frozen',
280     api_level       => 1,
281     stream      => 0,
282     argc        => 0,
283     method          => 'auto_thaw_frozen_holds',
284 );
285
286 sub grab_overdue {
287     my $self = shift;
288     my $client = shift;
289
290     my $idlist = $self->api_name =~/id_list/o ? 1 : 0;
291     
292     $client->respond( $idlist ? $_ : $_->to_fieldmapper ) for ( overdue_circs('', $idlist) );
293
294     return undef;
295
296 }
297 __PACKAGE__->register_method(
298     api_name        => 'open-ils.storage.action.circulation.overdue',
299     api_level       => 1,
300     stream          => 1,
301     method          => 'grab_overdue',
302     signature       => q/
303         Return list of overdue circulations and reservations to be used for fine generation.
304         Despite the name, this is not a generic method for retrieving all overdue loans,
305         as it excludes loans that have already hit the maximum fine limit.
306 /,
307 );
308 __PACKAGE__->register_method(
309     api_name        => 'open-ils.storage.action.circulation.overdue.id_list',
310     api_level       => 1,
311     stream      => 1,
312     method          => 'grab_overdue',
313 );
314
315 sub get_hold_sort_order {
316     my ($ou) = @_;
317
318     my $dbh = action::hold_request->db_Main;
319
320     # The purpose of this function is to return column names in a DB-configured
321     # order, so it won't do to add columns here or change column names unless
322     # you also change the expectation of anything calling this function.
323
324     my $row = $dbh->selectrow_hashref(
325         q!
326         SELECT
327             cbho.pprox, cbho.hprox, cbho.aprox, cbho.approx, cbho.priority,
328             cbho.cut, cbho.depth, cbho.htime, cbho.shtime, cbho.rtime
329         FROM config.best_hold_order cbho
330         WHERE id = (
331             SELECT oils_json_to_text(value)::INT
332             FROM actor.org_unit_ancestor_setting('circ.hold_capture_order', ?)
333         )
334         !, undef, $ou
335     ) || {
336         pprox => 1, hprox => 8, aprox => 2, priority => 3,
337         cut => 4, depth => 5, htime => 7, rtime => 6
338     };
339
340     # Return only the keys of our hash, sorted by value,
341     # keys for null values omitted.
342     return [
343         grep { defined $row->{$_} } (
344             sort {$row->{$a} cmp $row->{$b}} keys %$row
345         )
346     ];
347 }
348
349 # Returns an ORDER BY clause
350 # *and* a string with a CTE expression to precede the nearest-hold SQL query
351 # *and* a string with extra JOIN statements needed
352 sub build_hold_sort_clause {
353     my ($columns, $cp, $here) = @_;
354
355     my %order_by_sprintf_args = (
356         hprox => [$cp->call_number->owning_lib],
357         approx => [$cp->id, $here],
358         htime => [$cp->call_number->owning_lib, $cp->call_number->owning_lib],
359         shtime => [$cp->call_number->owning_lib, $cp->call_number->owning_lib]
360     );
361
362     my @clauses;
363     my $ctes_needed = 0;
364     foreach my $col (@$columns) {
365         if ($col eq 'htime' and not $ctes_needed) {
366             $ctes_needed = 1;
367         } elsif ($col eq 'shtime') {
368             $ctes_needed = 2;
369         }
370
371         my @args;
372         @args = @{$order_by_sprintf_args{$col}} if
373             exists $order_by_sprintf_args{$col};
374
375         push @clauses, sprintf($HOLD_SORT_ORDER_BY{$col}, @args);
376
377         last if $col eq 'rtime';    # rtime is effectively unique, no need for
378                                     # more order-by clauses after that.
379     }
380
381     my ($ctes, $joins) = ("", "");
382     if ($ctes_needed >= 1) {
383         # Each CTE serves the next. The first is one version or another
384         # of last_event_on_copy, which is described in holds-go-home.txt
385         # TechRef, but it essentially returns place and time of the most
386         # recent transit or circ to do with a copy, and failing that it
387         # returns a synthetic event that means "here" and "now".
388
389         if ($ctes_needed == 2) {
390             $ctes .= sprintf(q!
391 , last_event_on_copy AS (    -- combined circ and transit version
392     SELECT *
393     FROM (
394         (   SELECT
395                 TRUE AS concrete,
396                 dest AS place,
397                 COALESCE(dest_recv_time, source_send_time) AS moment
398             FROM action.transit_copy
399             WHERE target_copy = %d
400             ORDER BY moment DESC LIMIT 1
401         ) UNION (
402             SELECT
403                 TRUE AS concrete,
404                 COALESCE(checkin_lib, circ_lib) AS place,
405                 COALESCE(checkin_time, xact_start) AS moment
406             FROM action.circulation
407             WHERE target_copy = %d
408             ORDER BY moment DESC LIMIT 1
409         ) UNION
410             SELECT
411                 FALSE AS concrete,
412                 %d AS place,
413                 NOW() AS moment
414     ) x ORDER BY concrete DESC, moment DESC LIMIT 1
415 ) !, $cp->id, $cp->id, $cp->call_number->owning_lib);
416         } else {
417             $ctes .= sprintf(q!
418 , last_event_on_copy AS (   -- circ only version
419     SELECT * FROM (
420         ( SELECT
421                 TRUE AS concrete,
422                 COALESCE(checkin_lib, circ_lib) AS place,
423                 COALESCE(checkin_time, xact_start) AS moment
424             FROM action.circulation
425             WHERE target_copy = %d
426             ORDER BY moment DESC LIMIT 1
427         ) UNION SELECT
428                 FALSE AS concrete,
429                 %d AS place,
430                 NOW() AS moment
431     ) x ORDER BY concrete DESC, moment DESC LIMIT 1
432 ) !, $cp->id, $cp->call_number->owning_lib);
433         }
434
435         $joins .= q!
436             JOIN last_event_on_copy ON (true)
437         !;
438
439         # For our next auxiliary query, the question we seek to answer is,
440         # "has our copy been circulating away from home too long?"
441         #
442         # Have there been no checkouts at the copy's circ_lib since the
443         # beginning of our go-home interval?
444
445         # [We use sprintf because the outer function that's going to send one
446         # big query through DBI is blind to our process of dynamically building
447         # these CTEs, and it wouldn't know what bind parameters to pass unless
448         # we did a lot more work here. This is injection-safe because we only
449         # use the %d formatter.]
450         $ctes .= sprintf(q!
451 , copy_has_not_been_home AS (
452     SELECT (
453         -- part 1
454         SELECT MIN(circ.id) FROM action.circulation circ
455         JOIN go_home_interval ON (true)
456         WHERE
457             circ.target_copy = %d AND
458             circ.circ_lib = %d AND
459             circ.xact_start >= NOW() - go_home_interval.value
460     ) IS NULL AS result
461 ) !, $cp->id, $cp->circ_lib);
462
463         $joins .= q!
464             JOIN copy_has_not_been_home ON (true)
465         !;
466     }
467
468     if ($ctes_needed == 2) {
469         # By this query, we mean to determine that the copy hasn't landed at
470         # home by means of transit during the go-home interval (in addition
471         # to not having circulated from home in the same time frame).
472         #
473         # There have been no homebound transits that arrived for this copy
474         # since the beginning of the go-home interval.
475
476         $ctes .= sprintf(q!
477 , copy_has_not_been_home_even_to_idle AS (
478     SELECT result AND NOT (
479         SELECT COUNT(*)::INT::BOOL
480         FROM action.transit_copy atc
481         WHERE
482             atc.target_copy = %d AND
483             (atc.dest = %d OR atc.source = %d) AND
484             atc.dest_recv_time >= NOW() - (SELECT value FROM go_home_interval)
485     ) AS result FROM copy_has_not_been_home
486 ) !, $cp->id, $cp->circ_lib, $cp->circ_lib);
487         $joins .= " JOIN copy_has_not_been_home_even_to_idle ON (true) ";
488     }
489
490     return (
491         join(", ", @clauses),
492         $ctes,
493         $joins
494     );
495 }
496
497 sub nearest_hold {
498     my $self = shift;
499     my $client = shift;
500     my $here = shift;   # just the ID
501     my $cp = shift;     # now an object with call_number fleshed,
502                         # formerly just copy ID
503     my $limit = int(shift()) || 10;
504     my $age = shift() || '0 seconds';
505     my $fifo = shift();
506
507     $log->info("deprecated 'fifo' param true, but ignored") if isTrue($fifo);
508
509     # ScriptBuilder fleshes the circ_lib, which confuses things; ensure we
510     # are working with a circ lib ID and not an object
511     my $cp_circ_lib;
512     if (ref $cp->circ_lib) {
513         $cp_circ_lib = $cp->circ_lib->id;
514     } else {
515         $cp_circ_lib = $cp->circ_lib;
516     }
517
518     my ($holdsort, $addl_cte, $addl_join) =
519         build_hold_sort_clause(get_hold_sort_order($here), $cp, $here);
520
521     local $OpenILS::Application::Storage::WRITE = 1;
522
523     my $ids = action::hold_request->db_Main->selectcol_arrayref(<<"    SQL", {}, $cp_circ_lib, $here, $cp->id, $age);
524         WITH go_home_interval AS (
525             SELECT OILS_JSON_TO_TEXT(
526                 (SELECT value FROM actor.org_unit_ancestor_setting(
527                     'circ.hold_go_home_interval', ?
528                 )
529             ))::INTERVAL AS value
530         )
531         $addl_cte
532         SELECT  h.id
533           FROM  action.hold_request h
534             JOIN actor.org_unit_proximity p ON (p.from_org = ? AND p.to_org = h.pickup_lib)
535             JOIN action.hold_copy_map hm ON (hm.hold = h.id)
536             JOIN actor.usr au ON (au.id = h.usr)
537             JOIN permission.grp_tree pgt ON (au.profile = pgt.id)
538             LEFT JOIN actor.usr_standing_penalty ausp
539                 ON ( au.id = ausp.usr AND ( ausp.stop_date IS NULL OR ausp.stop_date > NOW() ) )
540             LEFT JOIN config.standing_penalty csp
541                 ON ( csp.id = ausp.standing_penalty AND csp.block_list LIKE '%CAPTURE%' )
542             $addl_join
543           WHERE hm.target_copy = ?
544             AND (AGE(NOW(),h.request_time) >= CAST(? AS INTERVAL) OR p.prox = 0)
545             AND h.capture_time IS NULL
546             AND h.cancel_time IS NULL
547             AND (h.expire_time IS NULL OR h.expire_time > NOW())
548             AND h.frozen IS FALSE
549             AND csp.id IS NULL
550         ORDER BY CASE WHEN h.hold_type IN ('R','F') THEN 0 ELSE 1 END, $holdsort
551         LIMIT $limit
552     SQL
553     
554     $client->respond( $_ ) for ( @$ids );
555     return undef;
556 }
557 __PACKAGE__->register_method(
558     api_name    => 'open-ils.storage.action.hold_request.nearest_hold',
559     api_level   => 1,
560     stream      => 1,
561     method      => 'nearest_hold',
562 );
563
564 sub targetable_holds {
565     my $self = shift;
566     my $client = shift;
567     my $check_expire = shift;
568
569     $check_expire ||= '12h';
570
571     local $OpenILS::Application::Storage::WRITE = 1;
572
573     # json_query can *almost* represent this query, but can't
574     # handle the CASE statement or the interval arithmetic
575     my $query = <<"    SQL";
576         SELECT ahr.id, mmsm.metarecord
577         FROM action.hold_request ahr
578         JOIN reporter.hold_request_record USING (id)
579         JOIN metabib.metarecord_source_map mmsm ON (bib_record = source)
580         WHERE capture_time IS NULL
581         AND (prev_check_time IS NULL or prev_check_time < (NOW() - ?::interval))
582         AND fulfillment_time IS NULL
583         AND cancel_time IS NULL
584         AND NOT frozen
585         ORDER BY CASE WHEN ahr.hold_type = 'F' THEN 0 ELSE 1 END, selection_depth DESC, request_time;
586     SQL
587     my $sth = action::hold_request->db_Main->prepare_cached($query);
588     $sth->execute($check_expire);
589     $client->respond( $_ ) for @{ $sth->fetchall_arrayref };
590
591     return undef;
592 }
593
594 __PACKAGE__->register_method(
595     api_name    => 'open-ils.storage.action.hold_request.targetable_holds.id_list',
596     api_level   => 1,
597     stream      => 1,
598     method      => 'targetable_holds',
599     signature   => q/
600         Returns ordered list of hold request and metarecord IDs
601         for all hold requests that are available for initial targeting
602         or retargeting.
603         @param check interval
604         @return list of pairs of hold request and metarecord IDs
605 /,
606 );
607
608 sub next_resp_group_id {
609     my $self = shift;
610     my $client = shift;
611
612     # XXX This is not replication safe!!!
613
614     my ($id) = action::survey->db_Main->selectrow_array(<<"    SQL");
615         SELECT NEXTVAL('action.survey_response_group_id_seq'::TEXT)
616     SQL
617     return $id;
618 }
619 __PACKAGE__->register_method(
620     api_name        => 'open-ils.storage.action.survey_response.next_group_id',
621     api_level       => 1,
622     method          => 'next_resp_group_id',
623 );
624
625 sub patron_circ_summary {
626     my $self = shift;
627     my $client = shift;
628     my $id = ''.shift();
629
630     return undef unless ($id);
631     my $c_table = action::circulation->table;
632     my $b_table = money::billing->table;
633
634     $log->debug("Retrieving patron summary for id $id", DEBUG);
635
636     my $select = <<"    SQL";
637         SELECT  COUNT(DISTINCT c.id), SUM( COALESCE(b.amount,0) )
638           FROM  $c_table c
639             LEFT OUTER JOIN $b_table b ON (c.id = b.xact AND b.voided = FALSE)
640           WHERE c.usr = ?
641             AND c.xact_finish IS NULL
642             AND (
643                 c.stop_fines NOT IN ('CLAIMSRETURNED','LOST')
644                 OR c.stop_fines IS NULL
645             )
646     SQL
647
648     return action::survey->db_Main->selectrow_arrayref($select, {}, $id);
649 }
650 __PACKAGE__->register_method(
651     api_name        => 'open-ils.storage.action.circulation.patron_summary',
652     api_level       => 1,
653     method          => 'patron_circ_summary',
654 );
655
656 #XXX Fix stored proc calls
657 sub find_local_surveys {
658     my $self = shift;
659     my $client = shift;
660     my $ou = ''.shift();
661
662     return undef unless ($ou);
663     my $s_table = action::survey->table;
664
665     my $select = <<"    SQL";
666         SELECT  s.*
667           FROM  $s_table s
668             JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
669           WHERE CURRENT_TIMESTAMP BETWEEN s.start_date AND s.end_date
670     SQL
671
672     my $sth = action::survey->db_Main->prepare_cached($select);
673     $sth->execute($ou);
674
675     $client->respond( $_->to_fieldmapper ) for ( map { action::survey->construct($_) } $sth->fetchall_hash );
676
677     return undef;
678 }
679 __PACKAGE__->register_method(
680     api_name        => 'open-ils.storage.action.survey.all',
681     api_level       => 1,
682     stream          => 1,
683     method          => 'find_local_surveys',
684 );
685
686 #XXX Fix stored proc calls
687 sub find_opac_surveys {
688     my $self = shift;
689     my $client = shift;
690     my $ou = ''.shift();
691
692     return undef unless ($ou);
693     my $s_table = action::survey->table;
694
695     my $select = <<"    SQL";
696         SELECT  s.*
697           FROM  $s_table s
698             JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
699           WHERE CURRENT_TIMESTAMP BETWEEN s.start_date AND s.end_date
700             AND s.opac IS TRUE;
701     SQL
702
703     my $sth = action::survey->db_Main->prepare_cached($select);
704     $sth->execute($ou);
705
706     $client->respond( $_->to_fieldmapper ) for ( map { action::survey->construct($_) } $sth->fetchall_hash );
707
708     return undef;
709 }
710 __PACKAGE__->register_method(
711     api_name        => 'open-ils.storage.action.survey.opac',
712     api_level       => 1,
713     stream          => 1,
714     method          => 'find_opac_surveys',
715 );
716
717 sub hold_pull_list {
718     my $self = shift;
719     my $client = shift;
720     my $ou = shift;
721     my $limit = shift || 10;
722     my $offset = shift || 0;
723
724     return undef unless ($ou);
725     my $h_table = action::hold_request->table;
726     my $a_table = asset::copy->table;
727     my $ord_table = asset::copy_location_order->table;
728
729     my $idlist = 1 if ($self->api_name =~/id_list/o);
730     my $count = 1 if ($self->api_name =~/count$/o);
731
732     my $status_filter = '';
733     $status_filter = 'AND a.status IN (0,7)' if ($self->api_name =~/status_filtered/o);
734
735     my $select = <<"    SQL";
736         SELECT  h.*
737           FROM  $h_table h
738             JOIN $a_table a ON (h.current_copy = a.id)
739             LEFT JOIN $ord_table ord ON (a.location = ord.location AND a.circ_lib = ord.org)
740             LEFT JOIN actor.usr_standing_penalty ausp 
741                 ON ( h.usr = ausp.usr AND ( ausp.stop_date IS NULL OR ausp.stop_date > NOW() ) )
742             LEFT JOIN config.standing_penalty csp
743                 ON ( csp.id = ausp.standing_penalty AND csp.block_list LIKE '%CAPTURE%' )
744           WHERE a.circ_lib = ?
745             AND h.capture_time IS NULL
746             AND h.cancel_time IS NULL
747             AND (h.expire_time IS NULL OR h.expire_time > NOW())
748             AND csp.id IS NULL
749             $status_filter
750           ORDER BY CASE WHEN ord.position IS NOT NULL THEN ord.position ELSE 999 END, h.request_time
751           LIMIT $limit
752           OFFSET $offset
753     SQL
754
755     if ($count) {
756         $select = <<"        SQL";
757             SELECT    count(*)
758               FROM    $h_table h
759                   JOIN $a_table a ON (h.current_copy = a.id)
760                   LEFT JOIN actor.usr_standing_penalty ausp 
761                     ON ( h.usr = ausp.usr AND ( ausp.stop_date IS NULL OR ausp.stop_date > NOW() ) )
762                   LEFT JOIN config.standing_penalty csp
763                     ON ( csp.id = ausp.standing_penalty AND csp.block_list LIKE '%CAPTURE%' )
764               WHERE    a.circ_lib = ?
765                   AND h.capture_time IS NULL
766                   AND h.cancel_time IS NULL
767                   AND (h.expire_time IS NULL OR h.expire_time > NOW())
768                   AND csp.id IS NULL
769                 $status_filter
770         SQL
771     }
772
773     my $sth = action::survey->db_Main->prepare_cached($select);
774     $sth->execute($ou);
775
776     if ($count) {
777         $client->respond( $sth->fetchall_arrayref()->[0][0] );
778     } elsif ($idlist) {
779         $client->respond( $_->{id} ) for ( $sth->fetchall_hash );
780     } else {
781         $client->respond( $_->to_fieldmapper ) for ( map { action::hold_request->construct($_) } $sth->fetchall_hash );
782     }
783
784     return undef;
785 }
786 __PACKAGE__->register_method(
787     api_name        => 'open-ils.storage.direct.action.hold_request.pull_list.current_copy_circ_lib.count',
788     api_level       => 1,
789     stream          => 1,
790     signature   => [
791         "Returns a count of holds for a specific library's pull list.",
792         [ [org_unit => "The library's org id", "number"] ],
793         ['A count of holds for the stated library to pull ', 'number']
794     ],
795     method          => 'hold_pull_list',
796 );
797 __PACKAGE__->register_method(
798     api_name        => 'open-ils.storage.direct.action.hold_request.pull_list.current_copy_circ_lib.status_filtered.count',
799     api_level       => 1,
800     stream          => 1,
801     signature   => [
802         "Returns a status filtered count of holds for a specific library's pull list.",
803         [ [org_unit => "The library's org id", "number"] ],
804         ['A status filtered count of holds for the stated library to pull ', 'number']
805     ],
806     method          => 'hold_pull_list',
807 );
808 __PACKAGE__->register_method(
809     api_name        => 'open-ils.storage.direct.action.hold_request.pull_list.id_list.current_copy_circ_lib',
810     api_level       => 1,
811     stream          => 1,
812     signature   => [
813         "Returns the hold ids for a specific library's pull list.",
814         [ [org_unit => "The library's org id", "number"],
815           [limit => 'An optional page size, defaults to 10', 'number'],
816           [offset => 'Offset for paging, defaults to 0, 0 based', 'number'],
817         ],
818         ['A list of holds for the stated library to pull for', 'array']
819     ],
820     method          => 'hold_pull_list',
821 );
822 __PACKAGE__->register_method(
823     api_name        => 'open-ils.storage.direct.action.hold_request.pull_list.search.current_copy_circ_lib',
824     api_level       => 1,
825     stream          => 1,
826     signature   => [
827         "Returns the holds for a specific library's pull list.",
828         [ [org_unit => "The library's org id", "number"],
829           [limit => 'An optional page size, defaults to 10', 'number'],
830           [offset => 'Offset for paging, defaults to 0, 0 based', 'number'],
831         ],
832         ['A list of holds for the stated library to pull for', 'array']
833     ],
834     method          => 'hold_pull_list',
835 );
836 __PACKAGE__->register_method(
837     api_name        => 'open-ils.storage.direct.action.hold_request.pull_list.id_list.current_copy_circ_lib.status_filtered',
838     api_level       => 1,
839     stream          => 1,
840     signature   => [
841         "Returns the hold ids for a specific library's pull list that are definitely in that library, based on status.",
842         [ [org_unit => "The library's org id", "number"],
843           [limit => 'An optional page size, defaults to 10', 'number'],
844           [offset => 'Offset for paging, defaults to 0, 0 based', 'number'],
845         ],
846         ['A list of holds for the stated library to pull for', 'array']
847     ],
848     method          => 'hold_pull_list',
849 );
850 __PACKAGE__->register_method(
851     api_name        => 'open-ils.storage.direct.action.hold_request.pull_list.search.current_copy_circ_lib.status_filtered',
852     api_level       => 1,
853     stream          => 1,
854     signature   => [
855         "Returns the holds for a specific library's pull list that are definitely in that library, based on status.",
856         [ [org_unit => "The library's org id", "number"],
857           [limit => 'An optional page size, defaults to 10', 'number'],
858           [offset => 'Offset for paging, defaults to 0, 0 based', 'number'],
859         ],
860         ['A list of holds for the stated library to pull for', 'array']
861     ],
862     method          => 'hold_pull_list',
863 );
864
865 sub find_optional_surveys {
866     my $self = shift;
867     my $client = shift;
868     my $ou = ''.shift();
869
870     return undef unless ($ou);
871     my $s_table = action::survey->table;
872
873     my $select = <<"    SQL";
874         SELECT  s.*
875           FROM  $s_table s
876             JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
877           WHERE CURRENT_TIMESTAMP BETWEEN s.start_date AND s.end_date
878             AND s.required IS FALSE;
879     SQL
880
881     my $sth = action::survey->db_Main->prepare_cached($select);
882     $sth->execute($ou);
883
884     $client->respond( $_->to_fieldmapper ) for ( map { action::survey->construct($_) } $sth->fetchall_hash );
885
886     return undef;
887 }
888 __PACKAGE__->register_method(
889     api_name        => 'open-ils.storage.action.survey.optional',
890     api_level       => 1,
891     stream          => 1,
892     method          => 'find_optional_surveys',
893 );
894
895 sub find_required_surveys {
896     my $self = shift;
897     my $client = shift;
898     my $ou = ''.shift();
899
900     return undef unless ($ou);
901     my $s_table = action::survey->table;
902
903     my $select = <<"    SQL";
904         SELECT  s.*
905           FROM  $s_table s
906             JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
907           WHERE CURRENT_TIMESTAMP BETWEEN s.start_date AND s.end_date
908             AND s.required IS TRUE;
909     SQL
910
911     my $sth = action::survey->db_Main->prepare_cached($select);
912     $sth->execute($ou);
913
914     $client->respond( $_->to_fieldmapper ) for ( map { action::survey->construct($_) } $sth->fetchall_hash );
915
916     return undef;
917 }
918 __PACKAGE__->register_method(
919     api_name        => 'open-ils.storage.action.survey.required',
920     api_level       => 1,
921     stream          => 1,
922     method          => 'find_required_surveys',
923 );
924
925 sub find_usr_summary_surveys {
926     my $self = shift;
927     my $client = shift;
928     my $ou = ''.shift();
929
930     return undef unless ($ou);
931     my $s_table = action::survey->table;
932
933     my $select = <<"    SQL";
934         SELECT  s.*
935           FROM  $s_table s
936             JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
937           WHERE CURRENT_TIMESTAMP BETWEEN s.start_date AND s.end_date
938             AND s.usr_summary IS TRUE;
939     SQL
940
941     my $sth = action::survey->db_Main->prepare_cached($select);
942     $sth->execute($ou);
943
944     $client->respond( $_->to_fieldmapper ) for ( map { action::survey->construct($_) } $sth->fetchall_hash );
945
946     return undef;
947 }
948 __PACKAGE__->register_method(
949     api_name        => 'open-ils.storage.action.survey.usr_summary',
950     api_level       => 1,
951     stream          => 1,
952     method          => 'find_usr_summary_surveys',
953 );
954
955 sub seconds_to_interval_hash {
956         my $interval = shift;
957         my $limit = shift || 's';
958         $limit =~ s/^(.)/$1/o;
959
960         my %output;
961
962         my ($y,$ym,$M,$Mm,$w,$wm,$d,$dm,$h,$hm,$m,$mm,$s);
963         my ($year, $month, $week, $day, $hour, $minute, $second) =
964                 ('years','months','weeks','days', 'hours', 'minutes', 'seconds');
965
966         if ($y = int($interval / (60 * 60 * 24 * 365))) {
967                 $output{$year} = $y;
968                 $ym = $interval % (60 * 60 * 24 * 365);
969         } else {
970                 $ym = $interval;
971         }
972         return %output if ($limit eq 'y');
973
974         if ($M = int($ym / ((60 * 60 * 24 * 365)/12))) {
975                 $output{$month} = $M;
976                 $Mm = $ym % ((60 * 60 * 24 * 365)/12);
977         } else {
978                 $Mm = $ym;
979         }
980         return %output if ($limit eq 'M');
981
982         if ($w = int($Mm / 604800)) {
983                 $output{$week} = $w;
984                 $wm = $Mm % 604800;
985         } else {
986                 $wm = $Mm;
987         }
988         return %output if ($limit eq 'w');
989
990         if ($d = int($wm / 86400)) {
991                 $output{$day} = $d;
992                 $dm = $wm % 86400;
993         } else {
994                 $dm = $wm;
995         }
996         return %output if ($limit eq 'd');
997
998         if ($h = int($dm / 3600)) {
999                 $output{$hour} = $h;
1000                 $hm = $dm % 3600;
1001         } else {
1002                 $hm = $dm;
1003         }
1004         return %output if ($limit eq 'h');
1005
1006         if ($m = int($hm / 60)) {
1007                 $output{$minute} = $m;
1008                 $mm = $hm % 60;
1009         } else {
1010                 $mm = $hm;
1011         }
1012         return %output if ($limit eq 'm');
1013
1014         if ($s = int($mm)) {
1015                 $output{$second} = $s;
1016         } else {
1017                 $output{$second} = 0 unless (keys %output);
1018         }
1019         return %output;
1020 }
1021
1022
1023 sub generate_fines {
1024     my $self = shift;
1025     my $client = shift;
1026     my $circ = shift;
1027     my $overbill = shift;
1028
1029     local $OpenILS::Application::Storage::WRITE = 1;
1030
1031     my @circs;
1032     if ($circ) {
1033         push @circs,
1034             action::circulation->search_where( { id => $circ, stop_fines => undef } ),
1035             booking::reservation->search_where( { id => $circ, return_time => undef, cancel_time => undef } );
1036     } else {
1037         push @circs, overdue_circs();
1038     }
1039
1040     my %hoo = map { ( $_->id => $_ ) } actor::org_unit::hours_of_operation->retrieve_all;
1041
1042     my $penalty = OpenSRF::AppSession->create('open-ils.penalty');
1043     for my $c (@circs) {
1044
1045         my $ctype = ref($c);
1046         $ctype =~ s/^.+::(\w+)$/$1/;
1047     
1048         my $due_date_method = 'due_date';
1049         my $target_copy_method = 'target_copy';
1050         my $circ_lib_method = 'circ_lib';
1051         my $recurring_fine_method = 'recurring_fine';
1052         my $is_reservation = 0;
1053         if ($ctype eq 'reservation') {
1054             $is_reservation = 1;
1055             $due_date_method = 'end_time';
1056             $target_copy_method = 'current_resource';
1057             $circ_lib_method = 'pickup_lib';
1058             $recurring_fine_method = 'fine_amount';
1059             next unless ($c->fine_interval);
1060         }
1061         #TODO: reservation grace periods
1062         my $grace_period = ($is_reservation ? 0 : interval_to_seconds($c->grace_period));
1063
1064         eval {
1065             if ($self->method_lookup('open-ils.storage.transaction.current')->run) {
1066                 $log->debug("Cleaning up after previous transaction\n");
1067                 $self->method_lookup('open-ils.storage.transaction.rollback')->run;
1068             }
1069             $self->method_lookup('open-ils.storage.transaction.begin')->run( $client );
1070             $log->info(
1071                 sprintf("Processing %s %d...",
1072                     ($is_reservation ? "reservation" : "circ"), $c->id
1073                 )
1074             );
1075
1076
1077             my $due_dt = $parser->parse_datetime( cleanse_ISO8601( $c->$due_date_method ) );
1078     
1079             my $due = $due_dt->epoch;
1080             my $now = time;
1081
1082             my $fine_interval = $c->fine_interval;
1083             $fine_interval =~ s/(\d{2}):(\d{2}):(\d{2})/$1 h $2 m $3 s/o;
1084             $fine_interval = interval_to_seconds( $fine_interval );
1085     
1086             if ( $fine_interval == 0 || int($c->$recurring_fine_method * 100) == 0 || int($c->max_fine * 100) == 0 ) {
1087                 $client->respond( "Fine Generator skipping circ due to 0 fine interval, 0 fine rate, or 0 max fine.\n" );
1088                 $log->info( "Fine Generator skipping circ " . $c->id . " due to 0 fine interval, 0 fine rate, or 0 max fine." );
1089                 return;
1090             }
1091
1092             if ( $is_reservation and $fine_interval >= interval_to_seconds('1d') ) {    
1093                 my $tz_offset_s = 0;
1094                 if ($due_dt->strftime('%z') =~ /(-|\+)(\d{2}):?(\d{2})/) {
1095                     $tz_offset_s = $1 . interval_to_seconds( "${2}h ${3}m"); 
1096                 }
1097     
1098                 $due -= ($due % $fine_interval) + $tz_offset_s;
1099                 $now -= ($now % $fine_interval) + $tz_offset_s;
1100             }
1101     
1102             $client->respond(
1103                 "ARG! Overdue $ctype ".$c->id.
1104                 " for item ".$c->$target_copy_method.
1105                 " (user ".$c->usr.").\n".
1106                 "\tItem was due on or before: ".localtime($due)."\n");
1107     
1108             my @fines = money::billing->search_where(
1109                 { xact => $c->id,
1110                   btype => 1,
1111                   billing_ts => { '>' => $c->$due_date_method } },
1112                 { order_by => 'billing_ts DESC'}
1113             );
1114
1115             my $f_idx = 0;
1116             my $fine = $fines[$f_idx] if (@fines);
1117             if ($overbill) {
1118                 $fine = $fines[++$f_idx] while ($fine and $fine->voided);
1119             }
1120
1121             my $current_fine_total = 0;
1122             $current_fine_total += int($_->amount * 100) for (grep { $_ and !$_->voided } @fines);
1123     
1124             my $last_fine;
1125             if ($fine) {
1126                 $client->respond( "Last billing time: ".$fine->billing_ts." (clensed format: ".cleanse_ISO8601( $fine->billing_ts ).")");
1127                 $last_fine = $parser->parse_datetime( cleanse_ISO8601( $fine->billing_ts ) )->epoch;
1128             } else {
1129                 $log->info( "Potential first billing for circ ".$c->id );
1130                 $last_fine = $due;
1131
1132                 $grace_period = OpenILS::Application::Circ::CircCommon->extend_grace_period($c->$circ_lib_method->to_fieldmapper->id,$c->$due_date_method,$grace_period,undef,$hoo{$c->$circ_lib_method});
1133             }
1134
1135             return if ($last_fine > $now);
1136             # Generate fines for each past interval, including the one we are inside
1137             my $pending_fine_count = ceil( ($now - $last_fine) / $fine_interval );
1138
1139             if ( $last_fine == $due                         # we have no fines yet
1140                  && $grace_period                           # and we have a grace period
1141                  && $now < $due + $grace_period             # and some date math says were are within the grace period
1142             ) {
1143                 $client->respond( "Still inside grace period of: ". seconds_to_interval( $grace_period )."\n" );
1144                 $log->info( "Circ ".$c->id." is still inside grace period of: $grace_period [". seconds_to_interval( $grace_period ).']' );
1145                 return;
1146             }
1147
1148             $client->respond( "\t$pending_fine_count pending fine(s)\n" );
1149             return unless ($pending_fine_count);
1150
1151             my $recurring_fine = int($c->$recurring_fine_method * 100);
1152             my $max_fine = int($c->max_fine * 100);
1153
1154             my $skip_closed_check = $U->ou_ancestor_setting_value(
1155                 $c->$circ_lib_method->to_fieldmapper->id, 'circ.fines.charge_when_closed');
1156             $skip_closed_check = $U->is_true($skip_closed_check);
1157
1158             my $truncate_to_max_fine = $U->ou_ancestor_setting_value(
1159                 $c->$circ_lib_method->to_fieldmapper->id, 'circ.fines.truncate_to_max_fine');
1160             $truncate_to_max_fine = $U->is_true($truncate_to_max_fine);
1161
1162             my ($latest_billing_ts, $latest_amount) = ('',0);
1163             for (my $bill = 1; $bill <= $pending_fine_count; $bill++) {
1164     
1165                 if ($current_fine_total >= $max_fine) {
1166                     $c->update({stop_fines => 'MAXFINES', stop_fines_time => 'now'}) if ($ctype eq 'circulation');
1167                     $client->respond(
1168                         "\tMaximum fine level of ".$c->max_fine.
1169                         " reached for this $ctype.\n".
1170                         "\tNo more fines will be generated.\n" );
1171                     last;
1172                 }
1173                 
1174                 # XXX Use org time zone (or default to 'local') once we have the ou setting built for that
1175                 my $billing_ts = DateTime->from_epoch( epoch => $last_fine, time_zone => 'local' );
1176                 my $current_bill_count = $bill;
1177                 while ( $current_bill_count ) {
1178                     $billing_ts->add( seconds_to_interval_hash( $fine_interval ) );
1179                     $current_bill_count--;
1180                 }
1181
1182                 my $timestamptz = $billing_ts->strftime('%FT%T%z');
1183                 if (!$skip_closed_check) {
1184                     my $dow = $billing_ts->day_of_week_0();
1185                     my $dow_open = "dow_${dow}_open";
1186                     my $dow_close = "dow_${dow}_close";
1187
1188                     if (my $h = $hoo{$c->$circ_lib_method}) {
1189                         return if ( $h->$dow_open eq '00:00:00' and $h->$dow_close eq '00:00:00');
1190                     }
1191     
1192                     my @cl = actor::org_unit::closed_date->search_where(
1193                             { close_start   => { '<=' => $timestamptz },
1194                               close_end => { '>=' => $timestamptz },
1195                               org_unit  => $c->$circ_lib_method }
1196                     );
1197                     return if (@cl);
1198                 }
1199
1200                 # The billing amount for this billing normally ought to be the recurring fine amount.
1201                 # However, if the recurring fine amount would cause total fines to exceed the max fine amount,
1202                 # we may wish to reduce the amount for this billing (if circ.fines.truncate_to_max_fine is true).
1203                 my $this_billing_amount = $recurring_fine;
1204                 if ( $truncate_to_max_fine && ($current_fine_total + $this_billing_amount) > $max_fine ) {
1205                     $this_billing_amount = ($max_fine - $current_fine_total);
1206                 }
1207                 $current_fine_total += $this_billing_amount;
1208                 $latest_amount += $this_billing_amount;
1209                 $latest_billing_ts = $timestamptz;
1210
1211                 money::billing->create(
1212                     { xact      => ''.$c->id,
1213                       note      => "System Generated Overdue Fine",
1214                       billing_type  => "Overdue materials",
1215                       btype     => 1,
1216                       amount    => sprintf('%0.2f', $this_billing_amount/100),
1217                       billing_ts    => $timestamptz,
1218                     }
1219                 );
1220
1221             }
1222
1223             $client->respond( "\t\tAdding fines totaling $latest_amount for overdue up to $latest_billing_ts\n" )
1224                 if ($latest_billing_ts and $latest_amount);
1225
1226             $self->method_lookup('open-ils.storage.transaction.commit')->run;
1227
1228             if(1) { 
1229
1230                 # Caluclate penalties inline
1231                 OpenILS::Utils::Penalty->calculate_penalties(
1232                     undef, $c->usr->to_fieldmapper->id.'', $c->$circ_lib_method->to_fieldmapper->id.'');
1233
1234             } else {
1235
1236                 # Calculate penalties with an aysnc call to the penalty server.  This approach
1237                 # may lead to duplicate penalties since multiple penalty processes for a
1238                 # given user may be running at the same time. Leave this here for reference 
1239                 # in case we later find that asyc calls are needed in some environments.
1240                 $penalty->request(
1241                     'open-ils.penalty.patron_penalty.calculate',
1242                     { patronid  => ''.$c->usr,
1243                     context_org => ''.$c->$circ_lib_method,
1244                     update  => 1,
1245                     background  => 1,
1246                     }
1247                 )->gather(1);
1248             }
1249
1250         };
1251
1252         if ($@) {
1253             my $e = $@;
1254             $client->respond( "Error processing overdue $ctype [".$c->id."]:\n\n$e\n" );
1255             $log->error("Error processing overdue $ctype [".$c->id."]:\n$e\n");
1256             $self->method_lookup('open-ils.storage.transaction.rollback')->run;
1257             last if ($e =~ /IS NOT CONNECTED TO THE NETWORK/o);
1258         }
1259     }
1260 }
1261 __PACKAGE__->register_method(
1262     api_name        => 'open-ils.storage.action.circulation.overdue.generate_fines',
1263     api_level       => 1,
1264     stream      => 1,
1265     method          => 'generate_fines',
1266 );
1267
1268
1269
1270 sub new_hold_copy_targeter {
1271     my $self = shift;
1272     my $client = shift;
1273     my $check_expire = shift;
1274     my $one_hold = shift;
1275     my $find_copy = shift;
1276
1277     local $OpenILS::Application::Storage::WRITE = 1;
1278
1279     $self->{target_weight} = {};
1280     $self->{max_loops} = {};
1281
1282     my $holds;
1283
1284     try {
1285         if ($one_hold) {
1286             $self->method_lookup('open-ils.storage.transaction.begin')->run( $client );
1287             $holds = [ action::hold_request->search_where( { id => $one_hold, fulfillment_time => undef, cancel_time => undef, frozen => 'f' } ) ];
1288         } elsif ( $check_expire ) {
1289
1290             # what's the retarget time threashold?
1291             my $time = time;
1292             $check_expire ||= '12h';
1293             $check_expire = interval_to_seconds( $check_expire );
1294
1295             my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime(time() - $check_expire);
1296             $year += 1900;
1297             $mon += 1;
1298             my $expire_threshold = sprintf(
1299                 '%s-%0.2d-%0.2dT%0.2d:%0.2d:%0.2d-00',
1300                 $year, $mon, $mday, $hour, $min, $sec
1301             );
1302
1303             # find all the holds holds needing retargeting
1304             $holds = [ action::hold_request->search_where(
1305                             { capture_time => undef,
1306                               fulfillment_time => undef,
1307                               cancel_time => undef,
1308                               frozen => 'f',
1309                               prev_check_time => { '<=' => $expire_threshold },
1310                             },
1311                             { order_by => 'selection_depth DESC, request_time,prev_check_time' } ) ];
1312
1313             # find all the holds holds needing first time targeting
1314             push @$holds, action::hold_request->search(
1315                             capture_time => undef,
1316                             fulfillment_time => undef,
1317                             prev_check_time => undef,
1318                             frozen => 'f',
1319                             cancel_time => undef,
1320                             { order_by => 'selection_depth DESC, request_time' } );
1321         } else {
1322
1323             # find all the holds holds needing first time targeting ONLY
1324             $holds = [ action::hold_request->search(
1325                             capture_time => undef,
1326                             fulfillment_time => undef,
1327                             prev_check_time => undef,
1328                             cancel_time => undef,
1329                             frozen => 'f',
1330                             { order_by => 'selection_depth DESC, request_time' } ) ];
1331         }
1332     } catch Error with {
1333         my $e = shift;
1334         die "Could not retrieve uncaptured hold requests:\n\n$e\n";
1335     };
1336
1337     my @closed = actor::org_unit::closed_date->search_where(
1338         { close_start => { '<=', 'now' },
1339           close_end => { '>=', 'now' } }
1340     );
1341
1342     if ($check_expire) {
1343
1344         # $check_expire, if it exists, was already converted to seconds
1345         my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime(time() + $check_expire);
1346         $year += 1900;
1347         $mon += 1;
1348
1349         my $next_check_time = sprintf(
1350             '%s-%0.2d-%0.2dT%0.2d:%0.2d:%0.2d-00',
1351             $year, $mon, $mday, $hour, $min, $sec
1352         );
1353
1354
1355         my @closed_at_next = actor::org_unit::closed_date->search_where(
1356             { close_start => { '<=', $next_check_time },
1357               close_end => { '>=', $next_check_time } }
1358         );
1359
1360         my @new_closed;
1361         for my $c_at_n (@closed_at_next) {
1362             if (grep { ''.$_->org_unit eq ''.$c_at_n->org_unit } @closed) {
1363                 push @new_closed, $c_at_n;
1364             }
1365         }
1366         @closed = @new_closed;
1367     }
1368
1369     my @successes;
1370     my $actor = OpenSRF::AppSession->create('open-ils.actor');
1371
1372     my $target_when_closed = {};
1373     my $target_when_closed_if_at_pickup_lib = {};
1374
1375     for my $hold (@$holds) {
1376         try {
1377             #start a transaction if needed
1378             if ($self->method_lookup('open-ils.storage.transaction.current')->run) {
1379                 $log->debug("Cleaning up after previous transaction\n");
1380                 $self->method_lookup('open-ils.storage.transaction.rollback')->run;
1381             }
1382             $self->method_lookup('open-ils.storage.transaction.begin')->run( $client );
1383             $log->info("Processing hold ".$hold->id."...\n");
1384
1385             #first, re-fetch the hold, to make sure it's not captured already
1386             $hold->remove_from_object_index();
1387             $hold = action::hold_request->retrieve( $hold->id );
1388
1389             die "OK\n" if (!$hold or $hold->capture_time or $hold->cancel_time);
1390
1391             # remove old auto-targeting maps
1392             my @oldmaps = action::hold_copy_map->search( hold => $hold->id );
1393             $_->delete for (@oldmaps);
1394
1395             if ($hold->expire_time) {
1396                 my $ex_time = $parser->parse_datetime( cleanse_ISO8601( $hold->expire_time ) );
1397                 if ( DateTime->compare($ex_time, DateTime->now) < 0 ) {
1398
1399                     # cancel cause = un-targeted expiration
1400                     $hold->update( { cancel_time => 'now', cancel_cause => 1 } ); 
1401
1402                     # refresh fields from the DB while still in the xact
1403                     my $fm_hold = $hold->to_fieldmapper; 
1404
1405                     $self->method_lookup('open-ils.storage.transaction.commit')->run;
1406
1407                     # tell A/T the hold was cancelled
1408                     my $ses = OpenSRF::AppSession->create('open-ils.trigger');
1409                     $ses->request('open-ils.trigger.event.autocreate', 
1410                         'hold_request.cancel.expire_no_target', $fm_hold, $fm_hold->pickup_lib);
1411
1412                     die "OK\n";
1413                 }
1414             }
1415
1416             my $all_copies = [];
1417
1418             # find filters for MR holds
1419             my ($types, $formats, $lang);
1420             if (defined($hold->holdable_formats)) {
1421                 ($types, $formats, $lang) = split '-', $hold->holdable_formats;
1422             }
1423
1424             # find all the potential copies
1425             if ($hold->hold_type eq 'M') {
1426                 my $records = [
1427                     map {
1428                         isTrue($_->deleted) ?  () : ($_->id)
1429                     } metabib::metarecord->retrieve($hold->target)->source_records
1430                 ];
1431                 if(@$records > 0) {
1432                     for my $r ( map
1433                             {$_->record}
1434                             metabib::record_descriptor
1435                                 ->search(
1436                                     record => $records,
1437                                     ( $types   ? (item_type => [split '', $types])   : () ),
1438                                     ( $formats ? (item_form => [split '', $formats]) : () ),
1439                                     ( $lang    ? (item_lang => $lang)                : () ),
1440                                 )
1441                     ) {
1442                         my ($rtree) = $self
1443                             ->method_lookup( 'open-ils.storage.biblio.record_entry.ranged_tree')
1444                             ->run( $r->id, $hold->selection_ou, $hold->selection_depth );
1445
1446                         for my $cn ( @{ $rtree->call_numbers } ) {
1447                             push @$all_copies,
1448                                 asset::copy->search_where(
1449                                     { id => [map {$_->id} @{ $cn->copies }],
1450                                       deleted => 'f' }
1451                                 ) if ($cn && @{ $cn->copies });
1452                         }
1453                     }
1454                 }
1455             } elsif ($hold->hold_type eq 'T') {
1456                 my ($rtree) = $self
1457                     ->method_lookup( 'open-ils.storage.biblio.record_entry.ranged_tree')
1458                     ->run( $hold->target, $hold->selection_ou, $hold->selection_depth );
1459
1460                 unless ($rtree) {
1461                     push @successes, { hold => $hold->id, eligible_copies => 0, error => 'NO_RECORD' };
1462                     die "OK\n";
1463                 }
1464
1465                 for my $cn ( @{ $rtree->call_numbers } ) {
1466                     push @$all_copies,
1467                         asset::copy->search_where(
1468                             { id => [map {$_->id} @{ $cn->copies }],
1469                               deleted => 'f' }
1470                         ) if ($cn && @{ $cn->copies });
1471                 }
1472             } elsif ($hold->hold_type eq 'V') {
1473                 my ($vtree) = $self
1474                     ->method_lookup( 'open-ils.storage.asset.call_number.ranged_tree')
1475                     ->run( $hold->target, $hold->selection_ou, $hold->selection_depth );
1476
1477                 push @$all_copies,
1478                     asset::copy->search_where(
1479                         { id => [map {$_->id} @{ $vtree->copies }],
1480                           deleted => 'f' }
1481                     ) if ($vtree && @{ $vtree->copies });
1482
1483             } elsif ($hold->hold_type eq 'P') {
1484                 my @part_maps = asset::copy_part_map->search_where( { part => $hold->target } );
1485                 $all_copies = [
1486                     asset::copy->search_where(
1487                         { id => [map {$_->target_copy} @part_maps],
1488                           deleted => 'f' }
1489                     )
1490                 ] if (@part_maps);
1491                     
1492             } elsif ($hold->hold_type eq 'I') {
1493                 my ($itree) = $self
1494                     ->method_lookup( 'open-ils.storage.serial.issuance.ranged_tree')
1495                     ->run( $hold->target, $hold->selection_ou, $hold->selection_depth );
1496
1497                 push @$all_copies,
1498                     asset::copy->search_where(
1499                         { id => [map {$_->unit->id} @{ $itree->items }],
1500                           deleted => 'f' }
1501                     ) if ($itree && @{ $itree->items });
1502                     
1503             } elsif  ($hold->hold_type eq 'C' || $hold->hold_type eq 'R' || $hold->hold_type eq 'F') {
1504                 my $_cp = asset::copy->retrieve($hold->target);
1505                 push @$all_copies, $_cp if $_cp;
1506             }
1507
1508             # Force and recall holds bypass pretty much everything
1509             if ($hold->hold_type ne 'R' && $hold->hold_type ne 'F') {
1510                 # trim unholdables
1511                 @$all_copies = grep {   isTrue($_->status->holdable) && 
1512                             isTrue($_->location->holdable) && 
1513                             isTrue($_->holdable) &&
1514                             !isTrue($_->deleted) &&
1515                             (isTrue($hold->mint_condition) ? isTrue($_->mint_condition) : 1) &&
1516                             ( ( $hold->hold_type ne 'C' && $hold->hold_type ne 'I' # Copy-level holds don't care about parts
1517                                 && $hold->hold_type ne 'P' ) ? $_->part_maps->count == 0 : 1)
1518                         } @$all_copies;
1519             }
1520
1521             # let 'em know we're still working
1522             $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
1523             
1524             # if we have no copies ...
1525             if (!ref $all_copies || !@$all_copies) {
1526                 $log->info("\tNo copies available for targeting at all!\n");
1527                 push @successes, { hold => $hold->id, eligible_copies => 0, error => 'NO_COPIES' };
1528
1529                 $hold->update( { prev_check_time => 'today', current_copy => undef } );
1530                 $self->method_lookup('open-ils.storage.transaction.commit')->run;
1531                 die "OK\n";
1532             }
1533
1534             my $copy_count = @$all_copies;
1535             my $found_copy = undef;
1536             $found_copy = 1 if($find_copy and grep $_ == $find_copy, @$all_copies);
1537
1538             # map the potentials, so that we can pick up checkins
1539             # XXX Loop-based targeting may require that /only/ copies from this loop should be added to
1540             # XXX the potentials list.  If this is the cased, hold_copy_map creation will move down further.
1541             my $pu_lib = ''.$hold->pickup_lib;
1542             my $prox_list = create_prox_list( $self, $pu_lib, $all_copies, $hold );
1543             $log->debug( "\tMapping ".scalar(@$all_copies)." potential copies for hold ".$hold->id);
1544             for my $prox ( keys %$prox_list ) {
1545                 action::hold_copy_map->create( { proximity => $prox, hold => $hold->id, target_copy => $_ } )
1546                     for keys( %{{ map { $_->id => 1 } @{$$prox_list{$prox}} }} );
1547             }
1548
1549             #$client->status( new OpenSRF::DomainObject::oilsContinueStatus );
1550
1551             my @good_copies;
1552             for my $c (@$all_copies) {
1553                 # current target
1554                 next if ($hold->current_copy and $c->id eq $hold->current_copy);
1555
1556                 # skip on circ lib is closed IFF we care
1557                 my $ignore_closing;
1558
1559                 if (''.$hold->pickup_lib eq ''.$c->circ_lib) {
1560                     $ignore_closing = ou_ancestor_setting_value_or_cache(
1561                         $actor,
1562                         ''.$c->circ_lib,
1563                         'circ.holds.target_when_closed_if_at_pickup_lib',
1564                         $target_when_closed_if_at_pickup_lib
1565                     ) || 0;
1566                 }
1567                 if (not $ignore_closing) {  # one more chance to find a reason
1568                                             # to ignore OU closedness.
1569                     $ignore_closing = ou_ancestor_setting_value_or_cache(
1570                         $actor,
1571                         ''.$c->circ_lib,
1572                         'circ.holds.target_when_closed',
1573                         $target_when_closed
1574                     ) || 0;
1575                 }
1576
1577 #               $logger->info(
1578 #                   "For hold " . $hold->id . " and copy with circ_lib " .
1579 #                   $c->circ_lib . " we " .
1580 #                   ($ignore_closing ? "ignore" : "respect")
1581 #                   . " closed dates"
1582 #               );
1583
1584                 next if (
1585                     (not $ignore_closing) and
1586                     (grep { ''.$_->org_unit eq ''.$c->circ_lib } @closed)
1587                 );
1588
1589                 # target of another hold
1590                 next if (action::hold_request
1591                         ->search_where(
1592                             { current_copy => $c->id,
1593                               fulfillment_time => undef,
1594                               cancel_time => undef,
1595                             }
1596                         )
1597                 );
1598
1599                 # we passed all three, keep it
1600                 push @good_copies, $c if ($c);
1601                 #$client->status( new OpenSRF::DomainObject::oilsContinueStatus );
1602             }
1603
1604             $log->debug("\t".scalar(@good_copies)." (non-current) copies available for targeting...");
1605
1606             my $old_best = $hold->current_copy;
1607             my $old_best_still_valid = 0; # Assume no, but the next line says yes if it is still a potential.
1608             $old_best_still_valid = 1 if ( $old_best && grep { ''.$old_best->id eq ''.$_->id } @$all_copies );
1609             $hold->update({ current_copy => undef }) if ($old_best);
1610     
1611             if (!scalar(@good_copies)) {
1612                 $log->info("\tNo (non-current) copies eligible to fill the hold.");
1613                 if ( $old_best_still_valid ) {
1614                     # the old copy is still available
1615                     $log->debug("\tPushing current_copy back onto the targeting list");
1616                     push @good_copies, $old_best;
1617                 } else {
1618                     # oops, old copy is not available
1619                     $log->debug("\tcurrent_copy is no longer available for targeting... NEXT HOLD, PLEASE!");
1620                     $hold->update( { prev_check_time => 'today' } );
1621                     $self->method_lookup('open-ils.storage.transaction.commit')->run;
1622                     push @successes, { hold => $hold->id, eligible_copies => 0, error => 'NO_TARGETS' };
1623                     die "OK\n";
1624                 }
1625             }
1626
1627             # reset prox list after trimming good copies
1628             $prox_list = create_prox_list(
1629                 $self, $pu_lib,
1630                 [ grep { $_->status == 0 || $_->status == 7 } @good_copies ],
1631                 $hold
1632             );
1633
1634             $all_copies = [ grep { ''.$_->circ_lib ne $pu_lib && ( $_->status == 0 || $_->status == 7 ) } @good_copies ];
1635
1636             my $min_prox = [ sort keys %$prox_list ]->[0];
1637             my $best;
1638             if  ($hold->hold_type eq 'R' || $hold->hold_type eq 'F') { # Recall/Force holds bypass hold rules.
1639                 $best = $good_copies[0] if(scalar @good_copies);
1640             } else {
1641                 $best = choose_nearest_copy($hold, { $min_prox => delete($$prox_list{$min_prox}) });
1642             }
1643
1644             $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
1645
1646             if (!$best) {
1647                 $log->debug("\tNothing at the pickup lib, looking elsewhere among ".scalar(@$all_copies)." copies");
1648
1649                 $self->{max_loops}{$pu_lib} = $actor->request(
1650                     'open-ils.actor.ou_setting.ancestor_default' => $pu_lib => 'circ.holds.max_org_unit_target_loops'
1651                 )->gather(1);
1652
1653                 if (defined($self->{max_loops}{$pu_lib})) {
1654                     $self->{max_loops}{$pu_lib} = $self->{max_loops}{$pu_lib}{value};
1655
1656                     my %circ_lib_map =  map { (''.$_->circ_lib => 1) } @$all_copies;
1657                     my $circ_lib_list = [keys %circ_lib_map];
1658     
1659                     my $cstore = OpenSRF::AppSession->create('open-ils.cstore');
1660     
1661                     # Grab the "biggest" loop for this hold so far
1662                     my $current_loop = $cstore->request(
1663                         'open-ils.cstore.json_query',
1664                         { distinct => 1,
1665                           select => { aufhmxl => ['max'] },
1666                           from => 'aufhmxl',
1667                           where => { hold => $hold->id}
1668                         }
1669                     )->gather(1);
1670     
1671                     $current_loop = $current_loop->{max} if ($current_loop);
1672                     $current_loop ||= 1;
1673     
1674                     my $exclude_list = $cstore->request(
1675                         'open-ils.cstore.json_query.atomic',
1676                         { distinct => 1,
1677                           select => { aufhol => ['circ_lib'] },
1678                           from => 'aufhol',
1679                           where => { hold => $hold->id}
1680                         }
1681                     )->gather(1);
1682     
1683                     my @keepers;
1684                     if ($exclude_list && @$exclude_list) {
1685                         $exclude_list = [map {$_->{circ_lib}} @$exclude_list];
1686                         # check to see if we've used up every library in the potentials list
1687                         for my $l ( @$circ_lib_list ) {
1688                             my $keep = 1;
1689                             for my $ex ( @$exclude_list ) {
1690                                 if ($ex eq $l) {
1691                                     $keep = 0;
1692                                     last;
1693                                 }
1694                             }
1695                             push(@keepers, $l) if ($keep);
1696                         }
1697                     } else {
1698                         @keepers = @$circ_lib_list;
1699                     }
1700     
1701                     $current_loop++ if (!@keepers);
1702     
1703                     if ($self->{max_loops}{$pu_lib} && $self->{max_loops}{$pu_lib} >= $current_loop) {
1704                         # We haven't exceeded max_loops yet
1705                         my @keeper_copies;
1706                         for my $cp ( @$all_copies ) {
1707                             push(@keeper_copies, $cp) if ( !@keepers || grep { $_ eq ''.$cp->circ_lib } @keepers );
1708
1709                         }
1710                         $all_copies = [@keeper_copies];
1711                     } else {
1712                         # We have, and should remove potentials and cancel the hold
1713                         my @oldmaps = action::hold_copy_map->search( hold => $hold->id );
1714                         $_->delete for (@oldmaps);
1715
1716                         # cancel cause = un-targeted expiration
1717                         $hold->update( { cancel_time => 'now', cancel_cause => 1 } ); 
1718
1719                         # refresh fields from the DB while still in the xact
1720                         my $fm_hold = $hold->to_fieldmapper; 
1721
1722                         $self->method_lookup('open-ils.storage.transaction.commit')->run;
1723
1724                         # tell A/T the hold was cancelled
1725                         my $ses = OpenSRF::AppSession->create('open-ils.trigger');
1726                         $ses->request('open-ils.trigger.event.autocreate', 
1727                             'hold_request.cancel.expire_no_target', $fm_hold, $fm_hold->pickup_lib);
1728
1729                         die "OK\n";
1730                     }
1731
1732                     $prox_list = create_prox_list( $self, $pu_lib, $all_copies, $hold );
1733
1734                     $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
1735
1736                 }
1737
1738                 $best = choose_nearest_copy($hold, $prox_list);
1739             }
1740
1741             $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
1742             if ($old_best) {
1743                 # hold wasn't fulfilled, record the fact
1744             
1745                 $log->info("\tHold was not (but should have been) fulfilled by ".$old_best->id);
1746                 action::unfulfilled_hold_list->create(
1747                         { hold => ''.$hold->id,
1748                           current_copy => ''.$old_best->id,
1749                           circ_lib => ''.$old_best->circ_lib,
1750                         });
1751             }
1752
1753             if ($best) {
1754                 $hold->update( { current_copy => ''.$best->id, prev_check_time => 'now' } );
1755                 $log->debug("\tUpdating hold [".$hold->id."] with new 'current_copy' [".$best->id."] for hold fulfillment.");
1756             } elsif (
1757                 $old_best_still_valid &&
1758                 !action::hold_request
1759                     ->search_where(
1760                         { current_copy => $old_best->id,
1761                           fulfillment_time => undef,
1762                           cancel_time => undef,
1763                         }       
1764                     ) &&
1765                 ( OpenILS::Utils::PermitHold::permit_copy_hold(
1766                     { title => $old_best->call_number->record->to_fieldmapper,
1767                       title_descriptor => $old_best->call_number->record->record_descriptor->next->to_fieldmapper,
1768                       patron => $hold->usr->to_fieldmapper,
1769                       copy => $old_best->to_fieldmapper,
1770                       requestor => $hold->requestor->to_fieldmapper,
1771                       request_lib => $hold->request_lib->to_fieldmapper,
1772                       pickup_lib => $hold->pickup_lib->id,
1773                       retarget => 1
1774                     }
1775                 ))
1776             ) {     
1777                 $hold->update( { prev_check_time => 'now', current_copy => ''.$old_best->id } );
1778                 $log->debug( "\tRetargeting the previously targeted copy [".$old_best->id."]" );
1779             } else {
1780                 $hold->update( { prev_check_time => 'now' } );
1781                 $log->info( "\tThere were no targetable copies for the hold" );
1782                 process_recall($actor, $log, $hold, \@good_copies);
1783             }
1784
1785             $self->method_lookup('open-ils.storage.transaction.commit')->run;
1786             $log->info("\tProcessing of hold ".$hold->id." complete.");
1787
1788             push @successes,
1789                 { hold => $hold->id,
1790                   old_target => ($old_best ? $old_best->id : undef),
1791                   eligible_copies => $copy_count,
1792                   target => ($best ? $best->id : undef),
1793                   found_copy => $found_copy };
1794
1795         } otherwise {
1796             my $e = shift;
1797             if ($e !~ /^OK/o) {
1798                 $log->error("Processing of hold failed:  $e");
1799                 $self->method_lookup('open-ils.storage.transaction.rollback')->run;
1800                 throw $e if ($e =~ /IS NOT CONNECTED TO THE NETWORK/o);
1801             }
1802         };
1803     }
1804
1805     return \@successes;
1806 }
1807 __PACKAGE__->register_method(
1808     api_name    => 'open-ils.storage.action.hold_request.copy_targeter',
1809     api_level   => 1,
1810     method      => 'new_hold_copy_targeter',
1811 );
1812
1813 sub process_recall {
1814     my ($actor, $log, $hold, $good_copies) = @_;
1815
1816     # Bail early if we don't have required settings to avoid spurious requests
1817     my ($recall_threshold, $return_interval, $fine_rules);
1818
1819     my $rv = $actor->request(
1820         'open-ils.actor.ou_setting.ancestor_default', ''.$hold->pickup_lib, 'circ.holds.recall_threshold'
1821     )->gather(1);
1822
1823     if (!$rv) {
1824         $log->info("Recall threshold was not set; bailing out on hold ".$hold->id." processing.");
1825         return;
1826     }
1827     $recall_threshold = $rv->{value};
1828
1829     $rv = $actor->request(
1830         'open-ils.actor.ou_setting.ancestor_default', ''.$hold->pickup_lib, 'circ.holds.recall_return_interval'
1831     )->gather(1);
1832
1833     if (!$rv) {
1834         $log->info("Recall return interval was not set; bailing out on hold ".$hold->id." processing.");
1835         return;
1836     }
1837     $return_interval = $rv->{value};
1838
1839     $rv = $actor->request(
1840         'open-ils.actor.ou_setting.ancestor_default', ''.$hold->pickup_lib, 'circ.holds.recall_fine_rules'
1841     )->gather(1);
1842
1843     if ($rv) {
1844         $fine_rules = $rv->{value};
1845     }
1846
1847     $log->info("Recall threshold: $recall_threshold; return interval: $return_interval");
1848
1849     # We want checked out copies (status = 1) at the hold pickup lib
1850     my $all_copies = [grep { $_->status == 1 } grep {''.$_->circ_lib eq ''.$hold->pickup_lib } @$good_copies];
1851
1852     my @copy_ids = map { $_->id } @$all_copies;
1853
1854     $log->info("Found " . scalar(@$all_copies) . " eligible checked-out copies for recall");
1855
1856     my $return_date = DateTime->now(time_zone => 'local')->add(seconds => interval_to_seconds($return_interval))->iso8601();
1857
1858     # Iterate over the checked-out copies to find a copy with a
1859     # loan period longer than the recall threshold:
1860     my $circs = [ action::circulation->search_where(
1861         { target_copy => \@copy_ids, checkin_time => undef, duration => { '>' => $recall_threshold } },
1862         { order_by => 'due_date ASC' }
1863     )];
1864
1865     # If we have a candidate copy, then:
1866     if (scalar(@$circs)) {
1867         my $circ = $circs->[0];
1868         $log->info("Recalling circ ID : " . $circ->id);
1869
1870         # Give the user a new due date of either a full recall threshold,
1871         # or the return interval, whichever is further in the future
1872         my $threshold_date = DateTime::Format::ISO8601->parse_datetime(cleanse_ISO8601($circ->xact_start))->add(seconds => interval_to_seconds($recall_threshold))->iso8601();
1873         if (DateTime->compare(DateTime::Format::ISO8601->parse_datetime($threshold_date), DateTime::Format::ISO8601->parse_datetime($return_date)) == 1) {
1874             $return_date = $threshold_date;
1875         }
1876
1877         my $update_fields = {
1878             due_date => $return_date,
1879             renewal_remaining => 0,
1880         };
1881
1882         # If the OU hasn't defined new fine rules for recalls, keep them
1883         # as they were
1884         if ($fine_rules) {
1885             $log->info("Apply recall fine rules: $fine_rules");
1886             my $rules = OpenSRF::Utils::JSON->JSON2perl($fine_rules);
1887             $update_fields->{recurring_fine} = $rules->[0];
1888             $update_fields->{fine_interval} = $rules->[1];
1889             $update_fields->{max_fine} = $rules->[2];
1890         }
1891
1892         # Adjust circ for current user
1893         $circ->update($update_fields);
1894
1895         # Create trigger event for notifying current user
1896         my $ses = OpenSRF::AppSession->create('open-ils.trigger');
1897         $ses->request('open-ils.trigger.event.autocreate', 'circ.recall.target', $circ->to_fieldmapper(), $circ->circ_lib->id);
1898     }
1899
1900     $log->info("Processing of hold ".$hold->id." for recall is now complete.");
1901 }
1902
1903 sub reservation_targeter {
1904     my $self = shift;
1905     my $client = shift;
1906     my $one_reservation = shift;
1907
1908     local $OpenILS::Application::Storage::WRITE = 1;
1909
1910     my $reservations;
1911
1912     try {
1913         if ($one_reservation) {
1914             $self->method_lookup('open-ils.storage.transaction.begin')->run( $client );
1915             $reservations = [ booking::reservation->search_where( { id => $one_reservation, capture_time => undef, cancel_time => undef } ) ];
1916         } else {
1917
1918             # find all the reservations needing targeting
1919             $reservations = [
1920                 booking::reservation->search_where(
1921                     { current_resource => undef,
1922                       cancel_time => undef,
1923                       start_time => { '>' => 'now' }
1924                     },
1925                     { order_by => 'start_time' }
1926                 )
1927             ];
1928         }
1929     } catch Error with {
1930         my $e = shift;
1931         die "Could not retrieve reservation requests:\n\n$e\n";
1932     };
1933
1934     my @successes = ();
1935     for my $bresv (@$reservations) {
1936         try {
1937             #start a transaction if needed
1938             if ($self->method_lookup('open-ils.storage.transaction.current')->run) {
1939                 $log->debug("Cleaning up after previous transaction\n");
1940                 $self->method_lookup('open-ils.storage.transaction.rollback')->run;
1941             }
1942             $self->method_lookup('open-ils.storage.transaction.begin')->run( $client );
1943             $log->info("Processing reservation ".$bresv->id."...\n");
1944
1945             #first, re-fetch the hold, to make sure it's not captured already
1946             $bresv->remove_from_object_index();
1947             $bresv = booking::reservation->retrieve( $bresv->id );
1948
1949             die "OK\n" if (!$bresv or $bresv->capture_time or $bresv->cancel_time);
1950
1951             my $end_time = $parser->parse_datetime( cleanse_ISO8601( $bresv->end_time ) );
1952             if (DateTime->compare($end_time, DateTime->now) < 0) {
1953
1954                 # cancel cause = un-targeted expiration
1955                 $bresv->update( { cancel_time => 'now' } ); 
1956
1957                 # refresh fields from the DB while still in the xact
1958                 my $fm_bresv = $bresv->to_fieldmapper;
1959
1960                 $self->method_lookup('open-ils.storage.transaction.commit')->run;
1961
1962                 # tell A/T the reservation was cancelled
1963                 my $ses = OpenSRF::AppSession->create('open-ils.trigger');
1964                 $ses->request('open-ils.trigger.event.autocreate', 
1965                     'booking.reservation.cancel.expire_no_target', $fm_bresv, $fm_bresv->pickup_lib);
1966
1967                 die "OK\n";
1968             }
1969
1970             my $possible_resources;
1971
1972             # find all the potential resources
1973             if (!$bresv->target_resource) {
1974                 my $filter = { type => $bresv->target_resource_type };
1975                 my $attr_maps = [ booking::reservation_attr_value_map->search( reservation => $bresv->id) ];
1976
1977                 $filter->{attribute_values} = [ map { $_->attr_value } @$attr_maps ] if (@$attr_maps);
1978
1979                 $filter->{available} = [$bresv->start_time, $bresv->end_time];
1980                 my $ses = OpenSRF::AppSession->create('open-ils.booking');
1981                 $possible_resources = $ses->request('open-ils.booking.resources.filtered_id_list', undef, $filter)->gather(1);
1982             } else {
1983                 $possible_resources = $bresv->target_resource;
1984             }
1985
1986             my $all_resources = [ booking::resource->search( id => $possible_resources ) ];
1987             @$all_resources = grep { isTrue($_->type->transferable) || $_->owner.'' eq $bresv->pickup_lib.'' } @$all_resources;
1988
1989
1990             my @good_resources = ();
1991             my %conflicts = ();
1992             for my $res (@$all_resources) {
1993                 unless (isTrue($res->type->catalog_item)) {
1994                     push @good_resources, $res;
1995                     next;
1996                 }
1997
1998                 my $copy = [ asset::copy->search( deleted => 'f', barcode => $res->barcode )]->[0];
1999
2000                 unless ($copy) {
2001                     push @good_resources, $res;
2002                     next;
2003                 }
2004
2005                 # At this point, if we're just targeting one specific
2006                 # resource, just succeed. We don't care about its present
2007                 # copy status.
2008                 if ($bresv->target_resource) {
2009                     push @good_resources, $res;
2010                     next;
2011                 }
2012
2013                 if ($copy->status->id == 0 || $copy->status->id == 7) {
2014                     push @good_resources, $res;
2015                     next;
2016                 }
2017
2018                 if ($copy->status->id == 1) {
2019                     my $circs = [ action::circulation->search_where(
2020                         {target_copy => $copy->id, checkin_time => undef },
2021                         { order_by => 'id DESC' }
2022                     ) ];
2023
2024                     if (@$circs) {
2025                         my $due_date = $circs->[0]->due_date;
2026                         $due_date = $parser->parse_datetime( cleanse_ISO8601( $due_date ) );
2027                         my $start_time = $parser->parse_datetime( cleanse_ISO8601( $bresv->start_time ) );
2028                         if (DateTime->compare($start_time, $due_date) < 0) {
2029                             $conflicts{$res->id} = $circs->[0]->to_fieldmapper;
2030                             next;
2031                         }
2032
2033                         push @good_resources, $res;
2034                     }
2035
2036                     next;
2037                 }
2038
2039                 push @good_resources, $res if (isTrue($copy->status->holdable));
2040             }
2041
2042             # let 'em know we're still working
2043             $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
2044             
2045             # if we have no copies ...
2046             if (!@good_resources) {
2047                 $log->info("\tNo resources available for targeting at all!\n");
2048                 push @successes, { reservation => $bresv->id, eligible_copies => 0, error => 'NO_COPIES', conflicts => \%conflicts };
2049
2050
2051                 $self->method_lookup('open-ils.storage.transaction.commit')->run;
2052                 die "OK\n";
2053             }
2054
2055             $log->debug("\t".scalar(@good_resources)." resources available for targeting...");
2056
2057             # LFW: note that after the inclusion of hold proximity
2058             # adjustment, this prox_list is the only prox_list
2059             # array in this perl package.  Other occurences are
2060             # hashes.
2061             my $prox_list = [];
2062             $$prox_list[0] =
2063             [
2064                 grep {
2065                     $_->owner == $bresv->pickup_lib
2066                 } @good_resources
2067             ];
2068
2069             $all_resources = [grep {$_->owner != $bresv->pickup_lib } @good_resources];
2070             # $all_copies is now a list of copies not at the pickup library
2071
2072             my $best = shift @good_resources;
2073             $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
2074
2075             if (!$best) {
2076                 $log->debug("\tNothing at the pickup lib, looking elsewhere among ".scalar(@$all_resources)." resources");
2077
2078                 $prox_list =
2079                     map  { $_->[1] }
2080                     sort { $a->[0] <=> $b->[0] }
2081                     map  {
2082                         [   actor::org_unit_proximity->search_where(
2083                                 { from_org => $bresv->pickup_lib.'', to_org => $_->owner.'' }
2084                             )->[0]->prox,
2085                             $_
2086                         ]
2087                     } @$all_resources;
2088
2089                 $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
2090
2091                 $best = shift @$prox_list
2092             }
2093
2094             if ($best) {
2095                 $bresv->update( { current_resource => ''.$best->id } );
2096                 $log->debug("\tUpdating reservation [".$bresv->id."] with new 'current_resource' [".$best->id."] for reservation fulfillment.");
2097             }
2098
2099             $self->method_lookup('open-ils.storage.transaction.commit')->run;
2100             $log->info("\tProcessing of bresv ".$bresv->id." complete.");
2101
2102             push @successes,
2103                 { reservation => $bresv->id,
2104                   current_resource => ($best ? $best->id : undef) };
2105
2106         } otherwise {
2107             my $e = shift;
2108             if ($e !~ /^OK/o) {
2109                 $log->error("Processing of bresv failed:  $e");
2110                 $self->method_lookup('open-ils.storage.transaction.rollback')->run;
2111                 throw $e if ($e =~ /IS NOT CONNECTED TO THE NETWORK/o);
2112             }
2113         };
2114     }
2115
2116     return \@successes;
2117 }
2118 __PACKAGE__->register_method(
2119     api_name    => 'open-ils.storage.booking.reservation.resource_targeter',
2120     api_level   => 1,
2121     method      => 'reservation_targeter',
2122 );
2123
2124 my $locations;
2125 my $statuses;
2126 my %cache = (titles => {}, cns => {});
2127
2128 sub copy_hold_capture {
2129     my $self = shift;
2130     my $hold = shift;
2131     my $cps = shift;
2132
2133     if (!defined($cps)) {
2134         try {
2135             $cps = [ asset::copy->search( id => $hold->target ) ];
2136         } catch Error with {
2137             my $e = shift;
2138             die "Could not retrieve initial volume list:\n\n$e\n";
2139         };
2140     }
2141
2142     my @copies = grep { $_->holdable } @$cps;
2143
2144     for (my $i = 0; $i < @$cps; $i++) {
2145         next unless $$cps[$i];
2146         
2147         my $cn = $cache{cns}{$copies[$i]->call_number};
2148         my $rec = $cache{titles}{$cn->record};
2149         $copies[$i] = undef if ($copies[$i] && !grep{ $copies[$i]->status eq $_->id}@$statuses);
2150         $copies[$i] = undef if ($copies[$i] && !grep{ $copies[$i]->location eq $_->id}@$locations);
2151         $copies[$i] = undef if (
2152             !$copies[$i] ||
2153             !$self->{user_filter}->request(
2154                 'open-ils.circ.permit_hold',
2155                 $hold->to_fieldmapper, do {
2156                     my $cp_fm = $copies[$i]->to_fieldmapper;
2157                     $cp_fm->circ_lib( $copies[$i]->circ_lib->to_fieldmapper );
2158                     $cp_fm->location( $copies[$i]->location->to_fieldmapper );
2159                     $cp_fm->status( $copies[$i]->status->to_fieldmapper );
2160                     $cp_fm;
2161                 },
2162                 { title => $rec->to_fieldmapper,
2163                   usr => actor::user->retrieve($hold->usr)->to_fieldmapper,
2164                   requestor => actor::user->retrieve($hold->requestor)->to_fieldmapper,
2165                 })->gather(1)
2166         );
2167         $self->{client}->status( new OpenSRF::DomainObject::oilsContinueStatus );
2168     }
2169
2170     @copies = grep { $_ } @copies;
2171
2172     my $count = @copies;
2173
2174     return unless ($count);
2175     
2176     action::hold_copy_map->search( hold => $hold->id )->delete_all;
2177     
2178     my @maps;
2179     $self->{client}->respond( "\tMapping ".scalar(@copies)." eligable copies for hold ".$hold->id."\n");
2180     for my $c (@copies) {
2181         push @maps, action::hold_copy_map->create( { hold => $hold->id, target_copy => $c->id } );
2182     }
2183     $self->{client}->respond( "\tA total of ".scalar(@maps)." mapping were created for hold ".$hold->id."\n");
2184
2185     return \@copies;
2186 }
2187
2188
2189 sub choose_nearest_copy {
2190     my $hold = shift;
2191     my $prox_list = shift;
2192
2193     for my $p ( sort keys %$prox_list ) {
2194         next unless (ref $$prox_list{$p});
2195
2196         my @capturable = @{ $$prox_list{$p} };
2197         next unless (@capturable);
2198
2199         my $rand = int(rand(scalar(@capturable)));
2200         my %seen = ();
2201         while (my ($c) = splice(@capturable, $rand, 1)) {
2202             return $c if !exists($seen{$c->id}) && ( OpenILS::Utils::PermitHold::permit_copy_hold(
2203                 { title => $c->call_number->record->to_fieldmapper,
2204                   title_descriptor => $c->call_number->record->record_descriptor->next->to_fieldmapper,
2205                   patron => $hold->usr->to_fieldmapper,
2206                   copy => $c->to_fieldmapper,
2207                   requestor => $hold->requestor->to_fieldmapper,
2208                   request_lib => $hold->request_lib->to_fieldmapper,
2209                   pickup_lib => $hold->pickup_lib->id,
2210                   retarget => 1
2211                 }
2212             ));
2213             $seen{$c->id}++;
2214
2215             last unless(@capturable);
2216             $rand = int(rand(scalar(@capturable)));
2217         }
2218     }
2219 }
2220
2221 sub create_prox_list {
2222     my $self = shift;
2223     my $lib = shift;
2224     my $copies = shift;
2225     my $hold = shift;
2226
2227     my $actor = OpenSRF::AppSession->create('open-ils.actor');
2228
2229     my %prox_list;
2230     for my $cp (@$copies) {
2231         my ($prox) = $self->method_lookup('open-ils.storage.asset.copy.proximity')->run( $cp, $lib, $hold );
2232         next unless (defined($prox));
2233
2234         my $copy_circ_lib = ''.$cp->circ_lib;
2235         # Fetch the weighting value for hold targeting, defaulting to 1
2236         $self->{target_weight}{$copy_circ_lib} ||= $actor->request(
2237             'open-ils.actor.ou_setting.ancestor_default' => $copy_circ_lib.'' => 'circ.holds.org_unit_target_weight'
2238         )->gather(1);
2239         $self->{target_weight}{$copy_circ_lib} = $self->{target_weight}{$copy_circ_lib}{value} if (ref $self->{target_weight}{$copy_circ_lib});
2240         $self->{target_weight}{$copy_circ_lib} ||= 1;
2241
2242         $prox_list{$prox} = [] unless defined($prox_list{$prox});
2243         for my $w ( 1 .. $self->{target_weight}{$copy_circ_lib} ) {
2244             push @{$prox_list{$prox}}, $cp;
2245         }
2246     }
2247     return \%prox_list;
2248 }
2249
2250 sub volume_hold_capture {
2251     my $self = shift;
2252     my $hold = shift;
2253     my $vols = shift;
2254
2255     if (!defined($vols)) {
2256         try {
2257             $vols = [ asset::call_number->search( id => $hold->target ) ];
2258             $cache{cns}{$_->id} = $_ for (@$vols);
2259         } catch Error with {
2260             my $e = shift;
2261             die "Could not retrieve initial volume list:\n\n$e\n";
2262         };
2263     }
2264
2265     my @v_ids = map { $_->id } @$vols;
2266
2267     my $cp_list;
2268     try {
2269         $cp_list = [ asset::copy->search( call_number => \@v_ids ) ];
2270     
2271     } catch Error with {
2272         my $e = shift;
2273         warn "Could not retrieve copy list:\n\n$e\n";
2274     };
2275
2276     $self->copy_hold_capture($hold,$cp_list) if (ref $cp_list and @$cp_list);
2277 }
2278
2279 sub title_hold_capture {
2280     my $self = shift;
2281     my $hold = shift;
2282     my $titles = shift;
2283
2284     if (!defined($titles)) {
2285         try {
2286             $titles = [ biblio::record_entry->search( id => $hold->target ) ];
2287             $cache{titles}{$_->id} = $_ for (@$titles);
2288         } catch Error with {
2289             my $e = shift;
2290             die "Could not retrieve initial title list:\n\n$e\n";
2291         };
2292     }
2293
2294     my @t_ids = map { $_->id } @$titles;
2295     my $cn_list;
2296     try {
2297         ($cn_list) = $self->method_lookup('open-ils.storage.direct.asset.call_number.search.record.atomic')->run( \@t_ids );
2298     
2299     } catch Error with {
2300         my $e = shift;
2301         warn "Could not retrieve volume list:\n\n$e\n";
2302     };
2303
2304     $cache{cns}{$_->id} = $_ for (@$cn_list);
2305
2306     $self->volume_hold_capture($hold,$cn_list) if (ref $cn_list and @$cn_list);
2307 }
2308
2309 sub metarecord_hold_capture {
2310     my $self = shift;
2311     my $hold = shift;
2312
2313     my $titles;
2314     try {
2315         $titles = [ metabib::metarecord_source_map->search( metarecord => $hold->target) ];
2316     
2317     } catch Error with {
2318         my $e = shift;
2319         die "Could not retrieve initial title list:\n\n$e\n";
2320     };
2321
2322     try {
2323         my @recs = map {$_->record} metabib::record_descriptor->search( record => $titles, item_type => [split '', $hold->holdable_formats] ); 
2324
2325         $titles = [ biblio::record_entry->search( id => \@recs ) ];
2326     
2327     } catch Error with {
2328         my $e = shift;
2329         die "Could not retrieve format-pruned title list:\n\n$e\n";
2330     };
2331
2332
2333     $cache{titles}{$_->id} = $_ for (@$titles);
2334     $self->title_hold_capture($hold,$titles) if (ref $titles and @$titles);
2335 }
2336
2337 1;