]> git.evergreen-ils.org Git - working/NCIPServer.git/blob - lib/NCIP/ILS/Evergreen.pm
d419560e685e95291bbf5380f0893bb12cb61c4d
[working/NCIPServer.git] / lib / NCIP / ILS / Evergreen.pm
1 # ---------------------------------------------------------------
2 # Copyright © 2014 Jason J.A. Stephenson <jason@sigio.com>
3 #
4 # This file is part of NCIPServer.
5 #
6 # NCIPServer is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # NCIPServer is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 # General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with NCIPServer.  If not, see <http://www.gnu.org/licenses/>.
18 # ---------------------------------------------------------------
19 package NCIP::ILS::Evergreen;
20
21 use Modern::Perl;
22 use XML::LibXML::Simple qw(XMLin);
23 use DateTime;
24 use DateTime::Format::ISO8601;
25 use Digest::MD5 qw/md5_hex/;
26 use OpenSRF::System;
27 use OpenSRF::AppSession;
28 use OpenSRF::Utils qw/:datetime/;
29 use OpenSRF::Utils::SettingsClient;
30 use OpenILS::Utils::Fieldmapper;
31 use OpenILS::Utils::Normalize qw(clean_marc);
32 use OpenILS::Application::AppUtils;
33 use OpenILS::Const qw/:const/;
34 use MARC::Record;
35 use MARC::Field;
36 use MARC::File::XML;
37 use List::MoreUtils qw/uniq/;
38 use POSIX qw/strftime/;
39
40 # We need a bunch of NCIP::* objects.
41 use NCIP::Response;
42 use NCIP::Problem;
43 use NCIP::User;
44 use NCIP::User::OptionalFields;
45 use NCIP::User::AddressInformation;
46 use NCIP::User::Id;
47 use NCIP::User::BlockOrTrap;
48 use NCIP::User::Privilege;
49 use NCIP::User::PrivilegeStatus;
50 use NCIP::StructuredPersonalUserName;
51 use NCIP::StructuredAddress;
52 use NCIP::ElectronicAddress;
53 use NCIP::RequestId;
54 use NCIP::Item::Id;
55 use NCIP::Item::OptionalFields;
56 use NCIP::Item::BibliographicDescription;
57 use NCIP::Item::BibliographicItemId;
58 use NCIP::Item::BibliographicRecordId;
59 use NCIP::Item::Description;
60
61 # Inherit from NCIP::ILS.
62 use parent qw(NCIP::ILS);
63
64 =head1 NAME
65
66 Evergreen - Evergreen driver for NCIPServer
67
68 =head1 SYNOPSIS
69
70     my $ils = NCIP::ILS::Evergreen->new(name => $config->{NCIP.ils.value});
71
72 =head1 DESCRIPTION
73
74 NCIP::ILS::Evergreen is the default driver for Evergreen and
75 NCIPServer. It was initially developed to work with Auto-Graphics'
76 SHAREit software using a subset of an unspecified ILL/DCB profile.
77
78 =cut
79
80 # Default values we define for things that might be missing in our
81 # runtime environment or configuration file that absolutely must have
82 # values.
83 #
84 # OILS_NCIP_CONFIG_DEFAULT is the default location to find our
85 # driver's configuration file.  This location can be overridden by
86 # setting the path in the OILS_NCIP_CONFIG environment variable.
87 #
88 # BIB_SOURCE_DEFAULT is the config.bib_source.id to use when creating
89 # "short" bibs.  It is used only if no entry is supplied in the
90 # configuration file.  The provided default is 2, the id of the
91 # "System Local" source that comes with a default Evergreen
92 # installation.
93 use constant {
94     OILS_NCIP_CONFIG_DEFAULT => '/openils/conf/oils_ncip.xml',
95     BIB_SOURCE_DEFAULT => 2
96 };
97
98 # A common Evergreen code shortcut to use AppUtils:
99 my $U = 'OpenILS::Application::AppUtils';
100
101 # The usual constructor:
102 sub new {
103     my $class = shift;
104     $class = ref($class) if (ref $class);
105
106     # Instantiate our parent with the rest of the arguments.  It
107     # creates a blessed hashref.
108     my $self = $class->SUPER::new(@_);
109
110     # Look for our configuration file, load, and parse it:
111     $self->_configure();
112
113     # Bootstrap OpenSRF and prepare some OpenILS components.
114     $self->_bootstrap();
115
116     # Initialize the rest of our internal state.
117     $self->_init();
118
119     return $self;
120 }
121
122 =head1 HANDLER METHODS
123
124 =head2 lookupuser
125
126     $ils->lookupuser($request);
127
128 Processes a LookupUser request.
129
130 =cut
131
132 sub lookupuser {
133     my $self = shift;
134     my $request = shift;
135
136     # Check our session and login if necessary.
137     $self->login() unless ($self->checkauth());
138
139     my $message_type = $self->parse_request_type($request);
140
141     # Let's go ahead and create our response object. We need this even
142     # if there is a problem.
143     my $response = NCIP::Response->new({type => $message_type . "Response"});
144     $response->header($self->make_header($request));
145
146     # Need to parse the request object to get the user barcode.
147     my ($barcode, $idfield) = $self->find_user_barcode($request);
148
149     # If we did not find a barcode, then report the problem.
150     if (ref($barcode) eq 'NCIP::Problem') {
151         $response->problem($barcode);
152         return $response;
153     }
154
155     # Look up our patron by barcode:
156     my $user = $self->retrieve_user_by_barcode($barcode, $idfield);
157     if (ref($user) eq 'NCIP::Problem') {
158         $response->problem($user);
159         return $response;
160     }
161
162     # We got the information, so lets fill in our userdata.
163     my $userdata = NCIP::User->new();
164
165     # Make an array of the user's active barcodes.
166     my $ids = [];
167     foreach my $card (@{$user->cards()}) {
168         if ($U->is_true($card->active())) {
169             my $id = NCIP::User::Id->new({
170                 UserIdentifierType => 'Barcode',
171                 UserIdentifierValue => $card->barcode()
172             });
173             push(@$ids, $id);
174         }
175     }
176     $userdata->UserId($ids);
177
178     # Check if they requested any optional fields and return those.
179     my $elements = $request->{$message_type}->{UserElementType};
180     if ($elements) {
181         $elements = [$elements] unless (ref $elements eq 'ARRAY');
182         my $optionalfields = $self->handle_user_elements($user, $elements);
183         $userdata->UserOptionalFields($optionalfields);
184     }
185
186     $response->data($userdata);
187
188     return $response;
189 }
190
191 =head2 acceptitem
192
193     $ils->acceptitem($request);
194
195 Processes an AcceptItem request.
196
197 =cut
198
199 sub acceptitem {
200     my $self = shift;
201     my $request = shift;
202
203     # Check our session and login if necessary.
204     $self->login() unless ($self->checkauth());
205
206     # Common preparation.
207     my $message = $self->parse_request_type($request);
208     my $response = NCIP::Response->new({type => $message . 'Response'});
209     $response->header($self->make_header($request));
210
211     # We only accept holds for the time being.
212     if ($request->{$message}->{RequestedActionType} !~ /^hold\w/i) {
213         # We need the item id or we can't do anything at all.
214         my ($item_barcode, $item_idfield) = $self->find_item_barcode($request);
215         if (ref($item_barcode) eq 'NCIP::Problem') {
216             $response->problem($item_barcode);
217             return $response;
218         }
219
220         # We need to find a patron barcode or we can't look anyone up
221         # to place a hold.
222         my ($user_barcode, $user_idfield) = $self->find_user_barcode($request, 'UserIdentifierValue');
223         if (ref($user_barcode) eq 'NCIP::Problem') {
224             $response->problem($user_barcode);
225             return $response;
226         }
227         # Look up our patron by barcode:
228         my $user = $self->retrieve_user_by_barcode($user_barcode, $user_idfield);
229         if (ref($user) eq 'NCIP::Problem') {
230             $response->problem($user);
231             return $response;
232         }
233         # We're doing patron checks before looking for bibliographic
234         # information and creating the item because problems with the
235         # patron are more likely to occur.
236         my $problem = $self->check_user_for_problems($user, 'HOLD');
237         if ($problem) {
238             $response->problem($problem);
239             return $response;
240         }
241
242         # Check if the item barcode already exists:
243         my $item = $self->retrieve_copy_details_by_barcode($item_barcode);
244         if ($item) {
245             # What to do here was not defined in the
246             # specification. Since the copies that we create this way
247             # should get deleted when checked in, it would be an error
248             # if we try to create another one. It means that something
249             # has gone wrong somewhere.
250             $response->problem(
251                 NCIP::Problem->new(
252                     {
253                         ProblemType => 'Duplicate Item',
254                         ProblemDetail => "Item with barcode $item_barcode already exists.",
255                         ProblemElement => $item_idfield,
256                         ProblemValue => $item_barcode
257                     }
258                 )
259             );
260             return $response;
261         }
262
263         # Now, we have to create our new copy and/or bib and call number.
264
265         # First, we have to gather the necessary information from the
266         # request.  Store in a hashref for convenience. We may write a
267         # method to get this information in the future if we find we
268         # need it in other handlers. Such a function would be a
269         # candidate to go into our parent, NCIP::ILS.
270         my $item_info = {
271             barcode => $item_barcode,
272             call_number => $request->{$message}->{ItemOptionalFields}->{ItemDescription}->{CallNumber},
273             title => $request->{$message}->{ItemOptionalFields}->{BibliographicDescription}->{Author},
274             author => $request->{$message}->{ItemOptionalFields}->{BibliographicDescription}->{Title},
275             publisher => $request->{$message}->{ItemOptionalFields}->{BibliographicDescription}->{Publisher},
276             publication_date => $request->{$message}->{ItemOptionalFields}->{BibliographicDescription}->{PublicationDate},
277             medium => $request->{$message}->{ItemOptionalFields}->{BibliographicDescription}->{MediumType},
278             electronic => $request->{$message}->{ItemOptionalFields}->{BibliographicDescription}->{ElectronicResource}
279         };
280
281         if ($self->{config}->{items}->{use_precats}) {
282             # We only need to create a precat copy.
283             $item = $self->create_precat_copy($item_info);
284         } else {
285             # We have to create a "partial" bib record, a call number and a copy.
286             $item = $self->create_fuller_copy($item_info);
287         }
288
289         # If we failed to create the copy, report a problem.
290         unless ($item) {
291             $response->problem(
292                 {
293                     ProblemType => 'Temporary Processing Failure',
294                     ProblemDetail => 'Failed to create the item in the system',
295                     ProblemElement => $item_idfield,
296                     ProblemValue => $item_barcode
297                 }
298             );
299             return $response;
300         }
301
302         # We try to find the pickup location in our database. It's OK
303         # if it does not exist, the user's home library will be used
304         # instead.
305         my $location = $request->{$message}->{PickupLocation};
306         if ($location) {
307             $location = $self->retrieve_org_unit_by_shortname($location);
308         }
309
310         # Now, we place the hold on the newly created copy on behalf
311         # of the patron retrieved above.
312         my $hold = $self->place_hold($item, $user, $location);
313         if (ref($hold) eq 'NCIP::Problem') {
314             $response->problem($hold);
315             return $response;
316         }
317
318         # We return the RequestId and optionally, the ItemID. We'll
319         # just return what was sent to us, since we ignored all of it
320         # but the barcode.
321         my $data = {};
322         $data->{RequestId} = NCIP::RequestId->new(
323             {
324                 AgencyId => $request->{$message}->{RequestId}->{AgencyId},
325                 RequestIdentifierType => $request->{$message}->{RequestId}->{RequestIdentifierType},
326                 RequestIdentifierValue => $request->{$message}->{RequestId}->{RequestIdentifierValue}
327             }
328         );
329         $data->{ItemId} = NCIP::Item::Id->new(
330             {
331                 AgencyId => $request->{$message}->{ItemId}->{AgencyId},
332                 ItemIdentifierType => $request->{$message}->{ItemId}->{ItemIdentifierType},
333                 ItemIdentifierValue => $request->{$message}->{ItemId}->{ItemIdentifierValue}
334             }
335         );
336         $response->data($data);
337
338     } else {
339         my $problem = NCIP::Problem->new();
340         $problem->ProblemType('Unauthorized Combination Of Element Values For System');
341         $problem->ProblemDetail('We only support Hold For Pickup');
342         $problem->ProblemElement('RequestedActionType');
343         $problem->ProblemValue($request->{$message}->{RequestedActionType});
344         $response->problem($problem);
345     }
346
347     return $response;
348 }
349
350 =head2 checkinitem
351
352     $response = $ils->checkinitem($request);
353
354 Checks the item in if we can find the barcode in the message. It
355 returns problems if it cannot find the item in the system or if the
356 item is not checked out.
357
358 It could definitely use some more brains at some point as it does not
359 fully support everything that the standard allows. It also does not
360 really check if the checkin succeeded or not.
361
362 =cut
363
364 sub checkinitem {
365     my $self = shift;
366     my $request = shift;
367
368     # Check our session and login if necessary:
369     $self->login() unless ($self->checkauth());
370
371     # Common stuff:
372     my $message = $self->parse_request_type($request);
373     my $response = NCIP::Response->new({type => $message . 'Response'});
374     $response->header($self->make_header($request));
375
376     # We need the copy barcode from the message.
377     my ($item_barcode, $item_idfield) = $self->find_item_barcode($request);
378     if (ref($item_barcode) eq 'NCIP::Problem') {
379         $response->problem($item_barcode);
380         return $response;
381     }
382
383     # Retrieve the copy details.
384     my $details = $self->retrieve_copy_details_by_barcode($item_barcode);
385     unless ($details) {
386         # Return an Unknown Item problem unless we find the copy.
387         $response->problem(
388             NCIP::Problem->new(
389                 {
390                     ProblemType => 'Unknown Item',
391                     ProblemDetail => "Item with barcode $item_barcode is not known.",
392                     ProblemElement => $item_idfield,
393                     ProblemValue => $item_barcode
394                 }
395             )
396         );
397         return $response;
398     }
399
400     # Check if a UserId was provided. If so, this is the patron to
401     # whom the copy should be checked out.
402     my $user;
403     my ($user_barcode, $user_idfield) = $self->find_user_barcode($request);
404     # We ignore the problem, because the UserId is optional.
405     if (ref($user_barcode) ne 'NCIP::Problem') {
406         $user = $self->retrieve_user_by_barcode($user_barcode, $user_idfield);
407         # We don't ignore a problem here, however.
408         if (ref($user) eq 'NCIP::Problem') {
409             $response->problem($user);
410             return $response;
411         }
412     }
413
414     # Isolate the copy.
415     my $copy = $details->{copy};
416
417     # Look for a circulation and examine its information:
418     my $circ = $details->{circ};
419
420     # Check the circ details to see if the copy is checked out and, if
421     # the patron was provided, that it is checked out to the patron in
422     # question. We also verify the copy ownership and circulation
423     # location.
424     my $problem = $self->check_circ_details($circ, $copy, $user);
425     if ($problem) {
426         # We need to fill in some information, however.
427         if (!$problem->ProblemValue() && !$problem->ProblemElement()) {
428             $problem->ProblemValue($user_barcode);
429             $problem->ProblemElement($user_idfield);
430         } elsif (!$problem->ProblemElement()) {
431             $problem->ProblemElement($item_idfield);
432         }
433         $response->problem($problem);
434         return $response;
435     }
436
437     # Checkin parameters. We want to skip hold targeting or making
438     # transits, to force the checkin despite the copy status, as
439     # well as void overdues.
440     my $params = {
441         copy_barcode => $copy->barcode(),
442         force => 1,
443         noop => 1,
444         void_overdues => 1
445     };
446     my $result = $U->simplereq(
447         'open-ils.circ',
448         'open-ils.circ.checkin.override',
449         $self->{session}->{authtoken},
450         $params
451     );
452     if (ref($result) eq 'ARRAY') {
453         $result = $result->[0];
454     }
455     if ($result->{textcode} eq 'SUCCESS') {
456         # Delete the copy. Since delete_copy checks ownership
457         # before attempting to delete the copy, we don't bother
458         # checking who owns it.
459         $self->delete_copy($copy);
460         # We need the circulation user for the information below, so we retrieve it.
461         my $circ_user = $self->retrieve_user_by_id($circ->usr());
462         my $data = {
463             ItemId => NCIP::Item::Id->new(
464                 {
465                     AgencyId => $request->{$message}->{ItemId}->{AgencyId},
466                     ItemIdentifierType => $request->{$message}->{ItemId}->{ItemIdentifierType},
467                     ItemIdentifierValue => $request->{$message}->{ItemId}->{ItemIdentifierValue}
468                 }
469             ),
470             UserId => NCIP::User::Id->new(
471                 {
472                     UserIdentifierType => 'Barcode Id',
473                     UserIdentifierValue => $circ_user->card->barcode()
474                 }
475             )
476         };
477
478         # Look for UserElements requested and add it to the response:
479         my $elements = $request->{$message}->{UserElementType};
480         if ($elements) {
481             $elements = [$elements] unless (ref $elements eq 'ARRAY');
482             my $optionalfields = $self->handle_user_elements($circ_user, $elements);
483             $data->{UserOptionalFields} = $optionalfields;
484         }
485         $elements = $request->{$message}->{ItemElementType};
486         if ($elements) {
487             $elements = [$elements] unless (ref $elements eq 'ARRAY');
488             my $optionalfields = $self->handle_item_elements($copy, $elements);
489             $data->{ItemOptionalFields} = $optionalfields;
490         }
491
492         $response->data($data);
493
494         # At some point in the future, we should probably check if
495         # they requested optional user or item elements and return
496         # those. For the time being, we ignore those at the risk of
497         # being considered non-compliant.
498     } else {
499         $response->problem(_problem_from_event('Checkin Failed', $result));
500     }
501
502     return $response
503 }
504
505 =head2 renewitem
506
507     $response = $ils->renewitem($request);
508
509 Handle the RenewItem message.
510
511 =cut
512
513 sub renewitem {
514     my $self = shift;
515     my $request = shift;
516
517     # Check our session and login if necessary:
518     $self->login() unless ($self->checkauth());
519
520     # Common stuff:
521     my $message = $self->parse_request_type($request);
522     my $response = NCIP::Response->new({type => $message . 'Response'});
523     $response->header($self->make_header($request));
524
525     # We need the copy barcode from the message.
526     my ($item_barcode, $item_idfield) = $self->find_item_barcode($request);
527     if (ref($item_barcode) eq 'NCIP::Problem') {
528         $response->problem($item_barcode);
529         return $response;
530     }
531
532     # Retrieve the copy details.
533     my $details = $self->retrieve_copy_details_by_barcode($item_barcode);
534     unless ($details) {
535         # Return an Unknown Item problem unless we find the copy.
536         $response->problem(
537             NCIP::Problem->new(
538                 {
539                     ProblemType => 'Unknown Item',
540                     ProblemDetail => "Item with barcode $item_barcode is not known.",
541                     ProblemElement => $item_idfield,
542                     ProblemValue => $item_barcode
543                 }
544             )
545         );
546         return $response;
547     }
548
549     # User is required for RenewItem.
550     my ($user_barcode, $user_idfield) = $self->find_user_barcode($request);
551     if (ref($user_barcode) eq 'NCIP::Problem') {
552         $response->problem($user_barcode);
553         return $response;
554     }
555     my $user = $self->retrieve_user_by_barcode($user_barcode, $user_idfield);
556     if (ref($user) eq 'NCIP::Problem') {
557         $response->problem($user);
558         return $response;
559     }
560
561     # Isolate the copy.
562     my $copy = $details->{copy};
563
564     # Look for a circulation and examine its information:
565     my $circ = $details->{circ};
566
567     # Check the circ details to see if the copy is checked out and, if
568     # the patron was provided, that it is checked out to the patron in
569     # question. We also verify the copy ownership and circulation
570     # location.
571     my $problem = $self->check_circ_details($circ, $copy, $user);
572     if ($problem) {
573         # We need to fill in some information, however.
574         if (!$problem->ProblemValue() && !$problem->ProblemElement()) {
575             $problem->ProblemValue($user_barcode);
576             $problem->ProblemElement($user_idfield);
577         } elsif (!$problem->ProblemElement()) {
578             $problem->ProblemElement($item_idfield);
579         }
580         $response->problem($problem);
581         return $response;
582     }
583
584     # Check if user is blocked from renewals:
585     $problem = $self->check_user_for_problems($user, 'RENEW');
586     if ($problem) {
587         # Replace the ProblemElement and ProblemValue fields.
588         $problem->ProblemElement($user_idfield);
589         $problem->ProblemValue($user_barcode);
590         $response->problem($problem);
591         return $response;
592     }
593
594     # Check if the duration rule allows renewals. It should have been
595     # fleshed during the copy details retrieve.
596     my $rule = $circ->duration_rule();
597     unless (ref($rule)) {
598         $rule = $U->simplereq(
599             'open-ils.pcrud',
600             'open-ils.pcrud.retrieve.crcd',
601             $self->{session}->{authtoken},
602             $rule
603         )->gather(1);
604     }
605     if ($rule->max_renewals() < 1) {
606         $response->problem(
607             NCIP::Problem->new(
608                 {
609                     ProblemType => 'Item Not Renewable',
610                     ProblemDetail => 'Item may not be renewed.',
611                     ProblemElement => $item_idfield,
612                     ProblemValue => $item_barcode
613                 }
614             )
615         );
616         return $response;
617     }
618
619     # Check if there are renewals remaining on the latest circ:
620     if ($circ->renewal_remaining() < 1) {
621         $response->problem(
622             NCIP::Problem->new(
623                 {
624                     ProblemType => 'Maximum Renewals Exceeded',
625                     ProblemDetail => 'Renewal cannot proceed because the User has already renewed the Item the maximum number of times permitted.',
626                     ProblemElement => $item_idfield,
627                     ProblemValue => $item_barcode
628                 }
629             )
630         );
631         return $response;
632     }
633
634     # Now, we attempt the renewal. If it fails, we simply say that the
635     # user is not allowed to renew this item, without getting into
636     # details.
637     my $params = {
638         copy => $copy,
639         patron_id => $user->id(),
640         sip_renewal => 1
641     };
642     my $r = $U->simplereq(
643         'open-ils.circ',
644         'open-ils.circ.renew.override',
645         $self->{session}->{authtoken},
646         $params
647     )->gather(1);
648
649     # We only look at the first one, since more than one usually means
650     # failure.
651     if (ref($r) eq 'ARRAY') {
652         $r = $r->[0];
653     }
654     if ($r->{textcode} ne 'SUCCESS') {
655         $problem = _problem_from_event('Renewal Failed', $r);
656         $response->problem($problem);
657     } else {
658         my $data = {
659             ItemId => NCIP::Item::Id->new(
660                 {
661                     AgencyId => $request->{$message}->{ItemId}->{AgencyId},
662                     ItemIdentifierType => $request->{$message}->{ItemId}->{ItemIdentifierType},
663                     ItemIdentifierValue => $request->{$message}->{ItemId}->{ItemIdentifierValue}
664                 }
665             ),
666             UserId => NCIP::User::Id->new(
667                 {
668                     UserIdentifierType => 'Barcode Id',
669                     UserIdentifierValue => $user->card->barcode()
670                 }
671             )
672         };
673         # We need to retrieve the copy details again to refresh our
674         # circ information to get the new due date.
675         $details = $self->retrieve_copy_details_by_barcode($item_barcode);
676         $circ = $details->{circ};
677         my $due = DateTime::Format::ISO8601->parse_datetime(cleanse_ISO8601($circ->due_date()));
678         $due->set_time_zone('UTC');
679         $data->{DateDue} = $due->iso8601();
680
681         # Look for UserElements requested and add it to the response:
682         my $elements = $request->{$message}->{UserElementType};
683         if ($elements) {
684             $elements = [$elements] unless (ref $elements eq 'ARRAY');
685             my $optionalfields = $self->handle_user_elements($user, $elements);
686             $data->{UserOptionalFields} = $optionalfields;
687         }
688         $elements = $request->{$message}->{ItemElementType};
689         if ($elements) {
690             $elements = [$elements] unless (ref $elements eq 'ARRAY');
691             my $optionalfields = $self->handle_item_elements($details->{copy}, $elements);
692             $data->{ItemOptionalFields} = $optionalfields;
693         }
694
695         $response->data($data);
696     }
697
698     # At some point in the future, we should probably check if
699     # they requested optional user or item elements and return
700     # those. For the time being, we ignore those at the risk of
701     # being considered non-compliant.
702
703     return $response;
704 }
705
706 =head2 checkoutitem
707
708     $response = $ils->checkoutitem($request);
709
710 Handle the Checkoutitem message.
711
712 =cut
713
714 sub checkoutitem {
715     my $self = shift;
716     my $request = shift;
717
718     # Check our session and login if necessary:
719     $self->login() unless ($self->checkauth());
720
721     # Common stuff:
722     my $message = $self->parse_request_type($request);
723     my $response = NCIP::Response->new({type => $message . 'Response'});
724     $response->header($self->make_header($request));
725
726     # We need the copy barcode from the message.
727     my ($item_barcode, $item_idfield) = $self->find_item_barcode($request);
728     if (ref($item_barcode) eq 'NCIP::Problem') {
729         $response->problem($item_barcode);
730         return $response;
731     }
732
733     # Retrieve the copy details.
734     my $details = $self->retrieve_copy_details_by_barcode($item_barcode);
735     unless ($details) {
736         # Return an Unknown Item problem unless we find the copy.
737         $response->problem(
738             NCIP::Problem->new(
739                 {
740                     ProblemType => 'Unknown Item',
741                     ProblemDetail => "Item with barcode $item_barcode is not known.",
742                     ProblemElement => $item_idfield,
743                     ProblemValue => $item_barcode
744                 }
745             )
746         );
747         return $response;
748     }
749
750     # User is required for CheckOutItem.
751     my ($user_barcode, $user_idfield) = $self->find_user_barcode($request);
752     if (ref($user_barcode) eq 'NCIP::Problem') {
753         $response->problem($user_barcode);
754         return $response;
755     }
756     my $user = $self->retrieve_user_by_barcode($user_barcode, $user_idfield);
757     if (ref($user) eq 'NCIP::Problem') {
758         $response->problem($user);
759         return $response;
760     }
761
762     # Isolate the copy.
763     my $copy = $details->{copy};
764
765     # Check if the copy can circulate.
766     unless ($self->copy_can_circulate($copy)) {
767         $response->problem(
768             NCIP::Problem->new(
769                 {
770                     ProblemType => 'Item Does Not Circulate',
771                     ProblemDetail => "Item with barcode $item_barcode does not circulate.",
772                     ProblemElement => $item_idfield,
773                     ProblemValue => $item_barcode
774                 }
775             )
776         );
777         return $response;
778     }
779
780     # Look for a circulation and examine its information:
781     my $circ = $details->{circ};
782
783     # Check if the item is already checked out.
784     if ($circ && !$circ->checkin_time()) {
785         $response->problem(
786             NCIP::Problem->new(
787                 {
788                     ProblemType => 'Item Already Checked Out',
789                     ProblemDetail => "Item with barcode $item_barcode is already checked out.",
790                     ProblemElement => $item_idfield,
791                     ProblemValue => $item_barcode
792                 }
793             )
794         );
795         return $response;
796     }
797
798     # Check if user is blocked from circulation:
799     my $problem = $self->check_user_for_problems($user, 'CIRC');
800     if ($problem) {
801         # Replace the ProblemElement and ProblemValue fields.
802         $problem->ProblemElement($user_idfield);
803         $problem->ProblemValue($user_barcode);
804         $response->problem($problem);
805         return $response;
806     }
807
808     # Now, we attempt the check out. If it fails, we simply say that
809     # the user is not allowed to check out this item, without getting
810     # into details.
811     my $params = {
812         copy => $copy,
813         patron_id => $user->id(),
814     };
815     my $r = $U->simplereq(
816         'open-ils.circ',
817         'open-ils.circ.checkout.full.override',
818         $self->{session}->{authtoken},
819         $params
820     );
821
822     # We only look at the first one, since more than one usually means
823     # failure.
824     if (ref($r) eq 'ARRAY') {
825         $r = $r->[0];
826     }
827     if ($r->{textcode} ne 'SUCCESS') {
828         $problem = _problem_from_event('Check Out Failed', $r);
829         $response->problem($problem);
830     } else {
831         my $data = {
832             ItemId => NCIP::Item::Id->new(
833                 {
834                     AgencyId => $request->{$message}->{ItemId}->{AgencyId},
835                     ItemIdentifierType => $request->{$message}->{ItemId}->{ItemIdentifierType},
836                     ItemIdentifierValue => $request->{$message}->{ItemId}->{ItemIdentifierValue}
837                 }
838             ),
839             UserId => NCIP::User::Id->new(
840                 {
841                     UserIdentifierType => 'Barcode Id',
842                     UserIdentifierValue => $user->card->barcode()
843                 }
844             )
845         };
846         # We need to retrieve the copy details again to refresh our
847         # circ information to get the due date.
848         $details = $self->retrieve_copy_details_by_barcode($item_barcode);
849         $circ = $details->{circ};
850         my $due = DateTime::Format::ISO8601->parse_datetime(cleanse_ISO8601($circ->due_date()));
851         $due->set_time_zone('UTC');
852         $data->{DateDue} = $due->iso8601();
853
854         # Look for UserElements requested and add it to the response:
855         my $elements = $request->{$message}->{UserElementType};
856         if ($elements) {
857             $elements = [$elements] unless (ref $elements eq 'ARRAY');
858             my $optionalfields = $self->handle_user_elements($user, $elements);
859             $data->{UserOptionalFields} = $optionalfields;
860         }
861         $elements = $request->{$message}->{ItemElementType};
862         if ($elements) {
863             $elements = [$elements] unless (ref $elements eq 'ARRAY');
864             my $optionalfields = $self->handle_item_elements($details->{copy}, $elements);
865             $data->{ItemOptionalFields} = $optionalfields;
866         }
867
868         $response->data($data);
869     }
870
871     # At some point in the future, we should probably check if
872     # they requested optional user or item elements and return
873     # those. For the time being, we ignore those at the risk of
874     # being considered non-compliant.
875
876     return $response;
877 }
878
879 =head2 requestitem
880
881     $response = $ils->requestitem($request);
882
883 Handle the NCIP RequestItem message.
884
885 =cut
886
887 sub requestitem {
888     my $self = shift;
889     my $request = shift;
890     # Check our session and login if necessary:
891     $self->login() unless ($self->checkauth());
892
893     # Common stuff:
894     my $message = $self->parse_request_type($request);
895     my $response = NCIP::Response->new({type => $message . 'Response'});
896     $response->header($self->make_header($request));
897
898     # Because we need to have a user to place a hold, because the user
899     # is likely to have problems, and because getting the item
900     # information for the hold is trickier than getting the user
901     # information, we'll do the user first and short circuit out of
902     # the function if there is a problem with the user.
903     my ($user_barcode, $user_idfield) = $self->find_user_barcode($request);
904     if (ref($user_barcode) eq 'NCIP::Problem') {
905         $response->problem($user_barcode);
906         return $response;
907     }
908     my $user = $self->retrieve_user_by_barcode($user_barcode, $user_idfield);
909     if (ref($user) eq 'NCIP::Problem') {
910         $response->problem($user);
911         return $response;
912     }
913     my $problem = $self->check_user_for_problems($user, 'HOLD');
914     if ($problem) {
915         $response->problem($problem);
916         return $response;
917     }
918
919     # RequestItem is a blast. We need to check if we have a copy
920     # barcode and/or if we have BibliographicIds. If we have both or
921     # either, we then need to figure out what we're placing the hold
922     # on, a copy, a volume or a bib. We don't currently do part holds,
923     # but maybe we should some day. We can also be sent more than 1
924     # BibliographicId, so we look for certain identifiers first, and
925     # then others in decreasing preference: SYSNUMBER, ISBN, and ISSN.
926
927     # Not to mention that there are two kinds of BibliographicId field
928     # with different field names, and both can be intermixed in an
929     # incoming message! (I just /love/ this nonsense.)
930
931     # This here is the thing we're going to put on hold:
932     my $item;
933
934     # We need copy details if we find in a couple of places below.
935     my $copy_details;
936
937     # We need the copy barcode from the message.
938     my ($item_barcode, $item_idfield) = $self->find_item_barcode($request);
939     if (ref($item_barcode) ne 'NCIP::Problem') {
940         # Retrieve the copy details.
941         $copy_details = $self->retrieve_copy_details_by_barcode($item_barcode);
942         unless ($copy_details) {
943             # Return an Unknown Item problem unless we find the copy.
944             $response->problem(
945                 NCIP::Problem->new(
946                     {
947                         ProblemType => 'Unknown Item',
948                         ProblemDetail => "Item with barcode $item_barcode is not known.",
949                         ProblemElement => $item_idfield,
950                         ProblemValue => $item_barcode
951                     }
952                 )
953             );
954             return $response;
955         }
956         $item = $copy_details->{volume}; # We place a volume hold.
957     }
958
959     # We weren't given copy information to target, or we can't find
960     # it, so we need to look for a target via BibliographicId.
961     unless ($item) {
962         my @biblio_ids = $self->find_bibliographic_ids($request);
963         if (@biblio_ids) {
964             $item = $self->find_target_via_bibliographic_id(@biblio_ids);
965         }
966     }
967
968     # If we don't have an item, then blow up with a problem that may
969     # have been set when we went looking for the ItemId.
970     unless ($item) {
971         if (ref($item_barcode) eq 'NCIP::Problem') {
972             $response->problem($item_barcode);
973         } else {
974             $response->problem(
975                 NCIP::Problem->new(
976                     {
977                         ProblemType => 'Request Item Not Found',
978                         ProblemDetail => 'Unable to determine the item to request from input message.',
979                         ProblemElement => 'NULL',
980                         ProblemValue => 'NULL'
981                     }
982                 )
983             );
984         }
985         return $response;
986     } elsif (ref($item) eq 'NCIP::Problem') {
987         $response->problem($item);
988         return $response;
989     }
990
991     # See if we were given a PickupLocation.
992     my $location;
993     if ($request->{$message}->{PickupLocation}) {
994         my $loc = $request->{$message}->{PickupLocation};
995         $loc =~ s/^.*://; # strip everything up to the last
996                           # semi-colon, if any.
997         $location = $self->retrieve_org_unit_by_shortname($loc);
998     }
999
1000     # Look for a NeedBeforeDate to use as expiration...
1001     my $hold_expiration = $request->{$message}->{NeedBeforeDate};
1002
1003     # Place the hold.
1004     my $hold = $self->place_hold($item, $user, $location, $hold_expiration);
1005     if (ref($hold) eq 'NCIP::Problem') {
1006         $response->problem($hold);
1007     } else {
1008         my $data = {
1009             RequestId => NCIP::RequestId->new(
1010                 RequestIdentifierType => 'SYSNUMBER',
1011                 RequestIdentifierValue => $hold->id()
1012             ),
1013             UserId => NCIP::User::Id->new(
1014                 {
1015                     UserIdentifierType => 'Barcode Id',
1016                     UserIdentifierValue => $user->card->barcode()
1017                 }
1018             ),
1019             RequestType => $request->{$message}->{RequestType},
1020             RequestScopeType => ($hold->hold_type() eq 'V') ? "item" : "bibliographic item"
1021         };
1022         # Look for UserElements requested and add it to the response:
1023         my $elements = $request->{$message}->{UserElementType};
1024         if ($elements) {
1025             $elements = [$elements] unless (ref $elements eq 'ARRAY');
1026             my $optionalfields = $self->handle_user_elements($user, $elements);
1027             $data->{UserOptionalFields} = $optionalfields;
1028         }
1029         $elements = $request->{$message}->{ItemElementType};
1030         if ($elements && $copy_details) {
1031             $elements = [$elements] unless (ref($elements) eq 'ARRAY');
1032             my $optionalfields = $self->handle_item_elements($copy_details->{copy}, $elements);
1033             $data->{ItemOptionalFields} = $optionalfields;
1034         }
1035
1036         $response->data($data);
1037     }
1038
1039     return $response;
1040 }
1041
1042 =head2 cancelrequestitem
1043
1044     $response = $ils->cancelrequestitem($request);
1045
1046 Handle the NCIP CancelRequestItem message.
1047
1048 =cut
1049
1050 sub cancelrequestitem {
1051     my $self = shift;
1052     my $request = shift;
1053     # Check our session and login if necessary:
1054     $self->login() unless ($self->checkauth());
1055
1056     # Common stuff:
1057     my $message = $self->parse_request_type($request);
1058     my $response = NCIP::Response->new({type => $message . 'Response'});
1059     $response->header($self->make_header($request));
1060
1061     # UserId is required by the standard, but we might not really need it.
1062     my ($user_barcode, $user_idfield) = $self->find_user_barcode($request);
1063     if (ref($user_barcode) eq 'NCIP::Problem') {
1064         $response->problem($user_barcode);
1065         return $response;
1066     }
1067     my $user = $self->retrieve_user_by_barcode($user_barcode, $user_idfield);
1068     if (ref($user) eq 'NCIP::Problem') {
1069         $response->problem($user);
1070         return $response;
1071     }
1072
1073     # See if we got a ItemId and a barcode:
1074     my $copy_details;
1075     my ($item_barcode, $item_idfield) = $self->find_item_barcode($request);
1076     if (ref($item_barcode) ne 'NCIP::Problem') {
1077         # Retrieve the copy details.
1078         $copy_details = $self->retrieve_copy_details_by_barcode($item_barcode);
1079         unless ($copy_details) {
1080             # Return an Unknown Item problem unless we find the copy.
1081             $response->problem(
1082                 NCIP::Problem->new(
1083                     {
1084                         ProblemType => 'Unknown Item',
1085                         ProblemDetail => "Item with barcode $item_barcode is not known.",
1086                         ProblemElement => $item_idfield,
1087                         ProblemValue => $item_barcode
1088                     }
1089                 )
1090             );
1091             return $response;
1092         }
1093     }
1094
1095     # See if we got a RequestId:
1096     my $requestid;
1097     if ($request->{$message}->{RequestId}) {
1098         $requestid = NCIP::RequestId->new(
1099             {
1100                 AgencyId => $request->{$message}->{RequestId}->{AgencyId},
1101                 RequestIdentifierType => $request->{$message}->{RequestId}->{RequestIdentifierType},
1102                 RequestIdentifierValue => $request->{$message}->{RequestId}->{RequestIdentifierValue}
1103             }
1104         )
1105     }
1106
1107     # Just a note: In the below, we cannot rely on the hold or transit
1108     # fields of the copy_details, even if we have retrieved it. This
1109     # is because that hold and transit may not be the ones that we're
1110     # looking for, i.e. they could be for another patron, etc.
1111
1112     # See if we can find the hold:
1113     my $hold;
1114     if ($requestid) {
1115         $hold = $U->simplereq(
1116             'open-ils.pcrud',
1117             'open-ils.pcrud.retrieve.ahr',
1118             $self->{session}->{authtoken},
1119             $requestid->{RequestIdentifierValue},
1120             {flesh => 1, flesh_fields => {ahr => ['transit']}}
1121         );
1122         unless ($hold) {
1123             # Report a problem that we couldn't find a hold by that id.
1124             $response->problem(
1125                 NCIP::Problem->new(
1126                     {
1127                         ProblemType => 'Unknown Request',
1128                         ProblemDetail => 'No request with this identifier found',
1129                         ProblemElement => 'RequestIdentifierValue',
1130                         ProblemValue => $requestid->{RequestIdentifierValue}
1131                     }
1132                 )
1133             )
1134         } elsif ($hold->cancel_time()) {
1135             $response->problem(
1136                 NCIP::Problem->new(
1137                     {
1138                         ProblemType => 'Request Already Canceled',
1139                         ProblemDetail => 'Request has already been canceled',
1140                         ProblemElement => 'RequestIdentifierValue',
1141                         ProblemValue => $requestid->{RequestIdentifierValue}
1142                     }
1143                 )
1144             )
1145         } elsif ($hold->transit()) {
1146             $response->problem(
1147                 NCIP::Problem->new(
1148                     {
1149                         ProblemType => 'Request Already Processed',
1150                         ProblemDetail => 'Request has already been processed',
1151                         ProblemElement => 'RequestIdentifierValue',
1152                         ProblemValue => $requestid->{RequestIdentifierValue}
1153                     }
1154                 )
1155             )
1156         } elsif ($hold->usr() == $user->id()) {
1157             # Check the target matches the copy information, if any,
1158             # that we were given.
1159             my $obj_id;
1160             if ($copy_details) {
1161                 if ($hold->hold_type() eq 'V') {
1162                     $obj_id = $copy_details->{volume}->id();
1163                 } elsif ($hold->hold_type() eq 'T') {
1164                     $obj_id = $copy_details->{mvr}->doc_id();
1165                 } elsif ($hold->hold_type() eq 'C' || $hold->hold_type() eq 'F') {
1166                     $obj_id = $copy_details->{copy}->id();
1167                 }
1168             }
1169             if ($obj_id && $hold->target() != $obj_id) {
1170                 $response->problem(
1171                     NCIP::Problem->new(
1172                         {
1173                             ProblemType => 'Request Not For This Item',
1174                             ProblemDetail => "Request is not for this item",
1175                             ProblemElement => $item_idfield,
1176                             ProblemElement => $item_barcode
1177                         }
1178                     )
1179                 )
1180             } else {
1181                 $self->cancel_hold($hold);
1182                 my $data = {
1183                     RequestId => $requestid,
1184                     UserId => NCIP::User::Id->new(
1185                         {
1186                             UserIdentifierType => 'Barcode Id',
1187                             UserIdentifierValue => $user->card->barcode()
1188                         }
1189                     )
1190                 };
1191                 # Look for UserElements requested and add it to the response:
1192                 my $elements = $request->{$message}->{UserElementType};
1193                 if ($elements) {
1194                     $elements = [$elements] unless (ref $elements eq 'ARRAY');
1195                     my $optionalfields = $self->handle_user_elements($user, $elements);
1196                     $data->{UserOptionalFields} = $optionalfields;
1197                 }
1198                 $elements = $request->{$message}->{ItemElementType};
1199                 if ($elements && $copy_details) {
1200                     $elements = [$elements] unless (ref $elements eq 'ARRAY');
1201                     my $optionalfields = $self->handle_item_elements($copy_details->{copy}, $elements);
1202                     $data->{ItemOptionalFields} = $optionalfields;
1203                 }
1204                 $response->data($data);
1205             }
1206         } else {
1207             # Report a problem that the hold is not for this user.
1208             $response->problem(
1209                 NCIP::Problem->new(
1210                     {
1211                         ProblemType => 'Request Not For This User',
1212                         ProblemDetail => 'Request is not for this user.',
1213                         ProblemElement => $user_idfield,
1214                         ProblemValue => $user_barcode
1215                     }
1216                 )
1217             )
1218         }
1219     } else {
1220         # At this point, we *must have* an ItemId and therefore
1221         # $copy_details, so return the problem from looking up the
1222         # barcode if we don't have $copy_details.
1223         if (!$copy_details) {
1224             $response->problem($item_barcode);
1225         } else {
1226             # We have to search for the hold based on the copy details and
1227             # the user.  We'll need to search for copy (or force) holds, a
1228             # volume hold, or a title hold.
1229             $hold = $self->_hold_search($user, $copy_details);
1230             if ($hold && $hold->transit()) {
1231                 $response->problem(
1232                     NCIP::Problem->new(
1233                         {
1234                             ProblemType => 'Request Already Processed',
1235                             ProblemDetail => 'Request has already been processed',
1236                             ProblemElement => 'RequestIdentifierValue',
1237                             ProblemValue => $requestid->{RequestIdentifierValue}
1238                         }
1239                     )
1240                 )
1241             } elsif ($hold) {
1242                 $self->cancel_hold($hold);
1243                 my $data = {
1244                     RequestId => NCIP::RequestId->new(
1245                         {
1246                             RequestIdentifierType => 'SYSNUMBER',
1247                             RequestIdentifierValue => $hold->id()
1248                         }
1249                     ),
1250                     UserId => NCIP::User::Id->new(
1251                         {
1252                             UserIdentifierType => 'Barcode Id',
1253                             UserIdentifierValue => $user->card->barcode()
1254                         }
1255                     )
1256                 };
1257                 # Look for UserElements requested and add it to the response:
1258                 my $elements = $request->{$message}->{UserElementType};
1259                 if ($elements) {
1260                     $elements = [$elements] unless (ref $elements eq 'ARRAY');
1261                     my $optionalfields = $self->handle_user_elements($user, $elements);
1262                     $data->{UserOptionalFields} = $optionalfields;
1263                 }
1264                 $elements = $request->{$message}->{ItemElementType};
1265                 if ($elements && $copy_details) {
1266                     $elements = [$elements] unless (ref $elements eq 'ARRAY');
1267                     my $optionalfields = $self->handle_item_elements($copy_details->{copy}, $elements);
1268                     $data->{ItemOptionalFields} = $optionalfields;
1269                 }
1270                 $response->data($data);
1271             } else {
1272                 $response->problem(
1273                     NCIP::Problem->new(
1274                         {
1275                             ProblemType => 'Unknown Request',
1276                             ProblemDetail => 'No request found for the item and user',
1277                             ProblemElement => 'NULL',
1278                             ProblemValue => 'NULL'
1279                         }
1280                     )
1281                 )
1282             }
1283         }
1284     }
1285
1286     return $response;
1287 }
1288
1289 =head1 METHODS USEFUL to SUBCLASSES
1290
1291 =head2 handle_user_elements
1292     $useroptionalfield = $ils->handle_user_elements($user, $elements);
1293
1294 Returns NCIP::User::OptionalFields for the given user and arrayref of
1295 UserElement.
1296
1297 =cut
1298
1299 sub handle_user_elements {
1300     my $self = shift;
1301     my $user = shift;
1302     my $elements = shift;
1303     my $optionalfields = NCIP::User::OptionalFields->new();
1304
1305     # First, we'll look for name information.
1306     if (grep {$_ eq 'Name Information'} @$elements) {
1307         my $name = NCIP::StructuredPersonalUserName->new();
1308         $name->Surname($user->family_name());
1309         $name->GivenName($user->first_given_name());
1310         $name->Prefix($user->prefix());
1311         $name->Suffix($user->suffix());
1312         $optionalfields->NameInformation($name);
1313     }
1314
1315     # Next, check for user address information.
1316     if (grep {$_ eq 'User Address Information'} @$elements) {
1317         my $addresses = [];
1318
1319         # See if the user has any valid, physcial addresses.
1320         foreach my $addr (@{$user->addresses()}) {
1321             next if ($U->is_true($addr->pending()));
1322             my $address = NCIP::User::AddressInformation->new({UserAddressRoleType=>$addr->address_type()});
1323             my $physical = NCIP::StructuredAddress->new();
1324             $physical->Line1($addr->street1());
1325             $physical->Line2($addr->street2());
1326             $physical->Locality($addr->city());
1327             $physical->Region($addr->state());
1328             $physical->PostalCode($addr->post_code());
1329             $physical->Country($addr->country());
1330             $address->PhysicalAddress($physical);
1331             push @$addresses, $address;
1332         }
1333
1334         # Right now, we're only sharing email address if the user
1335         # has it. We don't share phone numbers.
1336         if ($user->email()) {
1337             my $address = NCIP::User::AddressInformation->new({UserAddressRoleType=>'Email Address'});
1338             $address->ElectronicAddress(
1339                 NCIP::ElectronicAddress->new({
1340                     Type=>'Email Address',
1341                     Data=>$user->email()
1342                 })
1343                 );
1344             push @$addresses, $address;
1345         }
1346
1347         $optionalfields->UserAddressInformation($addresses);
1348     }
1349
1350     # Check for User Privilege.
1351     if (grep {$_ eq 'User Privilege'} @$elements) {
1352         # Get the user's group:
1353         my $pgt = $U->simplereq(
1354             'open-ils.pcrud',
1355             'open-ils.pcrud.retrieve.pgt',
1356             $self->{session}->{authtoken},
1357             $user->profile()
1358         );
1359         if ($pgt) {
1360             my $privilege = NCIP::User::Privilege->new();
1361             $privilege->AgencyId($user->home_ou->shortname());
1362             $privilege->AgencyUserPrivilegeType($pgt->name());
1363             $privilege->ValidToDate($user->expire_date());
1364             $privilege->ValidFromDate($user->create_date());
1365
1366             my $status = 'Active';
1367             if (_expired($user)) {
1368                 $status = 'Expired';
1369             } elsif ($U->is_true($user->barred())) {
1370                 $status = 'Barred';
1371             } elsif (!$U->is_true($user->active())) {
1372                 $status = 'Inactive';
1373             }
1374             if ($status) {
1375                 $privilege->UserPrivilegeStatus(
1376                     NCIP::User::PrivilegeStatus->new({
1377                         UserPrivilegeStatusType => $status
1378                     })
1379                 );
1380             }
1381
1382             $optionalfields->UserPrivilege([$privilege]);
1383         }
1384     }
1385
1386     # Check for Block Or Trap.
1387     if (grep {$_ eq 'Block Or Trap'} @$elements) {
1388         my $blocks = [];
1389
1390         # First, let's check if the profile is blocked from ILL.
1391         if (grep {$_->id() == $user->profile()} @{$self->{blocked_profiles}}) {
1392             my $block = NCIP::User::BlockOrTrap->new();
1393             $block->AgencyId($user->home_ou->shortname());
1394             $block->BlockOrTrapType('Block Interlibrary Loan');
1395             push @$blocks, $block;
1396         }
1397
1398         # Next, we loop through the user's standing penalties
1399         # looking for blocks on CIRC, HOLD, and RENEW.
1400         my ($have_circ, $have_renew, $have_hold) = (0,0,0);
1401         foreach my $penalty (@{$user->standing_penalties()}) {
1402             next unless($penalty->standing_penalty->block_list());
1403             my @block_list = split(/\|/, $penalty->standing_penalty->block_list());
1404             my $ou = $U->simplereq(
1405                 'open-ils.pcrud',
1406                 'open-ils.pcrud.retrieve.aou',
1407                 $self->{session}->{authtoken},
1408                 $penalty->org_unit()
1409             );
1410
1411             # Block checkout.
1412             if (!$have_circ && grep {$_ eq 'CIRC'} @block_list) {
1413                 my $bot = NCIP::User::BlockOrTrap->new();
1414                 $bot->AgencyId($ou->shortname());
1415                 $bot->BlockOrTrapType('Block Checkout');
1416                 push @$blocks, $bot;
1417                 $have_circ = 1;
1418             }
1419
1420             # Block holds.
1421             if (!$have_hold && grep {$_ eq 'HOLD' || $_ eq 'FULFILL'} @block_list) {
1422                 my $bot = NCIP::User::BlockOrTrap->new();
1423                 $bot->AgencyId($ou->shortname());
1424                 $bot->BlockOrTrapType('Block Holds');
1425                 push @$blocks, $bot;
1426                 $have_hold = 1;
1427             }
1428
1429             # Block renewals.
1430             if (!$have_renew && grep {$_ eq 'RENEW'} @block_list) {
1431                 my $bot = NCIP::User::BlockOrTrap->new();
1432                 $bot->AgencyId($ou->shortname());
1433                 $bot->BlockOrTrapType('Block Renewals');
1434                 push @$blocks, $bot;
1435                 $have_renew = 1;
1436             }
1437
1438             # Stop after we report one of each, even if more
1439             # blocks remain.
1440             last if ($have_circ && $have_renew && $have_hold);
1441         }
1442
1443         $optionalfields->BlockOrTrap($blocks);
1444     }
1445
1446     return $optionalfields;
1447 }
1448
1449 =head2 handle_item_elements
1450
1451 =cut
1452
1453 sub handle_item_elements {
1454     my $self = shift;
1455     my $copy = shift;
1456     my $elements = shift;
1457     my $optionalfields = NCIP::Item::OptionalFields->new();
1458
1459     my $details; # In case we need for more than one.
1460
1461     if (grep {$_ eq 'Bibliographic Description'} @$elements) {
1462         my $description;
1463         # Check for a precat copy, 'cause it is simple.
1464         if ($copy->dummy_title()) {
1465             $description = NCIP::Item::BibliographicDescription->new();
1466             $description->Title($copy->dummy_title());
1467             $description->Author($copy->dummy_author());
1468             if ($copy->dummy_isbn()) {
1469                 $description->BibliographicItemId(
1470                     NCIP::Item::BibliographicItemId->new(
1471                         BibliographicItemIdentifier => $copy->dummy_isbn(),
1472                         BibliographicItemIdentifierCode => 'ISBN'
1473                     )
1474                 );
1475             }
1476         } else {
1477             $details = $self->retrieve_copy_details_by_barcode($copy->barcode()) unless($details);
1478             $description = NCIP::Item::BibliographicDescription->new();
1479             $description->Title($details->{mvr}->title());
1480             $description->Authort($details->{mvr}->author());
1481             $description->BibliographicRecordId(
1482                 NCIP::Item::BibliographicRecordId->new(
1483                     BibliographicRecordIdentifier => $details->{mvr}->doc_id(),
1484                     BibliographicRecordIdentifierCode => 'SYSNUMBER'
1485                 )
1486             );
1487             if ($details->{mvr}->publisher()) {
1488                 $description->Publisher($details->{mvr}->publisher());
1489             }
1490             if ($details->{mvr}->pubdate()) {
1491                 $description->PublicationDate($details->{mvr}->pubdate());
1492             }
1493             if ($details->{mvr}->edition()) {
1494                 $description->Edition($details->{mvr}->edition());
1495             }
1496         }
1497         $optionalfields->BibliographicDescription($description) if ($description);
1498     }
1499
1500     if (grep {$_ eq 'Item Description'} @$elements) {
1501         $details = $self->retrieve_copy_details_by_barcode($copy->barcode()) unless($details);
1502         # Call Number is the only field we currently return. We also
1503         # do not attempt to retun a prefix and suffix. Someone else
1504         # can deal with that if they want it.
1505         if ($details->{volume}) {
1506             $optionalfields->ItemDescription(
1507                 NCIP::Item::Description->new(
1508                     CallNumber => $details->{volume}->label();
1509                 )
1510             );
1511         }
1512     }
1513
1514     if (grep {$_ eq 'Circulation Status'} @$elements) {
1515         my $status = $copy->status();
1516         $status = $self->retrieve_copy_status($status) unless (ref($status));
1517         $optionalfields->CirculationStatus($status->name()) if ($status);
1518     }
1519
1520     if (grep {$_ eq 'Date Due'} @$elements) {
1521         $details = $self->retrieve_copy_details_by_barcode($copy->barcode()) unless($details);
1522         if ($details->{circ}) {
1523             if (!$details->{circ}->checkin_time()) {
1524                 my $due = DateTime::Format::ISO8601->parse_datetime(cleanse_ISO8601($details->{circ}->due_date()));
1525                 $due->set_time_zone('UTC');
1526                 $optionalfields->DateDue($due->iso8601());
1527             }
1528         }
1529     }
1530
1531     if (grep {$_ eq 'Item Use Restriction Type'} @$elements) {
1532         $optionalfields->ItemUseRestrictionType('None');
1533     }
1534
1535     if (grep {$_ eq 'Physical Condition'} @$elements) {
1536         $optionalfields->PhysicalCondition(
1537             NCIP::Item::PhysicalCondition->new(
1538                 PhysicalConditionType => 'Unknown'
1539             )
1540         );
1541     }
1542
1543     return $optionalfields;
1544 }
1545
1546 =head2 login
1547
1548     $ils->login();
1549
1550 Login to Evergreen via OpenSRF. It uses internal state from the
1551 configuration file to login.
1552
1553 =cut
1554
1555 # Login via OpenSRF to Evergreen.
1556 sub login {
1557     my $self = shift;
1558
1559     # Get the authentication seed.
1560     my $seed = $U->simplereq(
1561         'open-ils.auth',
1562         'open-ils.auth.authenticate.init',
1563         $self->{config}->{credentials}->{username}
1564     );
1565
1566     # Actually login.
1567     if ($seed) {
1568         my $response = $U->simplereq(
1569             'open-ils.auth',
1570             'open-ils.auth.authenticate.complete',
1571             {
1572                 username => $self->{config}->{credentials}->{username},
1573                 password => md5_hex(
1574                     $seed . md5_hex($self->{config}->{credentials}->{password})
1575                 ),
1576                 type => 'staff',
1577                 workstation => $self->{config}->{credentials}->{workstation}
1578             }
1579         );
1580         if ($response) {
1581             $self->{session}->{authtoken} = $response->{payload}->{authtoken};
1582             $self->{session}->{authtime} = $response->{payload}->{authtime};
1583
1584             # Set/reset the work_ou and user data in case something changed.
1585
1586             # Retrieve the work_ou as an object.
1587             $self->{session}->{work_ou} = $U->simplereq(
1588                 'open-ils.pcrud',
1589                 'open-ils.pcrud.search.aou',
1590                 $self->{session}->{authtoken},
1591                 {shortname => $self->{config}->{credentials}->{work_ou}}
1592             );
1593
1594             # We need the user information in order to do some things.
1595             $self->{session}->{user} = $U->check_user_session($self->{session}->{authtoken});
1596
1597         }
1598     }
1599 }
1600
1601 =head2 checkauth
1602
1603     $valid = $ils->checkauth();
1604
1605 Returns 1 if the object a 'valid' authtoken, 0 if not.
1606
1607 =cut
1608
1609 sub checkauth {
1610     my $self = shift;
1611
1612     # We use AppUtils to do the heavy lifting.
1613     if (defined($self->{session})) {
1614         if ($U->check_user_session($self->{session}->{authtoken})) {
1615             return 1;
1616         } else {
1617             return 0;
1618         }
1619     }
1620
1621     # If we reach here, we don't have a session, so we are definitely
1622     # not logged in.
1623     return 0;
1624 }
1625
1626 =head2 retrieve_user_by_barcode
1627
1628     $user = $ils->retrieve_user_by_barcode($user_barcode, $user_idfield);
1629
1630 Do a fleshed retrieve of a patron by barcode. Return the patron if
1631 found and valid. Return a NCIP::Problem of 'Unknown User' otherwise.
1632
1633 The id field argument is used for the ProblemElement field in the
1634 NCIP::Problem object.
1635
1636 An invalid patron is one where the barcode is not found in the
1637 database, the patron is deleted, or the barcode used to retrieve the
1638 patron is not active. The problem element is also returned if an error
1639 occurs during the retrieval.
1640
1641 =cut
1642
1643 sub retrieve_user_by_barcode {
1644     my ($self, $barcode, $idfield) = @_;
1645     my $result = $U->simplereq(
1646         'open-ils.actor',
1647         'open-ils.actor.user.fleshed.retrieve_by_barcode',
1648         $self->{session}->{authtoken},
1649         $barcode,
1650         1
1651     );
1652
1653     # Check for a failure, or a deleted, inactive, or expired user,
1654     # and if so, return empty userdata.
1655     if (!$result || $U->event_code($result) || $U->is_true($result->deleted())
1656             || !grep {$_->barcode() eq $barcode && $U->is_true($_->active())} @{$result->cards()}) {
1657
1658         my $problem = NCIP::Problem->new();
1659         $problem->ProblemType('Unknown User');
1660         $problem->ProblemDetail("User with barcode $barcode unknown");
1661         $problem->ProblemElement($idfield);
1662         $problem->ProblemValue($barcode);
1663         $result = $problem;
1664     }
1665
1666     return $result;
1667 }
1668
1669 =head2 retrieve_user_by_id
1670
1671     $user = $ils->retrieve_user_by_id($id);
1672
1673 Similar to C<retrieve_user_by_barcode> but takes the user's database
1674 id rather than barcode. This is useful when you have a circulation or
1675 hold and need to get information about the user's involved in the hold
1676 or circulaiton.
1677
1678 It returns a fleshed user on success or undef on failure.
1679
1680 =cut
1681
1682 sub retrieve_user_by_id {
1683     my ($self, $id) = @_;
1684
1685     # Do a fleshed retrieve of the patron, and flesh the fields that
1686     # we would normally use.
1687     my $result = $U->simplereq(
1688         'open-ils.actor',
1689         'open-ils.actor.user.fleshed.retrieve',
1690         $self->{session}->{authtoken},
1691         $id,
1692         [ 'card', 'cards', 'standing_penalties', 'addresses', 'home_ou' ]
1693     );
1694     # Check for an error.
1695     undef($result) if ($result && $U->event_code($result));
1696
1697     return $result;
1698 }
1699
1700 =head2 check_user_for_problems
1701
1702     $problem = $ils>check_user_for_problems($user, 'HOLD, 'CIRC', 'RENEW');
1703
1704 This function checks if a user has a blocked profile or any from a
1705 list of provided blocks. If it does, then a NCIP::Problem object is
1706 returned, otherwise an undefined value is returned.
1707
1708 The list of blocks appears as additional arguments after the user. You
1709 can provide any value(s) that might appear in a standing penalty block
1710 lit in Evergreen. The example above checks for HOLD, CIRC, and
1711 RENEW. Any number of such values can be provided. If none are
1712 provided, the function only checks if the patron's profiles appears in
1713 the object's blocked profiles list.
1714
1715 It stops on the first matching block, if any.
1716
1717 =cut
1718
1719 sub check_user_for_problems {
1720     my $self = shift;
1721     my $user = shift;
1722     my @blocks = @_;
1723
1724     # Fill this in if we have a problem, otherwise just return it.
1725     my $problem;
1726
1727     # First, check the user's profile.
1728     if (grep {$_->id() == $user->profile()} @{$self->{blocked_profiles}}) {
1729         $problem = NCIP::Problem->new(
1730             {
1731                 ProblemType => 'User Blocked',
1732                 ProblemDetail => 'User blocked from inter-library loan',
1733                 ProblemElement => 'NULL',
1734                 ProblemValue => 'NULL'
1735             }
1736         );
1737     }
1738
1739     # Next, check if the patron has one of the indicated blocks.
1740     unless ($problem) {
1741         foreach my $penalty (@{$user->standing_penalties()}) {
1742             if ($penalty->standing_penalty->block_list()) {
1743                 my @pblocks = split(/\|/, $penalty->standing_penalty->block_list());
1744                 foreach my $block (@blocks) {
1745                     if (grep {$_ =~ /$block/} @pblocks) {
1746                         $problem = NCIP::Problem->new(
1747                             {
1748                                 ProblemType => 'User Blocked',
1749                                 ProblemDetail => 'User blocked from ' .
1750                                     ($block eq 'HOLD') ? 'holds' : (($block eq 'RENEW') ? 'renewals' :
1751                                                                         (($block eq 'CIRC') ? 'checkout' : lc($block))),
1752                                 ProblemElement => 'NULL',
1753                                 ProblemValue => 'NULL'
1754                             }
1755                         );
1756                         last;
1757                     }
1758                 }
1759                 last if ($problem);
1760             }
1761         }
1762     }
1763
1764     return $problem;
1765 }
1766
1767 =head2 check_circ_details
1768
1769     $problem = $ils->check_circ_details($circ, $copy, $user);
1770
1771 Checks if we can checkin or renew a circulation. That is, the
1772 circulation is still open (i.e. the copy is still checked out), if we
1773 either own the copy or are the circulation location, and if the
1774 circulation is for the optional $user argument. $circ and $copy are
1775 required. $user is optional.
1776
1777 Returns a problem if any of the above conditions fail. Returns undef
1778 if they pass and we can proceed with the checkin or renewal.
1779
1780 If the failure occurred on the copy-related checks, then the
1781 ProblemElement field will be undefined and needs to be filled in with
1782 the item id field name. If the check for the copy being checked out to
1783 the provided user fails, then both ProblemElement and ProblemValue
1784 fields will be empty and need to be filled in by the caller.
1785
1786 =cut
1787
1788 sub check_circ_details {
1789     my ($self, $circ, $copy, $user) = @_;
1790
1791     # Shortcut for the next check.
1792     my $ou_id = $self->{session}->{work_ou}->id();
1793
1794     if (!$circ || $circ->checkin_time() || ($circ->circ_lib() != $ou_id && $copy->circ_lib() != $ou_id)) {
1795         # Item isn't checked out.
1796         return NCIP::Problem->new(
1797             {
1798                 ProblemType => 'Item Not Checked Out',
1799                 ProblemDetail => 'Item with barcode ' . $copy->barcode() . ' is not checked out.',
1800                 ProblemValue => $copy->barcode()
1801             }
1802         );
1803     } else {
1804         # Get data on the patron who has it checked out.
1805         my $circ_user = $self->retrieve_user_by_id($circ->usr());
1806         if ($user && $circ_user && $user->id() != $circ_user->id()) {
1807             # The ProblemElement and ProblemValue field need to be
1808             # filled in by the caller.
1809             return NCIP::Problem->new(
1810                 {
1811                     ProblemType => 'Item Not Checked Out To This User',
1812                     ProblemDetail => 'Item with barcode ' . $copy->barcode() . ' is not checked out to this user.',
1813                 }
1814             );
1815         }
1816     }
1817     # If we get here, we're good to go.
1818     return undef;
1819 }
1820
1821 =head2 retrieve_copy_details_by_barcode
1822
1823     $copy = $ils->retrieve_copy_details_by_barcode($copy_barcode);
1824
1825 Look up and retrieve some copy details by the copy barcode. This
1826 method returns either a hashref with the copy details or undefined if
1827 no copy exists with that barcode or if some error occurs.
1828
1829 The hashref has the fields copy, hold, transit, circ, volume, and mvr.
1830
1831 This method differs from C<retrieve_user_by_barcode> in that a copy
1832 cannot be invalid if it exists and it is not always an error if no
1833 copy exists. In some cases, when handling AcceptItem, we might prefer
1834 there to be no copy.
1835
1836 =cut
1837
1838 sub retrieve_copy_details_by_barcode {
1839     my $self = shift;
1840     my $barcode = shift;
1841
1842     my $copy = $U->simplereq(
1843         'open-ils.circ',
1844         'open-ils.circ.copy_details.retrieve.barcode',
1845         $self->{session}->{authtoken},
1846         $barcode
1847     );
1848
1849     # If $copy is an event, return undefined.
1850     if ($copy && $U->event_code($copy)) {
1851         undef($copy);
1852     }
1853
1854     return $copy;
1855 }
1856
1857 =head2 retrieve_copy_status
1858
1859     $status = $ils->retrieve_copy_status($id);
1860
1861 Retrive a copy status object by database ID.
1862
1863 =cut
1864
1865 sub retrieve_copy_status {
1866     my $self = shift;
1867     my $id = shift;
1868
1869     my $status = $U->simplereq(
1870         'open-ils.pcrud',
1871         'open-ils.pcrud.retrieve.ccs',
1872         $self->{session}->{authtoken},
1873         $id
1874     );
1875
1876     return $status;
1877 }
1878
1879 =head2 retrieve_org_unit_by_shortname
1880
1881     $org_unit = $ils->retrieve_org_unit_by_shortname($shortname);
1882
1883 Retrieves an org. unit from the database by shortname. Returns the
1884 org. unit as a Fieldmapper object or undefined.
1885
1886 =cut
1887
1888 sub retrieve_org_unit_by_shortname {
1889     my $self = shift;
1890     my $shortname = shift;
1891
1892     my $aou = $U->simplereq(
1893         'open-ils.actor',
1894         'open-ils.actor.org_unit.retrieve_by_shortname',
1895         $shortname
1896     );
1897
1898     return $aou;
1899 }
1900
1901 =head2 retrieve_copy_location
1902
1903     $location = $ils->retrieve_copy_location($location_id);
1904
1905 Retrieve a copy location based on id.
1906
1907 =cut
1908
1909 sub retrieve_copy_location {
1910     my $self = shift;
1911     my $id = shift;
1912
1913     my $location = $U->simplereq(
1914         'open-ils.pcrud',
1915         'open-ils.pcrud.retrieve.acpl',
1916         $self->{session}->{authtoken},
1917         $id
1918     );
1919
1920     return $location;
1921 }
1922
1923 =head2 retrieve_biblio_record_entry
1924
1925     $bre = $ils->retrieve_biblio_record_entry($bre_id);
1926
1927 Given a biblio.record_entry.id, this method retrieves a bre object.
1928
1929 =cut
1930
1931 sub retrieve_biblio_record_entry {
1932     my $self = shift;
1933     my $id = shift;
1934
1935     my $bre = $U->simplereq(
1936         'open-ils.pcrud',
1937         'open-ils.pcrud.retrieve.bre',
1938         $self->{session}->{authtoken},
1939         $id
1940     );
1941
1942     return $bre;
1943 }
1944
1945 =head2 create_precat_copy
1946
1947     $item_info->{
1948         barcode => '312340123456789',
1949         author => 'Public, John Q.',
1950         title => 'Magnum Opus',
1951         call_number => '005.82',
1952         publisher => 'Brick House',
1953         publication_date => '2014'
1954     };
1955
1956     $item = $ils->create_precat_copy($item_info);
1957
1958
1959 Create a "precat" copy to use for the incoming item using a hashref of
1960 item information. At a minimum, the barcode, author and title fields
1961 need to be filled in. The other fields are ignored if provided.
1962
1963 This method is called by the AcceptItem handler if the C<use_precats>
1964 configuration option is turned on.
1965
1966 =cut
1967
1968 sub create_precat_copy {
1969     my $self = shift;
1970     my $item_info = shift;
1971
1972     my $item = Fieldmapper::asset::copy->new();
1973     $item->barcode($item_info->{barcode});
1974     $item->call_number(OILS_PRECAT_CALL_NUMBER);
1975     $item->dummy_title($item_info->{title});
1976     $item->dummy_author($item_info->{author});
1977     $item->circ_lib($self->{session}->{work_ou}->id());
1978     $item->circulate('t');
1979     $item->holdable('t');
1980     $item->opac_visible('f');
1981     $item->deleted('f');
1982     $item->fine_level(OILS_PRECAT_COPY_FINE_LEVEL);
1983     $item->loan_duration(OILS_PRECAT_COPY_LOAN_DURATION);
1984     $item->location(1);
1985     $item->status(0);
1986     $item->editor($self->{session}->{user}->id());
1987     $item->creator($self->{session}->{user}->id());
1988     $item->isnew(1);
1989
1990     # Actually create it:
1991     my $xact;
1992     my $ses = OpenSRF::AppSession->create('open-ils.pcrud');
1993     $ses->connect();
1994     eval {
1995         $xact = $ses->request(
1996             'open-ils.pcrud.transaction.begin',
1997             $self->{session}->{authtoken}
1998         )->gather(1);
1999         $item = $ses->request(
2000             'open-ils.pcrud.create.acp',
2001             $self->{session}->{authtoken},
2002             $item
2003         )->gather(1);
2004         $xact = $ses->request(
2005             'open-ils.pcrud.transaction.commit',
2006             $self->{session}->{authtoken}
2007         )->gather(1);
2008     };
2009     if ($@) {
2010         undef($item);
2011         if ($xact) {
2012             eval {
2013                 $ses->request(
2014                     'open-ils.pcrud.transaction.rollback',
2015                     $self->{session}->{authtoken}
2016                 )->gather(1);
2017             };
2018         }
2019     }
2020     $ses->disconnect();
2021
2022     return $item;
2023 }
2024
2025 =head2 create_fuller_copy
2026
2027     $item_info->{
2028         barcode => '31234003456789',
2029         author => 'Public, John Q.',
2030         title => 'Magnum Opus',
2031         call_number => '005.82',
2032         publisher => 'Brick House',
2033         publication_date => '2014'
2034     };
2035
2036     $item = $ils->create_fuller_copy($item_info);
2037
2038 Creates a skeletal bibliographic record, call number, and copy for the
2039 incoming item using a hashref with item information in it. At a
2040 minimum, the barcode, author, title, and call_number fields must be
2041 filled in.
2042
2043 This method is used by the AcceptItem handler if the C<use_precats>
2044 configuration option is NOT set.
2045
2046 =cut
2047
2048 sub create_fuller_copy {
2049     my $self = shift;
2050     my $item_info = shift;
2051
2052     my $item;
2053
2054     # We do everything in one transaction, because it should be atomic.
2055     my $ses = OpenSRF::AppSession->create('open-ils.pcrud');
2056     $ses->connect();
2057     my $xact;
2058     eval {
2059         $xact = $ses->request(
2060             'open-ils.pcrud.transaction.begin',
2061             $self->{session}->{authtoken}
2062         )->gather(1);
2063     };
2064     if ($@) {
2065         undef($xact);
2066     }
2067
2068     # The rest depends on there being a transaction.
2069     if ($xact) {
2070
2071         # Create the MARC record.
2072         my $record = MARC::Record->new();
2073         $record->encoding('UTF-8');
2074         $record->leader('00881nam a2200193   4500');
2075         my $datespec = strftime("%Y%m%d%H%M%S.0", localtime);
2076         my @fields = ();
2077         push(@fields, MARC::Field->new('005', $datespec));
2078         push(@fields, MARC::Field->new('082', '0', '4', 'a' => $item_info->{call_number}));
2079         push(@fields, MARC::Field->new('245', '0', '0', 'a' => $item_info->{title}));
2080         # Publisher is a little trickier:
2081         if ($item_info->{publisher}) {
2082             my $pub = MARC::Field->new('260', ' ', ' ', 'a' => '[S.l.]', 'b' => $item_info->{publisher});
2083             $pub->add_subfields('c' => $item_info->{publication_date}) if ($item_info->{publication_date});
2084             push(@fields, $pub);
2085         }
2086         # We have no idea if the author is personal corporate or something else, so we use a 720.
2087         push(@fields, MARC::Field->new('720', ' ', ' ', 'a' => $item_info->{author}, '4' => 'aut'));
2088         $record->append_fields(@fields);
2089         my $marc = clean_marc($record);
2090
2091         # Create the bib object.
2092         my $bib = Fieldmapper::biblio::record_entry->new();
2093         $bib->creator($self->{session}->{user}->id());
2094         $bib->editor($self->{session}->{user}->id());
2095         $bib->source($self->{bib_source}->id());
2096         $bib->active('t');
2097         $bib->deleted('f');
2098         $bib->marc($marc);
2099         $bib->isnew(1);
2100
2101         eval {
2102             $bib = $ses->request(
2103                 'open-ils.pcrud.create.bre',
2104                 $self->{session}->{authtoken},
2105                 $bib
2106             )->gather(1);
2107         };
2108         if ($@) {
2109             undef($bib);
2110             eval {
2111                 $ses->request(
2112                     'open-ils.pcrud.transaction.rollback',
2113                     $self->{session}->{authtoken}
2114                 )->gather(1);
2115             };
2116         }
2117
2118         # Create the call number
2119         my $acn;
2120         if ($bib) {
2121             $acn = Fieldmapper::asset::call_number->new();
2122             $acn->creator($self->{session}->{user}->id());
2123             $acn->editor($self->{session}->{user}->id());
2124             $acn->label($item_info->{call_number});
2125             $acn->record($bib->id());
2126             $acn->owning_lib($self->{session}->{work_ou}->id());
2127             $acn->deleted('f');
2128             $acn->isnew(1);
2129
2130             eval {
2131                 $acn = $ses->request(
2132                     'open-ils.pcrud.create.acn',
2133                     $self->{session}->{authtoken},
2134                     $acn
2135                 )->gather(1);
2136             };
2137             if ($@) {
2138                 undef($acn);
2139                 eval {
2140                     $ses->request(
2141                         'open-ils.pcrud.transaction.rollback',
2142                         $self->{session}->{authtoken}
2143                     )->gather(1);
2144                 };
2145             }
2146         }
2147
2148         # create the copy
2149         if ($acn) {
2150             $item = Fieldmapper::asset::copy->new();
2151             $item->barcode($item_info->{barcode});
2152             $item->call_number($acn->id());
2153             $item->circ_lib($self->{session}->{work_ou}->id);
2154             $item->circulate('t');
2155             if ($self->{config}->{items}->{use_force_holds}) {
2156                 $item->holdable('f');
2157             } else {
2158                 $item->holdable('t');
2159             }
2160             $item->opac_visible('f');
2161             $item->deleted('f');
2162             $item->fine_level(OILS_PRECAT_COPY_FINE_LEVEL);
2163             $item->loan_duration(OILS_PRECAT_COPY_LOAN_DURATION);
2164             $item->location(1);
2165             $item->status(0);
2166             $item->editor($self->{session}->{user}->id);
2167             $item->creator($self->{session}->{user}->id);
2168             $item->isnew(1);
2169
2170             eval {
2171                 $item = $ses->request(
2172                     'open-ils.pcrud.create.acp',
2173                     $self->{session}->{authtoken},
2174                     $item
2175                 )->gather(1);
2176
2177                 # Cross our fingers and commit the work.
2178                 $xact = $ses->request(
2179                     'open-ils.pcrud.transaction.commit',
2180                     $self->{session}->{authtoken}
2181                 )->gather(1);
2182             };
2183             if ($@) {
2184                 undef($item);
2185                 eval {
2186                     $ses->request(
2187                         'open-ils.pcrud.transaction.rollback',
2188                         $self->{session}->{authtoken}
2189                     )->gather(1) if ($xact);
2190                 };
2191             }
2192         }
2193     }
2194
2195     # We need to disconnect our session.
2196     $ses->disconnect();
2197
2198     # Now, we handle our asset stat_cat entries.
2199     if ($item) {
2200         # It would be nice to do these in the above transaction, but
2201         # pcrud does not support the ascecm object, yet.
2202         foreach my $entry (@{$self->{stat_cat_entries}}) {
2203             my $map = Fieldmapper::asset::stat_cat_entry_copy_map->new();
2204             $map->isnew(1);
2205             $map->stat_cat($entry->stat_cat());
2206             $map->stat_cat_entry($entry->id());
2207             $map->owning_copy($item->id());
2208             # We don't really worry if it succeeds or not.
2209             $U->simplereq(
2210                 'open-ils.circ',
2211                 'open-ils.circ.stat_cat.asset.copy_map.create',
2212                 $self->{session}->{authtoken},
2213                 $map
2214             );
2215         }
2216     }
2217
2218     return $item;
2219 }
2220
2221 =head2 place_hold
2222
2223     $hold = $ils->place_hold($item, $user, $location, $expiration);
2224
2225 This function places a hold on $item for $user for pickup at
2226 $location. If location is not provided or undefined, the user's home
2227 library is used as a fallback.
2228
2229 The $expiration argument is optional and must be a properly formatted
2230 ISO date time. It will be used as the hold expire time, if
2231 provided. Otherwise the system default time will be used.
2232
2233 $item can be a copy (asset::copy), volume (asset::call_number), or bib
2234 (biblio::record_entry). The appropriate hold type will be placed
2235 depending on the object.
2236
2237 On success, the method returns the object representing the hold. On
2238 failure, a NCIP::Problem object, describing the failure, is returned.
2239
2240 =cut
2241
2242 sub place_hold {
2243     my $self = shift;
2244     my $item = shift;
2245     my $user = shift;
2246     my $location = shift;
2247     my $expiration = shift;
2248
2249     # If $location is undefined, use the user's home_ou, which should
2250     # have been fleshed when the user was retrieved.
2251     $location = $user->home_ou() unless ($location);
2252
2253     # $hold is the hold. $params is for the is_possible check.
2254     my ($hold, $params);
2255
2256     # Prep the hold with fields common to all hold types:
2257     $hold = Fieldmapper::action::hold_request->new();
2258     $hold->isnew(1); # Just to make sure.
2259     $hold->target($item->id());
2260     $hold->usr($user->id());
2261     $hold->pickup_lib($location->id());
2262     $hold->expire_time(cleanse_ISO8601($expiration)) if ($expiration);
2263     if (!$user->email()) {
2264         $hold->email_notify('f');
2265         $hold->phone_notify($user->day_phone()) if ($user->day_phone());
2266     } else {
2267         $hold->email_notify('t');
2268     }
2269
2270     # Ditto the params:
2271     $params = { pickup_lib => $location->id(), patronid => $user->id() };
2272
2273     if (ref($item) eq 'Fieldmapper::asset::copy') {
2274         my $type = ($self->{config}->{items}->{use_force_holds}) ? 'F' : 'C';
2275         $hold->hold_type($type);
2276         $hold->current_copy($item->id());
2277         $params->{hold_type} = $type;
2278         $params->{copy_id} = $item->id();
2279     } elsif (ref($item) eq 'Fieldmapper::asset::call_number') {
2280         $hold->hold_type('V');
2281         $params->{hold_type} = 'V';
2282         $params->{volume_id} = $item->id();
2283     } elsif (ref($item) eq 'Fieldmapper::biblio::record_entry') {
2284         $hold->hold_type('T');
2285         $params->{hold_type} = 'T';
2286         $params->{titleid} = $item->id();
2287     }
2288
2289     # Check for a duplicate hold:
2290     my $duplicate = $U->simplereq(
2291         'open-ils.pcrud',
2292         'open-ils.pcrud.search.ahr',
2293         $self->{session}->{authtoken},
2294         {
2295             hold_type => $hold->hold_type(),
2296             target => $hold->target(),
2297             usr => $hold->usr(),
2298             expire_time => {'>' => 'now'},
2299             cancel_time => undef,
2300             fulfillment_time => undef
2301         }
2302     );
2303     if ($duplicate) {
2304         return NCIP::Problem->new(
2305             {
2306                 ProblemType => 'Duplicate Request',
2307                 ProblemDetail => 'A request for this item already exists for this patron.',
2308                 ProblemElement => 'NULL',
2309                 ProblemValue => 'NULL'
2310             }
2311         );
2312     }
2313
2314     # Check if the hold is possible:
2315     my $r = $U->simplereq(
2316         'open-ils.circ',
2317         'open-ils.circ.title_hold.is_possible',
2318         $self->{session}->{authtoken},
2319         $params
2320     );
2321
2322     if ($r->{success}) {
2323         $hold = $U->simplereq(
2324             'open-ils.circ',
2325             'open-ils.circ.holds.create.override',
2326             $self->{session}->{authtoken},
2327             $hold
2328         );
2329         if (ref($hold) eq 'HASH') {
2330             $hold = _problem_from_event('Request Not Possible', $hold);
2331         }
2332     } elsif ($r->{last_event}) {
2333         $hold = _problem_from_event('Request Not Possible', $r->{last_event});
2334     } elsif ($r->{textcode}) {
2335         $hold = _problem_from_event('Request Not Possible', $r);
2336     } else {
2337         $hold = _problem_from_event('Request Not Possible');
2338     }
2339
2340     return $hold;
2341 }
2342
2343 =head2 cancel_hold
2344
2345     $ils->cancel_hold($hold);
2346
2347 This method cancels the hold argument. It makes no checks on the hold,
2348 so if there are certain conditions that need to be fulfilled before
2349 the hold is canceled, then you must check them before calling this
2350 method.
2351
2352 It returns undef on success or failure. If it fails, you've usually
2353 got bigger problems.
2354
2355 =cut
2356
2357 sub cancel_hold {
2358     my $self = shift;
2359     my $hold = shift;
2360
2361     my $r = $U->simplereq(
2362         'open-ils.circ',
2363         'open-ils.circ.hold.cancel',
2364         $self->{session}->{authtoken},
2365         $hold->id(),
2366         '5',
2367         'Canceled via NCIPServer'
2368     );
2369
2370     return undef;
2371 }
2372
2373 =head2 delete_copy
2374
2375     $ils->delete_copy($copy);
2376
2377 Deletes the copy, and if it is owned by our work_ou and not a precat,
2378 we also delete the volume and bib on which the copy depends.
2379
2380 =cut
2381
2382 sub delete_copy {
2383     my $self = shift;
2384     my $copy = shift;
2385
2386     # Shortcut for ownership checks below.
2387     my $ou_id = $self->{session}->{work_ou}->id();
2388
2389     # First, make sure the copy is not already deleted and we own it.
2390     return undef if ($U->is_true($copy->deleted()) || $copy->circ_lib() != $ou_id);
2391
2392     # Indicate we want to delete the copy.
2393     $copy->isdeleted(1);
2394
2395     # Delete the copy using a backend call that will delete the copy,
2396     # the call number, and bib when appropriate.
2397     my $result = $U->simplereq(
2398         'open-ils.cat',
2399         'open-ils.cat.asset.copy.fleshed.batch.update.override',
2400         $self->{session}->{authtoken},
2401         [$copy]
2402     );
2403
2404     # We are currently not checking for succes or failure of the
2405     # above. At some point, someone may want to.
2406
2407     return undef;
2408 }
2409
2410 =head2 copy_can_circulate
2411
2412     $can_circulate = $ils->copy_can_circulate($copy);
2413
2414 Check if the copy's location and the copy itself allow
2415 circulation. Return true if they do, and false if they do not.
2416
2417 =cut
2418
2419 sub copy_can_circulate {
2420     my $self = shift;
2421     my $copy = shift;
2422
2423     my $location = $copy->location();
2424     unless (ref($location)) {
2425         $location = $self->retrieve_copy_location($location);
2426     }
2427
2428     return ($U->is_true($copy->circulate()) && $U->is_true($location->circulate()));
2429 }
2430
2431 =head2 copy_can_fulfill
2432
2433     $can_fulfill = $ils->copy_can_fulfill($copy);
2434
2435 Check if the copy's location and the copy itself allow
2436 holds. Return true if they do, and false if they do not.
2437
2438 =cut
2439
2440 sub copy_can_fulfill {
2441     my $self = shift;
2442     my $copy = shift;
2443
2444     my $location = $copy->location();
2445     unless (ref($location)) {
2446         $location = $self->retrieve_copy_location($location);
2447     }
2448
2449     return ($U->is_true($copy->holdable()) && $U->is_true($location->holdable()));
2450 }
2451
2452 =head1 OVERRIDDEN PARENT METHODS
2453
2454 =head2 find_user_barcode
2455
2456 We dangerously override our parent's C<find_user_barcode> to return
2457 either the $barcode or a Problem object. In list context the barcode
2458 or problem will be the first argument and the id field, if any, will
2459 be the second. We also add a second, optional, argument to indicate a
2460 default value for the id field in the event of a failure to find
2461 anything at all. (Perl lets us get away with this.)
2462
2463 =cut
2464
2465 sub find_user_barcode {
2466     my $self = shift;
2467     my $request = shift;
2468     my $default = shift;
2469
2470     unless ($default) {
2471         my $message = $self->parse_request_type($request);
2472         if ($message eq 'LookupUser') {
2473             $default = 'AuthenticationInputData';
2474         } else {
2475             $default = 'UserIdentifierValue';
2476         }
2477     }
2478
2479     my ($value, $idfield) = $self->SUPER::find_user_barcode($request);
2480
2481     unless ($value) {
2482         $idfield = $default unless ($idfield);
2483         $value = NCIP::Problem->new();
2484         $value->ProblemType('Needed Data Missing');
2485         $value->ProblemDetail('Cannot find user barcode in message.');
2486         $value->ProblemElement($idfield);
2487         $value->ProblemValue('NULL');
2488     }
2489
2490     return (wantarray) ? ($value, $idfield) : $value;
2491 }
2492
2493 =head2 find_item_barcode
2494
2495 We do pretty much the same thing as with C<find_user_barcode> for
2496 C<find_item_barcode>.
2497
2498 =cut
2499
2500 sub find_item_barcode {
2501     my $self = shift;
2502     my $request = shift;
2503     my $default = shift || 'ItemIdentifierValue';
2504
2505     my ($value, $idfield) = $self->SUPER::find_item_barcode($request);
2506
2507     unless ($value) {
2508         $idfield = $default unless ($idfield);
2509         $value = NCIP::Problem->new();
2510         $value->ProblemType('Needed Data Missing');
2511         $value->ProblemDetail('Cannot find item barcode in message.');
2512         $value->ProblemElement($idfield);
2513         $value->ProblemValue('NULL');
2514     }
2515
2516     return (wantarray) ? ($value, $idfield) : $value;
2517 }
2518
2519 =head2 find_target_via_bibliographic_id
2520
2521     $item = $ils->find_target_via_bibliographic_id(@biblio_ids);
2522
2523 Searches for a bibliographic record to put on hold and returns an
2524 appropriate hold target item depending upon what it finds. If an
2525 appropriate, single target cannot be found, it returns an
2526 NCIP::Problem with the problem message.
2527
2528 Currently, we only look for SYSNUMBER, ISBN, and ISSN record
2529 identifiers. If nothing is found, this method can return undef. (Gotta
2530 love Perl and untyped/weakly typed languages in general!)
2531
2532 TODO: Figure out how to search OCLC numbers. We probably need to use
2533 "MARC Expert Search" if we don't want to do a JSON query on
2534 metabib.full_rec.
2535
2536 =cut
2537
2538 sub find_target_via_bibliographic_id {
2539     my $self = shift;
2540     my @biblio_ids = @_;
2541
2542     # The item that we find:
2543     my $item;
2544
2545     # Id for our bib in Evergreen:
2546     my $bibid;
2547
2548     # First, let's look for a SYSNUMBER:
2549     my ($idobj) = grep
2550         { $_->{BibliographicRecordIdentifierCode} eq 'SYSNUMBER' || $_->{BibliographicItemIdentifierCode} eq 'SYSNUMBER'
2551               || $_->{AgencyId} }
2552             @biblio_ids;
2553     if ($idobj) {
2554         my $loc;
2555         # BibliographicRecordId can have an AgencyId field if the
2556         # BibliographicRecordIdentifierCode is absent.
2557         if ($idobj->{AgencyId}) {
2558             $bibid = $idobj->{BibliographicRecordIdentifier};
2559             my $locname = $idobj->{AgencyId};
2560             if ($locname) {
2561                 $locname =~ s/.*://;
2562                 $loc = $self->retrieve_org_unit_by_shortname($locname);
2563             }
2564         } elsif ($idobj->{BibliographicRecordIdentifierCode}) {
2565             $bibid = $idobj->{BibliographicRecordIdentifierCode}
2566         } else {
2567             $bibid = $idobj->{BibliographicItemIdentifierCode}
2568         }
2569         if ($bibid && $loc) {
2570             $item = $self->_call_number_search($bibid, $loc);
2571         } else {
2572             $item = $U->simplereq(
2573                 'open-ils.pcrud',
2574                 'open-ils.pcrud.retrieve.bre',
2575                 $self->{session}->{authtoken},
2576                 $bibid
2577             );
2578         }
2579         # Check if item is deleted so we'll look for more
2580         # possibilties.
2581         undef($item) if ($item && $U->is_true($item->deleted()));
2582     }
2583
2584     # Build an array of id objects based on the other identifier fields.
2585     my @idobjs = grep
2586         {
2587             $_->{BibliographicRecordIdentifierCode} eq 'ISBN' || $_->{BibliographicItemIdentifierCode} eq 'ISBN'
2588             ||
2589             $_->{BibliographicRecordIdentifierCode} eq 'ISSN' || $_->{BibliographicItemIdentifierCode} eq 'ISSN'
2590         } @biblio_ids;
2591
2592     if (@idobjs) {
2593         my $stashed_problem;
2594         # Reuse $idobj from above.
2595         foreach $idobj (@idobjs) {
2596             my ($idvalue, $idtype, $idfield);
2597             if ($_->{BibliographicItemIdentifier}) {
2598                 $idvalue = $_->{BibliographicItemIdentifier};
2599                 $idtype = $_->{BibliographicItemIdentifierCode};
2600                 $idfield = 'BibliographicItemIdentifier';
2601             } else {
2602                 $idvalue = $_->{BibliographicRecordIdentifier};
2603                 $idtype = $_->{BibliographicRecordIdentifierCode};
2604                 $idfield = 'BibliographicRecordIdentifier';
2605             }
2606             $item = $self->_bib_search($idvalue, $idtype);
2607             if (ref($item) eq 'NCIP::Problem') {
2608                 $stashed_problem = $item unless($stashed_problem);
2609                 $stashed_problem->ProblemElement($idfield);
2610                 undef($item);
2611             }
2612             last if ($item);
2613         }
2614         $item = $stashed_problem if (!$item && $stashed_problem);
2615     }
2616
2617     return $item;
2618 }
2619
2620 # private subroutines not meant to be used directly by subclasses.
2621 # Most have to do with setup and/or state checking of implementation
2622 # components.
2623
2624 # Find, load, and parse our configuration file:
2625 sub _configure {
2626     my $self = shift;
2627
2628     # Find the configuration file via variables:
2629     my $file = OILS_NCIP_CONFIG_DEFAULT;
2630     $file = $ENV{OILS_NCIP_CONFIG} if ($ENV{OILS_NCIP_CONFIG});
2631
2632     $self->{config} = XMLin($file, NormaliseSpace => 2,
2633                             ForceArray => ['block_profile', 'stat_cat_entry']);
2634 }
2635
2636 # Bootstrap OpenSRF::System and load the IDL.
2637 sub _bootstrap {
2638     my $self = shift;
2639
2640     my $bootstrap_config = $self->{config}->{bootstrap};
2641     OpenSRF::System->bootstrap_client(config_file => $bootstrap_config);
2642
2643     my $idl = OpenSRF::Utils::SettingsClient->new->config_value("IDL");
2644     Fieldmapper->import(IDL => $idl);
2645 }
2646
2647 # Login and then initialize some object data based on the
2648 # configuration.
2649 sub _init {
2650     my $self = shift;
2651
2652     # Login to Evergreen.
2653     $self->login();
2654
2655     # Load the barred groups as pgt objects into a blocked_profiles
2656     # list.
2657     $self->{blocked_profiles} = [];
2658     foreach (@{$self->{config}->{patrons}->{block_profile}}) {
2659         my $pgt;
2660         if (ref $_) {
2661             $pgt = $U->simplereq(
2662                 'open-ils.pcrud',
2663                 'open-ils.pcrud.retrieve.pgt',
2664                 $self->{session}->{authtoken},
2665                 $_->{grp}
2666             );
2667         } else {
2668             $pgt = $U->simplereq(
2669                 'open-ils.pcrud',
2670                 'open-ils.pcrud.search.pgt',
2671                 $self->{session}->{authtoken},
2672                 {name => $_}
2673             );
2674         }
2675         push(@{$self->{blocked_profiles}}, $pgt) if ($pgt);
2676     }
2677
2678     # Load the bib source if we're not using precats.
2679     unless ($self->{config}->{items}->{use_precats}) {
2680         # Retrieve the default
2681         $self->{bib_source} = $U->simplereq(
2682             'open-ils.pcrud',
2683             'open-ils.pcrud.retrieve.cbs',
2684             $self->{session}->{authtoken},
2685             BIB_SOURCE_DEFAULT);
2686         my $data = $self->{config}->{items}->{bib_source};
2687         if ($data) {
2688             $data = $data->[0] if (ref($data) eq 'ARRAY');
2689             my $result;
2690             if (ref $data) {
2691                 $result = $U->simplereq(
2692                     'open-ils.pcrud',
2693                     'open-ils.pcrud.retrieve.cbs',
2694                     $self->{session}->{authtoken},
2695                     $data->{cbs}
2696                 );
2697             } else {
2698                 $result = $U->simplereq(
2699                     'open-ils.pcrud',
2700                     'open-ils.pcrud.search.cbs',
2701                     $self->{session}->{authtoken},
2702                     {source => $data}
2703                 );
2704             }
2705             $self->{bib_source} = $result if ($result);
2706         }
2707     }
2708
2709     # Load the required asset.stat_cat_entries:
2710     $self->{stat_cat_entries} = [];
2711     # First, make a regex for our ou and ancestors:
2712     my $ancestors = join("|", @{$U->get_org_ancestors($self->{session}->{work_ou}->id())});
2713     my $re = qr/(?:$ancestors)/;
2714     # Get the uniq stat_cat ids from the configuration:
2715     my @cats = uniq map {$_->{stat_cat}} @{$self->{config}->{items}->{stat_cat_entry}};
2716     # Retrieve all of the fleshed stat_cats and entries for the above.
2717     my $stat_cats = $U->simplereq(
2718         'open-ils.circ',
2719         'open-ils.circ.stat_cat.asset.retrieve.batch',
2720         $self->{session}->{authtoken},
2721         @cats
2722     );
2723     foreach my $entry (@{$self->{config}->{items}->{stat_cat_entry}}) {
2724         # Must have the stat_cat attr and the name, so we must have a
2725         # reference.
2726         next unless(ref $entry);
2727         my ($stat) = grep {$_->id() == $entry->{stat_cat}} @$stat_cats;
2728         push(@{$self->{stat_cat_entries}}, grep {$_->owner() =~ $re && $_->value() eq $entry->{content}} @{$stat->entries()});
2729     }
2730 }
2731
2732 # Search asset.call_number by a bre.id and location object. Return the
2733 # "closest" call_number if found, undef otherwise.
2734 sub _call_number_search {
2735     my $self = shift;
2736     my $bibid = shift;
2737     my $location = shift;
2738
2739     # At some point, this should be smarter, and we should retrieve
2740     # ancestors and descendants and search with a JSON query or some
2741     # such with results ordered by proximity to the original location,
2742     # but I don't have time to implement that right now.
2743     my $acn = $U->simplereq(
2744         'open-ils.prcud',
2745         'open-ils.pcrud.search.acn',
2746         $self->{session}->{authtoken},
2747         {record => $bibid, owning_lib => $location->id()}
2748     );
2749
2750     return $acn;
2751 }
2752
2753 # Do a multiclass.query to search for items by isbn or issn.
2754 sub _bib_search {
2755     my $self = shift;
2756     my $idvalue = shift;
2757     my $idtype = shift;
2758     my $item;
2759
2760     my $result = $U->simplereq(
2761         'open-ils.search',
2762         'open-ils.search.biblio.multiclass',
2763         {searches => {lc($idtype) => $idvalue}}
2764     );
2765
2766     if ($result && $result->{count}) {
2767         if ($result->{count} > 1) {
2768             $item = NCIP::Problem->new(
2769                 {
2770                     ProblemType => 'Non-Unique Item',
2771                     ProblemDetail => 'More than one item matches the request.',
2772                     ProblemElement => '',
2773                     ProblemValue => $idvalue
2774                 }
2775             );
2776         }
2777         my $bibid = $result->{ids}->[0]->[0];
2778         $item = $U->simplereq(
2779             'open-ils.pcrud',
2780             'open-ils.pcrud.retrieve.bre',
2781             $self->{session}->{authtoken},
2782             $bibid
2783         );
2784     }
2785
2786     return $item;
2787 }
2788
2789 # Search for holds using the user and copy_details information:
2790 sub _hold_search {
2791     my $self = shift;
2792     my $user = shift;
2793     my $copy_details = shift;
2794
2795     my $hold;
2796
2797     # Retrieve all of the user's active holds, and then search them in Perl.
2798     my $holds_list = $U->simplereq(
2799         'open-ils.circ',
2800         'open-ils.circ.holds.retrieve',
2801         $self->{session}->{authtoken},
2802         $user->id(),
2803         0
2804     );
2805
2806     if ($holds_list && @$holds_list) {
2807         my @holds;
2808         # Look for title holds (the most common), first:
2809         my $targetid = $copy_details->{mvr}->doc_id();
2810         @holds = grep {$_->hold_type eq 'T' && $_->target == $targetid} @{$holds_list};
2811         unless (@holds) {
2812             # Look for volume holds, the next most common:
2813             $targetid = $copy_details->{volume}->id();
2814             @holds = grep {$_->hold_type eq 'V' && $_->target == $targetid} @{$holds_list};
2815         }
2816         unless (@holds) {
2817             # Look for copy and force holds, the least likely.
2818             $targetid = $copy_details->{copy}->id();
2819             @holds = grep {($_->hold_type eq 'C' || $_->hold_type eq 'F') && $_->target == $targetid} @{$holds_list};
2820         }
2821         # There should only be 1, at this point, if there are any.
2822         if (@holds) {
2823             $hold = $holds[0];
2824         }
2825     }
2826
2827     return $hold;
2828 }
2829
2830 # Standalone, "helper" functions.  These do not take an object or
2831 # class reference.
2832
2833 # Check if a user is past their expiration date.
2834 sub _expired {
2835     my $user = shift;
2836     my $expired = 0;
2837
2838     # Users might not expire.  If so, they have no expire_date.
2839     if ($user->expire_date()) {
2840         my $expires = DateTime::Format::ISO8601->parse_datetime(
2841             cleanse_ISO8601($user->expire_date())
2842         )->epoch();
2843         my $now = DateTime->now()->epoch();
2844         $expired = $now > $expires;
2845     }
2846
2847     return $expired;
2848 }
2849
2850 # Creates a NCIP Problem from an event. Takes a string for the problem
2851 # type, the event hashref (or a string to use for the detail), and
2852 # optional arguments for the ProblemElement and ProblemValue fields.
2853 sub _problem_from_event {
2854     my ($type, $evt, $element, $value) = @_;
2855
2856     my $detail;
2857
2858     # Check the event.
2859     if (ref($evt)) {
2860         my ($textcode, $desc);
2861
2862         # Get the textcode, if available. Otherwise, use the ilsevent
2863         # "id," if available.
2864         if ($evt->{textcode}) {
2865             $textcode = $evt->{textcode};
2866         } elsif ($evt->{ilsevent}) {
2867             $textcode = $evt->{ilsevent};
2868         }
2869
2870         # Get the description. We favor translated descriptions over
2871         # the English in ils_events.xml.
2872         if ($evt->{desc}) {
2873             $desc = $evt->{desc};
2874         }
2875
2876         # Check if $type was set. As an "undocumented" feature, you
2877         # can pass undef, and we'll use the textcode from the event.
2878         unless ($type) {
2879             if ($textcode) {
2880                 $type = $textcode;
2881             }
2882         }
2883
2884         # Set the detail from some combination of the above.
2885         if ($desc) {
2886             $detail = $desc;
2887         } elsif ($textcode eq 'PERM_FAILURE') {
2888             if ($evt->{ilsperm}) {
2889                 $detail = "Permission denied: " . $evt->{ilsperm};
2890                 $detail =~ s/\.override$//;
2891             }
2892         } elsif ($textcode) {
2893             $detail = "ILS returned $textcode error.";
2894         } else {
2895             $detail = 'Detail not available.';
2896         }
2897
2898     } else {
2899         $detail = $evt;
2900     }
2901
2902     return NCIP::Problem->new(
2903         {
2904             ProblemType => ($type) ? $type : 'Temporary Processing Failure',
2905             ProblemDetail => ($detail) ? $detail : 'Detail not available.',
2906             ProblemElement => ($element) ? $element : 'NULL',
2907             ProblemValue => ($value) ? $value : 'NULL'
2908         }
2909     );
2910 }
2911
2912 1;