]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Circ.pm
caching org units in AppUtils
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Circ.pm
1 package OpenILS::Application::Circ;
2 use base qw/OpenSRF::Application/;
3 use strict; use warnings;
4
5 use OpenILS::Application::Circ::Circulate;
6 use OpenILS::Application::Circ::Rules;
7 use OpenILS::Application::Circ::Survey;
8 use OpenILS::Application::Circ::StatCat;
9 use OpenILS::Application::Circ::Holds;
10 use OpenILS::Application::Circ::Money;
11 use OpenILS::Application::Circ::NonCat;
12 use OpenILS::Application::Circ::CopyLocations;
13
14 use DateTime;
15 use DateTime::Format::ISO8601;
16
17 use OpenILS::Application::AppUtils;
18 my $apputils = "OpenILS::Application::AppUtils";
19 my $U = $apputils;
20 use OpenSRF::Utils qw/:datetime/;
21 use OpenILS::Utils::ModsParser;
22 use OpenILS::Event;
23 use OpenSRF::EX qw(:try);
24 use OpenSRF::Utils::Logger qw(:logger);
25 #my $logger = "OpenSRF::Utils::Logger";
26
27
28 # ------------------------------------------------------------------------
29 # Top level Circ package;
30 # ------------------------------------------------------------------------
31
32 sub initialize {
33         my $self = shift;
34         OpenILS::Application::Circ::Rules->initialize();
35         OpenILS::Application::Circ::Circulate->initialize();
36 }
37
38
39 # ------------------------------------------------------------------------
40 # Returns an array of {circ, record} hashes checked out by the user.
41 # ------------------------------------------------------------------------
42 __PACKAGE__->register_method(
43         method  => "checkouts_by_user",
44         api_name        => "open-ils.circ.actor.user.checked_out",
45         NOTES           => <<"  NOTES");
46         Returns a list of open circulations as a pile of objects.  each object
47         contains the relevant copy, circ, and record
48         NOTES
49
50 sub checkouts_by_user {
51         my( $self, $client, $user_session, $user_id ) = @_;
52
53         my( $requestor, $target, $copy, $record, $evt );
54
55         ( $requestor, $target, $evt ) = 
56                 $apputils->checkses_requestor( $user_session, $user_id, 'VIEW_CIRCULATIONS');
57         return $evt if $evt;
58
59         my $circs = $apputils->simplereq(
60                 'open-ils.storage',
61                 "open-ils.storage.direct.action.open_circulation.search.atomic", 
62                 { usr => $target->id, checkin_time => undef } );
63 #               { usr => $target->id } );
64
65         my @results;
66         for my $circ (@$circs) {
67
68                 ( $copy, $evt )  = $apputils->fetch_copy($circ->target_copy);
69                 return $evt if $evt;
70
71                 $logger->debug("Retrieving record for copy " . $circ->target_copy);
72
73                 ($record, $evt) = $apputils->fetch_record_by_copy( $circ->target_copy );
74                 return $evt if $evt;
75
76                 my $mods = $apputils->record_to_mvr($record);
77
78                 push( @results, { copy => $copy, circ => $circ, record => $mods } );
79         }
80
81         return \@results;
82
83 }
84
85
86
87 __PACKAGE__->register_method(
88         method  => "checkouts_by_user_slim",
89         api_name        => "open-ils.circ.actor.user.checked_out.slim",
90         NOTES           => <<"  NOTES");
91         Returns a list of open circulation objects
92         NOTES
93
94 sub checkouts_by_user_slim {
95         my( $self, $client, $user_session, $user_id ) = @_;
96
97         my( $requestor, $target, $copy, $record, $evt );
98
99         ( $requestor, $target, $evt ) = 
100                 $apputils->checkses_requestor( $user_session, $user_id, 'VIEW_CIRCULATIONS');
101         return $evt if $evt;
102
103         $logger->debug( 'User ' . $requestor->id . 
104                 " retrieving checked out items for user " . $target->id );
105
106         # XXX Make the call correct..
107         return $apputils->simplereq(
108                 'open-ils.storage',
109                 "open-ils.storage.direct.action.open_circulation.search.atomic", 
110                 { usr => $target->id, checkin_time => undef } );
111 #               { usr => $target->id } );
112 }
113
114
115
116
117 __PACKAGE__->register_method(
118         method  => "title_from_transaction",
119         api_name        => "open-ils.circ.circ_transaction.find_title",
120         NOTES           => <<"  NOTES");
121         Returns a mods object for the title that is linked to from the 
122         copy from the hold that created the given transaction
123         NOTES
124
125 sub title_from_transaction {
126         my( $self, $client, $login_session, $transactionid ) = @_;
127
128         my( $user, $circ, $title, $evt );
129
130         ( $user, $evt ) = $apputils->checkses( $login_session );
131         return $evt if $evt;
132
133         ( $circ, $evt ) = $apputils->fetch_circulation($transactionid);
134         return $evt if $evt;
135         
136         ($title, $evt) = $apputils->fetch_record_by_copy($circ->target_copy);
137         return $evt if $evt;
138
139         return $apputils->record_to_mvr($title);
140 }
141
142
143 __PACKAGE__->register_method(
144         method  => "set_circ_lost",
145         api_name        => "open-ils.circ.circulation.set_lost",
146         NOTES           => <<"  NOTES");
147         Params are login, circid
148         login must have SET_CIRC_LOST perms
149         Sets a circulation to lost
150         NOTES
151
152 __PACKAGE__->register_method(
153         method  => "set_circ_lost",
154         api_name        => "open-ils.circ.circulation.set_claims_returned",
155         NOTES           => <<"  NOTES");
156         Params are login, circid
157         login must have SET_CIRC_MISSING perms
158         Sets a circulation to lost
159         NOTES
160
161 sub set_circ_lost {
162         my( $self, $client, $login, $circid ) = @_;
163         my( $user, $circ, $evt );
164
165         ( $user, $evt ) = $apputils->checkses($login);
166         return $evt if $evt;
167
168         ( $circ, $evt ) = $apputils->fetch_circulation( $circid );
169         return $evt if $evt;
170
171         if($self->api_name =~ /lost/) {
172                 if($evt = $apputils->checkperms(
173                         $user->id, $circ->circ_lib, "SET_CIRC_LOST")) {
174                         return $evt;
175                 }
176                 $circ->stop_fines("LOST");              
177         }
178
179         # XXX Back date the checkin time so the patron has no fines
180         if($self->api_name =~ /claims_returned/) {
181                 if($evt = $apputils->checkperms(
182                         $user->id, $circ->circ_lib, "SET_CIRC_CLAIMS_RETURNED")) {
183                         return $evt;
184                 }
185                 $circ->stop_fines("CLAIMSRETURNED");
186         }
187
188         my $s = $apputils->simplereq(
189                 'open-ils.storage',
190                 "open-ils.storage.direct.action.circulation.update", $circ );
191
192         if(!$s) { throw OpenSRF::EX::ERROR ("Error updating circulation with id $circid"); }
193 }
194
195 __PACKAGE__->register_method(
196         method          => "create_in_house_use",
197         api_name                => 'open-ils.circ.in_house_use.create',
198         signature       =>      q/
199                 Creates an in-house use action.
200                 @param $authtoken The login session key
201                 @param params A hash of params including
202                         'location' The org unit id where the in-house use occurs
203                         'copyid' The copy in question
204                         'count' The number of in-house uses to apply to this copy
205                 @return An array of id's representing the id's of the newly created
206                 in-house use objects or an event on an error
207         /);
208
209 sub create_in_house_use {
210         my( $self, $client, $authtoken, $params ) = @_;
211
212         my( $staff, $evt, $copy );
213         my $org                 = $params->{location};
214         my $copyid              = $params->{copyid};
215         my $count               = $params->{count} || 1;
216         my $use_time    = $params->{use_time} || 'now';
217
218         if(!$copyid) {
219                 my $barcode = $params->{barcode};
220                 ($copy, $evt) = $U->fetch_copy_by_barcode($barcode);
221                 return $evt if $evt;
222         }
223
224         ($staff, $evt) = $U->checkses($authtoken);
225         return $evt if $evt;
226
227         ($copy, $evt) = $U->fetch_copy($copyid) unless $copy;
228         return $evt if $evt;
229
230         $evt = $U->check_perms($staff->id, $org, 'CREATE_IN_HOUSE_USE');
231         return $evt if $evt;
232
233         $logger->activity("User " . $staff->id .
234                 " creating $count in-house use(s) for copy $copyid at location $org");
235
236         if( $use_time ne 'now' ) {
237                 $use_time = clense_ISO8601($use_time);
238                 $logger->debug("in_house_use setting use time to $use_time");
239         }
240
241         my @ids;
242         for(1..$count) {
243                 my $ihu = Fieldmapper::action::in_house_use->new;
244
245                 $ihu->item($copyid);
246                 $ihu->staff($staff->id);
247                 $ihu->org_unit($org);
248                 $ihu->use_time($use_time);
249
250                 my $id = $U->simplereq(
251                         'open-ils.storage',
252                         'open-ils.storage.direct.action.in_house_use.create', $ihu );
253
254                 return $U->DB_UPDATE_FAILED($ihu) unless $id;
255                 push @ids, $id;
256         }
257
258         return \@ids;
259 }
260
261
262
263 __PACKAGE__->register_method(
264         method  => "view_circ_patrons",
265         api_name        => "open-ils.circ.copy_checkout_history.retrieve",
266         notes           => q/
267                 Retrieves the last X users who checked out a given copy
268                 @param authtoken The login session key
269                 @param copyid The copy to check
270                 @param count How far to go back in the item history
271                 @return An array of patron ids
272         /);
273
274 sub view_circ_patrons {
275         my( $self, $client, $authtoken, $copyid, $count ) = @_; 
276
277         my( $requestor, $evt ) = $U->checksesperm(
278                         $authtoken, 'VIEW_COPY_CHECKOUT_HISTORY' );
279         return $evt if $evt;
280
281         return [] unless $count;
282
283         my $circs = $U->storagereq(
284                 'open-ils.storage.direct.action.circulation.search_where.atomic',
285                         { 
286                                 target_copy => $copyid, 
287                                 opac_renewal => 'f',   
288                                 desk_renewal => 'f',
289                                 phone_renewal => 'f',
290                         }, 
291                         { 
292                                 limit => $count, 
293                                 order_by => "xact_start DESC" 
294                         } );
295
296
297         my @users;
298         push(@users, $_->usr) for @$circs;
299         return \@users;
300 }
301
302
303
304 __PACKAGE__->register_method(
305         method          => 'fetch_notes',
306         api_name                => 'open-ils.circ.copy_note.retrieve.all',
307         signature       => q/
308                 Returns an array of copy note objects.  
309                 @param args A named hash of parameters including:
310                         authtoken       : Required if viewing non-public notes
311                         itemid          : The id of the item whose notes we want to retrieve
312                         pub                     : True if all the caller wants are public notes
313                 @return An array of note objects
314         /);
315
316 __PACKAGE__->register_method(
317         method          => 'fetch_notes',
318         api_name                => 'open-ils.circ.call_number_note.retrieve.all',
319         signature       => q/@see open-ils.circ.copy_note.retrieve.all/);
320
321 __PACKAGE__->register_method(
322         method          => 'fetch_notes',
323         api_name                => 'open-ils.circ.title_note.retrieve.all',
324         signature       => q/@see open-ils.circ.copy_note.retrieve.all/);
325
326 # NOTE: VIEW_COPY/VOLUME/TITLE_NOTES perms should always be global
327 sub fetch_notes {
328         my( $self, $connection, $args ) = @_;
329
330         my $id = $$args{itemid};
331         my $authtoken = $$args{authtoken};
332         my( $r, $evt);
333
334         if( $self->api_name =~ /copy/ ) {
335                 if( $$args{pub} ) {
336                         return $U->storagereq(
337                                 'open-ils.storage.direct.asset.copy_note.search_where.atomic',
338                                 { owning_copy => $id, pub => 't' } );
339                 } else {
340                         ( $r, $evt ) = $U->checksesperms($authtoken, 'VIEW_COPY_NOTES');
341                         return $evt if $evt;
342                         return $U->storagereq(
343                                 'open-ils.storage.direct.asset.copy_note.search.owning_copy.atomic', $id );
344                 }
345
346         } elsif( $self->api_name =~ /call_number/ ) {
347                 if( $$args{pub} ) {
348                         return $U->storagereq(
349                                 'open-ils.storage.direct.asset.call_number_note.search_where.atomic',
350                                 { call_number => $id, pub => 't' } );
351                 } else {
352                         ( $r, $evt ) = $U->checksesperms($authtoken, 'VIEW_VOLUME_NOTES');
353                         return $evt if $evt;
354                         return $U->storagereq(
355                                 'open-ils.storage.direct.asset.call_number_note.search.call_number.atomic', $id );
356                 }
357
358         } elsif( $self->api_name =~ /title/ ) {
359                 if( $$args{pub} ) {
360                         return $U->storagereq(
361                                 'open-ils.storage.direct.bilbio.record_note.search_where.atomic',
362                                 { record => $id, pub => 't' } );
363                 } else {
364                         ( $r, $evt ) = $U->checksesperms($authtoken, 'VIEW_TITLE_NOTES');
365                         return $evt if $evt;
366                         return $U->storagereq(
367                                 'open-ils.storage.direct.asset.call_number_note.search.call_number.atomic', $id );
368                 }
369         }
370
371         return undef;
372 }
373
374 __PACKAGE__->register_method(
375         method          => 'create_copy_note',
376         api_name                => 'open-ils.circ.copy_note.create',
377         signature       => q/
378                 Creates a new copy note
379                 @param authtoken The login session key
380                 @param note     The note object to create
381                 @return The id of the new note object
382         /);
383
384 sub create_copy_note {
385         my( $self, $connection, $authtoken, $note ) = @_;
386         my( $cnowner, $requestor, $evt );
387
388         ($cnowner, $evt) = $U->fetch_copy_owner($note->owning_copy);
389         return $evt if $evt;
390         ($requestor, $evt) = $U->checkses($authtoken);
391         return $evt if $evt;
392         $evt = $U->check_perms($requestor->id, $cnowner, 'CREATE_COPY_NOTE');
393         return $evt if $evt;
394
395         $note->create_date('now');
396         $note->pub( ($note->pub) ? 't' : 'f' );
397
398         my $id = $U->storagereq(
399                 'open-ils.storage.direct.asset.copy_note.create', $note );
400         return $U->DB_UPDATE_FAILED($note) unless $id;
401
402         $logger->activity("User ".$requestor->id." created a new copy ".
403                 "note [$id] for copy ".$note->owning_copy." with text ".$note->value);
404
405         return $id;
406 }
407
408 __PACKAGE__->register_method(
409         method          => 'delete_copy_note',
410         api_name                =>      'open-ils.circ.copy_note.delete',
411         signature       => q/
412                 Deletes an existing copy note
413                 @param authtoken The login session key
414                 @param noteid The id of the note to delete
415                 @return 1 on success - Event otherwise.
416                 /);
417
418 sub delete_copy_note {
419         my( $self, $conn, $authtoken, $noteid ) = @_;
420         my( $requestor, $note, $owner, $evt );
421
422         ($requestor, $evt) = $U->checkses($authtoken);
423         return $evt if $evt;
424
425         ($note, $evt) = $U->fetch_copy_note($noteid);
426         return $evt if $evt;
427
428         if( $note->creator ne $requestor->id ) {
429                 ($owner, $evt) = $U->fetch_copy_onwer($note->owning_copy);
430                 return $evt if $evt;
431                 $evt = $U->check_perms($requestor->id, $owner, 'DELETE_COPY_NOTE');
432                 return $evt if $evt;
433         }
434
435         my $stat = $U->storagereq(
436                 'open-ils.storage.direct.asset.copy_note.delete', $noteid );
437         return $U->DB_UPDATE_FAILED($noteid) unless $stat;
438
439         $logger->activity("User ".$requestor->id." deleted copy note $noteid");
440         return 1;
441 }
442
443
444 __PACKAGE__->register_method(
445         method          => 'note_batch',
446         api_name                => 'open-ils.circ.biblio_notes.public.batch.retrieve',
447         signature       => q/
448                 Returns a set of notes for a given set of titles, volumes, and copies.
449                 @param titleid The id of the title who's notes are retrieving
450                 @return A list like so:
451                         {
452                                 "titles"                : [ { id : $id, notes : [ n1, n2 ] },... ]
453                                 "volumes"       : [ { id : $id, notes : [ n1, n2 ] },... ]
454                                 "copies"                : [ { id : $id, notes : [ n1, n2 ] },... ]
455                         }
456         /
457 );
458
459 sub note_batch {
460         my( $self, $conn, $titleid ) = @_;
461
462         my @copies;
463         my $cns = $U->storagereq(
464                 'open-ils.storage.id_list.asset.call_number.search_where.atomic', 
465                 { record => $titleid, deleted => 'f' } );
466                 #'open-ils.storage.id_list.asset.call_number.search.record.atomic', $titleid );
467
468         for my $c (@$cns) {
469                 my $copyids = $U->storagereq(
470                         #'open-ils.storage.id_list.asset.copy.search.call_number.atomic', $c);
471                         'open-ils.storage.id_list.asset.copy.search_where.atomic', { call_number => $c, deleted => 'f' });
472                 push(@copies, @$copyids);
473         }
474
475         return _note_batch( { titles => [$titleid], volumes => $cns, copies => \@copies} );
476 }
477
478
479 sub _note_batch {
480         my $args = shift;
481
482         my %resp;
483         $resp{titles}   = [];
484         $resp{volumes} = [];
485         $resp{copies}   = [];
486
487         my $titles      = (ref($$args{titles})) ? $$args{titles} : [];
488         my $volumes = (ref($$args{volumes})) ? $$args{volumes} : [];
489         my $copies      = (ref($$args{copies})) ? $$args{copies} : [];
490
491         for my $title (@$titles) {
492                 my $notes = $U->storagereq(
493                         'open-ils.storage.direct.biblio.record_note.search_where.atomic', 
494                         { record => $title, pub => 't' });
495                 push(@{$resp{titles}}, {id => $title, notes => $notes}) if @$notes;
496         }
497
498         for my $volume (@$volumes) {
499                 my $notes = $U->storagereq(
500                         'open-ils.storage.direct.asset.call_number_note.search_where.atomic',
501                         { call_number => $volume, pub => 't' });
502                 push( @{$resp{volumes}}, {id => $volume, notes => $notes} ) if @$notes;
503         }
504
505
506         for my $copy (@$copies) {
507                 $logger->debug("Fetching copy notes for copy $copy");
508                 my $notes = $U->storagereq(
509                         'open-ils.storage.direct.asset.copy_note.search_where.atomic',
510                         { owning_copy => $copy, pub => 't' });
511                 push( @{$resp{copies}}, { id => $copy, notes => $notes }) if @$notes;
512         }
513
514         return \%resp;
515 }
516
517
518
519
520
521
522
523 1;