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