]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Circ/Circulate.pm
711c5e7ffb4d9a4635fe2820409e8ad6aaea9606
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Circ / Circulate.pm
1 package OpenILS::Application::Circ::Circulate;
2 use base 'OpenSRF::Application';
3 use strict; use warnings;
4 use OpenSRF::EX qw(:try);
5 use Data::Dumper;
6 use OpenSRF::Utils;
7 use OpenSRF::Utils::Cache;
8 use Digest::MD5 qw(md5_hex);
9 use OpenILS::Utils::ScriptRunner;
10 use OpenILS::Application::AppUtils;
11 use OpenILS::Application::Circ::Holds;
12 use OpenILS::Application::Circ::Transit;
13 use OpenILS::Utils::PermitHold;
14 use OpenSRF::Utils::Logger qw(:logger);
15
16 $Data::Dumper::Indent = 0;
17 my $apputils    = "OpenILS::Application::AppUtils";
18 my $U                           = $apputils;
19 my $holdcode    = "OpenILS::Application::Circ::Holds";
20 my $transcode   = "OpenILS::Application::Circ::Transit";
21
22 my %scripts;                    # - circulation script filenames
23 my $script_libs;                # - any additional script libraries
24 my %cache;                              # - db objects cache
25 my %contexts;                   # - Script runner contexts
26 my $cache_handle;               # - memcache handle
27
28 sub PRECAT_FINE_LEVEL { return 2; }
29 sub PRECAT_LOAN_DURATION { return 2; }
30
31
32 # for security, this is a process-defined and not
33 # a client-defined variable
34 my $__isrenewal = 0;
35 my $__islost            = 0;
36
37 # ------------------------------------------------------------------------------
38 # Load the circ script from the config
39 # ------------------------------------------------------------------------------
40 sub initialize {
41
42         my $self = shift;
43         $cache_handle = OpenSRF::Utils::Cache->new('global');
44         my $conf = OpenSRF::Utils::SettingsClient->new;
45         my @pfx2 = ( "apps", "open-ils.circ","app_settings" );
46         my @pfx = ( @pfx2, "scripts" );
47
48         my $p           = $conf->config_value(  @pfx, 'circ_permit_patron' );
49         my $c           = $conf->config_value(  @pfx, 'circ_permit_copy' );
50         my $d           = $conf->config_value(  @pfx, 'circ_duration' );
51         my $f           = $conf->config_value(  @pfx, 'circ_recurring_fines' );
52         my $m           = $conf->config_value(  @pfx, 'circ_max_fines' );
53         my $pr  = $conf->config_value(  @pfx, 'circ_permit_renew' );
54         my $lb  = $conf->config_value(  @pfx2, 'script_path' );
55
56         $logger->error( "Missing circ script(s)" ) 
57                 unless( $p and $c and $d and $f and $m and $pr );
58
59         $scripts{circ_permit_patron}    = $p;
60         $scripts{circ_permit_copy}              = $c;
61         $scripts{circ_duration}                 = $d;
62         $scripts{circ_recurring_fines}= $f;
63         $scripts{circ_max_fines}                = $m;
64         $scripts{circ_permit_renew}     = $pr;
65
66         $lb = [ $lb ] unless ref($lb);
67         $script_libs = $lb;
68
69         $logger->debug("Loaded rules scripts for circ: " .
70                 "circ permit patron: $p, circ permit copy: $c, ".
71                 "circ duration :$d , circ recurring fines : $f, " .
72                 "circ max fines : $m, circ renew permit : $pr");
73 }
74
75
76 # ------------------------------------------------------------------------------
77 # Loads the necessary circ objects and pushes them into the script environment
78 # Returns ( $data, $evt ).  if $evt is defined, then an
79 # unexpedted event occurred and should be dealt with / returned to the caller
80 # ------------------------------------------------------------------------------
81 sub create_circ_ctx {
82         my %params = @_;
83         $U->logmark;
84
85         my $evt;
86         my $ctx = \%params;
87
88         $evt = _ctx_add_patron_objects($ctx, %params);
89         return (undef,$evt) if $evt;
90
91         if(!$params{noncat}) {
92                 if( $evt = _ctx_add_copy_objects($ctx, %params) ) {
93                         $ctx->{precat} = 1 if($evt->{textcode} eq 'COPY_NOT_FOUND')
94                 } else {
95                         $ctx->{precat} = 1 if ( $ctx->{copy}->call_number == -1 ); # special case copy
96                 }
97         }
98
99         _doctor_patron_object($ctx) if $ctx->{patron};
100         _doctor_copy_object($ctx) if $ctx->{copy};
101
102         if(!$ctx->{no_runner}) {
103                 _build_circ_script_runner($ctx);
104                 _add_script_runner_methods($ctx);
105         }
106
107         return $ctx;
108 }
109
110 sub _ctx_add_patron_objects {
111         my( $ctx, %params) = @_;
112         $U->logmark;
113
114         if(!defined($cache{patron_standings})) {
115                 $cache{patron_standings} = $U->fetch_patron_standings();
116                 $cache{group_tree} = $U->fetch_permission_group_tree();
117         }
118
119         $ctx->{patron_standings} = $cache{patron_standings};
120         $ctx->{group_tree} = $cache{group_tree};
121
122         $ctx->{patron_circ_summary} = 
123                 $U->fetch_patron_circ_summary($ctx->{patron}->id) 
124                 if $params{fetch_patron_circsummary};
125
126         return undef;
127 }
128
129
130 sub _find_copy_by_attr {
131         my %params = @_;
132         $U->logmark;
133         my $evt;
134
135         my $copy = $params{copy} || undef;
136
137         if(!$copy) {
138
139                 ( $copy, $evt ) = 
140                         $U->fetch_copy($params{copyid}) if $params{copyid};
141                 return (undef,$evt) if $evt;
142
143                 if(!$copy) {
144                         ( $copy, $evt ) = 
145                                 $U->fetch_copy_by_barcode( $params{barcode} ) if $params{barcode};
146                         return (undef,$evt) if $evt;
147                 }
148         }
149         return ( $copy, $evt );
150 }
151
152 sub _ctx_add_copy_objects {
153         my($ctx, %params)  = @_;
154         $U->logmark;
155         my $evt;
156         my $copy;
157
158         $cache{copy_statuses} = $U->fetch_copy_statuses 
159                 if( $params{fetch_copy_statuses} and !defined($cache{copy_statuses}) );
160
161         $cache{copy_locations} = $U->fetch_copy_locations 
162                 if( $params{fetch_copy_locations} and !defined($cache{copy_locations}));
163
164         $ctx->{copy_statuses} = $cache{copy_statuses};
165         $ctx->{copy_locations} = $cache{copy_locations};
166
167         ($copy, $evt) = _find_copy_by_attr(%params);
168         return $evt if $evt;
169
170         if( $copy and !$ctx->{title} ) {
171                 $logger->debug("Copy status: " . $copy->status);
172                 ( $ctx->{title}, $evt ) = $U->fetch_record_by_copy( $copy->id );
173                 return $evt if $evt;
174                 $ctx->{copy} = $copy;
175         }
176
177         return undef;
178 }
179
180
181 # ------------------------------------------------------------------------------
182 # Fleshes parts of the patron object
183 # ------------------------------------------------------------------------------
184 sub _doctor_copy_object {
185         my $ctx = shift;
186         $U->logmark;
187         my $copy = $ctx->{copy} || return undef;
188
189         $logger->debug("Doctoring copy object...");
190
191         # set the copy status to a status name
192         $copy->status( _get_copy_status( $copy, $ctx->{copy_statuses} ) );
193
194         # set the copy location to the location object
195         $copy->location( _get_copy_location( $copy, $ctx->{copy_locations} ) );
196
197         $copy->circ_lib( $U->fetch_org_unit($copy->circ_lib) );
198 }
199
200
201 # ------------------------------------------------------------------------------
202 # Fleshes parts of the patron object
203 # ------------------------------------------------------------------------------
204 sub _doctor_patron_object {
205         my $ctx = shift;
206         $U->logmark;
207         my $patron = $ctx->{patron} || return undef;
208
209         # push the standing object into the patron
210         if(ref($ctx->{patron_standings})) {
211                 for my $s (@{$ctx->{patron_standings}}) {
212                         if( $s->id eq $ctx->{patron}->standing ) {
213                                 $patron->standing($s);
214                                 $logger->debug("Set patron standing to ". $s->value);
215                         }
216                 }
217         }
218
219         # set the patron ptofile to the profile name
220         $patron->profile( _get_patron_profile( 
221                 $patron, $ctx->{group_tree} ) ) if $ctx->{group_tree};
222
223         # flesh the org unit
224         $patron->home_ou( 
225                 $U->fetch_org_unit( $patron->home_ou ) ) if $patron;
226
227 }
228
229 # recurse and find the patron profile name from the tree
230 # another option would be to grab the groups for the patron
231 # and cycle through those until the "profile" group has been found
232 sub _get_patron_profile { 
233         my( $patron, $group_tree ) = @_;
234         return $group_tree if ($group_tree->id eq $patron->profile);
235         return undef unless ($group_tree->children);
236
237         for my $child (@{$group_tree->children}) {
238                 my $ret = _get_patron_profile( $patron, $child );
239                 return $ret if $ret;
240         }
241         return undef;
242 }
243
244 sub _get_copy_status {
245         my( $copy, $cstatus ) = @_;
246         $U->logmark;
247         my $s = undef;
248         for my $status (@$cstatus) {
249                 $s = $status if( $status->id eq $copy->status ) 
250         }
251         $logger->debug("Retrieving copy status: " . $s->name) if $s;
252         return $s;
253 }
254
255 sub _get_copy_location {
256         my( $copy, $locations ) = @_;
257         $U->logmark;
258         my $l = undef;
259         for my $loc (@$locations) {
260                 $l = $loc if $loc->id eq $copy->location;
261         }
262         $logger->debug("Retrieving copy location: " . $l->name ) if $l;
263         return $l;
264 }
265
266
267 # ------------------------------------------------------------------------------
268 # Constructs and shoves data into the script environment
269 # ------------------------------------------------------------------------------
270 sub _build_circ_script_runner {
271         my $ctx = shift;
272         $U->logmark;
273
274         $logger->debug("Loading script environment for circulation");
275
276         my $runner;
277         if( $runner = $contexts{$ctx->{type}} ) {
278                 $runner->refresh_context;
279         } else {
280                 $runner = OpenILS::Utils::ScriptRunner->new;
281                 $contexts{type} = $runner;
282         }
283
284         for(@$script_libs) {
285                 $logger->debug("Loading circ script lib path $_");
286                 $runner->add_path( $_ );
287         }
288
289         # Note: inserting the number 0 into the script turns into the
290         # string "0", and thus evaluates to true in JS land
291         # inserting undef will insert "", which evaluates to false
292
293         $runner->insert( 'environment.patron',  $ctx->{patron}, 1);
294         $runner->insert( 'environment.title',   $ctx->{title}, 1);
295         $runner->insert( 'environment.copy',    $ctx->{copy}, 1);
296
297         # circ script result
298         $runner->insert( 'result', {} );
299         $runner->insert( 'result.event', 'SUCCESS' );
300
301         if($__isrenewal) {
302                 $runner->insert('environment.isRenewal', 1);
303         } else {
304                 $runner->insert('environment.isRenewal', undef);
305         }
306
307         if($ctx->{ishold} ) { 
308                 $runner->insert('environment.isHold', 1); 
309         } else{ 
310                 $runner->insert('environment.isHold', undef) 
311         }
312
313         if( $ctx->{noncat} ) {
314                 $runner->insert('environment.isNonCat', 1);
315                 $runner->insert('environment.nonCatType', $ctx->{noncat_type});
316         } else {
317                 $runner->insert('environment.isNonCat', undef);
318         }
319
320         if(ref($ctx->{patron_circ_summary})) {
321                 $runner->insert( 'environment.patronItemsOut', $ctx->{patron_circ_summary}->[0], 1 );
322                 $runner->insert( 'environment.patronFines', $ctx->{patron_circ_summary}->[1], 1 );
323         }
324
325         $ctx->{runner} = $runner;
326         return $runner;
327 }
328
329
330 sub _add_script_runner_methods {
331         my $ctx = shift;
332         $U->logmark;
333         my $runner = $ctx->{runner};
334
335         if( $ctx->{copy} ) {
336                 
337                 # allows a script to fetch a hold that is currently targeting the
338                 # copy in question
339                 $runner->insert_method( 'environment.copy', '__OILS_FUNC_fetch_hold', sub {
340                                 my $key = shift;
341                                 my $hold = $holdcode->fetch_related_holds($ctx->{copy}->id);
342                                 $hold = undef unless $hold;
343                                 $runner->insert( $key, $hold, 1 );
344                         }
345                 );
346         }
347 }
348
349 # ------------------------------------------------------------------------------
350
351 __PACKAGE__->register_method(
352         method  => "permit_circ",
353         api_name        => "open-ils.circ.checkout.permit",
354         notes           => q/
355                 Determines if the given checkout can occur
356                 @param authtoken The login session key
357                 @param params A trailing hash of named params including 
358                         barcode : The copy barcode, 
359                         patron : The patron the checkout is occurring for, 
360                         renew : true or false - whether or not this is a renewal
361                 @return The event that occurred during the permit check.  
362         /);
363
364 sub permit_circ {
365         my( $self, $client, $authtoken, $params ) = @_;
366         $U->logmark;
367
368         my ( $requestor, $patron, $ctx, $evt, $circ );
369
370         # check permisson of the requestor
371         ( $requestor, $patron, $evt ) = 
372                 $U->checkses_requestor( 
373                 $authtoken, $params->{patron}, 'VIEW_PERMIT_CHECKOUT' );
374         return $evt if $evt;
375
376         # fetch and build the circulation environment
377         if( !( $ctx = $params->{_ctx}) ) {
378
379                 ( $ctx, $evt ) = create_circ_ctx( %$params, 
380                         patron                                                  => $patron, 
381                         requestor                                               => $requestor, 
382                         type                                                            => 'circ',
383                         fetch_patron_circ_summary       => 1,
384                         fetch_copy_statuses                     => 1, 
385                         fetch_copy_locations                    => 1, 
386                         );
387                 return $evt if $evt;
388         }
389
390         if( !$ctx->{ishold} and !$__isrenewal and $ctx->{copy} ) {
391                 ($circ, $evt) = $U->fetch_open_circulation($ctx->{copy}->id);
392                 return OpenILS::Event->new('OPEN_CIRCULATION_EXISTS') if $circ;
393         }
394
395         return _run_permit_scripts($ctx);
396 }
397
398
399 __PACKAGE__->register_method(
400         method  => "check_title_hold",
401         api_name        => "open-ils.circ.title_hold.is_possible",
402         notes           => q/
403                 Determines if a hold were to be placed by a given user,
404                 whether or not said hold would have any potential copies
405                 to fulfill it.
406                 @param authtoken The login session key
407                 @param params A hash of named params including:
408                         patronid  - the id of the hold recipient
409                         titleid (brn) - the id of the title to be held
410                         depth   - the hold range depth (defaults to 0)
411         /);
412
413 sub check_title_hold {
414         my( $self, $client, $authtoken, $params ) = @_;
415         my %params = %$params;
416         my $titleid = $params{titleid};
417
418         my ( $requestor, $patron, $evt ) = $U->checkses_requestor( 
419                 $authtoken, $params{patronid}, 'VIEW_HOLD_PERMIT' );
420         return $evt if $evt;
421
422         my $rangelib    = $patron->home_ou;
423         my $depth               = $params{depth} || 0;
424
425         $logger->debug("Fetching ranged title tree for title $titleid, org $rangelib, depth $depth");
426
427
428         my $org = $U->simplereq(
429                 'open-ils.actor', 
430                 'open-ils.actor.org_unit.retrieve', 
431                 $authtoken, $requestor->home_ou );
432
433         my $limit       = 10;
434         my $offset      = 0;
435         my $title;
436
437         while( $title = $U->storagereq(
438                                 'open-ils.storage.biblio.record_entry.ranged_tree', 
439                                 $titleid, $rangelib, $depth, $limit, $offset ) ) {
440
441                 last unless ref($title);
442
443                 for my $cn (@{$title->call_numbers}) {
444         
445                         $logger->debug("Checking callnumber ".$cn->id." for hold fulfillment possibility");
446         
447                         for my $copy (@{$cn->copies}) {
448         
449                                 $logger->debug("Checking copy ".$copy->id." for hold fulfillment possibility");
450         
451                                 return 1 if OpenILS::Utils::PermitHold::permit_copy_hold(
452                                         {       patron                          => $patron, 
453                                                 requestor                       => $requestor, 
454                                                 copy                                    => $copy,
455                                                 title                                   => $title, 
456                                                 title_descriptor        => $title->fixed_fields, # this is fleshed into the title object
457                                                 request_lib                     => $org } );
458         
459                                 $logger->debug("Copy ".$copy->id." for hold fulfillment possibility failed...");
460                         }
461                 }
462
463                 $offset += $limit;
464         }
465
466         return 0;
467 }
468
469
470
471 # Runs the patron and copy permit scripts
472 # if this is a non-cat circulation, the copy permit script 
473 # is not run
474 sub _run_permit_scripts {
475         my $ctx                 = shift;
476         my $runner              = $ctx->{runner};
477         my $patronid    = $ctx->{patron}->id;
478         my $barcode             = ($ctx->{copy}) ? $ctx->{copy}->barcode : undef;
479         $U->logmark;
480
481         $runner->load($scripts{circ_permit_patron});
482         $runner->run or throw OpenSRF::EX::ERROR ("Circ Permit Patron Script Died: $@");
483         my $evtname = $runner->retrieve('result.event');
484         $logger->activity("circ_permit_patron for user $patronid returned event: $evtname");
485
486         return OpenILS::Event->new($evtname) if $evtname ne 'SUCCESS';
487
488         my $key = _cache_permit_key();
489
490         if( $ctx->{noncat} ) {
491                 $logger->debug("Exiting circ permit early because item is a non-cataloged item");
492                 return OpenILS::Event->new('SUCCESS', payload => $key);
493         }
494
495         if($ctx->{precat}) {
496                 $logger->debug("Exiting circ permit early because copy is pre-cataloged");
497                 return OpenILS::Event->new('ITEM_NOT_CATALOGED', payload => $key);
498         }
499
500         if($ctx->{ishold}) {
501                 $logger->debug("Exiting circ permit early because request is for hold patron permit");
502                 return OpenILS::Event->new('SUCCESS');
503         }
504
505         $runner->load($scripts{circ_permit_copy});
506         $runner->run or throw OpenSRF::EX::ERROR ("Circ Permit Copy Script Died: $@");
507         $evtname = $runner->retrieve('result.event');
508         $logger->activity("circ_permit_copy for user $patronid ".
509                 "and copy $barcode returned event: $evtname");
510
511         return OpenILS::Event->new($evtname, payload => $key) if( $evtname eq 'SUCCESS' );
512         return OpenILS::Event->new($evtname);
513 }
514
515 # takes copyid, patronid, and requestor id
516 sub _cache_permit_key {
517         my $key = md5_hex( time() . rand() . "$$" );
518         $logger->debug("Setting circ permit key to $key");
519         $cache_handle->put_cache( "oils_permit_key_$key", 1, 300 );
520         return $key;
521 }
522
523 sub _check_permit_key {
524         my $key = shift;
525         $logger->debug("Fetching circ permit key $key");
526         my $k = "oils_permit_key_$key";
527         my $one = $cache_handle->get_cache($k);
528         $cache_handle->delete_cache($k);
529         return ($one) ? 1 : 0;
530 }
531
532
533 # ------------------------------------------------------------------------------
534
535 __PACKAGE__->register_method(
536         method  => "checkout",
537         api_name        => "open-ils.circ.checkout",
538         notes => q/
539                 Checks out an item
540                 @param authtoken The login session key
541                 @param params A named hash of params including:
542                         copy                    The copy object
543                         barcode         If no copy is provided, the copy is retrieved via barcode
544                         copyid          If no copy or barcode is provide, the copy id will be use
545                         patron          The patron's id
546                         noncat          True if this is a circulation for a non-cataloted item
547                         noncat_type     The non-cataloged type id
548                         noncat_circ_lib The location for the noncat circ.  
549                         precat          The item has yet to be cataloged
550                         dummy_title The temporary title of the pre-cataloded item
551                         dummy_author The temporary authr of the pre-cataloded item
552                                 Default is the home org of the staff member
553                 @return The SUCCESS event on success, any other event depending on the error
554         /);
555
556 sub checkout {
557         my( $self, $client, $authtoken, $params ) = @_;
558         $U->logmark;
559
560         my ( $requestor, $patron, $ctx, $evt, $circ, $copy );
561         my $key = $params->{permit_key};
562
563         # if this is a renewal, then the requestor does not have to
564         # have checkout privelages
565         ( $requestor, $evt ) = $U->checkses($authtoken) if $__isrenewal;
566         ( $requestor, $evt ) = $U->checksesperm( $authtoken, 'COPY_CHECKOUT' ) unless $__isrenewal;
567
568         $logger->debug("REQUESTOR event: " . ref($requestor));
569
570         return $evt if $evt;
571         ( $patron, $evt ) = $U->fetch_user($params->{patron});
572         return $evt if $evt;
573
574
575         # set the circ lib to the home org of the requestor if not specified
576         my $circlib = (defined($params->{circ_lib})) ? 
577                 $params->{circ_lib} : $requestor->home_ou;
578
579         # if this is a non-cataloged item, check it out and return
580         return _checkout_noncat( 
581                 $key, $requestor, $patron, %$params ) if $params->{noncat};
582
583         # if this item has yet to be cataloged, make sure a dummy copy exists
584         ( $params->{copy}, $evt ) = _make_precat_copy(
585                 $requestor, $circlib, $params ) if $params->{precat};
586         return $evt if $evt;
587
588         # fetch and build the circulation environment
589         if( !( $ctx = $params->{_ctx}) ) {
590                 ( $ctx, $evt ) = create_circ_ctx( %$params, 
591                         patron                                                  => $patron, 
592                         requestor                                               => $requestor, 
593                         session                                                 => $U->start_db_session(),
594                         type                                                            => 'circ',
595                         fetch_patron_circ_summary       => 1,
596                         fetch_copy_statuses                     => 1, 
597                         fetch_copy_locations                    => 1, 
598                         );
599                 return $evt if $evt;
600         }
601         $ctx->{session} = $U->start_db_session() unless $ctx->{session};
602
603         my $cid = ($params->{precat}) ? -1 : $ctx->{copy}->id;
604         return OpenILS::Event->new('CIRC_PERMIT_BAD_KEY') 
605                 unless _check_permit_key($key);
606
607         $ctx->{circ_lib} = $circlib;
608
609         $evt = _run_checkout_scripts($ctx);
610         return $evt if $evt;
611
612         _build_checkout_circ_object($ctx);
613
614         $evt = _commit_checkout_circ_object($ctx);
615         return $evt if $evt;
616
617         $evt = _update_checkout_copy($ctx);
618         return $evt if $evt;
619
620         my $holds;
621         ($holds, $evt) = _handle_related_holds($ctx);
622         return $evt if $evt;
623
624
625         $logger->debug("Checkin committing objects with session thread trace: ".$ctx->{session}->session_id);
626         $U->commit_db_session($ctx->{session});
627         my $record = $U->record_to_mvr($ctx->{title}) unless $ctx->{precat};
628
629         return OpenILS::Event->new('SUCCESS', 
630                 payload => { 
631                         copy                                    => $U->unflesh_copy($ctx->{copy}),
632                         circ                                    => $ctx->{circ},
633                         record                          => $record,
634                         holds_fulfilled => $holds,
635                 } );
636 }
637
638
639 sub _make_precat_copy {
640         my ( $requestor, $circlib, $params ) =  @_;
641         $U->logmark;
642         my( $copy, undef ) = _find_copy_by_attr(%$params);
643
644         if($copy) {
645                 $logger->debug("Pre-cat copy already exists in checkout: ID=" . $copy->id);
646                 return ($copy, undef);
647         }
648
649         $logger->debug("Creating a new precataloged copy in checkout with barcode " . $params->{barcode});
650
651         my $evt = OpenILS::Event->new(
652                 'BAD_PARAMS', desc => "Dummy title or author not provided" ) 
653                 unless ( $params->{dummy_title} and $params->{dummy_author} );
654         return (undef, $evt) if $evt;
655
656         $copy = Fieldmapper::asset::copy->new;
657         $copy->circ_lib($circlib);
658         $copy->creator($requestor->id);
659         $copy->editor($requestor->id);
660         $copy->barcode($params->{barcode});
661         $copy->call_number(-1); #special CN for precat materials
662         $copy->loan_duration(&PRECAT_LOAN_DURATION);  # these two should come from constants
663         $copy->fine_level(&PRECAT_FINE_LEVEL);
664
665         $copy->dummy_title($params->{dummy_title});
666         $copy->dummy_author($params->{dummy_author});
667
668         my $id = $U->storagereq(
669                 'open-ils.storage.direct.asset.copy.create', $copy );
670         return (undef, $U->DB_UPDATE_FAILED($copy)) unless $copy;
671
672         $logger->debug("Pre-cataloged copy successfully created");
673         return $U->fetch_copy($id);
674 }
675
676
677 sub _run_checkout_scripts {
678         my $ctx = shift;
679         $U->logmark;
680         my $evt;
681         my $circ;
682
683         my $runner = $ctx->{runner};
684
685         $runner->insert('result.durationLevel');
686         $runner->insert('result.durationRule');
687         $runner->insert('result.recurringFinesRule');
688         $runner->insert('result.recurringFinesLevel');
689         $runner->insert('result.maxFine');
690
691         $runner->load($scripts{circ_duration});
692         $runner->run or throw OpenSRF::EX::ERROR ("Circ Duration Script Died: $@");
693         my $duration = $runner->retrieve('result.durationRule');
694         $logger->debug("Circ duration script yielded a duration rule of: $duration");
695
696         $runner->load($scripts{circ_recurring_fines});
697         $runner->run or throw OpenSRF::EX::ERROR ("Circ Recurring Fines Script Died: $@");
698         my $recurring = $runner->retrieve('result.recurringFinesRule');
699         $logger->debug("Circ recurring fines script yielded a rule of: $recurring");
700
701         $runner->load($scripts{circ_max_fines});
702         $runner->run or throw OpenSRF::EX::ERROR ("Circ Max Fine Script Died: $@");
703         my $max_fine = $runner->retrieve('result.maxFine');
704         $logger->debug("Circ max_fine fines script yielded a rule of: $max_fine");
705
706         ($duration, $evt) = $U->fetch_circ_duration_by_name($duration);
707         return $evt if $evt;
708         ($recurring, $evt) = $U->fetch_recurring_fine_by_name($recurring);
709         return $evt if $evt;
710         ($max_fine, $evt) = $U->fetch_max_fine_by_name($max_fine);
711         return $evt if $evt;
712
713         $ctx->{duration_level}                  = $runner->retrieve('result.durationLevel');
714         $ctx->{recurring_fines_level} = $runner->retrieve('result.recurringFinesLevel');
715         $ctx->{duration_rule}                   = $duration;
716         $ctx->{recurring_fines_rule}    = $recurring;
717         $ctx->{max_fine_rule}                   = $max_fine;
718
719         return undef;
720 }
721
722 sub _build_checkout_circ_object {
723         my $ctx = shift;
724         $U->logmark;
725
726         my $circ                        = new Fieldmapper::action::circulation;
727         my $duration    = $ctx->{duration_rule};
728         my $max                 = $ctx->{max_fine_rule};
729         my $recurring   = $ctx->{recurring_fines_rule};
730         my $copy                        = $ctx->{copy};
731         my $patron              = $ctx->{patron};
732         my $dur_level   = $ctx->{duration_level};
733         my $rec_level   = $ctx->{recurring_fines_level};
734
735         $circ->duration( $duration->shrt ) if ($dur_level == 1);
736         $circ->duration( $duration->normal ) if ($dur_level == 2);
737         $circ->duration( $duration->extended ) if ($dur_level == 3);
738
739         $circ->recuring_fine( $recurring->low ) if ($rec_level =~ /low/io);
740         $circ->recuring_fine( $recurring->normal ) if ($rec_level =~ /normal/io);
741         $circ->recuring_fine( $recurring->high ) if ($rec_level =~ /high/io);
742
743         $circ->duration_rule( $duration->name );
744         $circ->recuring_fine_rule( $recurring->name );
745         $circ->max_fine_rule( $max->name );
746         $circ->max_fine( $max->amount );
747
748         $circ->fine_interval($recurring->recurance_interval);
749         $circ->renewal_remaining( $duration->max_renewals );
750         $circ->target_copy( $copy->id );
751         $circ->usr( $patron->id );
752         $circ->circ_lib( $ctx->{circ_lib} );
753
754         if( $__isrenewal ) {
755                 $logger->debug("Circ is a renewal.  Setting renewal_remaining to " . $ctx->{renewal_remaining} );
756                 $circ->opac_renewal(1); 
757                 $circ->renewal_remaining($ctx->{renewal_remaining});
758                 $circ->circ_staff($ctx->{requestor}->id);
759         } 
760
761         # if a patron is renewing, 'requestor' will be the patron
762         $circ->circ_staff( $ctx->{requestor}->id ); 
763         _set_circ_due_date($circ);
764         $ctx->{circ} = $circ;
765 }
766
767 sub _create_due_date {
768         my $duration = shift;
769         $U->logmark;
770
771         my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = 
772                 gmtime(OpenSRF::Utils->interval_to_seconds($duration) + int(time()));
773
774         $year += 1900; $mon += 1;
775         my $due_date = sprintf(
776         '%s-%0.2d-%0.2dT%s:%0.2d:%0.s2-00',
777         $year, $mon, $mday, $hour, $min, $sec);
778         return $due_date;
779 }
780
781 sub _set_circ_due_date {
782         my $circ = shift;
783         $U->logmark;
784         my $dd = _create_due_date($circ->duration);
785         $logger->debug("Checkout setting due date on circ to: $dd");
786         $circ->due_date($dd);
787 }
788
789 # Sets the editor, edit_date, un-fleshes the copy, and updates the copy in the DB
790 sub _update_checkout_copy {
791         my $ctx = shift;
792         $U->logmark;
793         my $copy = $ctx->{copy};
794
795         my $s = $U->copy_status_from_name('checked out');
796         $copy->status( $s->id ) if $s;
797
798         my $evt = $U->update_copy( session => $ctx->{session}, 
799                 copy => $copy, editor => $ctx->{requestor}->id );
800         return (undef,$evt) if $evt;
801
802         return undef;
803 }
804
805 # commits the circ object to the db then fleshes the circ with rules objects
806 sub _commit_checkout_circ_object {
807
808         my $ctx = shift;
809         my $circ = $ctx->{circ};
810         $U->logmark;
811
812         $circ->clear_id;
813         my $r = $ctx->{session}->request(
814                 "open-ils.storage.direct.action.circulation.create", $circ )->gather(1);
815
816         return $U->DB_UPDATE_FAILED($circ) unless $r;
817
818         $logger->debug("Created a new circ object in checkout: $r");
819
820         $circ->id($r);
821         $circ->duration_rule($ctx->{duration_rule});
822         $circ->max_fine_rule($ctx->{max_fine_rule});
823         $circ->recuring_fine_rule($ctx->{recurring_fines_rule});
824
825         return undef;
826 }
827
828
829 # sees if there are any holds that this copy 
830 sub _handle_related_holds {
831
832         my $ctx         = shift;
833         my $copy                = $ctx->{copy};
834         my $patron      = $ctx->{patron};
835         my $holds       = $holdcode->fetch_related_holds($copy->id);
836         $U->logmark;
837         my @fulfilled;
838
839         # XXX should we fulfill all the holds or just the first
840         if(ref($holds) && @$holds) {
841
842                 # for now, just sort by id to get what should be the oldest hold
843                 $holds = [ sort { $a->id <=> $b->id } @$holds ];
844                 $holds = [ grep { $_->usr eq $patron->id } @$holds ];
845
846                 if(@$holds) {
847                         my $hold = $holds->[0];
848
849                         $logger->debug("Related hold found in checkout: " . $hold->id );
850
851                         # if the hold was never officially captured, capture it.
852                         $hold->capture_time('now') unless $hold->capture_time;
853                         $hold->fulfillment_time('now');
854                         my $r = $ctx->{session}->request(
855                                 "open-ils.storage.direct.action.hold_request.update", $hold )->gather(1);
856                         return (undef,$U->DB_UPDATE_FAILED( $hold )) unless $r;
857                         push( @fulfilled, $hold->id );
858                 }
859         }
860
861         return (\@fulfilled, undef);
862 }
863
864
865 sub _checkout_noncat {
866         my ( $key, $requestor, $patron, %params ) = @_;
867         my( $circ, $circlib, $evt );
868         $U->logmark;
869
870         $circlib = $params{noncat_circ_lib} || $requestor->home_ou;
871
872         return OpenILS::Event->new('CIRC_PERMIT_BAD_KEY') 
873                 unless _check_permit_key($key);
874
875         ( $circ, $evt ) = OpenILS::Application::Circ::NonCat::create_non_cat_circ(
876                         $requestor->id, $patron->id, $circlib, $params{noncat_type} );
877
878         return $evt if $evt;
879         return OpenILS::Event->new( 
880                 'SUCCESS', payload => { noncat_circ => $circ } );
881 }
882
883
884 __PACKAGE__->register_method(
885         method  => "generic_receive",
886         api_name        => "open-ils.circ.checkin__",
887 );
888
889 sub generic_receive {
890         my( $self, $connection, $authtoken, $params ) = @_;
891         my( $ctx, $requestor, $evt );
892
893         ( $requestor, $evt ) = $U->checkses($authtoken) if $__isrenewal;
894         ( $requestor, $evt ) = $U->checksesperm( 
895                 $authtoken, 'COPY_CHECKIN' ) unless $__isrenewal;
896         return $evt if $evt;
897
898         # ------------------------------------------------------------------------------
899         # load up the circ objects
900         if( !( $ctx = $params->{_ctx}) ) {
901                 ( $ctx, $evt ) = create_circ_ctx( %$params, 
902                         requestor                                               => $requestor, 
903                         session                                                 => $U->start_db_session(),
904                         type                                                            => 'circ',
905                         fetch_copy_statuses                     => 1, 
906                         fetch_copy_locations                    => 1, 
907                         no_runner                                               => 1,  
908                         );
909                 return $evt if $evt;
910         }
911         $ctx->{session} = $U->start_db_session() unless $ctx->{session};
912         $ctx->{authtoken} = $authtoken;
913         my $session = $ctx->{session};
914
915         my $copy = $ctx->{copy};
916         $U->unflesh_copy($copy);
917         $logger->debug("Checkin copy called by user ".$requestor->id." for copy ".$copy->id);
918         return OpenILS::Event->new('COPY_NOT_FOUND') unless $copy;
919         # ------------------------------------------------------------------------------
920
921         if(!$ctx->{force}) {
922                 return $evt if ($evt = _checkin_check_copy_status($copy));
923         }
924
925         my ($circ)              = $U->fetch_open_circulation($copy->id);
926         my ($transit)   = $U->fetch_open_transit_by_copy($copy->id);
927
928         if( $circ ) {
929                 
930                 # There is an open circ on this item so close out the circ
931                 $ctx->{circ} = $circ;
932                 $evt = _checkin_handle_circ($ctx);
933                 return $evt if $evt;
934
935         } elsif( $transit ) {
936
937                 # is this item currently in transit?
938                 $ctx->{transit} = $transit;
939                 $evt = $transcode->transit_receive( $copy, $requestor, $session );
940
941                 if( !$U->event_equals($evt, 'SUCCESS') ) {
942
943                         # either an error occurred or a ROUTE_ITEM was generated and the 
944                         # item must be forwarded on to its destination.
945                         $evt->{payload}->{copy} = $U->unflesh_copy($copy);
946                         return $evt;
947
948                 } else {
949
950                         if($evt->{ishold}) {
951
952                                 # copy was received as a hold transit.  Copy is at target lib
953                                 # and hold transit is complete.  We're done here...
954                                 $U->commit_db_session($session);
955                                 return _checkin_flesh_event($ctx, $evt);
956                         }
957                         $evt = undef;
958                 }
959         }
960
961         # If it's a renewal, we're not concerned with holds and transits.  
962         # We just want the item to be checked in.
963         if($__isrenewal) {
964                 $U->commit_db_session($session);
965                 return OpenILS::Event->new('SUCCESS');
966         }
967
968         # Now, let's see if this copy is needed for a hold
969         my ($hold) = $holdcode->find_local_hold( $session, $copy, $requestor ); 
970
971         if($hold) {
972
973                 $ctx->{hold} = $hold;
974                 
975                 # Capture the hold with this copy
976                 return $evt if ($evt = _checkin_capture_hold($ctx));
977
978                 if( $hold->pickup_lib == $requestor->home_ou ) {
979
980                         # This hold was captured in the correct location
981                         $evt = OpenILS::Event->new('SUCCESS');
982
983                 } else {
984
985                         # Hold needs to be picked up elsewhere.  Build a hold 
986                         # transit and route the item.
987                         return $evt if ($evt =_checkin_build_hold_transit($ctx));
988                         $evt = OpenILS::Event->new('ROUTE_ITEM', org => $hold->pickup_lib);
989                 }
990
991         } else { # not needed for a hold
992
993                 if( $copy->circ_lib == $requestor->home_ou ) {
994
995                         # Copy is in the right place.  Re-shelve the thing.
996                         $copy->status($U->copy_status_from_name('reshelving')->id );
997                         return $evt if ( $evt = $U->update_copy( 
998                                 copy => $copy, editor => $requestor->id, session => $session ));
999                         $evt = OpenILS::Event->new('SUCCESS');
1000                         $evt = OpenILS::Event->new('ITEM_NOT_CATALOGED') if $ctx->{precat};
1001
1002                 } else {
1003
1004                         # Copy wants to go home. Transit it there.
1005                         return $evt if ( $evt = _checkin_build_generic_copy_transit($ctx) );
1006                         $evt = OpenILS::Event->new('ROUTE_ITEM', org => $copy->circ_lib);
1007                 }
1008         }
1009
1010         $logger->info("Copy checkin finished with event: ".$evt->{textcode});
1011
1012         $U->commit_db_session($session);
1013         return _checkin_flesh_event($ctx, $evt);
1014 }
1015
1016
1017 sub _checkin_check_copy_status {
1018         my $copy = shift;
1019         my $stat = (ref($copy->status)) ? $copy->status->id : $copy->status;
1020         my $evt = OpenILS::Event->new('COPY_BAD_STATUS', payload => $copy );
1021         return $evt if ($stat == $U->copy_status_from_name('lost')->id);
1022         return $evt if ($stat == $U->copy_status_from_name('missing')->id);
1023
1024         # XXX Really do this?
1025         my ($circ)      = $U->fetch_open_circulation($copy->id);
1026         if($circ) {
1027                 $evt = OpenILS::Event->new('CIRC_BAD_STATUS', payload => $copy );
1028                 return $evt if ($circ->stop_fines =~ /longoverdue/);
1029                 return $evt if ($circ->stop_fines =~ /claimsreturned/);
1030         }
1031
1032         return undef;
1033 }
1034
1035 # Just gets the copy back home.  Returns undef on success, event on error
1036 sub _checkin_build_generic_copy_transit {
1037
1038         my $ctx                 = shift;
1039         my $requestor   = $ctx->{requestor};
1040         my $copy                        = $ctx->{copy};
1041         my $transit             = Fieldmapper::action::transit_copy->new;
1042         my $session             = $ctx->{session};
1043
1044         $logger->activity("User ". $requestor->id ." creating a ".
1045                 " new copy transit for copy ".$copy->id." to org ".$copy->circ_lib);
1046
1047         $transit->source($requestor->home_ou);
1048         $transit->dest($copy->circ_lib);
1049         $transit->target_copy($copy->id);
1050         $transit->source_send_time('now');
1051         $transit->copy_status($copy->status);
1052         
1053         $logger->debug("Creating new copy_transit in DB");
1054
1055         my $s = $session->request(
1056                 "open-ils.storage.direct.action.transit_copy.create", $transit )->gather(1);
1057         return $U->DB_UPDATE_FAILED($transit) unless $s;
1058
1059         $logger->info("Checkin copy successfully created new transit: $s");
1060
1061         $copy->status($U->copy_status_from_name('in transit')->id );
1062
1063         return $U->update_copy( copy => $copy, 
1064                         editor => $requestor->id, session => $session );
1065         
1066 }
1067
1068
1069 sub _checkin_build_hold_transit {
1070         my $ctx = shift;
1071
1072         my $copy = $ctx->{copy};
1073         my $hold = $ctx->{hold};
1074         my $trans = Fieldmapper::action::hold_transit_copy->new;
1075
1076         $trans->hold($hold->id);
1077         $trans->source($ctx->{requestor}->home_ou);
1078         $trans->dest($hold->pickup_lib);
1079         $trans->source_send_time("now");
1080         $trans->target_copy($copy->id);
1081         $trans->copy_status($copy->status);
1082
1083         my $id = $ctx->{session}->request(
1084                 "open-ils.storage.direct.action.hold_transit_copy.create", $trans )->gather(1);
1085         return $U->DB_UPDATE_FAILED($trans) unless $id;
1086
1087         $logger->info("Checkin copy successfully created hold transit: $id");
1088
1089         $copy->status($U->copy_status_from_name('in transit')->id );
1090         return $U->update_copy( copy => $copy, 
1091                         editor => $ctx->{requestor}->id, session => $ctx->{session} );
1092 }
1093
1094 # Returns event on error, undef on success
1095 sub _checkin_capture_hold {
1096         my $ctx = shift;
1097         my $copy = $ctx->{copy};
1098         my $hold = $ctx->{hold}; 
1099
1100         $logger->debug("Checkin copy capturing hold ".$hold->id);
1101
1102         $hold->current_copy($copy->id);
1103         $hold->capture_time('now'); 
1104
1105         my $stat = $ctx->{session}->request(
1106                 "open-ils.storage.direct.action.hold_request.update", $hold)->gather(1);
1107         return $U->DB_UPDATE_FAILED($hold) unless $stat;
1108
1109         $copy->status( $U->copy_status_from_name('on holds shelf')->id );
1110
1111         return $U->update_copy( copy => $copy, 
1112                         editor => $ctx->{requestor}->id, session => $ctx->{session} );
1113 }
1114
1115 sub _checkin_flesh_event {
1116         my $ctx = shift;
1117         my $evt = shift;
1118
1119         my $payload                             = {};
1120         $payload->{copy}                = $U->unflesh_copy($ctx->{copy});
1121         $payload->{record}      = $U->record_to_mvr($ctx->{title}) if($ctx->{title} and !$ctx->{precat});
1122         $payload->{circ}                = $ctx->{circ} if $ctx->{circ};
1123         $payload->{transit}     = $ctx->{transit} if $ctx->{transit};
1124
1125         $evt->{payload} = $payload;
1126         return $evt;
1127 }
1128
1129
1130 # ------------------------------------------------------------------------------
1131
1132 __PACKAGE__->register_method(
1133         method  => "checkin",
1134         api_name        => "open-ils.circ.checkin",
1135         notes           => <<"  NOTES");
1136         PARAMS( authtoken, barcode => bc )
1137         Checks in based on barcode
1138         Returns an event object whose payload contains the record, circ, and copy
1139         If the item needs to be routed, the event is a ROUTE_ITEM event
1140         with an additional 'route_to' variable set on the event
1141         NOTES
1142
1143 sub checkin {
1144         my( $self, $client, $authtoken, $params ) = @_;
1145         $U->logmark;
1146
1147         my( $ctx, $requestor, $evt, $circ, $copy, $payload, $transit );
1148
1149         ( $requestor, $evt ) = $U->checkses($authtoken) if $__isrenewal;
1150         ( $requestor, $evt ) = $U->checksesperm( 
1151                 $authtoken, 'COPY_CHECKIN' ) unless $__isrenewal;
1152         return $evt if $evt;
1153
1154         if( !( $ctx = $params->{_ctx}) ) {
1155                 ( $ctx, $evt ) = create_circ_ctx( %$params, 
1156                         requestor                                               => $requestor, 
1157                         session                                                 => $U->start_db_session(),
1158                         type                                                            => 'circ',
1159                         #fetch_patron_circ_summary      => 1,
1160                         fetch_copy_statuses                     => 1, 
1161                         fetch_copy_locations                    => 1, 
1162                         no_runner                                               => 1, 
1163                         );
1164                 return $evt if $evt;
1165         }
1166         $ctx->{session} = $U->start_db_session() unless $ctx->{session};
1167         $ctx->{authtoken} = $authtoken;
1168
1169         $copy = $ctx->{copy};
1170         return OpenILS::Event->new('COPY_NOT_FOUND') unless $copy;
1171
1172         $payload = { copy => $copy };
1173         $payload->{record} = 
1174                 $U->record_to_mvr($ctx->{title}) 
1175                         if($ctx->{title} and !$ctx->{precat});
1176
1177 #       if( $copy->status == 
1178 #               $U->copy_status_from_name($cache{copy_statuses}, 'lost')->id) {
1179 #               $__islost = 1;
1180 #       } else { $__islost = 0; }
1181
1182         my $status = $U->copy_status_from_name('in transit');
1183         if( $copy->status == $status->id ) {
1184
1185                 # if this copy is in transit, send it to transit_receive.  
1186                 $evt = $transcode->transit_receive( $copy, $requestor, $ctx->{session} );
1187                 if( !$U->event_equals($evt, 'SUCCESS')) {
1188                         $evt->{payload}->{copy} = $U->unflesh_copy($copy);
1189                         return $evt;
1190                 }
1191                 $evt = undef;
1192         } 
1193
1194         # set the status to available for now for ease of debugging
1195         $copy->status( $U->copy_status_from_name('available')->id );
1196
1197         # set the status to reshelving XXX needs to fall back to 
1198         # 'available' after a configurable amount of time
1199         #$copy->status( $U->copy_status_from_name('reshelving')->id );
1200
1201         # grab the open circ attached to this copy
1202         ( $circ, $evt ) = $U->fetch_open_circulation($copy->id);
1203         if($evt) { 
1204                 $evt->{payload} = $payload; 
1205                 $evt->{payload}->{copy} = $U->unflesh_copy($copy);
1206                 return $evt; 
1207         }
1208
1209         $ctx->{circ} = $circ;
1210         $payload->{circ} = $circ;
1211
1212         # update the circ and copy in the db
1213         return $evt if($evt = _update_checkin_circ_and_copy($ctx));
1214
1215         # ------------------------------------------------------------------------------
1216         # If we get to this point, then the checkin will succeed.  We just need to
1217         # see if there is any other processing required on this copy
1218         # ------------------------------------------------------------------------------
1219
1220         if(!$__isrenewal) {
1221                 if( !($evt = _check_checkin_holds($ctx)) ) {
1222                         # if no hold is found for the copy, see if it needs to be transited
1223                         ($evt, $transit) = $self->check_copy_transit($ctx); 
1224                         return $evt if ($evt and !$transit);
1225                         $payload->{transit} = $transit if $transit;
1226                 }
1227         }
1228         
1229         $logger->debug("Checkin succeeded.  Committing objects...");
1230         $U->commit_db_session($ctx->{session});
1231
1232         # if the item is not cataloged and no superceding
1233         # events exist, return the proper event
1234         if ( $copy->call_number == -1 and !$evt ) {
1235                 $evt = OpenILS::Event->new('ITEM_NOT_CATALOGED') }
1236
1237         $evt = OpenILS::Event->new('SUCCESS') if (!$evt or $__isrenewal);
1238         $evt->{payload} = $payload;
1239
1240         $logger->info("Checkin of copy ".$copy->id." returned event: ".$evt->{textcode});
1241
1242         $evt->{payload}->{copy} = $U->unflesh_copy($copy);
1243
1244         return $evt;
1245 }
1246
1247 # returns (undef) if no transit is needed
1248 # returns (ROUTE_ITEM, $transit) on succsessful transit creation
1249 # return (other event) on failure
1250 sub check_copy_transit {
1251         my( $self,  $ctx ) = @_;
1252         my $copy = $ctx->{copy};
1253
1254         return (undef) if( $copy->circ_lib == $ctx->{requestor}->home_ou );
1255
1256         my ($evt) = $self->method_lookup(
1257                 'open-ils.circ.copy_transit.create')->run(
1258                         $ctx->{authtoken}, 
1259                         { session => $ctx->{session}, copyid => $copy->id } );
1260
1261         return ($evt, undef) unless $U->event_equals($evt,'SUCCESS');
1262
1263         my $transit = $evt->{payload}->{transit};
1264         $evt = OpenILS::Event->new('ROUTE_ITEM', org => $copy->circ_lib );
1265         return ($evt, $transit);
1266 }
1267
1268 sub _check_checkin_holds {
1269
1270         my $ctx                 = shift;
1271         my $session             = $ctx->{session};
1272         my $requestor   = $ctx->{requestor};
1273         my $copy                        = $ctx->{copy};
1274
1275         $logger->debug("Searching for a local hold on a copy: " . $session->session_id);
1276
1277         my ( $hold, $evt ) = 
1278                 $holdcode->find_local_hold( $session, $copy, $requestor );
1279
1280         if($hold) {
1281                 $evt = OpenILS::Event->new(
1282                         'COPY_NEEDED_FOR_HOLD', org => $hold->pickup_lib);
1283         }
1284 }
1285
1286
1287 sub _checkin_handle_circ { return _update_checkin_circ_and_copy(@_); }
1288
1289 sub _update_checkin_circ_and_copy {
1290         my $ctx = shift;
1291         $U->logmark;
1292
1293         $logger->info("Handling circulation found in checkin...");
1294
1295         my $circ = $ctx->{circ};
1296         my $copy = $ctx->{copy};
1297         my $requestor = $ctx->{requestor};
1298         my $session = $ctx->{session};
1299
1300         my ( $obt, $evt ) = $U->fetch_open_billable_transaction($circ->id);
1301         return $evt if $evt;
1302
1303         $circ->stop_fines('CHECKIN');
1304         $circ->stop_fines('RENEW') if $__isrenewal;
1305         $circ->stop_fines('LOST') if($__islost);
1306         $circ->xact_finish('now') if($obt->balance_owed <= 0 and !$__islost);
1307         $circ->stop_fines_time('now');
1308         $circ->checkin_time('now');
1309         $circ->checkin_staff($requestor->id);
1310
1311         # if the requestor set a backdate, void all the bills after 
1312         # the backdate time
1313         if(my $backdate = $ctx->{backdate}) {
1314
1315                 $logger->activity("User ".$requestor->id.
1316                         " backdating checkin copy [".$ctx->{barcode}."] to date: $backdate");
1317
1318                 $circ->xact_finish($backdate); 
1319
1320                 my $bills = $session->request( # XXX Verify this call is correct
1321                         "open-ils.storage.direct.money.billing.search_where.atomic",
1322                         billing_ts => { ">=" => $backdate }, "xact" => $circ->id )->gather(1);
1323
1324                 if($bills) {
1325                         for my $bill (@$bills) {
1326                                 $bill->voided('t');
1327                                 my $s = $session->request(
1328                                         "open-ils.storage.direct.money.billing.update", $bill)->gather(1);
1329                                 return $U->DB_UPDATE_FAILED($bill) unless $s;
1330                         }
1331                 }
1332         }
1333
1334         $logger->debug("Checkin committing copy and circ objects");
1335         $evt = $U->update_copy( session => $session, 
1336                 copy => $copy, editor => $requestor->id );
1337         return $evt if $evt;
1338
1339         $ctx->{session}->request(
1340                 'open-ils.storage.direct.action.circulation.update', $circ )->gather(1);
1341
1342         return undef;
1343 }
1344
1345
1346
1347 # ------------------------------------------------------------------------------
1348
1349 __PACKAGE__->register_method(
1350         method  => "renew",
1351         api_name        => "open-ils.circ.renew",
1352         notes           => <<"  NOTES");
1353         PARAMS( authtoken, circ => circ_id );
1354         open-ils.circ.renew(login_session, circ_object);
1355         Renews the provided circulation.  login_session is the requestor of the
1356         renewal and if the logged in user is not the same as circ->usr, then
1357         the logged in user must have RENEW_CIRC permissions.
1358         NOTES
1359
1360 sub renew {
1361         my( $self, $client, $authtoken, $params ) = @_;
1362         $U->logmark;
1363
1364         my ( $requestor, $patron, $ctx, $evt, $circ, $copy );
1365         $__isrenewal = 1;
1366
1367         # if requesting a renewal for someone else, you must have
1368         # renew privelages
1369         ( $requestor, $patron, $evt ) = $U->checkses_requestor( 
1370                 $authtoken, $params->{patron}, 'RENEW_CIRC' );
1371         if($evt) { $__isrenewal = 0; return $evt; }
1372
1373
1374         # fetch and build the circulation environment
1375         ( $ctx, $evt ) = create_circ_ctx( %$params, 
1376                 patron                                                  => $patron, 
1377                 requestor                                               => $requestor, 
1378                 patron                                                  => $patron, 
1379                 type                                                            => 'circ',
1380                 fetch_patron_circ_summary       => 1,
1381                 fetch_copy_statuses                     => 1, 
1382                 fetch_copy_locations                    => 1, 
1383                 );
1384         if($evt) { $__isrenewal = 0; return $evt; }
1385         $params->{_ctx} = $ctx;
1386
1387         # make sure they have some renewals left and make sure the circulation exists
1388         ($circ, $evt) = _check_renewal_remaining($ctx);
1389         if($evt) { $__isrenewal = 0; return $evt; }
1390         $ctx->{old_circ} = $circ;
1391         my $renewals = $circ->renewal_remaining - 1;
1392
1393         # run the renew permit script
1394         $evt = _run_renew_scripts($ctx);
1395         if($evt) { $__isrenewal = 0; return $evt; }
1396
1397         # checkin the cop
1398         #$ctx->{patron} = $ctx->{patron}->id;
1399         $evt = $self->checkin($client, $authtoken, $ctx );
1400                 #{ barcode => $params->{barcode}, patron => $params->{patron}} );
1401
1402         if( !$U->event_equals($evt, 'SUCCESS') ) {
1403                 $__isrenewal = 0; return $evt; 
1404         }
1405
1406         # re-fetch the context since objects have changed in the checkin
1407         ( $ctx, $evt ) = create_circ_ctx( %$params, 
1408                 patron                                                  => $patron, 
1409                 requestor                                               => $requestor, 
1410                 patron                                                  => $patron, 
1411                 type                                                            => 'circ',
1412                 fetch_patron_circ_summary       => 1,
1413                 fetch_copy_statuses                     => 1, 
1414                 fetch_copy_locations                    => 1, 
1415                 );
1416         if($evt) { $__isrenewal = 0; return $evt; }
1417         $params->{_ctx} = $ctx;
1418         $ctx->{renewal_remaining} = $renewals;
1419
1420         # run the circ permit scripts
1421         $evt = $self->permit_circ( $client, $authtoken, $params );
1422         if( $U->event_equals($evt, 'ITEM_NOT_CATALOGED')) {
1423                 $ctx->{precat} = 1;
1424         } else {
1425                 if(!$U->event_equals($evt, 'SUCCESS')) {
1426                         if($evt) { $__isrenewal = 0; return $evt; }
1427                 }
1428         }
1429         $params->{permit_key} = $evt->{payload};
1430
1431
1432         # checkout the item again
1433         $evt = $self->checkout($client, $authtoken, $params );
1434
1435         $__isrenewal = 0;
1436         return $evt;
1437 }
1438
1439 sub _check_renewal_remaining {
1440         my $ctx = shift;
1441         $U->logmark;
1442         my( $circ, $evt ) = $U->fetch_open_circulation($ctx->{copy}->id);
1443         return (undef, $evt) if $evt;
1444         $evt = OpenILS::Event->new(
1445                 'MAX_RENEWALS_REACHED') if $circ->renewal_remaining < 1;
1446         return ($circ, $evt);
1447 }
1448
1449 sub _run_renew_scripts {
1450         my $ctx = shift;
1451         my $runner = $ctx->{runner};
1452         $U->logmark;
1453
1454         $runner->load($scripts{circ_permit_renew});
1455         $runner->run or throw OpenSRF::EX::ERROR ("Circ Permit Renew Script Died: $@");
1456         my $evtname = $runner->retrieve('result.event');
1457         $logger->activity("circ_permit_renew for user ".$ctx->{patron}->id." returned event: $evtname");
1458
1459         return OpenILS::Event->new($evtname) if $evtname ne 'SUCCESS';
1460         return undef;
1461 }
1462
1463         
1464
1465
1466 666;
1467