]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
Completing Force/Recall Holds
[Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / Application / Circ / Holds.pm
1 # ---------------------------------------------------------------
2 # Copyright (C) 2005  Georgia Public Library Service 
3 # Bill Erickson <highfalutin@gmail.com>
4
5 # This program is free software; you can redistribute it and/or
6 # modify it under the terms of the GNU General Public License
7 # as published by the Free Software Foundation; either version 2
8 # of the License, or (at your option) any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 # ---------------------------------------------------------------
15
16
17 package OpenILS::Application::Circ::Holds;
18 use base qw/OpenILS::Application/;
19 use strict; use warnings;
20 use OpenILS::Application::AppUtils;
21 use DateTime;
22 use Data::Dumper;
23 use OpenSRF::EX qw(:try);
24 use OpenILS::Perm;
25 use OpenILS::Event;
26 use OpenSRF::Utils;
27 use OpenSRF::Utils::Logger qw(:logger);
28 use OpenILS::Utils::CStoreEditor q/:funcs/;
29 use OpenILS::Utils::PermitHold;
30 use OpenSRF::Utils::SettingsClient;
31 use OpenILS::Const qw/:const/;
32 use OpenILS::Application::Circ::Transit;
33 use OpenILS::Application::Actor::Friends;
34 use DateTime;
35 use DateTime::Format::ISO8601;
36 use OpenSRF::Utils qw/:datetime/;
37 use Digest::MD5 qw(md5_hex);
38 use OpenSRF::Utils::Cache;
39 my $apputils = "OpenILS::Application::AppUtils";
40 my $U = $apputils;
41
42 __PACKAGE__->register_method(
43     method    => "test_and_create_hold_batch",
44     api_name  => "open-ils.circ.holds.test_and_create.batch",
45     stream => 1,
46     signature => {
47         desc => q/This is for batch creating a set of holds where every field is identical except for the targets./,
48         params => [
49             { desc => 'Authentication token', type => 'string' },
50             { desc => 'Hash of named parameters.  Same as for open-ils.circ.title_hold.is_possible, though the pertinent target field is automatically populated based on the hold_type and the specified list of targets.', type => 'object'},
51             { desc => 'Array of target ids', type => 'array' }
52         ],
53         return => {
54             desc => 'Array of hold ID on success, -1 on missing arg, event (or ref to array of events) on error(s)',
55         },
56     }
57 );
58
59 __PACKAGE__->register_method(
60     method    => "test_and_create_hold_batch",
61     api_name  => "open-ils.circ.holds.test_and_create.batch.override",
62     stream => 1,
63     signature => {
64         desc  => '@see open-ils.circ.holds.test_and_create.batch',
65     }
66 );
67
68
69 sub test_and_create_hold_batch {
70         my( $self, $conn, $auth, $params, $target_list ) = @_;
71
72         my $override = 1 if $self->api_name =~ /override/;
73
74         my $e = new_editor(authtoken=>$auth);
75         return $e->die_event unless $e->checkauth;
76     $$params{'requestor'} = $e->requestor->id;
77
78     my $target_field;
79     if ($$params{'hold_type'} eq 'T') { $target_field = 'titleid'; }
80     elsif ($$params{'hold_type'} eq 'C') { $target_field = 'copy_id'; }
81     elsif ($$params{'hold_type'} eq 'R') { $target_field = 'copy_id'; }
82     elsif ($$params{'hold_type'} eq 'F') { $target_field = 'copy_id'; }
83     elsif ($$params{'hold_type'} eq 'I') { $target_field = 'issuanceid'; }
84     elsif ($$params{'hold_type'} eq 'V') { $target_field = 'volume_id'; }
85     elsif ($$params{'hold_type'} eq 'M') { $target_field = 'mrid'; }
86     elsif ($$params{'hold_type'} eq 'P') { $target_field = 'partid'; }
87     else { return undef; }
88
89     foreach (@$target_list) {
90         $$params{$target_field} = $_;
91         my $res;
92         if (! $override) {        
93             ($res) = $self->method_lookup(
94                 'open-ils.circ.title_hold.is_possible')->run($auth, $params);
95         }
96         if ($override || $res->{'success'} == 1) {
97             my $ahr = construct_hold_request_object($params);
98             my ($res2) = $self->method_lookup(
99                 $override
100                 ? 'open-ils.circ.holds.create.override'
101                 : 'open-ils.circ.holds.create'
102             )->run($auth, $ahr);
103             $res2 = {
104                 'target' => $$params{$target_field},
105                 'result' => $res2
106             };
107             $conn->respond($res2);
108         } else {
109             $res = {
110                 'target' => $$params{$target_field},
111                 'result' => $res
112             };
113             $conn->respond($res);
114         }
115     }
116     return undef;
117 }
118
119 sub construct_hold_request_object {
120     my ($params) = @_;
121
122     my $ahr = Fieldmapper::action::hold_request->new;
123     $ahr->isnew('1');
124
125     foreach my $field (keys %{ $params }) {
126         if ($field eq 'depth') { $ahr->selection_depth($$params{$field}); }
127         elsif ($field eq 'patronid') {
128             $ahr->usr($$params{$field}); }
129         elsif ($field eq 'titleid') { $ahr->target($$params{$field}); }
130         elsif ($field eq 'copy_id') { $ahr->target($$params{$field}); }
131         elsif ($field eq 'issuanceid') { $ahr->target($$params{$field}); }
132         elsif ($field eq 'volume_id') { $ahr->target($$params{$field}); }
133         elsif ($field eq 'mrid') { $ahr->target($$params{$field}); }
134         elsif ($field eq 'partid') { $ahr->target($$params{$field}); }
135         else {
136             $ahr->$field($$params{$field});
137         }
138     }
139     return $ahr;
140 }
141
142 __PACKAGE__->register_method(
143     method    => "create_hold_batch",
144     api_name  => "open-ils.circ.holds.create.batch",
145     stream => 1,
146     signature => {
147         desc => q/@see open-ils.circ.holds.create.batch/,
148         params => [
149             { desc => 'Authentication token', type => 'string' },
150             { desc => 'Array of hold objects', type => 'array' }
151         ],
152         return => {
153             desc => 'Array of hold ID on success, -1 on missing arg, event (or ref to array of events) on error(s)',
154         },
155     }
156 );
157
158 __PACKAGE__->register_method(
159     method    => "create_hold_batch",
160     api_name  => "open-ils.circ.holds.create.override.batch",
161     stream => 1,
162     signature => {
163         desc  => '@see open-ils.circ.holds.create.batch',
164     }
165 );
166
167
168 sub create_hold_batch {
169         my( $self, $conn, $auth, $hold_list ) = @_;
170     (my $method = $self->api_name) =~ s/\.batch//og;
171     foreach (@$hold_list) {
172         my ($res) = $self->method_lookup($method)->run($auth, $_);
173         $conn->respond($res);
174     }
175     return undef;
176 }
177
178
179 __PACKAGE__->register_method(
180     method    => "create_hold",
181     api_name  => "open-ils.circ.holds.create",
182     signature => {
183         desc => "Create a new hold for an item.  From a permissions perspective, " .
184                 "the login session is used as the 'requestor' of the hold.  "      . 
185                 "The hold recipient is determined by the 'usr' setting within the hold object. " .
186                 'First we verify the requestor has holds request permissions.  '         .
187                 'Then we verify that the recipient is allowed to make the given hold.  ' .
188                 'If not, we see if the requestor has "override" capabilities.  If not, ' .
189                 'a permission exception is returned.  If permissions allow, we cycle '   .
190                 'through the set of holds objects and create.  '                         .
191                 'If the recipient does not have permission to place multiple holds '     .
192                 'on a single title and said operation is attempted, a permission '       .
193                 'exception is returned',
194         params => [
195             { desc => 'Authentication token',               type => 'string' },
196             { desc => 'Hold object for hold to be created',
197                 type => 'object', class => 'ahr' }
198         ],
199         return => {
200             desc => 'New ahr ID on success, -1 on missing arg, event (or ref to array of events) on error(s)',
201         },
202     }
203 );
204
205 __PACKAGE__->register_method(
206     method    => "create_hold",
207     api_name  => "open-ils.circ.holds.create.override",
208     notes     => '@see open-ils.circ.holds.create',
209     signature => {
210         desc  => "If the recipient is not allowed to receive the requested hold, " .
211                  "call this method to attempt the override",
212         params => [
213             { desc => 'Authentication token',               type => 'string' },
214             {
215                 desc => 'Hold object for hold to be created',
216                 type => 'object', class => 'ahr'
217             }
218         ],
219         return => {
220             desc => 'New hold (ahr) ID on success, -1 on missing arg, event (or ref to array of events) on error(s)',
221         },
222     }
223 );
224
225 sub create_hold {
226         my( $self, $conn, $auth, $hold ) = @_;
227     return -1 unless $hold;
228         my $e = new_editor(authtoken=>$auth, xact=>1);
229         return $e->die_event unless $e->checkauth;
230
231         my $override = 1 if $self->api_name =~ /override/;
232
233     my @events;
234
235     my $requestor = $e->requestor;
236     my $recipient = $requestor;
237
238     if( $requestor->id ne $hold->usr ) {
239         # Make sure the requestor is allowed to place holds for 
240         # the recipient if they are not the same people
241         $recipient = $e->retrieve_actor_user($hold->usr)  or return $e->die_event;
242         $e->allowed('REQUEST_HOLDS', $recipient->home_ou) or return $e->die_event;
243     }
244
245     # If the related org setting tells us to, block if patron privs have expired
246     my $expire_setting = $U->ou_ancestor_setting_value($recipient->home_ou, OILS_SETTING_BLOCK_HOLD_FOR_EXPIRED_PATRON);
247     if ($expire_setting) {
248         my $expire = DateTime::Format::ISO8601->new->parse_datetime(
249             cleanse_ISO8601($recipient->expire_date));
250
251         push( @events, OpenILS::Event->new(
252             'PATRON_ACCOUNT_EXPIRED',
253             "payload" => {"fail_part" => "actor.usr.privs_expired"}
254             )) if( CORE::time > $expire->epoch ) ;
255     }
256
257     # Now make sure the recipient is allowed to receive the specified hold
258     my $porg = $recipient->home_ou;
259     my $rid  = $e->requestor->id;
260     my $t    = $hold->hold_type;
261
262     # See if a duplicate hold already exists
263     my $sargs = {
264         usr                     => $recipient->id, 
265         hold_type       => $t, 
266         fulfillment_time => undef, 
267         target          => $hold->target,
268         cancel_time     => undef,
269     };
270
271     $sargs->{holdable_formats} = $hold->holdable_formats if $t eq 'M';
272         
273     my $existing = $e->search_action_hold_request($sargs); 
274     push( @events, OpenILS::Event->new('HOLD_EXISTS')) if @$existing;
275
276     my $checked_out = hold_item_is_checked_out($e, $recipient->id, $hold->hold_type, $hold->target);
277     push( @events, OpenILS::Event->new('HOLD_ITEM_CHECKED_OUT')) if $checked_out;
278
279     if ( $t eq OILS_HOLD_TYPE_METARECORD ) {
280         return $e->die_event unless $e->allowed('MR_HOLDS',     $porg);
281     } elsif ( $t eq OILS_HOLD_TYPE_TITLE ) {
282         return $e->die_event unless $e->allowed('TITLE_HOLDS',  $porg);
283     } elsif ( $t eq OILS_HOLD_TYPE_VOLUME ) {
284         return $e->die_event unless $e->allowed('VOLUME_HOLDS', $porg);
285     } elsif ( $t eq OILS_HOLD_TYPE_MONOPART ) {
286         return $e->die_event unless $e->allowed('TITLE_HOLDS', $porg);
287     } elsif ( $t eq OILS_HOLD_TYPE_ISSUANCE ) {
288         return $e->die_event unless $e->allowed('ISSUANCE_HOLDS', $porg);
289     } elsif ( $t eq OILS_HOLD_TYPE_COPY ) {
290         return $e->die_event unless $e->allowed('COPY_HOLDS',   $porg);
291     } elsif ( $t eq OILS_HOLD_TYPE_FORCE || $t eq OILS_HOLD_TYPE_RECALL ) {
292                 my $copy = $e->retrieve_asset_copy($hold->target)
293                         or return $e->die_event;
294         if ( $t eq OILS_HOLD_TYPE_FORCE ) {
295             return $e->die_event unless $e->allowed('COPY_HOLDS_FORCE',   $copy->circ_lib);
296         } elsif ( $t eq OILS_HOLD_TYPE_RECALL ) {
297             return $e->die_event unless $e->allowed('COPY_HOLDS_RECALL',   $copy->circ_lib);
298         }
299     }
300
301     if( @events ) {
302         if (!$override) {
303             $e->rollback;
304             return \@events;
305         }
306         for my $evt (@events) {
307             next unless $evt;
308             my $name = $evt->{textcode};
309             return $e->die_event unless $e->allowed("$name.override", $porg);
310         }
311     }
312
313     # set the configured expire time
314     unless($hold->expire_time) {
315         my $interval = $U->ou_ancestor_setting_value($recipient->home_ou, OILS_SETTING_HOLD_EXPIRE);
316         if($interval) {
317             my $date = DateTime->now->add(seconds => OpenSRF::Utils::interval_to_seconds($interval));
318             $hold->expire_time($U->epoch2ISO8601($date->epoch));
319         }
320     }
321
322     $hold->requestor($e->requestor->id); 
323     $hold->request_lib($e->requestor->ws_ou);
324     $hold->selection_ou($hold->pickup_lib) unless $hold->selection_ou;
325     $hold = $e->create_action_hold_request($hold) or return $e->die_event;
326
327         $e->commit;
328
329         $conn->respond_complete($hold->id);
330
331     $U->storagereq(
332         'open-ils.storage.action.hold_request.copy_targeter', 
333         undef, $hold->id ) unless $U->is_true($hold->frozen);
334
335         return undef;
336 }
337
338 # makes sure that a user has permission to place the type of requested hold
339 # returns the Perm exception if not allowed, returns undef if all is well
340 sub _check_holds_perm {
341         my($type, $user_id, $org_id) = @_;
342
343         my $evt;
344         if ($type eq "M") {
345                 $evt = $apputils->check_perms($user_id, $org_id, "MR_HOLDS"    );
346         } elsif ($type eq "T") {
347                 $evt = $apputils->check_perms($user_id, $org_id, "TITLE_HOLDS" );
348         } elsif($type eq "V") {
349                 $evt = $apputils->check_perms($user_id, $org_id, "VOLUME_HOLDS");
350         } elsif($type eq "C") {
351                 $evt = $apputils->check_perms($user_id, $org_id, "COPY_HOLDS"  );
352         }
353
354     return $evt if $evt;
355         return undef;
356 }
357
358 # tests if the given user is allowed to place holds on another's behalf
359 sub _check_request_holds_perm {
360         my $user_id = shift;
361         my $org_id  = shift;
362         if (my $evt = $apputils->check_perms(
363                 $user_id, $org_id, "REQUEST_HOLDS")) {
364                 return $evt;
365         }
366 }
367
368 my $ses_is_req_note = 'The login session is the requestor.  If the requestor is different from the user, ' .
369                       'then the requestor must have VIEW_HOLD permissions';
370
371 __PACKAGE__->register_method(
372     method    => "retrieve_holds_by_id",
373     api_name  => "open-ils.circ.holds.retrieve_by_id",
374     signature => {
375         desc   => "Retrieve the hold, with hold transits attached, for the specified ID.  $ses_is_req_note",
376         params => [
377             { desc => 'Authentication token', type => 'string' },
378             { desc => 'Hold ID',              type => 'number' }
379         ],
380         return => {
381             desc => 'Hold object with transits attached, event on error',
382         }
383     }
384 );
385
386
387 sub retrieve_holds_by_id {
388         my($self, $client, $auth, $hold_id) = @_;
389         my $e = new_editor(authtoken=>$auth);
390         $e->checkauth or return $e->event;
391         $e->allowed('VIEW_HOLD') or return $e->event;
392
393         my $holds = $e->search_action_hold_request(
394                 [
395                         { id =>  $hold_id , fulfillment_time => undef }, 
396                         { 
397                 order_by => { ahr => "request_time" },
398                 flesh => 1,
399                 flesh_fields => {ahr => ['notes']}
400             }
401                 ]
402         );
403
404         flesh_hold_transits($holds);
405         flesh_hold_notices($holds, $e);
406         return $holds;
407 }
408
409
410 __PACKAGE__->register_method(
411     method    => "retrieve_holds",
412     api_name  => "open-ils.circ.holds.retrieve",
413     signature => {
414         desc   => "Retrieves all the holds, with hold transits attached, for the specified user.  $ses_is_req_note",
415         params => [
416             { desc => 'Authentication token', type => 'string'  },
417             { desc => 'User ID',              type => 'integer' }
418         ],
419         return => {
420             desc => 'list of holds, event on error',
421         }
422    }
423 );
424
425 __PACKAGE__->register_method(
426     method        => "retrieve_holds",
427     api_name      => "open-ils.circ.holds.id_list.retrieve",
428     authoritative => 1,
429     signature     => {
430         desc   => "Retrieves all the hold IDs, for the specified user.  $ses_is_req_note",
431         params => [
432             { desc => 'Authentication token', type => 'string'  },
433             { desc => 'User ID',              type => 'integer' }
434         ],
435         return => {
436             desc => 'list of holds, event on error',
437         }
438    }
439 );
440
441 __PACKAGE__->register_method(
442     method        => "retrieve_holds",
443     api_name      => "open-ils.circ.holds.canceled.retrieve",
444     authoritative => 1,
445     signature     => {
446         desc   => "Retrieves all the cancelled holds for the specified user.  $ses_is_req_note",
447         params => [
448             { desc => 'Authentication token', type => 'string'  },
449             { desc => 'User ID',              type => 'integer' }
450         ],
451         return => {
452             desc => 'list of holds, event on error',
453         }
454    }
455 );
456
457 __PACKAGE__->register_method(
458     method        => "retrieve_holds",
459     api_name      => "open-ils.circ.holds.canceled.id_list.retrieve",
460     authoritative => 1,
461     signature     => {
462         desc   => "Retrieves list of cancelled hold IDs for the specified user.  $ses_is_req_note",
463         params => [
464             { desc => 'Authentication token', type => 'string'  },
465             { desc => 'User ID',              type => 'integer' }
466         ],
467         return => {
468             desc => 'list of hold IDs, event on error',
469         }
470    }
471 );
472
473
474 sub retrieve_holds {
475     my ($self, $client, $auth, $user_id) = @_;
476
477     my $e = new_editor(authtoken=>$auth);
478     return $e->event unless $e->checkauth;
479     $user_id = $e->requestor->id unless defined $user_id;
480
481     my $notes_filter = {staff => 'f'};
482     my $user = $e->retrieve_actor_user($user_id) or return $e->event;
483     unless($user_id == $e->requestor->id) {
484         if($e->allowed('VIEW_HOLD', $user->home_ou)) {
485             $notes_filter = {staff => 't'}
486         } else {
487             my $allowed = OpenILS::Application::Actor::Friends->friend_perm_allowed(
488                 $e, $user_id, $e->requestor->id, 'hold.view');
489             return $e->event unless $allowed;
490         }
491     } else {
492         # staff member looking at his/her own holds can see staff and non-staff notes
493         $notes_filter = {} if $e->allowed('VIEW_HOLD', $user->home_ou);
494     }
495
496     my $holds_query = {
497         select => {ahr => ['id']},
498         from => 'ahr', 
499         where => {usr => $user_id, fulfillment_time => undef}
500     };
501
502     if($self->api_name =~ /canceled/) {
503
504         # Fetch the canceled holds
505         # order cancelled holds by cancel time, most recent first
506
507         $holds_query->{order_by} = [{class => 'ahr', field => 'cancel_time', direction => 'desc'}];
508
509         my $cancel_age;
510         my $cancel_count = $U->ou_ancestor_setting_value(
511                 $e->requestor->ws_ou, 'circ.holds.canceled.display_count', $e);
512
513         unless($cancel_count) {
514             $cancel_age = $U->ou_ancestor_setting_value(
515                 $e->requestor->ws_ou, 'circ.holds.canceled.display_age', $e);
516
517             # if no settings are defined, default to last 10 cancelled holds
518             $cancel_count = 10 unless $cancel_age;
519         }
520
521         if($cancel_count) { # limit by count
522
523             $holds_query->{where}->{cancel_time} = {'!=' => undef};
524             $holds_query->{limit} = $cancel_count;
525
526         } elsif($cancel_age) { # limit by age
527
528             # find all of the canceled holds that were canceled within the configured time frame
529             my $date = DateTime->now->subtract(seconds => OpenSRF::Utils::interval_to_seconds($cancel_age));
530             $date = $U->epoch2ISO8601($date->epoch);
531             $holds_query->{where}->{cancel_time} = {'>=' => $date};
532         }
533
534     } else {
535
536         # order non-cancelled holds by ready-for-pickup, then active, followed by suspended
537         # "compare" sorts false values to the front.  testing pickup_lib != current_shelf_lib
538         # will sort by pl = csl > pl != csl > followed by csl is null;
539         $holds_query->{order_by} = [
540             {   class => 'ahr', 
541                 field => 'pickup_lib', 
542                 compare => {'!='  => {'+ahr' => 'current_shelf_lib'}}},
543             {class => 'ahr', field => 'shelf_time'},
544             {class => 'ahr', field => 'frozen'},
545             {class => 'ahr', field => 'request_time'}
546
547         ];
548         $holds_query->{where}->{cancel_time} = undef;
549     }
550
551     my $hold_ids = $e->json_query($holds_query);
552     $hold_ids = [ map { $_->{id} } @$hold_ids ];
553
554     return $hold_ids if $self->api_name =~ /id_list/;
555
556     my @holds;
557     for my $hold_id ( @$hold_ids ) {
558
559         my $hold = $e->retrieve_action_hold_request($hold_id);
560         $hold->notes($e->search_action_hold_request_note({hold => $hold_id, %$notes_filter}));
561
562         $hold->transit(
563             $e->search_action_hold_transit_copy([
564                 {hold => $hold->id},
565                 {order_by => {ahtc => 'source_send_time desc'}, limit => 1}])->[0]
566         );
567
568         push(@holds, $hold);
569     }
570
571     return \@holds;
572 }
573
574
575 __PACKAGE__->register_method(
576     method   => 'user_hold_count',
577     api_name => 'open-ils.circ.hold.user.count'
578 );
579
580 sub user_hold_count {
581     my ( $self, $conn, $auth, $userid ) = @_;
582     my $e = new_editor( authtoken => $auth );
583     return $e->event unless $e->checkauth;
584     my $patron = $e->retrieve_actor_user($userid)
585         or return $e->event;
586     return $e->event unless $e->allowed( 'VIEW_HOLD', $patron->home_ou );
587     return __user_hold_count( $self, $e, $userid );
588 }
589
590 sub __user_hold_count {
591     my ( $self, $e, $userid ) = @_;
592     my $holds = $e->search_action_hold_request(
593         {
594             usr              => $userid,
595             fulfillment_time => undef,
596             cancel_time      => undef,
597         },
598         { idlist => 1 }
599     );
600
601     return scalar(@$holds);
602 }
603
604
605 __PACKAGE__->register_method(
606     method   => "retrieve_holds_by_pickup_lib",
607     api_name => "open-ils.circ.holds.retrieve_by_pickup_lib",
608     notes    => 
609       "Retrieves all the holds, with hold transits attached, for the specified pickup_ou id."
610 );
611
612 __PACKAGE__->register_method(
613     method   => "retrieve_holds_by_pickup_lib",
614     api_name => "open-ils.circ.holds.id_list.retrieve_by_pickup_lib",
615     notes    => "Retrieves all the hold ids for the specified pickup_ou id. "
616 );
617
618 sub retrieve_holds_by_pickup_lib {
619     my ($self, $client, $login_session, $ou_id) = @_;
620
621     #FIXME -- put an appropriate permission check here
622     #my( $user, $target, $evt ) = $apputils->checkses_requestor(
623     #   $login_session, $user_id, 'VIEW_HOLD' );
624     #return $evt if $evt;
625
626         my $holds = $apputils->simplereq(
627                 'open-ils.cstore',
628                 "open-ils.cstore.direct.action.hold_request.search.atomic",
629                 { 
630                         pickup_lib =>  $ou_id , 
631                         fulfillment_time => undef,
632                         cancel_time => undef
633                 }, 
634                 { order_by => { ahr => "request_time" } }
635     );
636
637     if ( ! $self->api_name =~ /id_list/ ) {
638         flesh_hold_transits($holds);
639         return $holds;
640     }
641     # else id_list
642     return [ map { $_->id } @$holds ];
643 }
644
645
646 __PACKAGE__->register_method(
647     method   => "uncancel_hold",
648     api_name => "open-ils.circ.hold.uncancel"
649 );
650
651 sub uncancel_hold {
652         my($self, $client, $auth, $hold_id) = @_;
653         my $e = new_editor(authtoken=>$auth, xact=>1);
654         return $e->die_event unless $e->checkauth;
655
656         my $hold = $e->retrieve_action_hold_request($hold_id)
657                 or return $e->die_event;
658     return $e->die_event unless $e->allowed('CANCEL_HOLDS', $hold->request_lib);
659
660     if ($hold->fulfillment_time) {
661         $e->rollback;
662         return 0;
663     }
664     unless ($hold->cancel_time) {
665         $e->rollback;
666         return 1;
667     }
668
669     # if configured to reset the request time, also reset the expire time
670     if($U->ou_ancestor_setting_value(
671         $hold->request_lib, 'circ.holds.uncancel.reset_request_time', $e)) {
672
673         $hold->request_time('now');
674         my $interval = $U->ou_ancestor_setting_value($hold->request_lib, OILS_SETTING_HOLD_EXPIRE);
675         if($interval) {
676             my $date = DateTime->now->add(seconds => OpenSRF::Utils::interval_to_seconds($interval));
677             $hold->expire_time($U->epoch2ISO8601($date->epoch));
678         }
679     }
680
681     $hold->clear_cancel_time;
682     $hold->clear_cancel_cause;
683     $hold->clear_cancel_note;
684     $hold->clear_shelf_time;
685     $hold->clear_current_copy;
686     $hold->clear_capture_time;
687     $hold->clear_prev_check_time;
688     $hold->clear_shelf_expire_time;
689         $hold->clear_current_shelf_lib;
690
691     $e->update_action_hold_request($hold) or return $e->die_event;
692     $e->commit;
693
694     $U->storagereq('open-ils.storage.action.hold_request.copy_targeter', undef, $hold_id);
695
696     return 1;
697 }
698
699
700 __PACKAGE__->register_method(
701     method    => "cancel_hold",
702     api_name  => "open-ils.circ.hold.cancel",
703     signature => {
704         desc   => 'Cancels the specified hold.  The login session is the requestor.  If the requestor is different from the usr field ' .
705                   'on the hold, the requestor must have CANCEL_HOLDS permissions. The hold may be either the hold object or the hold id',
706         param  => [
707             {desc => 'Authentication token',  type => 'string'},
708             {desc => 'Hold ID',               type => 'number'},
709             {desc => 'Cause of Cancellation', type => 'string'},
710             {desc => 'Note',                  type => 'string'}
711         ],
712         return => {
713             desc => '1 on success, event on error'
714         }
715     }
716 );
717
718 sub cancel_hold {
719         my($self, $client, $auth, $holdid, $cause, $note) = @_;
720
721         my $e = new_editor(authtoken=>$auth, xact=>1);
722         return $e->die_event unless $e->checkauth;
723
724         my $hold = $e->retrieve_action_hold_request($holdid)
725                 or return $e->die_event;
726
727         if( $e->requestor->id ne $hold->usr ) {
728                 return $e->die_event unless $e->allowed('CANCEL_HOLDS');
729         }
730
731         if ($hold->cancel_time) {
732         $e->rollback;
733         return 1;
734     }
735
736         # If the hold is captured, reset the copy status
737         if( $hold->capture_time and $hold->current_copy ) {
738
739                 my $copy = $e->retrieve_asset_copy($hold->current_copy)
740                         or return $e->die_event;
741
742                 if( $copy->status == OILS_COPY_STATUS_ON_HOLDS_SHELF ) {
743          $logger->info("canceling hold $holdid whose item is on the holds shelf");
744 #                       $logger->info("setting copy to status 'reshelving' on hold cancel");
745 #                       $copy->status(OILS_COPY_STATUS_RESHELVING);
746 #                       $copy->editor($e->requestor->id);
747 #                       $copy->edit_date('now');
748 #                       $e->update_asset_copy($copy) or return $e->event;
749
750                 } elsif( $copy->status == OILS_COPY_STATUS_IN_TRANSIT ) {
751
752                         my $hid = $hold->id;
753                         $logger->warn("! canceling hold [$hid] that is in transit");
754                         my $transid = $e->search_action_hold_transit_copy({hold=>$hold->id},{idlist=>1})->[0];
755
756                         if( $transid ) {
757                                 my $trans = $e->retrieve_action_transit_copy($transid);
758                                 # Leave the transit alive, but  set the copy status to 
759                                 # reshelving so it will be properly reshelved when it gets back home
760                                 if( $trans ) {
761                                         $trans->copy_status( OILS_COPY_STATUS_RESHELVING );
762                                         $e->update_action_transit_copy($trans) or return $e->die_event;
763                                 }
764                         }
765                 }
766         }
767
768         $hold->cancel_time('now');
769     $hold->cancel_cause($cause);
770     $hold->cancel_note($note);
771         $e->update_action_hold_request($hold)
772                 or return $e->die_event;
773
774         delete_hold_copy_maps($self, $e, $hold->id);
775
776         $e->commit;
777
778     # re-fetch the hold to pick up the real cancel_time (not "now") for A/T
779     $e->xact_begin;
780     $hold = $e->retrieve_action_hold_request($hold->id) or return $e->die_event;
781     $e->rollback;
782
783     if ($e->requestor->id == $hold->usr) {
784         $U->create_events_for_hook('hold_request.cancel.patron', $hold, $hold->pickup_lib);
785     } else {
786         $U->create_events_for_hook('hold_request.cancel.staff', $hold, $hold->pickup_lib);
787     }
788
789         return 1;
790 }
791
792 sub delete_hold_copy_maps {
793         my $class  = shift;
794         my $editor = shift;
795         my $holdid = shift;
796
797         my $maps = $editor->search_action_hold_copy_map({hold=>$holdid});
798         for(@$maps) {
799                 $editor->delete_action_hold_copy_map($_) 
800                         or return $editor->event;
801         }
802         return undef;
803 }
804
805
806 my $update_hold_desc = 'The login session is the requestor. '       .
807    'If the requestor is different from the usr field on the hold, ' .
808    'the requestor must have UPDATE_HOLDS permissions. '             .
809    'If supplying a hash of hold data, "id" must be included. '      .
810    'The hash is ignored if a hold object is supplied, '             .
811    'so you should supply only one kind of hold data argument.'      ;
812
813 __PACKAGE__->register_method(
814     method    => "update_hold",
815     api_name  => "open-ils.circ.hold.update",
816     signature => {
817         desc   => "Updates the specified hold.  $update_hold_desc",
818         params => [
819             {desc => 'Authentication token',         type => 'string'},
820             {desc => 'Hold Object',                  type => 'object'},
821             {desc => 'Hash of values to be applied', type => 'object'}
822         ],
823         return => {
824             desc => 'Hold ID on success, event on error',
825             # type => 'number'
826         }
827     }
828 );
829
830 __PACKAGE__->register_method(
831     method    => "batch_update_hold",
832     api_name  => "open-ils.circ.hold.update.batch",
833     stream    => 1,
834     signature => {
835         desc   => "Updates the specified hold(s).  $update_hold_desc",
836         params => [
837             {desc => 'Authentication token',                    type => 'string'},
838             {desc => 'Array of hold obejcts',                   type => 'array' },
839             {desc => 'Array of hashes of values to be applied', type => 'array' }
840         ],
841         return => {
842             desc => 'Hold ID per success, event per error',
843         }
844     }
845 );
846
847 sub update_hold {
848         my($self, $client, $auth, $hold, $values) = @_;
849     my $e = new_editor(authtoken=>$auth, xact=>1);
850     return $e->die_event unless $e->checkauth;
851     my $resp = update_hold_impl($self, $e, $hold, $values);
852     if ($U->event_code($resp)) {
853         $e->rollback;
854         return $resp;
855     }
856     $e->commit;     # FIXME: update_hold_impl already does $e->commit  ??
857     return $resp;
858 }
859
860 sub batch_update_hold {
861         my($self, $client, $auth, $hold_list, $values_list) = @_;
862     my $e = new_editor(authtoken=>$auth);
863     return $e->die_event unless $e->checkauth;
864
865     my $count = ($hold_list) ? scalar(@$hold_list) : scalar(@$values_list);     # FIXME: we don't know for sure that we got $values_list.  we could have neither list.
866     $hold_list   ||= [];
867     $values_list ||= [];      # FIXME: either move this above $count declaration, or send an event if both lists undef.  Probably the latter.
868
869 # FIXME: Failing over to [] guarantees warnings for "Use of unitialized value" in update_hold_impl call.
870 # FIXME: We should be sure we only call update_hold_impl with hold object OR hash, not both.
871
872     for my $idx (0..$count-1) {
873         $e->xact_begin;
874         my $resp = update_hold_impl($self, $e, $hold_list->[$idx], $values_list->[$idx]);
875         $e->xact_commit unless $U->event_code($resp);
876         $client->respond($resp);
877     }
878
879     $e->disconnect;
880     return undef;       # not in the register return type, assuming we should always have at least one list populated
881 }
882
883 sub update_hold_impl {
884     my($self, $e, $hold, $values) = @_;
885     my $hold_status;
886
887     unless($hold) {
888         $hold = $e->retrieve_action_hold_request($values->{id})
889             or return $e->die_event;
890         for my $k (keys %$values) {
891             if (defined $values->{$k}) {
892                 $hold->$k($values->{$k});
893             } else {
894                 my $f = "clear_$k"; $hold->$f();
895             }
896         }
897     }
898
899     my $orig_hold = $e->retrieve_action_hold_request($hold->id)
900         or return $e->die_event;
901
902     # don't allow the user to be changed
903     return OpenILS::Event->new('BAD_PARAMS') if $hold->usr != $orig_hold->usr;
904
905     if($hold->usr ne $e->requestor->id) {
906         # if the hold is for a different user, make sure the 
907         # requestor has the appropriate permissions
908         my $usr = $e->retrieve_actor_user($hold->usr)
909             or return $e->die_event;
910         return $e->die_event unless $e->allowed('UPDATE_HOLD', $usr->home_ou);
911     }
912
913
914     # --------------------------------------------------------------
915     # Changing the request time is like playing God
916     # --------------------------------------------------------------
917     if($hold->request_time ne $orig_hold->request_time) {
918         return OpenILS::Event->new('BAD_PARAMS') if $hold->fulfillment_time;
919         return $e->die_event unless $e->allowed('UPDATE_HOLD_REQUEST_TIME', $hold->pickup_lib);
920     }
921     
922         
923         # --------------------------------------------------------------
924         # Code for making sure staff have appropriate permissons for cut_in_line
925         # This, as is, doesn't prevent a user from cutting their own holds in line 
926         # but needs to
927         # --------------------------------------------------------------        
928         if($U->is_true($hold->cut_in_line) ne $U->is_true($orig_hold->cut_in_line)) {
929                 return $e->die_event unless $e->allowed('UPDATE_HOLD_REQUEST_TIME', $hold->pickup_lib);
930         }
931
932
933     # --------------------------------------------------------------
934     # Disallow hold suspencion if the hold is already captured.
935     # --------------------------------------------------------------
936     if ($U->is_true($hold->frozen) and not $U->is_true($orig_hold->frozen)) {
937         $hold_status = _hold_status($e, $hold);
938         if ($hold_status > 2) { # hold is captured
939             $logger->info("bypassing hold freeze on captured hold");
940             return OpenILS::Event->new('HOLD_SUSPEND_AFTER_CAPTURE');
941         }
942     }
943
944
945     # --------------------------------------------------------------
946     # if the hold is on the holds shelf or in transit and the pickup 
947     # lib changes we need to create a new transit.
948     # --------------------------------------------------------------
949     if($orig_hold->pickup_lib ne $hold->pickup_lib) {
950
951         $hold_status = _hold_status($e, $hold) unless $hold_status;
952
953         if($hold_status == 3) { # in transit
954
955             return $e->die_event unless $e->allowed('UPDATE_PICKUP_LIB_FROM_TRANSIT', $orig_hold->pickup_lib);
956             return $e->die_event unless $e->allowed('UPDATE_PICKUP_LIB_FROM_TRANSIT', $hold->pickup_lib);
957
958             $logger->info("updating pickup lib for hold ".$hold->id." while already in transit");
959
960             # update the transit to reflect the new pickup location
961                         my $transit = $e->search_action_hold_transit_copy(
962                 {hold=>$hold->id, dest_recv_time => undef})->[0] 
963                 or return $e->die_event;
964
965             $transit->prev_dest($transit->dest); # mark the previous destination on the transit
966             $transit->dest($hold->pickup_lib);
967             $e->update_action_hold_transit_copy($transit) or return $e->die_event;
968
969         } elsif($hold_status == 4 or $hold_status == 8) { # on holds shelf
970
971             return $e->die_event unless $e->allowed('UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', $orig_hold->pickup_lib);
972             return $e->die_event unless $e->allowed('UPDATE_PICKUP_LIB_FROM_HOLDS_SHELF', $hold->pickup_lib);
973
974             $logger->info("updating pickup lib for hold ".$hold->id." while on holds shelf");
975
976             if ($hold->pickup_lib eq $orig_hold->current_shelf_lib) {
977                 # This can happen if the pickup lib is changed while the hold is 
978                 # on the shelf, then changed back to the original pickup lib.
979                 # Restore the original shelf_expire_time to prevent abuse.
980                 set_hold_shelf_expire_time(undef, $hold, $e, $hold->shelf_time);
981
982             } else {
983                 # clear to prevent premature shelf expiration
984                 $hold->clear_shelf_expire_time;
985             }
986         }
987     } 
988
989     update_hold_if_frozen($self, $e, $hold, $orig_hold);
990     $e->update_action_hold_request($hold) or return $e->die_event;
991     $e->commit;
992
993     # a change to mint-condition changes the set of potential copies, so retarget the hold;
994     if($U->is_true($hold->mint_condition) and !$U->is_true($orig_hold->mint_condition)) {
995         _reset_hold($self, $e->requestor, $hold) 
996     }
997
998     return $hold->id;
999 }
1000
1001 # this does not update the hold in the DB.  It only 
1002 # sets the shelf_expire_time field on the hold object.
1003 # start_time is optional and defaults to 'now'
1004 sub set_hold_shelf_expire_time {
1005     my ($class, $hold, $editor, $start_time) = @_;
1006
1007     my $shelf_expire = $U->ou_ancestor_setting_value( 
1008         $hold->pickup_lib,
1009         'circ.holds.default_shelf_expire_interval', 
1010         $editor
1011     );
1012
1013     return undef unless $shelf_expire;
1014
1015     $start_time = ($start_time) ? 
1016         DateTime::Format::ISO8601->new->parse_datetime(cleanse_ISO8601($start_time)) :
1017         DateTime->now;
1018
1019     my $seconds = OpenSRF::Utils->interval_to_seconds($shelf_expire);
1020     my $expire_time = $start_time->add(seconds => $seconds);
1021
1022     # if the shelf expire time overlaps with a pickup lib's 
1023     # closed date, push it out to the first open date
1024     my $dateinfo = $U->storagereq(
1025         'open-ils.storage.actor.org_unit.closed_date.overlap', 
1026         $hold->pickup_lib, $expire_time->strftime('%FT%T%z'));
1027
1028     if($dateinfo) {
1029         my $dt_parser = DateTime::Format::ISO8601->new;
1030         $expire_time = $dt_parser->parse_datetime(cleanse_ISO8601($dateinfo->{end}));
1031
1032         # TODO: enable/disable time bump via setting?
1033         $expire_time->set(hour => '23', minute => '59', second => '59');
1034
1035         $logger->info("circulator: shelf_expire_time overlaps".
1036             " with closed date, pushing expire time to $expire_time");
1037     }
1038
1039     $hold->shelf_expire_time($expire_time->strftime('%FT%T%z'));
1040     return undef;
1041 }
1042
1043
1044 sub transit_hold {
1045     my($e, $orig_hold, $hold, $copy) = @_;
1046     my $src  = $orig_hold->pickup_lib;
1047     my $dest = $hold->pickup_lib;
1048
1049     $logger->info("putting hold into transit on pickup_lib update");
1050
1051     my $transit = Fieldmapper::action::hold_transit_copy->new;
1052     $transit->hold($hold->id);
1053     $transit->source($src);
1054     $transit->dest($dest);
1055     $transit->target_copy($copy->id);
1056     $transit->source_send_time('now');
1057     $transit->copy_status(OILS_COPY_STATUS_ON_HOLDS_SHELF);
1058
1059     $copy->status(OILS_COPY_STATUS_IN_TRANSIT);
1060     $copy->editor($e->requestor->id);
1061     $copy->edit_date('now');
1062
1063     $e->create_action_hold_transit_copy($transit) or return $e->die_event;
1064     $e->update_asset_copy($copy) or return $e->die_event;
1065     return undef;
1066 }
1067
1068 # if the hold is frozen, this method ensures that the hold is not "targeted", 
1069 # that is, it clears the current_copy and prev_check_time to essentiallly 
1070 # reset the hold.  If it is being activated, it runs the targeter in the background
1071 sub update_hold_if_frozen {
1072     my($self, $e, $hold, $orig_hold) = @_;
1073     return if $hold->capture_time;
1074
1075     if($U->is_true($hold->frozen)) {
1076         $logger->info("clearing current_copy and check_time for frozen hold ".$hold->id);
1077         $hold->clear_current_copy;
1078         $hold->clear_prev_check_time;
1079
1080     } else {
1081         if($U->is_true($orig_hold->frozen)) {
1082             $logger->info("Running targeter on activated hold ".$hold->id);
1083             $U->storagereq( 'open-ils.storage.action.hold_request.copy_targeter', undef, $hold->id );
1084         }
1085     }
1086 }
1087
1088 __PACKAGE__->register_method(
1089     method    => "hold_note_CUD",
1090     api_name  => "open-ils.circ.hold_request.note.cud",
1091     signature => {
1092         desc   => 'Create, update or delete a hold request note.  If the operator (from Auth. token) '
1093                 . 'is not the owner of the hold, the UPDATE_HOLD permission is required',
1094         params => [
1095             { desc => 'Authentication token', type => 'string' },
1096             { desc => 'Hold note object',     type => 'object' }
1097         ],
1098         return => {
1099             desc => 'Returns the note ID, event on error'
1100         },
1101     }
1102 );
1103
1104 sub hold_note_CUD {
1105         my($self, $conn, $auth, $note) = @_;
1106
1107     my $e = new_editor(authtoken => $auth, xact => 1);
1108     return $e->die_event unless $e->checkauth;
1109
1110     my $hold = $e->retrieve_action_hold_request($note->hold)
1111         or return $e->die_event;
1112
1113     if($hold->usr ne $e->requestor->id) {
1114         my $usr = $e->retrieve_actor_user($hold->usr);
1115         return $e->die_event unless $e->allowed('UPDATE_HOLD', $usr->home_ou);
1116         $note->staff('t') if $note->isnew;
1117     }
1118
1119     if($note->isnew) {
1120         $e->create_action_hold_request_note($note) or return $e->die_event;
1121     } elsif($note->ischanged) {
1122         $e->update_action_hold_request_note($note) or return $e->die_event;
1123     } elsif($note->isdeleted) {
1124         $e->delete_action_hold_request_note($note) or return $e->die_event;
1125     }
1126
1127     $e->commit;
1128     return $note->id;
1129 }
1130
1131
1132 __PACKAGE__->register_method(
1133     method    => "retrieve_hold_status",
1134     api_name  => "open-ils.circ.hold.status.retrieve",
1135     signature => {
1136         desc   => 'Calculates the current status of the hold. The requestor must have '      .
1137                   'VIEW_HOLD permissions if the hold is for a user other than the requestor' ,
1138         param  => [
1139             { desc => 'Hold ID', type => 'number' }
1140         ],
1141         return => {
1142             # type => 'number',     # event sometimes
1143             desc => <<'END_OF_DESC'
1144 Returns event on error or:
1145 -1 on error (for now),
1146  1 for 'waiting for copy to become available',
1147  2 for 'waiting for copy capture',
1148  3 for 'in transit',
1149  4 for 'arrived',
1150  5 for 'hold-shelf-delay'
1151  6 for 'canceled'
1152  7 for 'suspended'
1153  8 for 'captured, on wrong hold shelf'
1154 END_OF_DESC
1155         }
1156     }
1157 );
1158
1159 sub retrieve_hold_status {
1160         my($self, $client, $auth, $hold_id) = @_;
1161
1162         my $e = new_editor(authtoken => $auth);
1163         return $e->event unless $e->checkauth;
1164         my $hold = $e->retrieve_action_hold_request($hold_id)
1165                 or return $e->event;
1166
1167         if( $e->requestor->id != $hold->usr ) {
1168                 return $e->event unless $e->allowed('VIEW_HOLD');
1169         }
1170
1171         return _hold_status($e, $hold);
1172
1173 }
1174
1175 sub _hold_status {
1176         my($e, $hold) = @_;
1177     if ($hold->cancel_time) {
1178         return 6;
1179     }
1180     if ($U->is_true($hold->frozen)) {
1181         return 7;
1182     }
1183     if ($hold->current_shelf_lib and $hold->current_shelf_lib ne $hold->pickup_lib) {
1184         return 8;
1185     }
1186         return 1 unless $hold->current_copy;
1187         return 2 unless $hold->capture_time;
1188
1189         my $copy = $hold->current_copy;
1190         unless( ref $copy ) {
1191                 $copy = $e->retrieve_asset_copy($hold->current_copy)
1192                         or return $e->event;
1193         }
1194
1195         return 3 if $copy->status == OILS_COPY_STATUS_IN_TRANSIT;
1196
1197         if($copy->status == OILS_COPY_STATUS_ON_HOLDS_SHELF) {
1198
1199         my $hs_wait_interval = $U->ou_ancestor_setting_value($hold->pickup_lib, 'circ.hold_shelf_status_delay');
1200         return 4 unless $hs_wait_interval;
1201
1202         # if a hold_shelf_status_delay interval is defined and start_time plus 
1203         # the interval is greater than now, consider the hold to be in the virtual 
1204         # "on its way to the holds shelf" status. Return 5.
1205
1206         my $transit    = $e->search_action_hold_transit_copy({hold => $hold->id})->[0];
1207         my $start_time = ($transit) ? $transit->dest_recv_time : $hold->capture_time;
1208         $start_time    = DateTime::Format::ISO8601->new->parse_datetime(cleanse_ISO8601($start_time));
1209         my $end_time   = $start_time->add(seconds => OpenSRF::Utils::interval_to_seconds($hs_wait_interval));
1210
1211         return 5 if $end_time > DateTime->now;
1212         return 4;
1213     }
1214
1215     return -1;  # error
1216 }
1217
1218
1219
1220 __PACKAGE__->register_method(
1221     method    => "retrieve_hold_queue_stats",
1222     api_name  => "open-ils.circ.hold.queue_stats.retrieve",
1223     signature => {
1224         desc   => 'Returns summary data about the state of a hold',
1225         params => [
1226             { desc => 'Authentication token',  type => 'string'},
1227             { desc => 'Hold ID', type => 'number'},
1228         ],
1229         return => {
1230             desc => q/Summary object with keys: 
1231                 total_holds : total holds in queue
1232                 queue_position : current queue position
1233                 potential_copies : number of potential copies for this hold
1234                 estimated_wait : estimated wait time in days
1235                 status : hold status  
1236                      -1 => error or unexpected state,
1237                      1 => 'waiting for copy to become available',
1238                      2 => 'waiting for copy capture',
1239                      3 => 'in transit',
1240                      4 => 'arrived',
1241                      5 => 'hold-shelf-delay'
1242             /,
1243             type => 'object'
1244         }
1245     }
1246 );
1247
1248 sub retrieve_hold_queue_stats {
1249     my($self, $conn, $auth, $hold_id) = @_;
1250         my $e = new_editor(authtoken => $auth);
1251         return $e->event unless $e->checkauth;
1252         my $hold = $e->retrieve_action_hold_request($hold_id) or return $e->event;
1253         if($e->requestor->id != $hold->usr) {
1254                 return $e->event unless $e->allowed('VIEW_HOLD');
1255         }
1256     return retrieve_hold_queue_status_impl($e, $hold);
1257 }
1258
1259 sub retrieve_hold_queue_status_impl {
1260     my $e = shift;
1261     my $hold = shift;
1262
1263     # The holds queue is defined as the distinct set of holds that share at 
1264     # least one potential copy with the context hold, plus any holds that
1265     # share the same hold type and target.  The latter part exists to
1266     # accomodate holds that currently have no potential copies
1267     my $q_holds = $e->json_query({
1268
1269         # fetch cut_in_line and request_time since they're in the order_by
1270         # and we're asking for distinct values
1271         select => {ahr => ['id', 'cut_in_line', 'request_time']},
1272         from   => {
1273             ahr => {
1274                 'ahcm' => {
1275                     join => {
1276                         'ahcm2' => {
1277                             'class' => 'ahcm',
1278                             'field' => 'target_copy',
1279                             'fkey'  => 'target_copy'
1280                         }
1281                     }
1282                 }
1283             }
1284         },
1285         order_by => [
1286             {
1287                 "class" => "ahr",
1288                 "field" => "cut_in_line",
1289                 "transform" => "coalesce",
1290                 "params" => [ 0 ],
1291                 "direction" => "desc"
1292             },
1293             { "class" => "ahr", "field" => "request_time" }
1294         ],
1295         distinct => 1,
1296         where => {
1297             '+ahcm2' => { hold => $hold->id }
1298         }
1299     });
1300
1301     if (!@$q_holds) { # none? maybe we don't have a map ... 
1302         $q_holds = $e->json_query({
1303             select => {ahr => ['id', 'cut_in_line', 'request_time']},
1304             from   => 'ahr',
1305             order_by => [
1306                 {
1307                     "class" => "ahr",
1308                     "field" => "cut_in_line",
1309                     "transform" => "coalesce",
1310                     "params" => [ 0 ],
1311                     "direction" => "desc"
1312                 },
1313                 { "class" => "ahr", "field" => "request_time" }
1314             ],
1315             where    => {
1316                 hold_type => $hold->hold_type, 
1317                 target    => $hold->target 
1318            } 
1319         });
1320     }
1321
1322
1323     my $qpos = 1;
1324     for my $h (@$q_holds) {
1325         last if $h->{id} == $hold->id;
1326         $qpos++;
1327     }
1328
1329     my $hold_data = $e->json_query({
1330         select => {
1331             acp => [ {column => 'id', transform => 'count', aggregate => 1, alias => 'count'} ],
1332             ccm => [ {column =>'avg_wait_time'} ]
1333         }, 
1334         from => {
1335             ahcm => {
1336                 acp => {
1337                     join => {
1338                         ccm => {type => 'left'}
1339                     }
1340                 }
1341             }
1342         }, 
1343         where => {'+ahcm' => {hold => $hold->id} }
1344     });
1345
1346     my $user_org = $e->json_query({select => {au => ['home_ou']}, from => 'au', where => {id => $hold->usr}})->[0]->{home_ou};
1347
1348     my $default_wait = $U->ou_ancestor_setting_value($user_org, OILS_SETTING_HOLD_ESIMATE_WAIT_INTERVAL);
1349     my $min_wait = $U->ou_ancestor_setting_value($user_org, 'circ.holds.min_estimated_wait_interval');
1350     $min_wait = OpenSRF::Utils::interval_to_seconds($min_wait || '0 seconds');
1351     $default_wait ||= '0 seconds';
1352
1353     # Estimated wait time is the average wait time across the set 
1354     # of potential copies, divided by the number of potential copies
1355     # times the queue position.  
1356
1357     my $combined_secs = 0;
1358     my $num_potentials = 0;
1359
1360     for my $wait_data (@$hold_data) {
1361         my $count += $wait_data->{count};
1362         $combined_secs += $count * 
1363             OpenSRF::Utils::interval_to_seconds($wait_data->{avg_wait_time} || $default_wait);
1364         $num_potentials += $count;
1365     }
1366
1367     my $estimated_wait = -1;
1368
1369     if($num_potentials) {
1370         my $avg_wait = $combined_secs / $num_potentials;
1371         $estimated_wait = $qpos * ($avg_wait / $num_potentials);
1372         $estimated_wait = $min_wait if $estimated_wait < $min_wait and $estimated_wait != -1;
1373     }
1374
1375     return {
1376         total_holds      => scalar(@$q_holds),
1377         queue_position   => $qpos,
1378         potential_copies => $num_potentials,
1379         status           => _hold_status( $e, $hold ),
1380         estimated_wait   => int($estimated_wait)
1381     };
1382 }
1383
1384
1385 sub fetch_open_hold_by_current_copy {
1386         my $class = shift;
1387         my $copyid = shift;
1388         my $hold = $apputils->simplereq(
1389                 'open-ils.cstore', 
1390                 'open-ils.cstore.direct.action.hold_request.search.atomic',
1391                 { current_copy =>  $copyid , cancel_time => undef, fulfillment_time => undef });
1392         return $hold->[0] if ref($hold);
1393         return undef;
1394 }
1395
1396 sub fetch_related_holds {
1397         my $class = shift;
1398         my $copyid = shift;
1399         return $apputils->simplereq(
1400                 'open-ils.cstore', 
1401                 'open-ils.cstore.direct.action.hold_request.search.atomic',
1402                 { current_copy =>  $copyid , cancel_time => undef, fulfillment_time => undef });
1403 }
1404
1405
1406 __PACKAGE__->register_method(
1407     method    => "hold_pull_list",
1408     api_name  => "open-ils.circ.hold_pull_list.retrieve",
1409     signature => {
1410         desc   => 'Returns (reference to) a list of holds that need to be "pulled" by a given location. ' .
1411                   'The location is determined by the login session.',
1412         params => [
1413             { desc => 'Limit (optional)',  type => 'number'},
1414             { desc => 'Offset (optional)', type => 'number'},
1415         ],
1416         return => {
1417             desc => 'reference to a list of holds, or event on failure',
1418         }
1419     }
1420 );
1421
1422 __PACKAGE__->register_method(
1423     method    => "hold_pull_list",
1424     api_name  => "open-ils.circ.hold_pull_list.id_list.retrieve",
1425     signature => {
1426         desc   => 'Returns (reference to) a list of holds IDs that need to be "pulled" by a given location. ' .
1427                   'The location is determined by the login session.',
1428         params => [
1429             { desc => 'Limit (optional)',  type => 'number'},
1430             { desc => 'Offset (optional)', type => 'number'},
1431         ],
1432         return => {
1433             desc => 'reference to a list of holds, or event on failure',
1434         }
1435     }
1436 );
1437
1438 __PACKAGE__->register_method(
1439     method    => "hold_pull_list",
1440     api_name  => "open-ils.circ.hold_pull_list.retrieve.count",
1441     signature => {
1442         desc   => 'Returns a count of holds that need to be "pulled" by a given location. ' .
1443                   'The location is determined by the login session.',
1444         params => [
1445             { desc => 'Limit (optional)',  type => 'number'},
1446             { desc => 'Offset (optional)', type => 'number'},
1447         ],
1448         return => {
1449             desc => 'Holds count (integer), or event on failure',
1450             # type => 'number'
1451         }
1452     }
1453 );
1454
1455
1456 sub hold_pull_list {
1457         my( $self, $conn, $authtoken, $limit, $offset ) = @_;
1458         my( $reqr, $evt ) = $U->checkses($authtoken);
1459         return $evt if $evt;
1460
1461         my $org = $reqr->ws_ou || $reqr->home_ou;
1462         # the perm locaiton shouldn't really matter here since holds
1463         # will exist all over and VIEW_HOLDS should be universal
1464         $evt = $U->check_perms($reqr->id, $org, 'VIEW_HOLD');
1465         return $evt if $evt;
1466
1467     if($self->api_name =~ /count/) {
1468
1469                 my $count = $U->storagereq(
1470                         'open-ils.storage.direct.action.hold_request.pull_list.current_copy_circ_lib.status_filtered.count',
1471                         $org, $limit, $offset ); 
1472
1473         $logger->info("Grabbing pull list for org unit $org with $count items");
1474         return $count;
1475
1476     } elsif( $self->api_name =~ /id_list/ ) {
1477                 return $U->storagereq(
1478                         'open-ils.storage.direct.action.hold_request.pull_list.id_list.current_copy_circ_lib.status_filtered.atomic',
1479                         $org, $limit, $offset ); 
1480
1481         } else {
1482                 return $U->storagereq(
1483                         'open-ils.storage.direct.action.hold_request.pull_list.search.current_copy_circ_lib.status_filtered.atomic',
1484                         $org, $limit, $offset ); 
1485         }
1486 }
1487
1488 __PACKAGE__->register_method(
1489     method    => "print_hold_pull_list",
1490     api_name  => "open-ils.circ.hold_pull_list.print",
1491     signature => {
1492         desc   => 'Returns an HTML-formatted holds pull list',
1493         params => [
1494             { desc => 'Authtoken', type => 'string'},
1495             { desc => 'Org unit ID.  Optional, defaults to workstation org unit', type => 'number'},
1496         ],
1497         return => {
1498             desc => 'HTML string',
1499             type => 'string'
1500         }
1501     }
1502 );
1503
1504 sub print_hold_pull_list {
1505     my($self, $client, $auth, $org_id) = @_;
1506
1507     my $e = new_editor(authtoken=>$auth);
1508     return $e->event unless $e->checkauth;
1509
1510     $org_id = (defined $org_id) ? $org_id : $e->requestor->ws_ou;
1511     return $e->event unless $e->allowed('VIEW_HOLD', $org_id);
1512
1513     my $hold_ids = $U->storagereq(
1514         'open-ils.storage.direct.action.hold_request.pull_list.id_list.current_copy_circ_lib.status_filtered.atomic',
1515         $org_id, 10000);
1516
1517     return undef unless @$hold_ids;
1518
1519     $client->status(new OpenSRF::DomainObject::oilsContinueStatus);
1520
1521     # Holds will /NOT/ be in order after this ...
1522     my $holds = $e->search_action_hold_request({id => $hold_ids}, {substream => 1});
1523     $client->status(new OpenSRF::DomainObject::oilsContinueStatus);
1524
1525     # ... so we must resort.
1526     my $hold_map = +{map { $_->id => $_ } @$holds};
1527     my $sorted_holds = [];
1528     push @$sorted_holds, $hold_map->{$_} foreach @$hold_ids;
1529
1530     return $U->fire_object_event(
1531         undef, "ahr.format.pull_list", $sorted_holds,
1532         $org_id, undef, undef, $client
1533     );
1534
1535 }
1536
1537 __PACKAGE__->register_method(
1538     method    => "print_hold_pull_list_stream",
1539     stream   => 1,
1540     api_name  => "open-ils.circ.hold_pull_list.print.stream",
1541     signature => {
1542         desc   => 'Returns a stream of fleshed holds',
1543         params => [
1544             { desc => 'Authtoken', type => 'string'},
1545             { desc => 'Hash of optional param: Org unit ID (defaults to workstation org unit), limit, offset, sort (array of: acplo.position, prefix, call_number, suffix, request_time)',
1546               type => 'object'
1547             },
1548         ],
1549         return => {
1550             desc => 'A stream of fleshed holds',
1551             type => 'object'
1552         }
1553     }
1554 );
1555
1556 sub print_hold_pull_list_stream {
1557     my($self, $client, $auth, $params) = @_;
1558
1559     my $e = new_editor(authtoken=>$auth);
1560     return $e->die_event unless $e->checkauth;
1561
1562     delete($$params{org_id}) unless (int($$params{org_id}));
1563     delete($$params{limit}) unless (int($$params{limit}));
1564     delete($$params{offset}) unless (int($$params{offset}));
1565     delete($$params{chunk_size}) unless (int($$params{chunk_size}));
1566     delete($$params{chunk_size}) if  ($$params{chunk_size} && $$params{chunk_size} > 50); # keep the size reasonable
1567     $$params{chunk_size} ||= 10;
1568
1569     $$params{org_id} = (defined $$params{org_id}) ? $$params{org_id}: $e->requestor->ws_ou;
1570     return $e->die_event unless $e->allowed('VIEW_HOLD', $$params{org_id });
1571
1572     my $sort = [];
1573     if ($$params{sort} && @{ $$params{sort} }) {
1574         for my $s (@{ $$params{sort} }) {
1575             if ($s eq 'acplo.position') {
1576                 push @$sort, {
1577                     "class" => "acplo", "field" => "position",
1578                     "transform" => "coalesce", "params" => [999]
1579                 };
1580             } elsif ($s eq 'prefix') {
1581                 push @$sort, {"class" => "acnp", "field" => "label_sortkey"};
1582             } elsif ($s eq 'call_number') {
1583                 push @$sort, {"class" => "acn", "field" => "label_sortkey"};
1584             } elsif ($s eq 'suffix') {
1585                 push @$sort, {"class" => "acns", "field" => "label_sortkey"};
1586             } elsif ($s eq 'request_time') {
1587                 push @$sort, {"class" => "ahr", "field" => "request_time"};
1588             }
1589         }
1590     } else {
1591         push @$sort, {"class" => "ahr", "field" => "request_time"};
1592     }
1593
1594     my $holds_ids = $e->json_query(
1595         {
1596             "select" => {"ahr" => ["id"]},
1597             "from" => {
1598                 "ahr" => {
1599                     "acp" => { 
1600                         "field" => "id",
1601                         "fkey" => "current_copy",
1602                         "filter" => {
1603                             "circ_lib" => $$params{org_id}, "status" => [0,7]
1604                         },
1605                         "join" => {
1606                             "acn" => {
1607                                 "field" => "id",
1608                                 "fkey" => "call_number",
1609                                 "join" => {
1610                                     "acnp" => {
1611                                         "field" => "id",
1612                                         "fkey" => "prefix"
1613                                     },
1614                                     "acns" => {
1615                                         "field" => "id",
1616                                         "fkey" => "suffix"
1617                                     }
1618                                 }
1619                             },
1620                             "acplo" => {
1621                                 "field" => "org",
1622                                 "fkey" => "circ_lib", 
1623                                 "type" => "left",
1624                                 "filter" => {
1625                                     "location" => {"=" => {"+acp" => "location"}}
1626                                 }
1627                             }
1628                         }
1629                     }
1630                 }
1631             },
1632             "where" => {
1633                 "+ahr" => {
1634                     "capture_time" => undef,
1635                     "cancel_time" => undef,
1636                     "-or" => [
1637                         {"expire_time" => undef },
1638                         {"expire_time" => {">" => "now"}}
1639                     ]
1640                 }
1641             },
1642             (@$sort ? (order_by => $sort) : ()),
1643             ($$params{limit} ? (limit => $$params{limit}) : ()),
1644             ($$params{offset} ? (offset => $$params{offset}) : ())
1645         }, {"substream" => 1}
1646     ) or return $e->die_event;
1647
1648     $logger->info("about to stream back " . scalar(@$holds_ids) . " holds");
1649
1650     my @chunk;
1651     for my $hid (@$holds_ids) {
1652         push @chunk, $e->retrieve_action_hold_request([
1653             $hid->{"id"}, {
1654                 "flesh" => 3,
1655                 "flesh_fields" => {
1656                     "ahr" => ["usr", "current_copy"],
1657                     "au"  => ["card"],
1658                     "acp" => ["location", "call_number", "parts"],
1659                     "acn" => ["record","prefix","suffix"]
1660                 }
1661             }
1662         ]);
1663
1664         if (@chunk >= $$params{chunk_size}) {
1665             $client->respond( \@chunk );
1666             @chunk = ();
1667         }
1668     }
1669     $client->respond_complete( \@chunk ) if (@chunk);
1670     $e->disconnect;
1671     return undef;
1672 }
1673
1674
1675
1676 __PACKAGE__->register_method(
1677     method        => 'fetch_hold_notify',
1678     api_name      => 'open-ils.circ.hold_notification.retrieve_by_hold',
1679     authoritative => 1,
1680     signature     => q/ 
1681 Returns a list of hold notification objects based on hold id.
1682 @param authtoken The loggin session key
1683 @param holdid The id of the hold whose notifications we want to retrieve
1684 @return An array of hold notification objects, event on error.
1685 /
1686 );
1687
1688 sub fetch_hold_notify {
1689         my( $self, $conn, $authtoken, $holdid ) = @_;
1690         my( $requestor, $evt ) = $U->checkses($authtoken);
1691         return $evt if $evt;
1692         my ($hold, $patron);
1693         ($hold, $evt) = $U->fetch_hold($holdid);
1694         return $evt if $evt;
1695         ($patron, $evt) = $U->fetch_user($hold->usr);
1696         return $evt if $evt;
1697
1698         $evt = $U->check_perms($requestor->id, $patron->home_ou, 'VIEW_HOLD_NOTIFICATION');
1699         return $evt if $evt;
1700
1701         $logger->info("User ".$requestor->id." fetching hold notifications for hold $holdid");
1702         return $U->cstorereq(
1703                 'open-ils.cstore.direct.action.hold_notification.search.atomic', {hold => $holdid} );
1704 }
1705
1706
1707 __PACKAGE__->register_method(
1708     method    => 'create_hold_notify',
1709     api_name  => 'open-ils.circ.hold_notification.create',
1710     signature => q/
1711 Creates a new hold notification object
1712 @param authtoken The login session key
1713 @param notification The hold notification object to create
1714 @return ID of the new object on success, Event on error
1715 /
1716 );
1717
1718 sub create_hold_notify {
1719    my( $self, $conn, $auth, $note ) = @_;
1720    my $e = new_editor(authtoken=>$auth, xact=>1);
1721    return $e->die_event unless $e->checkauth;
1722
1723    my $hold = $e->retrieve_action_hold_request($note->hold)
1724       or return $e->die_event;
1725    my $patron = $e->retrieve_actor_user($hold->usr) 
1726       or return $e->die_event;
1727
1728    return $e->die_event unless 
1729       $e->allowed('CREATE_HOLD_NOTIFICATION', $patron->home_ou);
1730
1731    $note->notify_staff($e->requestor->id);
1732    $e->create_action_hold_notification($note) or return $e->die_event;
1733    $e->commit;
1734    return $note->id;
1735 }
1736
1737 __PACKAGE__->register_method(
1738     method    => 'create_hold_note',
1739     api_name  => 'open-ils.circ.hold_note.create',
1740     signature => q/
1741                 Creates a new hold request note object
1742                 @param authtoken The login session key
1743                 @param note The hold note object to create
1744                 @return ID of the new object on success, Event on error
1745                 /
1746 );
1747
1748 sub create_hold_note {
1749    my( $self, $conn, $auth, $note ) = @_;
1750    my $e = new_editor(authtoken=>$auth, xact=>1);
1751    return $e->die_event unless $e->checkauth;
1752
1753    my $hold = $e->retrieve_action_hold_request($note->hold)
1754       or return $e->die_event;
1755    my $patron = $e->retrieve_actor_user($hold->usr) 
1756       or return $e->die_event;
1757
1758    return $e->die_event unless 
1759       $e->allowed('UPDATE_HOLD', $patron->home_ou); # FIXME: Using permcrud perm listed in fm_IDL.xml for ahrn.  Probably want something more specific
1760
1761    $e->create_action_hold_request_note($note) or return $e->die_event;
1762    $e->commit;
1763    return $note->id;
1764 }
1765
1766 __PACKAGE__->register_method(
1767     method    => 'reset_hold',
1768     api_name  => 'open-ils.circ.hold.reset',
1769     signature => q/
1770                 Un-captures and un-targets a hold, essentially returning
1771                 it to the state it was in directly after it was placed,
1772                 then attempts to re-target the hold
1773                 @param authtoken The login session key
1774                 @param holdid The id of the hold
1775         /
1776 );
1777
1778
1779 sub reset_hold {
1780         my( $self, $conn, $auth, $holdid ) = @_;
1781         my $reqr;
1782         my ($hold, $evt) = $U->fetch_hold($holdid);
1783         return $evt if $evt;
1784         ($reqr, $evt) = $U->checksesperm($auth, 'UPDATE_HOLD');
1785         return $evt if $evt;
1786         $evt = _reset_hold($self, $reqr, $hold);
1787         return $evt if $evt;
1788         return 1;
1789 }
1790
1791
1792 __PACKAGE__->register_method(
1793     method   => 'reset_hold_batch',
1794     api_name => 'open-ils.circ.hold.reset.batch'
1795 );
1796
1797 sub reset_hold_batch {
1798     my($self, $conn, $auth, $hold_ids) = @_;
1799
1800     my $e = new_editor(authtoken => $auth);
1801     return $e->event unless $e->checkauth;
1802
1803     for my $hold_id ($hold_ids) {
1804
1805         my $hold = $e->retrieve_action_hold_request(
1806             [$hold_id, {flesh => 1, flesh_fields => {ahr => ['usr']}}]) 
1807             or return $e->event;
1808
1809             next unless $e->allowed('UPDATE_HOLD', $hold->usr->home_ou);
1810         _reset_hold($self, $e->requestor, $hold);
1811     }
1812
1813     return 1;
1814 }
1815
1816
1817 sub _reset_hold {
1818         my ($self, $reqr, $hold) = @_;
1819
1820         my $e = new_editor(xact =>1, requestor => $reqr);
1821
1822         $logger->info("reseting hold ".$hold->id);
1823
1824         my $hid = $hold->id;
1825
1826         if( $hold->capture_time and $hold->current_copy ) {
1827
1828                 my $copy = $e->retrieve_asset_copy($hold->current_copy)
1829                         or return $e->die_event;
1830
1831                 if( $copy->status == OILS_COPY_STATUS_ON_HOLDS_SHELF ) {
1832                         $logger->info("setting copy to status 'reshelving' on hold retarget");
1833                         $copy->status(OILS_COPY_STATUS_RESHELVING);
1834                         $copy->editor($e->requestor->id);
1835                         $copy->edit_date('now');
1836                         $e->update_asset_copy($copy) or return $e->die_event;
1837
1838                 } elsif( $copy->status == OILS_COPY_STATUS_IN_TRANSIT ) {
1839
1840                         # We don't want the copy to remain "in transit"
1841                         $copy->status(OILS_COPY_STATUS_RESHELVING);
1842                         $logger->warn("! reseting hold [$hid] that is in transit");
1843                         my $transid = $e->search_action_hold_transit_copy({hold=>$hold->id},{idlist=>1})->[0];
1844
1845                         if( $transid ) {
1846                                 my $trans = $e->retrieve_action_transit_copy($transid);
1847                                 if( $trans ) {
1848                                         $logger->info("Aborting transit [$transid] on hold [$hid] reset...");
1849                                         my $evt = OpenILS::Application::Circ::Transit::__abort_transit($e, $trans, $copy, 1);
1850                                         $logger->info("Transit abort completed with result $evt");
1851                                         unless ("$evt" eq 1) {
1852                         $e->rollback;
1853                                             return $evt;
1854                     }
1855                                 }
1856                         }
1857                 }
1858         }
1859
1860         $hold->clear_capture_time;
1861         $hold->clear_current_copy;
1862         $hold->clear_shelf_time;
1863         $hold->clear_shelf_expire_time;
1864         $hold->clear_current_shelf_lib;
1865
1866         $e->update_action_hold_request($hold) or return $e->die_event;
1867         $e->commit;
1868
1869         $U->storagereq(
1870                 'open-ils.storage.action.hold_request.copy_targeter', undef, $hold->id );
1871
1872         return undef;
1873 }
1874
1875
1876 __PACKAGE__->register_method(
1877     method    => 'fetch_open_title_holds',
1878     api_name  => 'open-ils.circ.open_holds.retrieve',
1879     signature => q/
1880                 Returns a list ids of un-fulfilled holds for a given title id
1881                 @param authtoken The login session key
1882                 @param id the id of the item whose holds we want to retrieve
1883                 @param type The hold type - M, T, I, V, C, F, R
1884         /
1885 );
1886
1887 sub fetch_open_title_holds {
1888         my( $self, $conn, $auth, $id, $type, $org ) = @_;
1889         my $e = new_editor( authtoken => $auth );
1890         return $e->event unless $e->checkauth;
1891
1892         $type ||= "T";
1893         $org  ||= $e->requestor->ws_ou;
1894
1895 #       return $e->search_action_hold_request(
1896 #               { target => $id, hold_type => $type, fulfillment_time => undef }, {idlist=>1});
1897
1898         # XXX make me return IDs in the future ^--
1899         my $holds = $e->search_action_hold_request(
1900                 { 
1901                         target                          => $id, 
1902                         cancel_time                     => undef, 
1903                         hold_type                       => $type, 
1904                         fulfillment_time        => undef 
1905                 }
1906         );
1907
1908         flesh_hold_transits($holds);
1909         return $holds;
1910 }
1911
1912
1913 sub flesh_hold_transits {
1914         my $holds = shift;
1915         for my $hold ( @$holds ) {
1916                 $hold->transit(
1917                         $apputils->simplereq(
1918                                 'open-ils.cstore',
1919                                 "open-ils.cstore.direct.action.hold_transit_copy.search.atomic",
1920                                 { hold => $hold->id },
1921                                 { order_by => { ahtc => 'id desc' }, limit => 1 }
1922                         )->[0]
1923                 );
1924         }
1925 }
1926
1927 sub flesh_hold_notices {
1928         my( $holds, $e ) = @_;
1929         $e ||= new_editor();
1930
1931         for my $hold (@$holds) {
1932                 my $notices = $e->search_action_hold_notification(
1933                         [
1934                                 { hold => $hold->id },
1935                                 { order_by => { anh => 'notify_time desc' } },
1936                         ],
1937                         {idlist=>1}
1938                 );
1939
1940                 $hold->notify_count(scalar(@$notices));
1941                 if( @$notices ) {
1942                         my $n = $e->retrieve_action_hold_notification($$notices[0])
1943                                 or return $e->event;
1944                         $hold->notify_time($n->notify_time);
1945                 }
1946         }
1947 }
1948
1949
1950 __PACKAGE__->register_method(
1951     method    => 'fetch_captured_holds',
1952     api_name  => 'open-ils.circ.captured_holds.on_shelf.retrieve',
1953     stream    => 1,
1954     authoritative => 1,
1955     signature => q/
1956                 Returns a list of un-fulfilled holds (on the Holds Shelf) for a given title id
1957                 @param authtoken The login session key
1958                 @param org The org id of the location in question
1959         /
1960 );
1961
1962 __PACKAGE__->register_method(
1963     method    => 'fetch_captured_holds',
1964     api_name  => 'open-ils.circ.captured_holds.id_list.on_shelf.retrieve',
1965     stream    => 1,
1966     authoritative => 1,
1967     signature => q/
1968                 Returns list ids of un-fulfilled holds (on the Holds Shelf) for a given title id
1969                 @param authtoken The login session key
1970                 @param org The org id of the location in question
1971         /
1972 );
1973
1974 __PACKAGE__->register_method(
1975     method    => 'fetch_captured_holds',
1976     api_name  => 'open-ils.circ.captured_holds.id_list.expired_on_shelf.retrieve',
1977     stream    => 1,
1978     authoritative => 1,
1979     signature => q/
1980                 Returns list ids of shelf-expired un-fulfilled holds for a given title id
1981                 @param authtoken The login session key
1982                 @param org The org id of the location in question
1983         /
1984 );
1985
1986
1987 sub fetch_captured_holds {
1988         my( $self, $conn, $auth, $org ) = @_;
1989
1990         my $e = new_editor(authtoken => $auth);
1991         return $e->die_event unless $e->checkauth;
1992         return $e->die_event unless $e->allowed('VIEW_HOLD'); # XXX rely on editor perm
1993
1994         $org ||= $e->requestor->ws_ou;
1995
1996     my $query = { 
1997         select => { alhr => ['id'] },
1998         from   => {
1999             alhr => {
2000                 acp => {
2001                     field => 'id',
2002                     fkey  => 'current_copy'
2003                 },
2004             }
2005         }, 
2006         where => {
2007             '+acp' => { status => OILS_COPY_STATUS_ON_HOLDS_SHELF },
2008             '+alhr' => {
2009                 capture_time     => { "!=" => undef },
2010                 current_copy     => { "!=" => undef },
2011                 fulfillment_time => undef,
2012                 current_shelf_lib => $org
2013             }
2014         }
2015     };
2016     if($self->api_name =~ /expired/) {
2017         $query->{'where'}->{'+alhr'}->{'-or'} = {
2018                 shelf_expire_time => { '<' => 'now'},
2019                 cancel_time => { '!=' => undef },
2020         };
2021     }
2022     my $hold_ids = $e->json_query( $query );
2023
2024     for my $hold_id (@$hold_ids) {
2025         if($self->api_name =~ /id_list/) {
2026             $conn->respond($hold_id->{id});
2027             next;
2028         } else {
2029             $conn->respond(
2030                 $e->retrieve_action_hold_request([
2031                     $hold_id->{id},
2032                     {
2033                         flesh => 1,
2034                         flesh_fields => {ahr => ['notifications', 'transit', 'notes']},
2035                         order_by => {anh => 'notify_time desc'}
2036                     }
2037                 ])
2038             );
2039         }
2040     }
2041
2042     return undef;
2043 }
2044
2045 __PACKAGE__->register_method(
2046     method    => "print_expired_holds_stream",
2047     api_name  => "open-ils.circ.captured_holds.expired.print.stream",
2048     stream    => 1
2049 );
2050
2051 sub print_expired_holds_stream {
2052     my ($self, $client, $auth, $params) = @_;
2053
2054     # No need to check specific permissions: we're going to call another method
2055     # that will do that.
2056     my $e = new_editor("authtoken" => $auth);
2057     return $e->die_event unless $e->checkauth;
2058
2059     delete($$params{org_id}) unless (int($$params{org_id}));
2060     delete($$params{limit}) unless (int($$params{limit}));
2061     delete($$params{offset}) unless (int($$params{offset}));
2062     delete($$params{chunk_size}) unless (int($$params{chunk_size}));
2063     delete($$params{chunk_size}) if  ($$params{chunk_size} && $$params{chunk_size} > 50); # keep the size reasonable
2064     $$params{chunk_size} ||= 10;
2065
2066     $$params{org_id} = (defined $$params{org_id}) ? $$params{org_id}: $e->requestor->ws_ou;
2067
2068     my @hold_ids = $self->method_lookup(
2069         "open-ils.circ.captured_holds.id_list.expired_on_shelf.retrieve"
2070     )->run($auth, $params->{"org_id"});
2071
2072     if (!@hold_ids) {
2073         $e->disconnect;
2074         return;
2075     } elsif (defined $U->event_code($hold_ids[0])) {
2076         $e->disconnect;
2077         return $hold_ids[0];
2078     }
2079
2080     $logger->info("about to stream back up to " . scalar(@hold_ids) . " expired holds");
2081
2082     while (@hold_ids) {
2083         my @hid_chunk = splice @hold_ids, 0, $params->{"chunk_size"};
2084
2085         my $result_chunk = $e->json_query({
2086             "select" => {
2087                 "acp" => ["barcode"],
2088                 "au" => [qw/
2089                     first_given_name second_given_name family_name alias
2090                 /],
2091                 "acn" => ["label"],
2092                 "bre" => ["marc"],
2093                 "acpl" => ["name"]
2094             },
2095             "from" => {
2096                 "ahr" => {
2097                     "acp" => {
2098                         "field" => "id", "fkey" => "current_copy",
2099                         "join" => {
2100                             "acn" => {
2101                                 "field" => "id", "fkey" => "call_number",
2102                                 "join" => {
2103                                     "bre" => {
2104                                         "field" => "id", "fkey" => "record"
2105                                     }
2106                                 }
2107                             },
2108                             "acpl" => {"field" => "id", "fkey" => "location"}
2109                         }
2110                     },
2111                     "au" => {"field" => "id", "fkey" => "usr"}
2112                 }
2113             },
2114             "where" => {"+ahr" => {"id" => \@hid_chunk}}
2115         }) or return $e->die_event;
2116         $client->respond($result_chunk);
2117     }
2118
2119     $e->disconnect;
2120     undef;
2121 }
2122
2123 __PACKAGE__->register_method(
2124     method    => "check_title_hold_batch",
2125     api_name  => "open-ils.circ.title_hold.is_possible.batch",
2126     stream    => 1,
2127     signature => {
2128         desc  => '@see open-ils.circ.title_hold.is_possible.batch',
2129         params => [
2130             { desc => 'Authentication token',     type => 'string'},
2131             { desc => 'Array of Hash of named parameters', type => 'array'},
2132         ],
2133         return => {
2134             desc => 'Array of response objects',
2135             type => 'array'
2136         }
2137     }
2138 );
2139
2140 sub check_title_hold_batch {
2141     my($self, $client, $authtoken, $param_list) = @_;
2142     foreach (@$param_list) {
2143         my ($res) = $self->method_lookup('open-ils.circ.title_hold.is_possible')->run($authtoken, $_);
2144         $client->respond($res);
2145     }
2146     return undef;
2147 }
2148
2149
2150 __PACKAGE__->register_method(
2151     method    => "check_title_hold",
2152     api_name  => "open-ils.circ.title_hold.is_possible",
2153     signature => {
2154         desc  => 'Determines if a hold were to be placed by a given user, ' .
2155              'whether or not said hold would have any potential copies to fulfill it.' .
2156              'The named paramaters of the second argument include: ' .
2157              'patronid, titleid, volume_id, copy_id, mrid, depth, pickup_lib, hold_type, selection_ou. ' .
2158              'See perldoc ' . __PACKAGE__ . ' for more info on these fields.' , 
2159         params => [
2160             { desc => 'Authentication token',     type => 'string'},
2161             { desc => 'Hash of named parameters', type => 'object'},
2162         ],
2163         return => {
2164             desc => 'List of new message IDs (empty if none)',
2165             type => 'array'
2166         }
2167     }
2168 );
2169
2170 =head3 check_title_hold (token, hash)
2171
2172 The named fields in the hash are: 
2173
2174  patronid     - ID of the hold recipient  (required)
2175  depth        - hold range depth          (default 0)
2176  pickup_lib   - destination for hold, fallback value for selection_ou
2177  selection_ou - ID of org_unit establishing hard and soft hold boundary settings
2178  issuanceid   - ID of the issuance to be held, required for Issuance level hold
2179  partid       - ID of the monograph part to be held, required for monograph part level hold
2180  titleid      - ID (BRN) of the title to be held, required for Title level hold
2181  volume_id    - required for Volume level hold
2182  copy_id      - required for Copy level hold
2183  mrid         - required for Meta-record level hold
2184  hold_type    - T, C (or R or F), I, V or M for Title, Copy, Issuance, Volume or Meta-record  (default "T")
2185
2186 All key/value pairs are passed on to do_possibility_checks.
2187
2188 =cut
2189
2190 # FIXME: better params checking.  what other params are required, if any?
2191 # FIXME: 3 copies of values confusing: $x, $params->{x} and $params{x}
2192 # FIXME: for example, $depth gets a default value, but then $$params{depth} is still 
2193 # used in conditionals, where it may be undefined, causing a warning.
2194 # FIXME: specify proper usage/interaction of selection_ou and pickup_lib
2195
2196 sub check_title_hold {
2197     my( $self, $client, $authtoken, $params ) = @_;
2198     my $e = new_editor(authtoken=>$authtoken);
2199     return $e->event unless $e->checkauth;
2200
2201     my %params       = %$params;
2202     my $depth        = $params{depth}        || 0;
2203     my $selection_ou = $params{selection_ou} || $params{pickup_lib};
2204
2205         my $patron = $e->retrieve_actor_user($params{patronid})
2206                 or return $e->event;
2207
2208         if( $e->requestor->id ne $patron->id ) {
2209                 return $e->event unless 
2210                         $e->allowed('VIEW_HOLD_PERMIT', $patron->home_ou);
2211         }
2212
2213         return OpenILS::Event->new('PATRON_BARRED') if $U->is_true($patron->barred);
2214
2215         my $request_lib = $e->retrieve_actor_org_unit($e->requestor->ws_ou)
2216                 or return $e->event;
2217
2218     my $soft_boundary = $U->ou_ancestor_setting_value($selection_ou, OILS_SETTING_HOLD_SOFT_BOUNDARY);
2219     my $hard_boundary = $U->ou_ancestor_setting_value($selection_ou, OILS_SETTING_HOLD_HARD_BOUNDARY);
2220
2221     my @status = ();
2222     my $return_depth = $hard_boundary; # default depth to return on success
2223     if(defined $soft_boundary and $depth < $soft_boundary) {
2224         # work up the tree and as soon as we find a potential copy, use that depth
2225         # also, make sure we don't go past the hard boundary if it exists
2226
2227         # our min boundary is the greater of user-specified boundary or hard boundary
2228         my $min_depth = (defined $hard_boundary and $hard_boundary > $depth) ?  
2229             $hard_boundary : $depth;
2230
2231         my $depth = $soft_boundary;
2232         while($depth >= $min_depth) {
2233             $logger->info("performing hold possibility check with soft boundary $depth");
2234             @status = do_possibility_checks($e, $patron, $request_lib, $depth, %params);
2235             if ($status[0]) {
2236                 $return_depth = $depth;
2237                 last;
2238             }
2239             $depth--;
2240         }
2241     } elsif(defined $hard_boundary and $depth < $hard_boundary) {
2242         # there is no soft boundary, enforce the hard boundary if it exists
2243         $logger->info("performing hold possibility check with hard boundary $hard_boundary");
2244         @status = do_possibility_checks($e, $patron, $request_lib, $hard_boundary, %params);
2245     } else {
2246         # no boundaries defined, fall back to user specifed boundary or no boundary
2247         $logger->info("performing hold possibility check with no boundary");
2248         @status = do_possibility_checks($e, $patron, $request_lib, $params{depth}, %params);
2249     }
2250
2251     if ($status[0]) {
2252         return {
2253             "success" => 1,
2254             "depth" => $return_depth,
2255             "local_avail" => $status[1]
2256         };
2257     } elsif ($status[2]) {
2258         my $n = scalar @{$status[2]};
2259         return {"success" => 0, "last_event" => $status[2]->[$n - 1]};
2260     } else {
2261         return {"success" => 0};
2262     }
2263 }
2264
2265
2266
2267 sub do_possibility_checks {
2268     my($e, $patron, $request_lib, $depth, %params) = @_;
2269
2270     my $issuanceid   = $params{issuanceid}      || "";
2271     my $partid       = $params{partid}      || "";
2272     my $titleid      = $params{titleid}      || "";
2273     my $volid        = $params{volume_id};
2274     my $copyid       = $params{copy_id};
2275     my $mrid         = $params{mrid}         || "";
2276     my $pickup_lib   = $params{pickup_lib};
2277     my $hold_type    = $params{hold_type}    || 'T';
2278     my $selection_ou = $params{selection_ou} || $pickup_lib;
2279     my $holdable_formats = $params{holdable_formats};
2280
2281
2282         my $copy;
2283         my $volume;
2284         my $title;
2285
2286         if( $hold_type eq OILS_HOLD_TYPE_FORCE || $hold_type eq OILS_HOLD_TYPE_RECALL || $hold_type eq OILS_HOLD_TYPE_COPY ) {
2287
2288         return $e->event unless $copy   = $e->retrieve_asset_copy($copyid);
2289         return $e->event unless $volume = $e->retrieve_asset_call_number($copy->call_number);
2290         return $e->event unless $title  = $e->retrieve_biblio_record_entry($volume->record);
2291
2292         return (1, 1, []) if( $hold_type eq OILS_HOLD_TYPE_RECALL || $hold_type eq OILS_HOLD_TYPE_FORCE);
2293         return verify_copy_for_hold( 
2294             $patron, $e->requestor, $title, $copy, $pickup_lib, $request_lib
2295         );
2296
2297         } elsif( $hold_type eq OILS_HOLD_TYPE_VOLUME ) {
2298
2299                 return $e->event unless $volume = $e->retrieve_asset_call_number($volid);
2300                 return $e->event unless $title  = $e->retrieve_biblio_record_entry($volume->record);
2301
2302                 return _check_volume_hold_is_possible(
2303                         $volume, $title, $depth, $request_lib, $patron, $e->requestor, $pickup_lib, $selection_ou
2304         );
2305
2306         } elsif( $hold_type eq OILS_HOLD_TYPE_TITLE ) {
2307
2308                 return _check_title_hold_is_possible(
2309                         $titleid, $depth, $request_lib, $patron, $e->requestor, $pickup_lib, $selection_ou
2310         );
2311
2312         } elsif( $hold_type eq OILS_HOLD_TYPE_ISSUANCE ) {
2313
2314                 return _check_issuance_hold_is_possible(
2315                         $issuanceid, $depth, $request_lib, $patron, $e->requestor, $pickup_lib, $selection_ou
2316         );
2317
2318         } elsif( $hold_type eq OILS_HOLD_TYPE_MONOPART ) {
2319
2320                 return _check_monopart_hold_is_possible(
2321                         $partid, $depth, $request_lib, $patron, $e->requestor, $pickup_lib, $selection_ou
2322         );
2323
2324         } elsif( $hold_type eq OILS_HOLD_TYPE_METARECORD ) {
2325
2326                 my $maps = $e->search_metabib_metarecord_source_map({metarecord=>$mrid});
2327                 my @recs = map { $_->source } @$maps;
2328                 my @status = ();
2329                 for my $rec (@recs) {
2330                         @status = _check_title_hold_is_possible(
2331                                 $rec, $depth, $request_lib, $patron, $e->requestor, $pickup_lib, $selection_ou, $holdable_formats
2332                         );
2333                         last if $status[0];
2334                 }
2335                 return @status;
2336         }
2337 #   else { Unrecognized hold_type ! }   # FIXME: return error? or 0?
2338 }
2339
2340 my %prox_cache;
2341 sub create_ranged_org_filter {
2342     my($e, $selection_ou, $depth) = @_;
2343
2344     # find the orgs from which this hold may be fulfilled, 
2345     # based on the selection_ou and depth
2346
2347     my $top_org = $e->search_actor_org_unit([
2348         {parent_ou => undef}, 
2349         {flesh=>1, flesh_fields=>{aou=>['ou_type']}}])->[0];
2350     my %org_filter;
2351
2352     return () if $depth == $top_org->ou_type->depth;
2353
2354     my $org_list = $U->storagereq('open-ils.storage.actor.org_unit.descendants.atomic', $selection_ou, $depth);
2355     %org_filter = (circ_lib => []);
2356     push(@{$org_filter{circ_lib}}, $_->id) for @$org_list;
2357
2358     $logger->info("hold org filter at depth $depth and selection_ou ".
2359         "$selection_ou created list of @{$org_filter{circ_lib}}");
2360
2361     return %org_filter;
2362 }
2363
2364
2365 sub _check_title_hold_is_possible {
2366     my( $titleid, $depth, $request_lib, $patron, $requestor, $pickup_lib, $selection_ou, $holdable_formats ) = @_;
2367    
2368     my ($types, $formats, $lang);
2369     if (defined($holdable_formats)) {
2370         ($types, $formats, $lang) = split '-', $holdable_formats;
2371     }
2372
2373     my $e = new_editor();
2374     my %org_filter = create_ranged_org_filter($e, $selection_ou, $depth);
2375
2376     # this monster will grab the id and circ_lib of all of the "holdable" copies for the given record
2377     my $copies = $e->json_query(
2378         { 
2379             select => { acp => ['id', 'circ_lib'] },
2380               from => {
2381                 acp => {
2382                     acn => {
2383                         field  => 'id',
2384                         fkey   => 'call_number',
2385                         'join' => {
2386                             bre => {
2387                                 field  => 'id',
2388                                 filter => { id => $titleid },
2389                                 fkey   => 'record'
2390                             },
2391                             mrd => {
2392                                 field  => 'record',
2393                                 fkey   => 'record',
2394                                 filter => {
2395                                     record => $titleid,
2396                                     ( $types   ? (item_type => [split '', $types])   : () ),
2397                                     ( $formats ? (item_form => [split '', $formats]) : () ),
2398                                     ( $lang    ? (item_lang => $lang)                : () )
2399                                 }
2400                             }
2401                         }
2402                     },
2403                     acpl => { field => 'id', filter => { holdable => 't'}, fkey => 'location' },
2404                     ccs  => { field => 'id', filter => { holdable => 't'}, fkey => 'status'   },
2405                     acpm => { field => 'target_copy', type => 'left' } # ignore part-linked copies
2406                 }
2407             }, 
2408             where => {
2409                 '+acp' => { circulate => 't', deleted => 'f', holdable => 't', %org_filter },
2410                 '+acpm' => { target_copy => undef } # ignore part-linked copies
2411             }
2412         }
2413     );
2414
2415     $logger->info("title possible found ".scalar(@$copies)." potential copies");
2416     return (
2417         0, 0, [
2418             new OpenILS::Event(
2419                 "HIGH_LEVEL_HOLD_HAS_NO_COPIES",
2420                 "payload" => {"fail_part" => "no_ultimate_items"}
2421             )
2422         ]
2423     ) unless @$copies;
2424
2425     # -----------------------------------------------------------------------
2426     # sort the copies into buckets based on their circ_lib proximity to 
2427     # the patron's home_ou.  
2428     # -----------------------------------------------------------------------
2429
2430     my $home_org = $patron->home_ou;
2431     my $req_org = $request_lib->id;
2432
2433     $logger->info("prox cache $home_org " . $prox_cache{$home_org});
2434
2435     $prox_cache{$home_org} = 
2436         $e->search_actor_org_unit_proximity({from_org => $home_org})
2437         unless $prox_cache{$home_org};
2438     my $home_prox = $prox_cache{$home_org};
2439
2440     my %buckets;
2441     my %hash = map { ($_->to_org => $_->prox) } @$home_prox;
2442     push( @{$buckets{ $hash{$_->{circ_lib}} } }, $_->{id} ) for @$copies;
2443
2444     my @keys = sort { $a <=> $b } keys %buckets;
2445
2446
2447     if( $home_org ne $req_org ) {
2448       # -----------------------------------------------------------------------
2449       # shove the copies close to the request_lib into the primary buckets 
2450       # directly before the farthest away copies.  That way, they are not 
2451       # given priority, but they are checked before the farthest copies.
2452       # -----------------------------------------------------------------------
2453         $prox_cache{$req_org} = 
2454             $e->search_actor_org_unit_proximity({from_org => $req_org})
2455             unless $prox_cache{$req_org};
2456         my $req_prox = $prox_cache{$req_org};
2457
2458         my %buckets2;
2459         my %hash2 = map { ($_->to_org => $_->prox) } @$req_prox;
2460         push( @{$buckets2{ $hash2{$_->{circ_lib}} } }, $_->{id} ) for @$copies;
2461
2462         my $highest_key = $keys[@keys - 1];  # the farthest prox in the exising buckets
2463         my $new_key = $highest_key - 0.5; # right before the farthest prox
2464         my @keys2   = sort { $a <=> $b } keys %buckets2;
2465         for my $key (@keys2) {
2466             last if $key >= $highest_key;
2467             push( @{$buckets{$new_key}}, $_ ) for @{$buckets2{$key}};
2468         }
2469     }
2470
2471     @keys = sort { $a <=> $b } keys %buckets;
2472
2473     my $title;
2474     my %seen;
2475     my @status;
2476     OUTER: for my $key (@keys) {
2477       my @cps = @{$buckets{$key}};
2478
2479       $logger->info("looking at " . scalar(@{$buckets{$key}}). " copies in proximity bucket $key");
2480
2481       for my $copyid (@cps) {
2482
2483          next if $seen{$copyid};
2484          $seen{$copyid} = 1; # there could be dupes given the merged buckets
2485          my $copy = $e->retrieve_asset_copy($copyid);
2486          $logger->debug("looking at bucket_key=$key, copy $copyid : circ_lib = " . $copy->circ_lib);
2487
2488          unless($title) { # grab the title if we don't already have it
2489             my $vol = $e->retrieve_asset_call_number(
2490                [ $copy->call_number, { flesh => 1, flesh_fields => { bre => ['fixed_fields'], acn => ['record'] } } ] );
2491             $title = $vol->record;
2492          }
2493    
2494          @status = verify_copy_for_hold(
2495             $patron, $requestor, $title, $copy, $pickup_lib, $request_lib);
2496
2497          last OUTER if $status[0];
2498       }
2499     }
2500
2501     return @status;
2502 }
2503
2504 sub _check_issuance_hold_is_possible {
2505     my( $issuanceid, $depth, $request_lib, $patron, $requestor, $pickup_lib, $selection_ou ) = @_;
2506    
2507     my $e = new_editor();
2508     my %org_filter = create_ranged_org_filter($e, $selection_ou, $depth);
2509
2510     # this monster will grab the id and circ_lib of all of the "holdable" copies for the given record
2511     my $copies = $e->json_query(
2512         { 
2513             select => { acp => ['id', 'circ_lib'] },
2514               from => {
2515                 acp => {
2516                     sitem => {
2517                         field  => 'unit',
2518                         fkey   => 'id',
2519                         filter => { issuance => $issuanceid }
2520                     },
2521                     acpl => { field => 'id', filter => { holdable => 't'}, fkey => 'location' },
2522                     ccs  => { field => 'id', filter => { holdable => 't'}, fkey => 'status'   }
2523                 }
2524             }, 
2525             where => {
2526                 '+acp' => { circulate => 't', deleted => 'f', holdable => 't', %org_filter }
2527             },
2528             distinct => 1
2529         }
2530     );
2531
2532     $logger->info("issuance possible found ".scalar(@$copies)." potential copies");
2533
2534     my $empty_ok;
2535     if (!@$copies) {
2536         $empty_ok = $e->retrieve_config_global_flag('circ.holds.empty_issuance_ok');
2537         $empty_ok = ($empty_ok and $U->is_true($empty_ok->enabled));
2538
2539         return (
2540             0, 0, [
2541                 new OpenILS::Event(
2542                     "HIGH_LEVEL_HOLD_HAS_NO_COPIES",
2543                     "payload" => {"fail_part" => "no_ultimate_items"}
2544                 )
2545             ]
2546         ) unless $empty_ok;
2547
2548         return (1, 0);
2549     }
2550
2551     # -----------------------------------------------------------------------
2552     # sort the copies into buckets based on their circ_lib proximity to 
2553     # the patron's home_ou.  
2554     # -----------------------------------------------------------------------
2555
2556     my $home_org = $patron->home_ou;
2557     my $req_org = $request_lib->id;
2558
2559     $logger->info("prox cache $home_org " . $prox_cache{$home_org});
2560
2561     $prox_cache{$home_org} = 
2562         $e->search_actor_org_unit_proximity({from_org => $home_org})
2563         unless $prox_cache{$home_org};
2564     my $home_prox = $prox_cache{$home_org};
2565
2566     my %buckets;
2567     my %hash = map { ($_->to_org => $_->prox) } @$home_prox;
2568     push( @{$buckets{ $hash{$_->{circ_lib}} } }, $_->{id} ) for @$copies;
2569
2570     my @keys = sort { $a <=> $b } keys %buckets;
2571
2572
2573     if( $home_org ne $req_org ) {
2574       # -----------------------------------------------------------------------
2575       # shove the copies close to the request_lib into the primary buckets 
2576       # directly before the farthest away copies.  That way, they are not 
2577       # given priority, but they are checked before the farthest copies.
2578       # -----------------------------------------------------------------------
2579         $prox_cache{$req_org} = 
2580             $e->search_actor_org_unit_proximity({from_org => $req_org})
2581             unless $prox_cache{$req_org};
2582         my $req_prox = $prox_cache{$req_org};
2583
2584         my %buckets2;
2585         my %hash2 = map { ($_->to_org => $_->prox) } @$req_prox;
2586         push( @{$buckets2{ $hash2{$_->{circ_lib}} } }, $_->{id} ) for @$copies;
2587
2588         my $highest_key = $keys[@keys - 1];  # the farthest prox in the exising buckets
2589         my $new_key = $highest_key - 0.5; # right before the farthest prox
2590         my @keys2   = sort { $a <=> $b } keys %buckets2;
2591         for my $key (@keys2) {
2592             last if $key >= $highest_key;
2593             push( @{$buckets{$new_key}}, $_ ) for @{$buckets2{$key}};
2594         }
2595     }
2596
2597     @keys = sort { $a <=> $b } keys %buckets;
2598
2599     my $title;
2600     my %seen;
2601     my @status;
2602     OUTER: for my $key (@keys) {
2603       my @cps = @{$buckets{$key}};
2604
2605       $logger->info("looking at " . scalar(@{$buckets{$key}}). " copies in proximity bucket $key");
2606
2607       for my $copyid (@cps) {
2608
2609          next if $seen{$copyid};
2610          $seen{$copyid} = 1; # there could be dupes given the merged buckets
2611          my $copy = $e->retrieve_asset_copy($copyid);
2612          $logger->debug("looking at bucket_key=$key, copy $copyid : circ_lib = " . $copy->circ_lib);
2613
2614          unless($title) { # grab the title if we don't already have it
2615             my $vol = $e->retrieve_asset_call_number(
2616                [ $copy->call_number, { flesh => 1, flesh_fields => { bre => ['fixed_fields'], acn => ['record'] } } ] );
2617             $title = $vol->record;
2618          }
2619    
2620          @status = verify_copy_for_hold(
2621             $patron, $requestor, $title, $copy, $pickup_lib, $request_lib);
2622
2623          last OUTER if $status[0];
2624       }
2625     }
2626
2627     if (!$status[0]) {
2628         if (!defined($empty_ok)) {
2629             $empty_ok = $e->retrieve_config_global_flag('circ.holds.empty_issuance_ok');
2630             $empty_ok = ($empty_ok and $U->is_true($empty_ok->enabled));
2631         }
2632
2633         return (1,0) if ($empty_ok);
2634     }
2635     return @status;
2636 }
2637
2638 sub _check_monopart_hold_is_possible {
2639     my( $partid, $depth, $request_lib, $patron, $requestor, $pickup_lib, $selection_ou ) = @_;
2640    
2641     my $e = new_editor();
2642     my %org_filter = create_ranged_org_filter($e, $selection_ou, $depth);
2643
2644     # this monster will grab the id and circ_lib of all of the "holdable" copies for the given record
2645     my $copies = $e->json_query(
2646         { 
2647             select => { acp => ['id', 'circ_lib'] },
2648               from => {
2649                 acp => {
2650                     acpm => {
2651                         field  => 'target_copy',
2652                         fkey   => 'id',
2653                         filter => { part => $partid }
2654                     },
2655                     acpl => { field => 'id', filter => { holdable => 't'}, fkey => 'location' },
2656                     ccs  => { field => 'id', filter => { holdable => 't'}, fkey => 'status'   }
2657                 }
2658             }, 
2659             where => {
2660                 '+acp' => { circulate => 't', deleted => 'f', holdable => 't', %org_filter }
2661             },
2662             distinct => 1
2663         }
2664     );
2665
2666     $logger->info("monopart possible found ".scalar(@$copies)." potential copies");
2667
2668     my $empty_ok;
2669     if (!@$copies) {
2670         $empty_ok = $e->retrieve_config_global_flag('circ.holds.empty_part_ok');
2671         $empty_ok = ($empty_ok and $U->is_true($empty_ok->enabled));
2672
2673         return (
2674             0, 0, [
2675                 new OpenILS::Event(
2676                     "HIGH_LEVEL_HOLD_HAS_NO_COPIES",
2677                     "payload" => {"fail_part" => "no_ultimate_items"}
2678                 )
2679             ]
2680         ) unless $empty_ok;
2681
2682         return (1, 0);
2683     }
2684
2685     # -----------------------------------------------------------------------
2686     # sort the copies into buckets based on their circ_lib proximity to 
2687     # the patron's home_ou.  
2688     # -----------------------------------------------------------------------
2689
2690     my $home_org = $patron->home_ou;
2691     my $req_org = $request_lib->id;
2692
2693     $logger->info("prox cache $home_org " . $prox_cache{$home_org});
2694
2695     $prox_cache{$home_org} = 
2696         $e->search_actor_org_unit_proximity({from_org => $home_org})
2697         unless $prox_cache{$home_org};
2698     my $home_prox = $prox_cache{$home_org};
2699
2700     my %buckets;
2701     my %hash = map { ($_->to_org => $_->prox) } @$home_prox;
2702     push( @{$buckets{ $hash{$_->{circ_lib}} } }, $_->{id} ) for @$copies;
2703
2704     my @keys = sort { $a <=> $b } keys %buckets;
2705
2706
2707     if( $home_org ne $req_org ) {
2708       # -----------------------------------------------------------------------
2709       # shove the copies close to the request_lib into the primary buckets 
2710       # directly before the farthest away copies.  That way, they are not 
2711       # given priority, but they are checked before the farthest copies.
2712       # -----------------------------------------------------------------------
2713         $prox_cache{$req_org} = 
2714             $e->search_actor_org_unit_proximity({from_org => $req_org})
2715             unless $prox_cache{$req_org};
2716         my $req_prox = $prox_cache{$req_org};
2717
2718         my %buckets2;
2719         my %hash2 = map { ($_->to_org => $_->prox) } @$req_prox;
2720         push( @{$buckets2{ $hash2{$_->{circ_lib}} } }, $_->{id} ) for @$copies;
2721
2722         my $highest_key = $keys[@keys - 1];  # the farthest prox in the exising buckets
2723         my $new_key = $highest_key - 0.5; # right before the farthest prox
2724         my @keys2   = sort { $a <=> $b } keys %buckets2;
2725         for my $key (@keys2) {
2726             last if $key >= $highest_key;
2727             push( @{$buckets{$new_key}}, $_ ) for @{$buckets2{$key}};
2728         }
2729     }
2730
2731     @keys = sort { $a <=> $b } keys %buckets;
2732
2733     my $title;
2734     my %seen;
2735     my @status;
2736     OUTER: for my $key (@keys) {
2737       my @cps = @{$buckets{$key}};
2738
2739       $logger->info("looking at " . scalar(@{$buckets{$key}}). " copies in proximity bucket $key");
2740
2741       for my $copyid (@cps) {
2742
2743          next if $seen{$copyid};
2744          $seen{$copyid} = 1; # there could be dupes given the merged buckets
2745          my $copy = $e->retrieve_asset_copy($copyid);
2746          $logger->debug("looking at bucket_key=$key, copy $copyid : circ_lib = " . $copy->circ_lib);
2747
2748          unless($title) { # grab the title if we don't already have it
2749             my $vol = $e->retrieve_asset_call_number(
2750                [ $copy->call_number, { flesh => 1, flesh_fields => { bre => ['fixed_fields'], acn => ['record'] } } ] );
2751             $title = $vol->record;
2752          }
2753    
2754          @status = verify_copy_for_hold(
2755             $patron, $requestor, $title, $copy, $pickup_lib, $request_lib);
2756
2757          last OUTER if $status[0];
2758       }
2759     }
2760
2761     if (!$status[0]) {
2762         if (!defined($empty_ok)) {
2763             $empty_ok = $e->retrieve_config_global_flag('circ.holds.empty_part_ok');
2764             $empty_ok = ($empty_ok and $U->is_true($empty_ok->enabled));
2765         }
2766
2767         return (1,0) if ($empty_ok);
2768     }
2769     return @status;
2770 }
2771
2772
2773 sub _check_volume_hold_is_possible {
2774         my( $vol, $title, $depth, $request_lib, $patron, $requestor, $pickup_lib, $selection_ou ) = @_;
2775     my %org_filter = create_ranged_org_filter(new_editor(), $selection_ou, $depth);
2776         my $copies = new_editor->search_asset_copy({call_number => $vol->id, %org_filter});
2777         $logger->info("checking possibility of volume hold for volume ".$vol->id);
2778
2779     my $filter_copies = [];
2780     for my $copy (@$copies) {
2781         # ignore part-mapped copies for regular volume level holds
2782         push(@$filter_copies, $copy) unless
2783             new_editor->search_asset_copy_part_map({target_copy => $copy->id})->[0];
2784     }
2785     $copies = $filter_copies;
2786
2787     return (
2788         0, 0, [
2789             new OpenILS::Event(
2790                 "HIGH_LEVEL_HOLD_HAS_NO_COPIES",
2791                 "payload" => {"fail_part" => "no_ultimate_items"}
2792             )
2793         ]
2794     ) unless @$copies;
2795
2796     my @status;
2797         for my $copy ( @$copies ) {
2798         @status = verify_copy_for_hold(
2799                         $patron, $requestor, $title, $copy, $pickup_lib, $request_lib );
2800         last if $status[0];
2801         }
2802         return @status;
2803 }
2804
2805
2806
2807 sub verify_copy_for_hold {
2808         my( $patron, $requestor, $title, $copy, $pickup_lib, $request_lib ) = @_;
2809         $logger->info("checking possibility of copy in hold request for copy ".$copy->id);
2810     my $permitted = OpenILS::Utils::PermitHold::permit_copy_hold(
2811                 {       patron                          => $patron, 
2812                         requestor                       => $requestor, 
2813                         copy                            => $copy,
2814                         title                           => $title, 
2815                         title_descriptor        => $title->fixed_fields, # this is fleshed into the title object
2816                         pickup_lib                      => $pickup_lib,
2817                         request_lib                     => $request_lib,
2818             new_hold            => 1,
2819             show_event_list     => 1
2820                 } 
2821         );
2822
2823     return (
2824         (not scalar @$permitted), # true if permitted is an empty arrayref
2825         (   # XXX This test is of very dubious value; someone should figure
2826             # out what if anything is checking this value
2827                 ($copy->circ_lib == $pickup_lib) and 
2828             ($copy->status == OILS_COPY_STATUS_AVAILABLE)
2829         ),
2830         $permitted
2831     );
2832 }
2833
2834
2835
2836 sub find_nearest_permitted_hold {
2837
2838     my $class  = shift;
2839     my $editor = shift;     # CStoreEditor object
2840     my $copy   = shift;     # copy to target
2841     my $user   = shift;     # staff
2842     my $check_only = shift; # do no updates, just see if the copy could fulfill a hold
2843       
2844     my $evt = OpenILS::Event->new('ACTION_HOLD_REQUEST_NOT_FOUND');
2845
2846     my $bc = $copy->barcode;
2847
2848         # find any existing holds that already target this copy
2849         my $old_holds = $editor->search_action_hold_request(
2850                 {       current_copy => $copy->id, 
2851                         cancel_time  => undef, 
2852                         capture_time => undef 
2853                 } 
2854         );
2855
2856     my $hold_stall_interval = $U->ou_ancestor_setting_value($user->ws_ou, OILS_SETTING_HOLD_SOFT_STALL);
2857
2858         $logger->info("circulator: searching for best hold at org ".$user->ws_ou.
2859         " and copy $bc with a hold stalling interval of ". ($hold_stall_interval || "(none)"));
2860
2861         my $fifo = $U->ou_ancestor_setting_value($user->ws_ou, 'circ.holds_fifo');
2862
2863         # search for what should be the best holds for this copy to fulfill
2864         my $best_holds = $U->storagereq(
2865         "open-ils.storage.action.hold_request.nearest_hold.atomic", 
2866                 $user->ws_ou, $copy->id, 10, $hold_stall_interval, $fifo );
2867
2868         unless(@$best_holds) {
2869
2870                 if( my $hold = $$old_holds[0] ) {
2871                         $logger->info("circulator: using existing pre-targeted hold ".$hold->id." in hold search");
2872                         return ($hold);
2873                 }
2874
2875                 $logger->info("circulator: no suitable holds found for copy $bc");
2876                 return (undef, $evt);
2877         }
2878
2879
2880         my $best_hold;
2881
2882         # for each potential hold, we have to run the permit script
2883         # to make sure the hold is actually permitted.
2884     my %reqr_cache;
2885     my %org_cache;
2886         for my $holdid (@$best_holds) {
2887                 next unless $holdid;
2888                 $logger->info("circulator: checking if hold $holdid is permitted for copy $bc");
2889
2890                 my $hold = $editor->retrieve_action_hold_request($holdid) or next;
2891                 my $reqr = $reqr_cache{$hold->requestor} || $editor->retrieve_actor_user($hold->requestor);
2892                 my $rlib = $org_cache{$hold->request_lib} || $editor->retrieve_actor_org_unit($hold->request_lib);
2893
2894                 $reqr_cache{$hold->requestor} = $reqr;
2895                 $org_cache{$hold->request_lib} = $rlib;
2896
2897                 # see if this hold is permitted
2898                 my $permitted = OpenILS::Utils::PermitHold::permit_copy_hold(
2899                         {       patron_id                       => $hold->usr,
2900                                 requestor                       => $reqr,
2901                                 copy                            => $copy,
2902                                 pickup_lib                      => $hold->pickup_lib,
2903                                 request_lib                     => $rlib,
2904                                 retarget                        => 1
2905                         } 
2906                 );
2907
2908                 if( $permitted ) {
2909                         $best_hold = $hold;
2910                         last;
2911                 }
2912         }
2913
2914
2915         unless( $best_hold ) { # no "good" permitted holds were found
2916                 if( my $hold = $$old_holds[0] ) { # can we return a pre-targeted hold?
2917                         $logger->info("circulator: using existing pre-targeted hold ".$hold->id." in hold search");
2918                         return ($hold);
2919                 }
2920
2921                 # we got nuthin
2922                 $logger->info("circulator: no suitable holds found for copy $bc");
2923                 return (undef, $evt);
2924         }
2925
2926         $logger->info("circulator: best hold ".$best_hold->id." found for copy $bc");
2927
2928         # indicate a permitted hold was found
2929         return $best_hold if $check_only;
2930
2931         # we've found a permitted hold.  we need to "grab" the copy 
2932         # to prevent re-targeted holds (next part) from re-grabbing the copy
2933         $best_hold->current_copy($copy->id);
2934         $editor->update_action_hold_request($best_hold) 
2935                 or return (undef, $editor->event);
2936
2937
2938     my @retarget;
2939
2940         # re-target any other holds that already target this copy
2941         for my $old_hold (@$old_holds) {
2942                 next if $old_hold->id eq $best_hold->id; # don't re-target the hold we want
2943                 $logger->info("circulator: clearing current_copy and prev_check_time on hold ".
2944             $old_hold->id." after a better hold [".$best_hold->id."] was found");
2945         $old_hold->clear_current_copy;
2946         $old_hold->clear_prev_check_time;
2947         $editor->update_action_hold_request($old_hold) 
2948             or return (undef, $editor->event);
2949         push(@retarget, $old_hold->id);
2950         }
2951
2952         return ($best_hold, undef, (@retarget) ? \@retarget : undef);
2953 }
2954
2955
2956
2957
2958
2959
2960 __PACKAGE__->register_method(
2961     method   => 'all_rec_holds',
2962     api_name => 'open-ils.circ.holds.retrieve_all_from_title',
2963 );
2964
2965 sub all_rec_holds {
2966         my( $self, $conn, $auth, $title_id, $args ) = @_;
2967
2968         my $e = new_editor(authtoken=>$auth);
2969         $e->checkauth or return $e->event;
2970         $e->allowed('VIEW_HOLD') or return $e->event;
2971
2972         $args ||= {};
2973     $args->{fulfillment_time} = undef; #  we don't want to see old fulfilled holds
2974         $args->{cancel_time} = undef;
2975
2976         my $resp = { volume_holds => [], copy_holds => [], recall_holds => [], force_holds => [], metarecord_holds => [], part_holds => [], issuance_holds => [] };
2977
2978     my $mr_map = $e->search_metabib_metarecord_source_map({source => $title_id})->[0];
2979     if($mr_map) {
2980         $resp->{metarecord_holds} = $e->search_action_hold_request(
2981             {   hold_type => OILS_HOLD_TYPE_METARECORD,
2982                 target => $mr_map->metarecord,
2983                 %$args 
2984             }, {idlist => 1}
2985         );
2986     }
2987
2988         $resp->{title_holds} = $e->search_action_hold_request(
2989                 { 
2990                         hold_type => OILS_HOLD_TYPE_TITLE, 
2991                         target => $title_id, 
2992                         %$args 
2993                 }, {idlist=>1} );
2994
2995     my $parts = $e->search_biblio_monograph_part(
2996         {
2997             record => $title_id
2998         }, {idlist=>1} );
2999
3000     if (@$parts) {
3001         $resp->{part_holds} = $e->search_action_hold_request(
3002             {
3003                 hold_type => OILS_HOLD_TYPE_MONOPART,
3004                 target => $parts,
3005                 %$args
3006             }, {idlist=>1} );
3007     }
3008
3009     my $subs = $e->search_serial_subscription(
3010         { record_entry => $title_id }, {idlist=>1});
3011
3012     if (@$subs) {
3013         my $issuances = $e->search_serial_issuance(
3014             {subscription => $subs}, {idlist=>1}
3015         );
3016
3017         if ($issuances) {
3018             $resp->{issuance_holds} = $e->search_action_hold_request(
3019                 {
3020                     hold_type => OILS_HOLD_TYPE_ISSUANCE,
3021                     target => $issuances,
3022                     %$args
3023                 }, {idlist=>1}
3024             );
3025         }
3026     }
3027
3028         my $vols = $e->search_asset_call_number(
3029                 { record => $title_id, deleted => 'f' }, {idlist=>1});
3030
3031         return $resp unless @$vols;
3032
3033         $resp->{volume_holds} = $e->search_action_hold_request(
3034                 { 
3035                         hold_type => OILS_HOLD_TYPE_VOLUME, 
3036                         target => $vols,
3037                         %$args }, 
3038                 {idlist=>1} );
3039
3040         my $copies = $e->search_asset_copy(
3041                 { call_number => $vols, deleted => 'f' }, {idlist=>1});
3042
3043         return $resp unless @$copies;
3044
3045         $resp->{copy_holds} = $e->search_action_hold_request(
3046                 { 
3047                         hold_type => OILS_HOLD_TYPE_COPY,
3048                         target => $copies,
3049                         %$args }, 
3050                 {idlist=>1} );
3051
3052         $resp->{recall_holds} = $e->search_action_hold_request(
3053                 { 
3054                         hold_type => OILS_HOLD_TYPE_RECALL,
3055                         target => $copies,
3056                         %$args }, 
3057                 {idlist=>1} );
3058
3059         $resp->{force_holds} = $e->search_action_hold_request(
3060                 { 
3061                         hold_type => OILS_HOLD_TYPE_FORCE,
3062                         target => $copies,
3063                         %$args }, 
3064                 {idlist=>1} );
3065
3066         return $resp;
3067 }
3068
3069
3070
3071
3072
3073 __PACKAGE__->register_method(
3074     method        => 'uber_hold',
3075     authoritative => 1,
3076     api_name      => 'open-ils.circ.hold.details.retrieve'
3077 );
3078
3079 sub uber_hold {
3080         my($self, $client, $auth, $hold_id, $args) = @_;
3081         my $e = new_editor(authtoken=>$auth);
3082         $e->checkauth or return $e->event;
3083     return uber_hold_impl($e, $hold_id, $args);
3084 }
3085
3086 __PACKAGE__->register_method(
3087     method        => 'batch_uber_hold',
3088     authoritative => 1,
3089     stream        => 1,
3090     api_name      => 'open-ils.circ.hold.details.batch.retrieve'
3091 );
3092
3093 sub batch_uber_hold {
3094         my($self, $client, $auth, $hold_ids, $args) = @_;
3095         my $e = new_editor(authtoken=>$auth);
3096         $e->checkauth or return $e->event;
3097     $client->respond(uber_hold_impl($e, $_, $args)) for @$hold_ids;
3098     return undef;
3099 }
3100
3101 sub uber_hold_impl {
3102     my($e, $hold_id, $args) = @_;
3103     $args ||= {};
3104
3105         my $hold = $e->retrieve_action_hold_request(
3106                 [
3107                         $hold_id,
3108                         {
3109                                 flesh => 1,
3110                                 flesh_fields => { ahr => [ 'current_copy', 'usr', 'notes' ] }
3111                         }
3112                 ]
3113         ) or return $e->event;
3114
3115     if($hold->usr->id ne $e->requestor->id) {
3116         # A user is allowed to see his/her own holds
3117             $e->allowed('VIEW_HOLD') or return $e->event;
3118         $hold->notes( # filter out any non-staff ("private") notes
3119             [ grep { !$U->is_true($_->staff) } @{$hold->notes} ] );
3120
3121     } else {
3122         # caller is asking for own hold, but may not have permission to view staff notes
3123             unless($e->allowed('VIEW_HOLD')) {
3124             $hold->notes( # filter out any staff notes
3125                 [ grep { $U->is_true($_->staff) } @{$hold->notes} ] );
3126         }
3127     }
3128
3129         my $user = $hold->usr;
3130         $hold->usr($user->id);
3131
3132
3133         my( $mvr, $volume, $copy, $issuance, $part, $bre ) = find_hold_mvr($e, $hold, $args->{suppress_mvr});
3134
3135         flesh_hold_notices([$hold], $e) unless $args->{suppress_notices};
3136         flesh_hold_transits([$hold]) unless $args->{suppress_transits};
3137
3138     my $details = retrieve_hold_queue_status_impl($e, $hold);
3139
3140     my $resp = {
3141         hold    => $hold,
3142         bre_id  => $bre->id,
3143         ($copy     ? (copy           => $copy)     : ()),
3144         ($volume   ? (volume         => $volume)   : ()),
3145         ($issuance ? (issuance       => $issuance) : ()),
3146         ($part     ? (part           => $part)     : ()),
3147         ($args->{include_bre}  ?  (bre => $bre)    : ()),
3148         ($args->{suppress_mvr} ?  () : (mvr => $mvr)),
3149         %$details
3150     };
3151
3152     unless($args->{suppress_patron_details}) {
3153             my $card = $e->retrieve_actor_card($user->card) or return $e->event;
3154         $resp->{patron_first}   = $user->first_given_name,
3155         $resp->{patron_last}    = $user->family_name,
3156         $resp->{patron_barcode} = $card->barcode,
3157         $resp->{patron_alias}   = $user->alias,
3158     };
3159
3160     return $resp;
3161 }
3162
3163
3164
3165 # -----------------------------------------------------
3166 # Returns the MVR object that represents what the
3167 # hold is all about
3168 # -----------------------------------------------------
3169 sub find_hold_mvr {
3170         my( $e, $hold, $no_mvr ) = @_;
3171
3172         my $tid;
3173         my $copy;
3174         my $volume;
3175     my $issuance;
3176     my $part;
3177
3178         if( $hold->hold_type eq OILS_HOLD_TYPE_METARECORD ) {
3179                 my $mr = $e->retrieve_metabib_metarecord($hold->target)
3180                         or return $e->event;
3181                 $tid = $mr->master_record;
3182
3183         } elsif( $hold->hold_type eq OILS_HOLD_TYPE_TITLE ) {
3184                 $tid = $hold->target;
3185
3186         } elsif( $hold->hold_type eq OILS_HOLD_TYPE_VOLUME ) {
3187                 $volume = $e->retrieve_asset_call_number($hold->target)
3188                         or return $e->event;
3189                 $tid = $volume->record;
3190
3191     } elsif( $hold->hold_type eq OILS_HOLD_TYPE_ISSUANCE ) {
3192         $issuance = $e->retrieve_serial_issuance([
3193             $hold->target,
3194             {flesh => 1, flesh_fields => {siss => [ qw/subscription/ ]}}
3195         ]) or return $e->event;
3196
3197         $tid = $issuance->subscription->record_entry;
3198
3199     } elsif( $hold->hold_type eq OILS_HOLD_TYPE_MONOPART ) {
3200         $part = $e->retrieve_biblio_monograph_part([
3201             $hold->target
3202         ]) or return $e->event;
3203
3204         $tid = $part->record;
3205
3206         } elsif( $hold->hold_type eq OILS_HOLD_TYPE_COPY || $hold->hold_type eq OILS_HOLD_TYPE_RECALL || $hold->hold_type eq OILS_HOLD_TYPE_FORCE ) {
3207                 $copy = $e->retrieve_asset_copy([
3208             $hold->target, 
3209             {flesh => 1, flesh_fields => {acp => ['call_number']}}
3210         ]) or return $e->event;
3211         
3212                 $volume = $copy->call_number;
3213                 $tid = $volume->record;
3214         }
3215
3216         if(!$copy and ref $hold->current_copy ) {
3217                 $copy = $hold->current_copy;
3218                 $hold->current_copy($copy->id);
3219         }
3220
3221         if(!$volume and $copy) {
3222                 $volume = $e->retrieve_asset_call_number($copy->call_number);
3223         }
3224
3225     # TODO return metarcord mvr for M holds
3226         my $title = $e->retrieve_biblio_record_entry($tid);
3227         return ( ($no_mvr) ? undef : $U->record_to_mvr($title), $volume, $copy, $issuance, $part, $title );
3228 }
3229
3230 __PACKAGE__->register_method(
3231     method    => 'clear_shelf_cache',
3232     api_name  => 'open-ils.circ.hold.clear_shelf.get_cache',
3233     stream    => 1,
3234     signature => {
3235         desc => q/
3236             Returns the holds processed with the given cache key
3237         /
3238     }
3239 );
3240
3241 sub clear_shelf_cache {
3242     my($self, $client, $auth, $cache_key, $chunk_size) = @_;
3243     my $e = new_editor(authtoken => $auth, xact => 1);
3244     return $e->die_event unless $e->checkauth and $e->allowed('VIEW_HOLD');
3245
3246     $chunk_size ||= 25;
3247     my $hold_data = OpenSRF::Utils::Cache->new('global')->get_cache($cache_key);
3248
3249     if (!$hold_data) {
3250         $logger->info("no hold data found in cache"); # XXX TODO return event
3251         $e->rollback;
3252         return undef;
3253     }
3254
3255     my $maximum = 0;
3256     foreach (keys %$hold_data) {
3257         $maximum += scalar(@{ $hold_data->{$_} });
3258     }
3259     $client->respond({"maximum" => $maximum, "progress" => 0});
3260
3261     for my $action (sort keys %$hold_data) {
3262         while (@{$hold_data->{$action}}) {
3263             my @hid_chunk = splice @{$hold_data->{$action}}, 0, $chunk_size;
3264
3265             my $result_chunk = $e->json_query({
3266                 "select" => {
3267                     "acp" => ["barcode"],
3268                     "au" => [qw/
3269                         first_given_name second_given_name family_name alias
3270                     /],
3271                     "acn" => ["label"],
3272                     "acnp" => [{column => "label", alias => "prefix"}],
3273                     "acns" => [{column => "label", alias => "suffix"}],
3274                     "bre" => ["marc"],
3275                     "acpl" => ["name"],
3276                     "ahr" => ["id"]
3277                 },
3278                 "from" => {
3279                     "ahr" => {
3280                         "acp" => {
3281                             "field" => "id", "fkey" => "current_copy",
3282                             "join" => {
3283                                 "acn" => {
3284                                     "field" => "id", "fkey" => "call_number",
3285                                     "join" => {
3286                                         "bre" => {
3287                                             "field" => "id", "fkey" => "record"
3288                                         },
3289                                         "acnp" => {
3290                                             "field" => "id", "fkey" => "prefix"
3291                                         },
3292                                         "acns" => {
3293                                             "field" => "id", "fkey" => "suffix"
3294                                         }
3295                                     }
3296                                 },
3297                                 "acpl" => {"field" => "id", "fkey" => "location"}
3298                             }
3299                         },
3300                         "au" => {"field" => "id", "fkey" => "usr"}
3301                     }
3302                 },
3303                 "where" => {"+ahr" => {"id" => \@hid_chunk}}
3304             }, {"substream" => 1}) or return $e->die_event;
3305
3306             $client->respond([
3307                 map {
3308                     +{"action" => $action, "hold_details" => $_}
3309                 } @$result_chunk
3310             ]);
3311         }
3312     }
3313
3314     $e->rollback;
3315     return undef;
3316 }
3317
3318
3319 __PACKAGE__->register_method(
3320     method    => 'clear_shelf_process',
3321     stream    => 1,
3322     api_name  => 'open-ils.circ.hold.clear_shelf.process',
3323     signature => {
3324         desc => q/
3325             1. Find all holds that have expired on the holds shelf
3326             2. Cancel the holds
3327             3. If a clear-shelf status is configured, put targeted copies into this status
3328             4. Divide copies into 3 groups: items to transit, items to reshelve, and items
3329                 that are needed for holds.  No subsequent action is taken on the holds
3330                 or items after grouping.
3331         /
3332     }
3333 );
3334
3335 sub clear_shelf_process {
3336         my($self, $client, $auth, $org_id, $match_copy) = @_;
3337
3338     my $current_copy = { '!=' => undef };
3339     $current_copy = { '=' => $match_copy } if $match_copy;
3340
3341         my $e = new_editor(authtoken=>$auth, xact => 1);
3342         $e->checkauth or return $e->die_event;
3343         my $cache = OpenSRF::Utils::Cache->new('global');
3344
3345     $org_id ||= $e->requestor->ws_ou;
3346         $e->allowed('UPDATE_HOLD', $org_id) or return $e->die_event;
3347
3348     my $copy_status = $U->ou_ancestor_setting_value($org_id, 'circ.holds.clear_shelf.copy_status');
3349
3350     my @hold_ids = $self->method_lookup(
3351         "open-ils.circ.captured_holds.id_list.expired_on_shelf.retrieve"
3352     )->run($auth, $org_id);
3353
3354     my @holds;
3355     my @canceled_holds; # newly canceled holds
3356     my $chunk_size = 25; # chunked status updates
3357     my $counter = 0;
3358     for my $hold_id (@hold_ids) {
3359
3360         $logger->info("Clear shelf processing hold $hold_id");
3361         
3362         my $hold = $e->retrieve_action_hold_request([
3363             $hold_id, {   
3364                 flesh => 1,
3365                 flesh_fields => {ahr => ['current_copy']}
3366             }
3367         ]);
3368
3369         if (!$hold->cancel_time) { # may be canceled but still on the holds shelf
3370             $hold->cancel_time('now');
3371             $hold->cancel_cause(2); # Hold Shelf expiration
3372             $e->update_action_hold_request($hold) or return $e->die_event;
3373             delete_hold_copy_maps($self, $e, $hold->id) and return $e->die_event;
3374             push(@canceled_holds, $hold_id);
3375         }
3376
3377         my $copy = $hold->current_copy;
3378
3379         if($copy_status or $copy_status == 0) {
3380             # if a clear-shelf copy status is defined, update the copy
3381             $copy->status($copy_status);
3382             $copy->edit_date('now');
3383             $copy->editor($e->requestor->id);
3384             $e->update_asset_copy($copy) or return $e->die_event;
3385         }
3386
3387         push(@holds, $hold);
3388         $client->respond({maximum => scalar(@holds), progress => $counter}) if ( (++$counter % $chunk_size) == 0);
3389     }
3390
3391     if ($e->commit) {
3392
3393         my %cache_data = (
3394             hold => [],
3395             transit => [],
3396             shelf => []
3397         );
3398
3399         for my $hold (@holds) {
3400
3401             my $copy = $hold->current_copy;
3402             my ($alt_hold) = __PACKAGE__->find_nearest_permitted_hold($e, $copy, $e->requestor, 1);
3403
3404             if($alt_hold and !$match_copy) {
3405
3406                 push(@{$cache_data{hold}}, $hold->id); # copy is needed for a hold
3407
3408             } elsif($copy->circ_lib != $e->requestor->ws_ou) {
3409
3410                 push(@{$cache_data{transit}}, $hold->id); # copy needs to transit
3411
3412             } else {
3413
3414                 push(@{$cache_data{shelf}}, $hold->id); # copy needs to go back to the shelf
3415             }
3416         }
3417
3418         my $cache_key = md5_hex(time . $$ . rand());
3419         $logger->info("clear_shelf_cache: storing under $cache_key");
3420         $cache->put_cache($cache_key, \%cache_data, 7200); # TODO: 2 hours.  configurable?
3421
3422         # tell the client we're done
3423         $client->respond_complete({cache_key => $cache_key});
3424
3425         # ------------
3426         # fire off the hold cancelation trigger and wait for response so don't flood the service
3427
3428         # refetch the holds to pick up the caclulated cancel_time, 
3429         # which may be needed by Action/Trigger
3430         $e->xact_begin;
3431         my $updated_holds = $e->search_action_hold_request({id => \@canceled_holds}, {substream => 1});
3432         $e->rollback;
3433
3434         $U->create_events_for_hook(
3435             'hold_request.cancel.expire_holds_shelf', 
3436             $_, $org_id, undef, undef, 1) for @$updated_holds;
3437
3438     } else {
3439         # tell the client we're done
3440         $client->respond_complete;
3441     }
3442 }
3443
3444 __PACKAGE__->register_method(
3445     method    => 'usr_hold_summary',
3446     api_name  => 'open-ils.circ.holds.user_summary',
3447     signature => q/
3448         Returns a summary of holds statuses for a given user
3449     /
3450 );
3451
3452 sub usr_hold_summary {
3453     my($self, $conn, $auth, $user_id) = @_;
3454
3455         my $e = new_editor(authtoken=>$auth);
3456         $e->checkauth or return $e->event;
3457         $e->allowed('VIEW_HOLD') or return $e->event;
3458
3459     my $holds = $e->search_action_hold_request(
3460         {  
3461             usr =>  $user_id , 
3462             fulfillment_time => undef,
3463             cancel_time      => undef,
3464         }
3465     );
3466
3467     my %summary = (1 => 0, 2 => 0, 3 => 0, 4 => 0);
3468     $summary{_hold_status($e, $_)} += 1 for @$holds;
3469     return \%summary;
3470 }
3471
3472
3473
3474 __PACKAGE__->register_method(
3475     method    => 'hold_has_copy_at',
3476     api_name  => 'open-ils.circ.hold.has_copy_at',
3477     signature => {
3478         desc   => 
3479                 'Returns the ID of the found copy and name of the shelving location if there is ' .
3480                 'an available copy at the specified org unit.  Returns empty hash otherwise.  '   .
3481                 'The anticipated use for this method is to determine whether an item is '         .
3482                 'available at the library where the user is placing the hold (or, alternatively, '.
3483                 'at the pickup library) to encourage bypassing the hold placement and just '      .
3484                 'checking out the item.' ,
3485         params => [
3486             { desc => 'Authentication Token', type => 'string' },
3487             { desc => 'Method Arguments.  Options include: hold_type, hold_target, org_unit.  ' 
3488                     . 'hold_type is the hold type code (T, V, C, M, ...).  '
3489                     . 'hold_target is the identifier of the hold target object.  ' 
3490                     . 'org_unit is org unit ID.', 
3491               type => 'object' 
3492             }
3493         ],
3494         return => { 
3495             desc => q/Result hash like { "copy" : copy_id, "location" : location_name }, empty hash on misses, event on error./,
3496             type => 'object' 
3497         }
3498     }
3499 );
3500
3501 sub hold_has_copy_at {
3502     my($self, $conn, $auth, $args) = @_;
3503
3504         my $e = new_editor(authtoken=>$auth);
3505         $e->checkauth or return $e->event;
3506
3507     my $hold_type   = $$args{hold_type};
3508     my $hold_target = $$args{hold_target};
3509     my $org_unit    = $$args{org_unit};
3510
3511     my $query = {
3512         select => {acp => ['id'], acpl => ['name']},
3513         from   => {
3514             acp => {
3515                 acpl => {field => 'id', filter => { holdable => 't'}, fkey => 'location'},
3516                 ccs  => {field => 'id', filter => { holdable => 't'}, fkey => 'status'  }
3517             }
3518         },
3519         where => {'+acp' => { circulate => 't', deleted => 'f', holdable => 't', circ_lib => $org_unit}},
3520         limit => 1
3521     };
3522
3523     if($hold_type eq 'C' or $hold_type eq 'F' or $hold_type eq 'R') {
3524
3525         $query->{where}->{'+acp'}->{id} = $hold_target;
3526
3527     } elsif($hold_type eq 'V') {
3528
3529         $query->{where}->{'+acp'}->{call_number} = $hold_target;
3530     
3531     } elsif($hold_type eq 'T') {
3532
3533         $query->{from}->{acp}->{acn} = {
3534             field  => 'id',
3535             fkey   => 'call_number',
3536             'join' => {
3537                 bre => {
3538                     field  => 'id',
3539                     filter => {id => $hold_target},
3540                     fkey   => 'record'
3541                 }
3542             }
3543         };
3544
3545     } else {
3546
3547         $query->{from}->{acp}->{acn} = {
3548             field => 'id',
3549             fkey  => 'call_number',
3550             join  => {
3551                 bre => {
3552                     field => 'id',
3553                     fkey  => 'record',
3554                     join  => {
3555                         mmrsm => {
3556                             field  => 'source',
3557                             fkey   => 'id',
3558                             filter => {metarecord => $hold_target},
3559                         }
3560                     }
3561                 }
3562             }
3563         };
3564     }
3565
3566     my $res = $e->json_query($query)->[0] or return {};
3567     return {copy => $res->{id}, location => $res->{name}} if $res;
3568 }
3569
3570
3571 # returns true if the user already has an item checked out 
3572 # that could be used to fulfill the requested hold.
3573 sub hold_item_is_checked_out {
3574     my($e, $user_id, $hold_type, $hold_target) = @_;
3575
3576     my $query = {
3577         select => {acp => ['id']},
3578         from   => {acp => {}},
3579         where  => {
3580             '+acp' => {
3581                 id => {
3582                     in => { # copies for circs the user has checked out
3583                         select => {circ => ['target_copy']},
3584                         from   => 'circ',
3585                         where  => {
3586                             usr => $user_id,
3587                             checkin_time => undef,
3588                             '-or' => [
3589                                 {stop_fines => ["MAXFINES","LONGOVERDUE"]},
3590                                 {stop_fines => undef}
3591                             ],
3592                         }
3593                     }
3594                 }
3595             }
3596         },
3597         limit => 1
3598     };
3599
3600     if($hold_type eq 'C' || $hold_type eq 'R' || $hold_type eq 'F') {
3601
3602         $query->{where}->{'+acp'}->{id}->{in}->{where}->{'target_copy'} = $hold_target;
3603
3604     } elsif($hold_type eq 'V') {
3605
3606         $query->{where}->{'+acp'}->{call_number} = $hold_target;
3607
3608      } elsif($hold_type eq 'P') {
3609
3610         $query->{from}->{acp}->{acpm} = {
3611             field  => 'target_copy',
3612             fkey   => 'id',
3613             filter => {part => $hold_target},
3614         };
3615
3616      } elsif($hold_type eq 'I') {
3617
3618         $query->{from}->{acp}->{sitem} = {
3619             field  => 'unit',
3620             fkey   => 'id',
3621             filter => {issuance => $hold_target},
3622         };
3623
3624     } elsif($hold_type eq 'T') {
3625
3626         $query->{from}->{acp}->{acn} = {
3627             field  => 'id',
3628             fkey   => 'call_number',
3629             'join' => {
3630                 bre => {
3631                     field  => 'id',
3632                     filter => {id => $hold_target},
3633                     fkey   => 'record'
3634                 }
3635             }
3636         };
3637
3638     } else {
3639
3640         $query->{from}->{acp}->{acn} = {
3641             field => 'id',
3642             fkey => 'call_number',
3643             join => {
3644                 bre => {
3645                     field => 'id',
3646                     fkey => 'record',
3647                     join => {
3648                         mmrsm => {
3649                             field => 'source',
3650                             fkey => 'id',
3651                             filter => {metarecord => $hold_target},
3652                         }
3653                     }
3654                 }
3655             }
3656         };
3657     }
3658
3659     return $e->json_query($query)->[0];
3660 }
3661
3662 __PACKAGE__->register_method(
3663     method    => 'change_hold_title',
3664     api_name  => 'open-ils.circ.hold.change_title',
3665     signature => {
3666         desc => q/
3667             Updates all title level holds targeting the specified bibs to point a new bib./,
3668         params => [
3669             { desc => 'Authentication Token', type => 'string' },
3670             { desc => 'New Target Bib Id',    type => 'number' },
3671             { desc => 'Old Target Bib Ids',   type => 'array'  },
3672         ],
3673         return => { desc => '1 on success' }
3674     }
3675 );
3676
3677 __PACKAGE__->register_method(
3678     method    => 'change_hold_title_for_specific_holds',
3679     api_name  => 'open-ils.circ.hold.change_title.specific_holds',
3680     signature => {
3681         desc => q/
3682             Updates specified holds to target new bib./,
3683         params => [
3684             { desc => 'Authentication Token', type => 'string' },
3685             { desc => 'New Target Bib Id',    type => 'number' },
3686             { desc => 'Holds Ids for holds to update',   type => 'array'  },
3687         ],
3688         return => { desc => '1 on success' }
3689     }
3690 );
3691
3692
3693 sub change_hold_title {
3694     my( $self, $client, $auth, $new_bib_id, $bib_ids ) = @_;
3695
3696     my $e = new_editor(authtoken=>$auth, xact=>1);
3697     return $e->die_event unless $e->checkauth;
3698
3699     my $holds = $e->search_action_hold_request(
3700         [
3701             {
3702                 cancel_time      => undef,
3703                 fulfillment_time => undef,
3704                 hold_type        => 'T',
3705                 target           => $bib_ids
3706             },
3707             {
3708                 flesh        => 1,
3709                 flesh_fields => { ahr => ['usr'] }
3710             }
3711         ],
3712         { substream => 1 }
3713     );
3714
3715     for my $hold (@$holds) {
3716         $e->allowed('UPDATE_HOLD', $hold->usr->home_ou) or return $e->die_event;
3717         $logger->info("Changing hold " . $hold->id . " target from " . $hold->target . " to $new_bib_id in title hold target change");
3718         $hold->target( $new_bib_id );
3719         $e->update_action_hold_request($hold) or return $e->die_event;
3720     }
3721
3722     $e->commit;
3723
3724     _reset_hold($self, $e->requestor, $_) for @$holds;
3725
3726     return 1;
3727 }
3728
3729 sub change_hold_title_for_specific_holds {
3730     my( $self, $client, $auth, $new_bib_id, $hold_ids ) = @_;
3731
3732     my $e = new_editor(authtoken=>$auth, xact=>1);
3733     return $e->die_event unless $e->checkauth;
3734
3735     my $holds = $e->search_action_hold_request(
3736         [
3737             {
3738                 cancel_time      => undef,
3739                 fulfillment_time => undef,
3740                 hold_type        => 'T',
3741                 id               => $hold_ids
3742             },
3743             {
3744                 flesh        => 1,
3745                 flesh_fields => { ahr => ['usr'] }
3746             }
3747         ],
3748         { substream => 1 }
3749     );
3750
3751     for my $hold (@$holds) {
3752         $e->allowed('UPDATE_HOLD', $hold->usr->home_ou) or return $e->die_event;
3753         $logger->info("Changing hold " . $hold->id . " target from " . $hold->target . " to $new_bib_id in title hold target change");
3754         $hold->target( $new_bib_id );
3755         $e->update_action_hold_request($hold) or return $e->die_event;
3756     }
3757
3758     $e->commit;
3759
3760     _reset_hold($self, $e->requestor, $_) for @$holds;
3761
3762     return 1;
3763 }
3764
3765 __PACKAGE__->register_method(
3766     method    => 'rec_hold_count',
3767     api_name  => 'open-ils.circ.bre.holds.count',
3768     signature => {
3769         desc => q/Returns the total number of holds that target the 
3770             selected bib record or its associated copies and call_numbers/,
3771         params => [
3772             { desc => 'Bib ID', type => 'number' },
3773         ],
3774         return => {desc => 'Hold count', type => 'number'}
3775     }
3776 );
3777
3778 __PACKAGE__->register_method(
3779     method    => 'rec_hold_count',
3780     api_name  => 'open-ils.circ.mmr.holds.count',
3781     signature => {
3782         desc => q/Returns the total number of holds that target the 
3783             selected metarecord or its associated copies, call_numbers, and bib records/,
3784         params => [
3785             { desc => 'Metarecord ID', type => 'number' },
3786         ],
3787         return => {desc => 'Hold count', type => 'number'}
3788     }
3789 );
3790
3791 # XXX Need to add type I (and, soon, type P) holds to these counts
3792 sub rec_hold_count {
3793     my($self, $conn, $target_id) = @_;
3794
3795
3796     my $mmr_join = {
3797         mmrsm => {
3798             field => 'id',
3799             fkey => 'source',
3800             filter => {metarecord => $target_id}
3801         }
3802     };
3803
3804     my $bre_join = {
3805         bre => {
3806             field => 'id',
3807             filter => { id => $target_id },
3808             fkey => 'record'
3809         }
3810     };
3811
3812     if($self->api_name =~ /mmr/) {
3813         delete $bre_join->{bre}->{filter};
3814         $bre_join->{bre}->{join} = $mmr_join;
3815     }
3816
3817     my $cn_join = {
3818         acn => {
3819             field => 'id',
3820             fkey => 'call_number',
3821             join => $bre_join
3822         }
3823     };
3824
3825     my $query = {
3826         select => {ahr => [{column => 'id', transform => 'count', alias => 'count'}]},
3827         from => 'ahr',
3828         where => {
3829             '+ahr' => {
3830                 cancel_time => undef, 
3831                 fulfillment_time => undef,
3832                 '-or' => [
3833                     {
3834                         '-and' => {
3835                             hold_type => [qw/C F R/],
3836                             target => {
3837                                 in => {
3838                                     select => {acp => ['id']},
3839                                     from => { acp => $cn_join }
3840                                 }
3841                             }
3842                         }
3843                     },
3844                     {
3845                         '-and' => {
3846                             hold_type => 'V',
3847                             target => {
3848                                 in => {
3849                                     select => {acn => ['id']},
3850                                     from => {acn => $bre_join}
3851                                 }
3852                             }
3853                         }
3854                     },
3855                     {
3856                         '-and' => {
3857                             hold_type => 'T',
3858                             target => $target_id
3859                         }
3860                     }
3861                 ]
3862             }
3863         }
3864     };
3865
3866     if($self->api_name =~ /mmr/) {
3867         $query->{where}->{'+ahr'}->{'-or'}->[2] = {
3868             '-and' => {
3869                 hold_type => 'T',
3870                 target => {
3871                     in => {
3872                         select => {bre => ['id']},
3873                         from => {bre => $mmr_join}
3874                     }
3875                 }
3876             }
3877         };
3878
3879         $query->{where}->{'+ahr'}->{'-or'}->[3] = {
3880             '-and' => {
3881                 hold_type => 'M',
3882                 target => $target_id
3883             }
3884         };
3885     }
3886
3887
3888     return new_editor()->json_query($query)->[0]->{count};
3889 }
3890
3891
3892
3893
3894
3895
3896 1;