]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/Application/Curbside.pm
LP#1879983: Curbside application: open-ils.curbside
[Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / Application / Curbside.pm
1 package OpenILS::Application::Curbside;
2
3 use strict;
4 use warnings;
5
6 use POSIX qw/strftime/;
7 use OpenSRF::AppSession;
8 use OpenILS::Application;
9 use base qw/OpenILS::Application/;
10
11 use OpenILS::Utils::DateTime qw/:datetime/;
12 use OpenILS::Utils::CStoreEditor qw/:funcs/;
13 use OpenILS::Utils::Fieldmapper;
14 use OpenILS::Application::AppUtils;
15 my $U = "OpenILS::Application::AppUtils";
16
17 use Digest::MD5 qw(md5_hex);
18
19 use DateTime;
20 use DateTime::Format::ISO8601;
21
22 my $date_parser = DateTime::Format::ISO8601->new;
23
24 use OpenSRF::Utils::Logger qw/$logger/;
25
26 sub fetch_mine { # returns appointments owned by $authtoken user, optional $org filter
27     my ($self, $conn, $authtoken, $org, $limit, $offset) = @_;
28
29     my $e = new_editor(xact => 1, authtoken => $authtoken);
30     return $e->die_event unless $e->checkauth;
31
32     # NOTE: not checking if curbside is enabled here
33     # because the pickup lib might be anything
34
35     my $slots = $e->search_action_curbside([{
36         patron    => $e->requestor->id,
37         delivered => { '=' => undef },
38         ( $org ? (org => $org) : () )
39     },{
40         ($limit  ? (limit  => $limit) : ()),
41         ($offset ? (offset => $offset) : ()),
42         flesh => 2, flesh_fields => {acsp => ['patron'], au => ['card']},
43         order_by => { acsp => {slot => {direction => 'asc'}} }
44     }]);
45
46     $conn->respond($_) for @$slots;
47     return undef;
48 }
49 __PACKAGE__->register_method(
50     method   => "fetch_mine",
51     api_name => "open-ils.curbside.fetch_mine",
52     stream   => 1,
53     signature => {
54         params => [
55             {type => 'string', desc => 'Authentication token'},
56             {type => 'number', desc => 'Optional Library ID to filter further'},
57             {type => 'number', desc => 'Fetch limit'},
58             {type => 'number', desc => 'Fetch offset'},
59         ],
60         return => { desc => 'A stream of appointments that the authenticated user owns'}
61     }
62 );
63
64 sub fetch_appointments { # returns appointment for user at location
65     my ($self, $conn, $authtoken, $usr, $org) = @_;
66
67     my $e = new_editor(xact => 1, authtoken => $authtoken);
68     return $e->die_event unless $e->checkauth;
69
70     $org ||= $e->requestor->ws_ou;
71
72     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
73         $U->ou_ancestor_setting_value($org, 'circ.curbside')
74     ));
75
76     return new OpenILS::Event("BAD_PARAMS", "desc" => "No user ID supplied") unless $usr;
77
78     unless ($usr == $e->requestor->id) {
79         return $e->die_event unless $e->allowed("STAFF_LOGIN");
80     }
81
82     my $slots = $e->search_action_curbside([{
83         patron    => $usr,
84         delivered => { '=' => undef },
85         org       => $org,
86     },{
87         order_by => { acsp => {slot => {direction => 'asc'}} }
88     }]);
89
90     $conn->respond($_) for @$slots;
91     return undef;
92 }
93 __PACKAGE__->register_method(
94     method   => "fetch_appointments",
95     api_name => "open-ils.curbside.open_user_appointments_at_lib",
96     stream   => 1,
97     signature => {
98         params => [
99             {type => 'string', desc => 'Authentication token'},
100             {type => 'number', desc => 'Patron ID'},
101             {type => 'number', desc => 'Optional pickup library. If not supplied, taken from WS of session.'},
102         ],
103         return => { desc => 'A stream of appointments that the authenticated user owns'}
104     }
105 );
106
107 sub fetch_holds_for_patron_at_pickup_lib {
108     my ($self, $conn, $authtoken, $usr, $org) = @_;
109
110     my $e = new_editor(xact => 1, authtoken => $authtoken);
111     return $e->die_event unless $e->checkauth;
112
113     $org ||= $e->requestor->ws_ou;
114
115     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
116         $U->ou_ancestor_setting_value($org, 'circ.curbside')
117     ));
118
119     return new OpenILS::Event("BAD_PARAMS", "desc" => "No user ID supplied") unless $usr;
120
121     my $holds = $e->search_action_hold_request({
122         usr => $usr,
123         current_shelf_lib => $org,
124         pickup_lib => $org,
125         shelf_time => {'!=' => undef},
126         cancel_time => undef,
127         fulfillment_time => undef
128     }, { idlist => 1 });
129
130     return scalar(@$holds);
131
132 }
133 __PACKAGE__->register_method(
134     method   => "fetch_holds_for_patron_at_pickup_lib",
135     api_name => "open-ils.curbside.patron.ready_holds_at_lib.count",
136     signature => {
137         params => [
138             {type => 'string', desc => 'Authentication token'},
139             {type => 'number', desc => 'Patron ID'},
140             {type => 'number', desc => 'Optional pickup library. If not supplied, taken from WS of session.'},
141         ],
142         return => { desc => 'Number of holds on the shelf for the patron at the specified library'}
143     }
144 );
145
146 sub _flesh_and_emit_slots {
147     my ($conn, $e, $slots) = @_;
148
149     for my $s (@$slots) {
150         my $start_time;
151         my $end_time;
152         if ($s->delivered) {
153             $start_time = DateTime::Format::ISO8601->new->parse_datetime(clean_ISO8601($s->delivered));
154             $end_time = $start_time->clone->add(seconds => 90); # 90 seconds is arbitrary
155         }
156         my $holds = $e->search_action_hold_request([{
157             usr => $s->patron->id,
158             current_shelf_lib => $s->org,
159             pickup_lib => $s->org,
160             shelf_time => {'!=' => undef},
161             cancel_time => undef,
162             ($s->delivered) ?
163                 (
164                     '-and' => [ { fulfillment_time => {'>=' => $start_time->strftime('%FT%T%z') } },
165                                 { fulfillment_time => {'<=' => $end_time->strftime('%FT%T%z') } } ],
166                 ) :
167                 (fulfillment_time => undef),
168         },{
169             flesh => 1, flesh_fields => {ahr => ['current_copy']},
170         }]);
171
172         my $rhrr_list = $e->search_reporter_hold_request_record(
173             {id => [ map { $_->id } @$holds ]}
174         );
175
176         my %bib_data = map {
177             ($_->id => $e->retrieve_metabib_wide_display_entry( $_->bib_record))
178         } @$rhrr_list;
179
180         $conn->respond({slot_id => $s->id, slot => $s, holds => $holds, bib_data_by_hold => \%bib_data});
181     }
182 }
183
184 sub fetch_delivered { # returns appointments delivered TODAY
185     my ($self, $conn, $authtoken, $org, $limit, $offset) = @_;
186
187     my $e = new_editor(xact => 1, authtoken => $authtoken);
188     return $e->die_event unless $e->checkauth;
189
190     $org ||= $e->requestor->ws_ou;
191
192     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
193         $U->ou_ancestor_setting_value($org, 'circ.curbside')
194     ));
195
196     my $slots = $e->search_action_curbside([{
197         org => $org,
198         arrival => { '!=' => undef},
199         delivered => { '>' => 'today'},
200     },{
201         ($limit  ? (limit  => $limit) : ()),
202         ($offset ? (offset => $offset) : ()),
203         flesh => 2, flesh_fields => {acsp => ['patron'], au => ['card']},
204         order_by => { acsp => {delivered => {direction => 'desc'}} }
205     }]);
206
207     _flesh_and_emit_slots($conn, $e, $slots);
208
209     return undef;
210 }
211 __PACKAGE__->register_method(
212     method   => "fetch_delivered",
213     api_name => "open-ils.curbside.fetch_delivered",
214     stream   => 1,
215     signature => {
216         params => [
217             {type => 'string', desc => 'Authentication token'},
218             {type => 'number', desc => 'Library ID'},
219             {type => 'number', desc => 'Fetch limit'},
220             {type => 'number', desc => 'Fetch offset'},
221         ],
222         return => { desc => 'A stream of appointments that were delivered today'}
223     }
224 );
225
226 sub fetch_latest_delivered { # returns appointments delivered TODAY
227     my ($self, $conn, $authtoken, $org) = @_;
228
229     my $e = new_editor(xact => 1, authtoken => $authtoken);
230     return $e->die_event unless $e->checkauth;
231
232     $org ||= $e->requestor->ws_ou;
233
234     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
235         $U->ou_ancestor_setting_value($org, 'circ.curbside')
236     ));
237
238     my $slots = $e->search_action_curbside([{
239         org => $org,
240         arrival => { '!=' => undef},
241         delivered => { '>' => 'today'},
242     },{
243         order_by => { acsp => {delivered => {direction => 'desc'}} }
244     }],{ idlist => 1 });
245
246     return md5_hex( join(',', @$slots) );
247 }
248 __PACKAGE__->register_method(
249     method   => "fetch_latest_delivered",
250     api_name => "open-ils.curbside.fetch_delivered.latest",
251     signature => {
252         params => [
253             {type => 'string', desc => 'Authentication token'},
254             {type => 'number', desc => 'Library ID'},
255         ],
256         return => { desc => 'Hash of appointment IDs delivered today, or error event'}
257     }
258 );
259
260 sub fetch_arrived {
261     my ($self, $conn, $authtoken, $org, $limit, $offset) = @_;
262
263     my $e = new_editor(xact => 1, authtoken => $authtoken);
264     return $e->die_event unless $e->checkauth;
265
266     $org ||= $e->requestor->ws_ou;
267
268     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
269         $U->ou_ancestor_setting_value($org, 'circ.curbside')
270     ));
271
272     my $slots = $e->search_action_curbside([{
273         org => $org,
274         arrival => { '!=' => undef},
275         delivered => undef,
276     },{
277         ($limit  ? (limit  => $limit) : ()),
278         ($offset ? (offset => $offset) : ()),
279         flesh => 3, flesh_fields => {acsp => ['patron'], au => ['card','standing_penalties'], ausp => ['standing_penalty']},
280         order_by => { acsp => 'arrival' }
281     }]);
282
283
284     _flesh_and_emit_slots($conn, $e, $slots);
285
286     return undef;
287 }
288 __PACKAGE__->register_method(
289     method   => "fetch_arrived",
290     api_name => "open-ils.curbside.fetch_arrived",
291     stream   => 1,
292     signature => {
293         params => [
294             {type => 'string', desc => 'Authentication token'},
295             {type => 'number', desc => 'Library ID'},
296             {type => 'number', desc => 'Fetch limit'},
297             {type => 'number', desc => 'Fetch offset'},
298         ],
299         return => { desc => 'A stream of appointments for patrons that have arrived but are not delivered'}
300     }
301 );
302
303 sub fetch_latest_arrived {
304     my ($self, $conn, $authtoken, $org) = @_;
305
306     my $e = new_editor(xact => 1, authtoken => $authtoken);
307     return $e->die_event unless $e->checkauth;
308
309     $org ||= $e->requestor->ws_ou;
310
311     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
312         $U->ou_ancestor_setting_value($org, 'circ.curbside')
313     ));
314
315     my $slots = $e->search_action_curbside([{
316         org => $org,
317         arrival => { '!=' => undef},
318         delivered => undef,
319     },{
320         order_by => { acsp => { arrival => { direction => 'desc' } } }
321     }],{ idlist => 1 });
322
323     return md5_hex( join(',', @$slots) );
324 }
325 __PACKAGE__->register_method(
326     method   => "fetch_latest_arrived",
327     api_name => "open-ils.curbside.fetch_arrived.latest",
328     signature => {
329         params => [
330             {type => 'string', desc => 'Authentication token'},
331             {type => 'number', desc => 'Library ID'},
332         ],
333         return => { desc => 'Hash of appointment IDs for undelivered appointments'}
334     }
335 );
336
337 sub fetch_staged {
338     my ($self, $conn, $authtoken, $org, $limit, $offset) = @_;
339
340     my $e = new_editor(xact => 1, authtoken => $authtoken);
341     return $e->die_event unless $e->checkauth;
342
343     $org ||= $e->requestor->ws_ou;
344
345     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
346         $U->ou_ancestor_setting_value($org, 'circ.curbside')
347     ));
348
349     my $slots = $e->search_action_curbside([{
350         org => $org,
351         staged => { '!=' => undef},
352         arrival => undef
353     },{
354         ($limit  ? (limit  => $limit) : ()),
355         ($offset ? (offset => $offset) : ()),
356         flesh => 3, flesh_fields => {acsp => ['patron'], au => ['card','standing_penalties'], ausp => ['standing_penalty']},
357         order_by => { acsp => 'slot' }
358     }]);
359
360     _flesh_and_emit_slots($conn, $e, $slots);
361
362     return undef;
363 }
364 __PACKAGE__->register_method(
365     method   => "fetch_staged",
366     api_name => "open-ils.curbside.fetch_staged",
367     stream   => 1,
368     signature => {
369         params => [
370             {type => 'string', desc => 'Authentication token'},
371             {type => 'number', desc => 'Library ID'},
372             {type => 'number', desc => 'Fetch limit'},
373             {type => 'number', desc => 'Fetch offset'},
374         ],
375         return => { desc => 'A stream of appointments that are staged but patrons have not yet arrived'}
376     }
377 );
378
379 sub fetch_latest_staged {
380     my ($self, $conn, $authtoken, $org) = @_;
381
382     my $e = new_editor(xact => 1, authtoken => $authtoken);
383     return $e->die_event unless $e->checkauth;
384
385     $org ||= $e->requestor->ws_ou;
386
387     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
388         $U->ou_ancestor_setting_value($org, 'circ.curbside')
389     ));
390
391     my $slots = $e->search_action_curbside([{
392         org => $org,
393         staged => { '!=' => undef},
394         arrival => undef
395     },{
396         order_by => [
397             { class => acsp => field => slot => direction => 'desc' },
398             { class => acsp => field => id   => direction => 'desc' }
399         ]
400     }],{ idlist => 1 });
401
402     return md5_hex( join(',', @$slots) );
403 }
404 __PACKAGE__->register_method(
405     method   => "fetch_latest_staged",
406     api_name => "open-ils.curbside.fetch_staged.latest",
407     signature => {
408         params => [
409             {type => 'string', desc => 'Authentication token'},
410             {type => 'number', desc => 'Library ID'},
411         ],
412         return => { desc => 'Hash of appointment IDs for staged appointment'}
413     }
414 );
415
416 sub fetch_to_be_staged {
417     my ($self, $conn, $authtoken, $org, $limit, $offset) = @_;
418
419     my $e = new_editor(xact => 1, authtoken => $authtoken);
420     return $e->die_event unless $e->checkauth;
421
422     $org ||= $e->requestor->ws_ou;
423
424     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
425         $U->ou_ancestor_setting_value($org, 'circ.curbside')
426     ));
427
428     my $gran = $U->ou_ancestor_setting_value($org, 'circ.curbside.granularity') || '15 minutes';
429     my $gran_seconds = interval_to_seconds($gran);
430     my $horizon = DateTime->now; # NOTE: does not need timezone set because it gets UTC, not floating, so we can math with it
431     $horizon->add(seconds => $gran_seconds * 2);
432
433     my $slots = $e->search_action_curbside([{
434         org => $org,
435         staged => undef,
436         slot => { '<=' => $horizon->strftime('%FT%T%z') },
437     },{
438         ($limit  ? (limit  => $limit) : ()),
439         ($offset ? (offset => $offset) : ()),
440         flesh => 3, flesh_fields => {acsp => ['patron','stage_staff'], au => ['card','standing_penalties'], ausp => ['standing_penalty']},
441         order_by => { acsp => 'slot' }
442     }]);
443
444     _flesh_and_emit_slots($conn, $e, $slots);
445
446     return undef;
447 }
448 __PACKAGE__->register_method(
449     method   => "fetch_to_be_staged",
450     api_name => "open-ils.curbside.fetch_to_be_staged",
451     stream   => 1,
452     signature => {
453         params => [
454             {type => 'string', desc => 'Authentication token'},
455             {type => 'number', desc => 'Library ID'},
456             {type => 'number', desc => 'Fetch limit'},
457             {type => 'number', desc => 'Fetch offset'},
458         ],
459         return => { desc => 'A stream of appointments that need to be staged'}
460     }
461 );
462
463 sub fetch_latest_to_be_staged {
464     my ($self, $conn, $authtoken, $org) = @_;
465
466     my $e = new_editor(xact => 1, authtoken => $authtoken);
467     return $e->die_event unless $e->checkauth;
468
469     $org ||= $e->requestor->ws_ou;
470
471     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
472         $U->ou_ancestor_setting_value($org, 'circ.curbside')
473     ));
474
475     my $gran = $U->ou_ancestor_setting_value($org, 'circ.curbside.granularity') || '15 minutes';
476     my $gran_seconds = interval_to_seconds($gran);
477     my $horizon = DateTime->now; # NOTE: does not need timezone set because it gets UTC, not floating, so we can math with it
478     $horizon->add(seconds => $gran_seconds * 2);
479
480     my $slots = $e->search_action_curbside([{
481         org => $org,
482         staged => undef,
483         slot => { '<=' => $horizon->strftime('%FT%T%z') },
484     },{
485         order_by => [
486             { class => acsp => field => slot => direction => 'desc' },
487             { class => acsp => field => id   => direction => 'desc' }
488         ]
489     }]);
490
491     return md5_hex( join(',', map { join('-', $_->id(), $_->stage_staff() // '', $_->arrival() // '') } @$slots) );
492 }
493 __PACKAGE__->register_method(
494     method   => "fetch_latest_to_be_staged",
495     api_name => "open-ils.curbside.fetch_to_be_staged.latest",
496     signature => {
497         params => [
498             {type => 'string', desc => 'Authentication token'},
499             {type => 'number', desc => 'Library ID'},
500         ],
501         return => { desc => 'Hash of appointment IDs that needs to be staged'}
502     }
503 );
504
505 sub times_for_date {
506     my ($self, $conn, $authtoken, $date, $org) = @_;
507
508     my $e = new_editor(xact => 1, authtoken => $authtoken);
509     return $e->die_event unless $e->checkauth;
510
511     $org ||= $e->requestor->ws_ou;
512
513     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
514         $U->ou_ancestor_setting_value($org, 'circ.curbside')
515     ));
516
517     my $start_obj = $date_parser->parse_datetime($date);
518     return $conn->respond_complete unless ($start_obj);
519
520     my $gran = $U->ou_ancestor_setting_value($org, 'circ.curbside.granularity') || '15 minutes';
521     my $gran_seconds = interval_to_seconds($gran);
522
523     my $max = $U->ou_ancestor_setting_value($org, 'circ.curbside.max_concurrent') || 10;
524
525     my $hoo = $e->retrieve_actor_org_unit_hours_of_operation($org);
526     return undef unless ($hoo);
527
528     my $dow = $start_obj->day_of_week_0;
529
530     my $open_method = "dow_${dow}_open";
531     my $close_method = "dow_${dow}_close";
532
533     my $open_time = $hoo->$open_method;
534     my $close_time = $hoo->$close_method;
535     return $conn->respond_complete if ($open_time eq $close_time); # location closed that day
536
537     my $tz = $U->ou_ancestor_setting_value($org, 'lib.timezone') || 'local';
538     $start_obj = $date_parser->parse_datetime($date.'T'.$open_time)->set_time_zone($tz); # reset this to opening time
539     my $end_obj = $date_parser->parse_datetime($date.'T'.$close_time)->set_time_zone($tz);
540
541     my $now_obj = DateTime->now; # NOTE: does not need timezone set because it gets UTC, not floating, so we can math with it
542     # Add two step intervals to avoid having an appointment be scheduled
543     # sooner than the library could stage the items. Setting the earliest
544     # available time to be no earlier than two intervals from now
545     # is arbitrary and could be made configurable in the future, though
546     # it does follow the hard-coding of the horizon in fetch_to_be_staged().
547     $now_obj->add(seconds => 2 * $gran_seconds);
548
549     my $step_obj = $start_obj->clone;
550     while (DateTime->compare($step_obj,$end_obj) < 0) { # inside HOO
551         if (DateTime->compare($step_obj,$now_obj) >= 0) { # only offer times in the future
552             my $step_ts = $step_obj->strftime('%FT%T%z');
553             my $other_slots = $e->search_action_curbside({org => $org, slot => $step_ts}, {idlist => 1});
554             my $available = $max - scalar(@$other_slots);
555             $available = $available < 0 ? 0 : $available; # so truthiness testing is always easy in the client
556
557             $conn->respond([$step_obj->strftime('%T'), $available]);
558         }
559         $step_obj->add(seconds => $gran_seconds);
560     }
561
562     $e->disconnect;
563     return undef;
564 }
565 __PACKAGE__->register_method(
566     method   => "times_for_date",
567     api_name => "open-ils.curbside.times_for_date",
568     stream   => 1,
569     argc     => 2,
570     signature=> {
571         params => [
572             {type => "string", desc => "Authentication token"},
573             {type => "string", desc => "Date to find times for"},
574             {type => "number", desc => "Library ID (default ws_ou)"},
575         ],
576         return => {desc => 'A stream of array refs, structure: ["hh:mm:ss",$available_count]; event on error.'}
577     },
578     notes   => 'Restricted to logged in users to avoid spamming induced load'
579 );
580
581 sub create_update_appointment {
582     my ($self, $conn, $authtoken, $patron, $date, $time, $org, $notes) = @_;
583     my $mode = 'create';
584     $mode = 'update' if ($self->api_name =~ /update/);
585
586     my $e = new_editor(xact => 1, authtoken => $authtoken);
587     return $e->die_event unless $e->checkauth;
588
589     $org ||= $e->requestor->ws_ou;
590
591     return new OpenILS::Event("CURBSIDE_NOT_ALLOWED") unless ($U->is_true(
592         $U->ou_ancestor_setting_value($org, 'circ.curbside')
593     ));
594
595     unless ($patron == $e->requestor->id) {
596         return $e->die_event unless $e->allowed("STAFF_LOGIN");
597     }
598
599     my $date_obj = $date_parser->parse_datetime($date); # no TZ necessary, just using it to test the input and get DOW
600     return undef unless ($date_obj);
601
602     if ($time =~ /^\d\d:\d\d$/) {
603         $time .= ":00"; # tack on seconds if needed to keep
604                         # interval_to_seconds happy
605     }
606
607     my $slot;
608
609     # do they already have an open slot?
610     # NOTE: once arrival is set, it's past the point of editing.
611     my $old_slot = $e->search_action_curbside({
612         patron  => $patron,
613         org     => $org,
614         slot    => { '!=' => undef },
615         arrival => undef
616     })->[0];
617     if ($old_slot) {
618         if ($mode eq 'create') {
619             my $ev = new OpenILS::Event("CURBSIDE_EXISTS");
620             $e->disconnect;
621             return $ev;
622         } else {
623             $slot = $old_slot;
624         }
625     }
626
627     my $gran = $U->ou_ancestor_setting_value($org, 'circ.curbside.granularity') || '15 minutes';
628     my $max = $U->ou_ancestor_setting_value($org, 'circ.curbside.max_concurrent') || 10;
629
630     # some sanity checking
631     my $hoo = $e->retrieve_actor_org_unit_hours_of_operation($org);
632     return undef unless ($hoo);
633
634     my $dow = $date_obj->day_of_week_0;
635
636     my $open_method = "dow_${dow}_open";
637     my $close_method = "dow_${dow}_close";
638
639     my $open_time = $hoo->$open_method;
640     my $close_time = $hoo->$close_method;
641     return undef if ($open_time eq $close_time); # location closed that day
642
643     my $open_seconds = interval_to_seconds($open_time);
644     my $close_seconds = interval_to_seconds($close_time);
645
646     my $time_seconds = interval_to_seconds($time);
647     my $gran_seconds = interval_to_seconds($gran);
648
649     return undef if ($time_seconds < $open_seconds); # too early
650     return undef if ($time_seconds > $close_seconds + 1); # too late (/at/ closing allowed)
651
652     my $time_into_open_second = $time_seconds - $open_seconds;
653     if (my $extra_time = $time_into_open_second % $gran) { # a remainder means we got a time we shouldn't have
654         $time_into_open_second -= $extra_time; # just back it off to have staff gather earlier
655     }
656
657     my $tz = $U->ou_ancestor_setting_value($org, 'lib.timezone') || 'local';
658     $date_obj = $date_parser->parse_datetime($date.'T'.$open_time)->set_time_zone($tz);
659
660     my $slot_ts = $date_obj->add(seconds => $time_into_open_second)->strftime('%FT%T%z');
661
662     # finally, confirm that there aren't too many already
663     my $other_slots = $e->search_action_curbside(
664         { org => $org,
665           slot => $slot_ts,
666           ( $slot ? (id => { '<>' => $slot->id }) : () ) # exclude our own slot from the count
667         },
668         {idlist => 1}
669     );
670     if (scalar(@$other_slots) >= $max) { # oops... return error
671         my $ev = new OpenILS::Event("CURBSIDE_MAX_FOR_TIME");
672         $e->disconnect;
673         return $ev;
674     }
675
676     my $method = 'update_action_curbside';
677     if ($mode eq 'create' or !$slot) {
678         $slot = $e->search_action_curbside({
679             patron  => $patron,
680             org     => $org,
681             slot    => undef,
682             arrival => undef,
683         })->[0];
684     }
685
686     if (!$slot) { # just in case the hold-ready reactor isn't in place
687         $slot = Fieldmapper::action::curbside->new;
688         $slot->isnew(1);
689         $slot->patron($patron);
690         $slot->org($org);
691         $slot->notes($notes) if ($notes);
692         $method = 'create_action_curbside';
693     } else {
694         $slot->notes($notes) if ($notes);
695         $slot->ischanged(1);
696         $method = 'update_action_curbside';
697     }
698
699     $slot->slot($slot_ts);
700     $e->$method($slot) or return $e->die_event;
701
702     $e->commit;
703     $conn->respond_complete($e->retrieve_action_curbside($slot->id));
704
705     OpenSRF::AppSession
706         ->create('open-ils.trigger')
707         ->request(
708             'open-ils.trigger.event.autocreate',
709             'hold.confirm_curbside',
710             $slot, $slot->org);
711
712     return undef;
713 }
714 __PACKAGE__->register_method(
715     method   => "create_update_appointment",
716     api_name => "open-ils.curbside.update_appointment",
717     signature => {
718         params => [
719             {type => 'string', desc => 'Authentication token'},
720             {type => 'number', desc => 'Patron ID'},
721             {type => 'string', desc => 'New Date'},
722             {type => 'string', desc => 'New Time'},
723             {type => 'number', desc => 'Library ID (default ws_ou)'},
724         ],
725         return => { desc => 'An action::curbside record on success, '.
726                             'an ILS Event on config, permission, or '.
727                             'recoverable errors, or nothing on bad '.
728                             'or silly data'}
729     }
730 );
731
732 __PACKAGE__->register_method(
733     method   => "create_update_appointment",
734     api_name => "open-ils.curbside.create_appointment",
735     signature => {
736         params => [
737             {type => 'string', desc => 'Authentication token'},
738             {type => 'number', desc => 'Patron ID'},
739             {type => 'string', desc => 'Date'},
740             {type => 'string', desc => 'Time'},
741             {type => 'number', desc => 'Library ID (default ws_ou)'},
742         ],
743         return => { desc => 'An action::curbside record on success, '.
744                             'an ILS Event on config, permission, or '.
745                             'recoverable errors, or nothing on bad '.
746                             'or silly data'}
747     }
748 );
749
750 sub delete_appointment {
751     my ($self, $conn, $authtoken, $appointment) = @_;
752     my $e = new_editor(xact => 1, authtoken => $authtoken);
753     return $e->die_event unless $e->checkauth;
754
755     my $slot = $e->retrieve_action_curbside($appointment);
756     return undef unless ($slot);
757
758     unless ($slot->patron == $e->requestor->id) {
759         return $e->die_event unless $e->allowed("STAFF_LOGIN");
760     }
761
762     $e->delete_action_curbside($slot) or return $e->die_event;
763     $e->commit;
764
765     return -1;
766 }
767 __PACKAGE__->register_method(
768     method   => "delete_appointment",
769     api_name => "open-ils.curbside.delete_appointment",
770     signature => {
771         params => [
772             {type => 'string', desc => 'Authentication token'},
773             {type => 'number', desc => 'Appointment ID'},
774         ],
775         return => { desc => '-1 on success, nothing when no appointment found, '.
776                             'or an ILS Event on permission error'}
777     }
778 );
779
780 sub manage_staging_claim {
781     my ($self, $conn, $authtoken, $appointment) = @_;
782     my $e = new_editor(xact => 1, authtoken => $authtoken);
783     return $e->die_event unless $e->checkauth;
784     return $e->die_event unless $e->allowed("STAFF_LOGIN");
785
786     my $slot = $e->retrieve_action_curbside($appointment);
787     return undef unless ($slot);
788
789     if ($self->api_name =~ /unclaim/) {
790         $slot->clear_stage_staff();
791     } else {
792         $slot->stage_staff($e->requestor->id);
793     }
794
795     $e->update_action_curbside($slot) or return $e->die_event;
796     $e->commit;
797
798     return $e->retrieve_action_curbside([
799         $slot->id, {
800             flesh => 3,
801             flesh_fields => {acsp => ['patron','stage_staff'], au => ['card','standing_penalties'], ausp => ['standing_penalty']},
802         }
803     ]);
804 }
805 __PACKAGE__->register_method(
806     method   => "manage_staging_claim",
807     api_name => "open-ils.curbside.claim_staging",
808     signature => {
809         params => [
810             {type => 'string', desc => 'Authentication token'},
811             {type => 'number', desc => 'Appointment ID'},
812         ],
813         return => { desc => 'Appointment on success, nothing when no appointment found, '.
814                             'an ILS Event on permission error'}
815     }
816 );
817 __PACKAGE__->register_method(
818     method   => "manage_staging_claim",
819     api_name => "open-ils.curbside.unclaim_staging",
820     signature => {
821         params => [
822             {type => 'string', desc => 'Authentication token'},
823             {type => 'number', desc => 'Appointment ID'},
824         ],
825         return => { desc => 'Appointment on success, nothing when no appointment found, '.
826                             'an ILS Event on permission error'}
827     }
828 );
829
830 sub mark_staged {
831     my ($self, $conn, $authtoken, $appointment) = @_;
832     my $e = new_editor(xact => 1, authtoken => $authtoken);
833     return $e->die_event unless $e->checkauth;
834     return $e->die_event unless $e->allowed("STAFF_LOGIN");
835
836     my $slot = $e->retrieve_action_curbside($appointment);
837     return undef unless ($slot);
838
839     $slot->staged('now');
840     $slot->stage_staff($e->requestor->id);
841     $e->update_action_curbside($slot) or return $e->die_event;
842     $e->commit;
843
844     return $e->retrieve_action_curbside($slot->id);
845 }
846 __PACKAGE__->register_method(
847     method   => "mark_staged",
848     api_name => "open-ils.curbside.mark_staged",
849     signature => {
850         params => [
851             {type => 'string', desc => 'Authentication token'},
852             {type => 'number', desc => 'Appointment ID'},
853         ],
854         return => { desc => 'Appointment on success, nothing when no appointment found, '.
855                             'an ILS Event on permission error'}
856     }
857 );
858
859 sub mark_unstaged {
860     my ($self, $conn, $authtoken, $appointment) = @_;
861     my $e = new_editor(xact => 1, authtoken => $authtoken);
862     return $e->die_event unless $e->checkauth;
863     return $e->die_event unless $e->allowed("STAFF_LOGIN");
864
865     my $slot = $e->retrieve_action_curbside($appointment);
866     return undef unless ($slot);
867
868     $slot->clear_staged();
869     $slot->clear_stage_staff();
870     $e->update_action_curbside($slot) or return $e->die_event;
871     $e->commit;
872
873     return $e->retrieve_action_curbside($slot->id);
874 }
875 __PACKAGE__->register_method(
876     method   => "mark_unstaged",
877     api_name => "open-ils.curbside.mark_unstaged",
878     signature => {
879         params => [
880             {type => 'string', desc => 'Authentication token'},
881             {type => 'number', desc => 'Appointment ID'},
882         ],
883         return => { desc => 'Appointment on success, nothing when no appointment found, '.
884                             'an ILS Event on permission error'}
885     }
886 );
887
888 sub mark_arrived {
889     my ($self, $conn, $authtoken, $appointment) = @_;
890     my $e = new_editor(xact => 1, authtoken => $authtoken);
891     return $e->die_event unless $e->checkauth;
892
893     my $slot = $e->retrieve_action_curbside($appointment);
894     return undef unless ($slot);
895
896     unless ($slot->patron == $e->requestor->id) {
897         return $e->die_event unless $e->allowed("STAFF_LOGIN");
898     }
899
900     $slot->arrival('now');
901
902     $e->update_action_curbside($slot) or return $e->die_event;
903     $e->commit;
904
905     return $e->retrieve_action_curbside($slot->id);
906 }
907 __PACKAGE__->register_method(
908     method   => "mark_arrived",
909     api_name => "open-ils.curbside.mark_arrived",
910     signature => {
911         params => [
912             {type => 'string', desc => 'Authentication token'},
913             {type => 'number', desc => 'Appointment ID'},
914         ],
915         return => { desc => 'Appointment on success, nothing when no appointment found, '.
916                             'or an ILS Event on permission error'}
917     }
918 );
919
920 sub mark_delivered {
921     my ($self, $conn, $authtoken, $appointment) = @_;
922     my $e = new_editor(xact => 1, authtoken => $authtoken);
923     return $e->die_event unless $e->checkauth;
924     return $e->die_event unless $e->allowed("STAFF_LOGIN");
925
926     my $slot = $e->retrieve_action_curbside($appointment);
927     return undef unless ($slot);
928
929     if (!$slot->staged) {
930         $slot->staged('now');
931         $slot->stage_staff($e->requestor->id);
932     }
933
934     if (!$slot->arrival) {
935         $slot->arrival('now');
936     }
937
938     $slot->delivered('now');
939     $slot->delivery_staff($e->requestor->id);
940
941     $e->update_action_curbside($slot) or return $e->die_event;
942     $e->commit;
943
944     my $holds = $e->search_action_hold_request({
945         usr => $slot->patron,
946         current_shelf_lib => $slot->org,
947         pickup_lib => $slot->org,
948         shelf_time => {'!=' => undef},
949         cancel_time => undef,
950         fulfillment_time => undef
951     });
952
953     my $circ_sess = OpenSRF::AppSession->connect('open-ils.circ');
954     my @requests = map {
955         $circ_sess->request( # Just try as hard as possible to check out everything
956             'open-ils.circ.checkout.full.override',
957             $authtoken, { patron => $slot->patron, copyid => $_->current_copy }
958         )
959     } @$holds;
960
961     my @successful_checkouts;
962     my $successful_patron;
963     for my $r (@requests) {
964         my $co_res = $r->gather(1);
965         $conn->respond($co_res);
966         next if (ref($co_res) eq 'ARRAY'); # success is always singular
967
968         if ($co_res->{textcode} eq 'SUCCESS') { # that's great news...
969             push @successful_checkouts, $co_res->{payload}->{circ}->id;
970             $successful_patron = $co_res->{payload}->{circ}->usr;
971         }
972     }
973
974     $conn->respond_complete($e->retrieve_action_curbside($slot->id));
975
976     $circ_sess->request(
977         'open-ils.circ.checkout.batch_notify.session.atomic',
978         $authtoken,
979         $successful_patron,
980         \@successful_checkouts
981     ) if (@successful_checkouts);
982
983     $circ_sess->disconnect;
984     return undef;
985 }
986 __PACKAGE__->register_method(
987     method   => "mark_delivered",
988     api_name => "open-ils.curbside.mark_delivered",
989     stream   => 1,
990     signature => {
991         params => [
992             {type => 'string', desc => 'Authentication token'},
993             {type => 'number', desc => 'Appointment ID'},
994         ],
995         return => { desc => 'Nothing for no appointment found, '.
996                             'a stream of open-ils.circ.checkout.full.override '.
997                             'responses followed by the finalized slot, '.
998                             'or an ILS Event on permission error'}
999     }
1000 );
1001
1002 1;