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