]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/action.pm
setting WRITE flag for generate_fines and copy targeter
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / Application / Storage / Publisher / action.pm
1 package OpenILS::Application::Storage::Publisher::action;
2 use base qw/OpenILS::Application::Storage::Publisher/;
3 use OpenSRF::Utils::Logger qw/:level/;
4 use OpenSRF::Utils qw/:datetime/;
5 use OpenSRF::AppSession;
6 use OpenSRF::EX qw/:try/;
7 use OpenILS::Utils::Fieldmapper;
8 use OpenILS::Utils::PermitHold;
9 use DateTime;
10 use DateTime::Format::ISO8601;
11
12
13 my $parser = DateTime::Format::ISO8601->new;
14 my $log = 'OpenSRF::Utils::Logger';
15
16 sub ou_hold_requests {
17         my $self = shift;
18         my $client = shift;
19         my $ou = shift;
20
21         my $h_table = action::hold_request->table;
22         my $c_table = asset::copy->table;
23         my $o_table = actor::org_unit->table;
24
25         my $SQL = <<"   SQL";
26                 SELECT  h.id
27                   FROM  $h_table h
28                         JOIN $c_table cp ON (cp.id = h.current_copy)
29                         JOIN $o_table ou ON (ou.id = cp.circ_lib)
30                   WHERE ou.id = ?
31                         AND h.capture_time IS NULL
32                   ORDER BY h.request_time
33         SQL
34
35         my $sth = action::hold_request->db_Main->prepare_cached($SQL);
36         $sth->execute($ou);
37
38         $client->respond($_) for (
39                 map {
40                         $self
41                                 ->method_lookup('open-ils.storage.direct.action.hold_request.retrieve')
42                                 ->run($_)
43                 } map {
44                         $_->[0]
45                 } @{ $sth->fetchall_arrayref }
46         );
47         return undef;
48 }
49 __PACKAGE__->register_method(
50         api_name        => 'open-ils.storage.action.targeted_hold_request.org_unit',
51         api_level       => 1,
52         argc            => 1,
53         stream          => 1,
54         method          => 'ou_hold_requests',
55 );
56
57
58 sub overdue_circs {
59         my $grace = shift;
60
61         my $c_t = action::circulation->table;
62
63         $grace = " - ($grace * (fine_interval))" if ($grace);
64
65         my $sql = <<"   SQL";
66                 SELECT  *
67                   FROM  $c_t
68                   WHERE stop_fines IS NULL
69                         AND due_date < ( CURRENT_TIMESTAMP $grace)
70         SQL
71
72         my $sth = action::circulation->db_Main->prepare_cached($sql);
73         $sth->execute;
74
75         return ( map { action::circulation->construct($_) } $sth->fetchall_hash );
76
77 }
78
79 sub complete_reshelving {
80         my $self = shift;
81         my $client = shift;
82         my $window = shift;
83
84         local $OpenILS::Application::Storage::WRITE = 1;
85
86         throw OpenSRF::EX::InvalidArg ("I need an interval of more than 0 seconds!")
87                 unless (interval_to_seconds( $window ));
88
89         my $circ = action::circulation->table;
90         my $cp = asset::copy->table;
91
92         my $sql = <<"   SQL";
93                 UPDATE  $cp
94                   SET   status = 0
95                   WHERE id IN ( SELECT  cp.id
96                                   FROM  $cp cp
97                                         JOIN $circ circ ON (circ.target_copy = cp.id)
98                                   WHERE circ.checkin_time IS NOT NULL
99                                         AND circ.checkin_time < NOW() - CAST(? AS INTERVAL)
100                                         AND cp.status = 7 )
101         SQL
102
103         my $sth = action::circulation->db_Main->prepare_cached($sql);
104         $sth->execute($window);
105
106         return $sth->rows;
107
108 }
109 __PACKAGE__->register_method(
110         api_name        => 'open-ils.storage.action.circulation.reshelving.complete',
111         api_level       => 1,
112         stream          => 1,
113         argc            => 1,
114         method          => 'complete_reshelving',
115 );
116
117 sub grab_overdue {
118         my $self = shift;
119         my $client = shift;
120         my $grace = shift || '';
121
122         $client->respond( $_->to_fieldmapper ) for ( overdue_circs($grace) );
123
124         return undef;
125
126 }
127 __PACKAGE__->register_method(
128         api_name        => 'open-ils.storage.action.circulation.overdue',
129         api_level       => 1,
130         stream          => 1,
131         method          => 'grab_overdue',
132 );
133
134 sub nearest_hold {
135         my $self = shift;
136         my $client = shift;
137         my $pl = shift;
138         my $cp = shift;
139
140         my ($id) = action::hold_request->db_Main->selectrow_array(<<"   SQL", {}, $pl,$cp);
141                 SELECT  h.id
142                   FROM  action.hold_request h
143                         JOIN action.hold_copy_map hm ON (hm.hold = h.id)
144                   WHERE h.pickup_lib = ?
145                         AND hm.target_copy = ?
146                         AND h.capture_time IS NULL
147                 ORDER BY h.pickup_lib - (SELECT home_ou FROM actor.usr a WHERE a.id = h.usr), h.selection_depth DESC, h.request_time
148                 LIMIT 1
149         SQL
150         return $id;
151 }
152 __PACKAGE__->register_method(
153         api_name        => 'open-ils.storage.action.hold_request.nearest_hold',
154         api_level       => 1,
155         method          => 'nearest_hold',
156 );
157
158 sub next_resp_group_id {
159         my $self = shift;
160         my $client = shift;
161
162         # XXX This is not replication safe!!!
163
164         my ($id) = action::survey->db_Main->selectrow_array(<<" SQL");
165                 SELECT NEXTVAL('action.survey_response_group_id_seq'::TEXT)
166         SQL
167         return $id;
168 }
169 __PACKAGE__->register_method(
170         api_name        => 'open-ils.storage.action.survey_response.next_group_id',
171         api_level       => 1,
172         method          => 'next_resp_group_id',
173 );
174
175 sub patron_circ_summary {
176         my $self = shift;
177         my $client = shift;
178         my $id = ''.shift();
179
180         return undef unless ($id);
181         my $c_table = action::circulation->table;
182         my $b_table = money::billing->table;
183
184         $log->debug("Retrieving patron summary for id $id", DEBUG);
185
186         my $select = <<"        SQL";
187                 SELECT  COUNT(DISTINCT c.id), SUM( COALESCE(b.amount,0) )
188                   FROM  $c_table c
189                         LEFT OUTER JOIN $b_table b ON (c.id = b.xact AND b.voided = FALSE)
190                   WHERE c.usr = ?
191                         AND c.xact_finish IS NULL
192                         AND (
193                                 c.stop_fines NOT IN ('CLAIMSRETURNED','LOST')
194                                 OR c.stop_fines IS NULL
195                         )
196         SQL
197
198         return action::survey->db_Main->selectrow_arrayref($select, {}, $id);
199 }
200 __PACKAGE__->register_method(
201         api_name        => 'open-ils.storage.action.circulation.patron_summary',
202         api_level       => 1,
203         method          => 'patron_circ_summary',
204 );
205
206 #XXX Fix stored proc calls
207 sub find_local_surveys {
208         my $self = shift;
209         my $client = shift;
210         my $ou = ''.shift();
211
212         return undef unless ($ou);
213         my $s_table = action::survey->table;
214
215         my $select = <<"        SQL";
216                 SELECT  s.*
217                   FROM  $s_table s
218                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
219                   WHERE CURRENT_DATE BETWEEN s.start_date AND s.end_date
220         SQL
221
222         my $sth = action::survey->db_Main->prepare_cached($select);
223         $sth->execute($ou);
224
225         $client->respond( $_->to_fieldmapper ) for ( map { action::survey->construct($_) } $sth->fetchall_hash );
226
227         return undef;
228 }
229 __PACKAGE__->register_method(
230         api_name        => 'open-ils.storage.action.survey.all',
231         api_level       => 1,
232         stream          => 1,
233         method          => 'find_local_surveys',
234 );
235
236 #XXX Fix stored proc calls
237 sub find_opac_surveys {
238         my $self = shift;
239         my $client = shift;
240         my $ou = ''.shift();
241
242         return undef unless ($ou);
243         my $s_table = action::survey->table;
244
245         my $select = <<"        SQL";
246                 SELECT  s.*
247                   FROM  $s_table s
248                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
249                   WHERE CURRENT_DATE BETWEEN s.start_date AND s.end_date
250                         AND s.opac IS TRUE;
251         SQL
252
253         my $sth = action::survey->db_Main->prepare_cached($select);
254         $sth->execute($ou);
255
256         $client->respond( $_->to_fieldmapper ) for ( map { action::survey->construct($_) } $sth->fetchall_hash );
257
258         return undef;
259 }
260 __PACKAGE__->register_method(
261         api_name        => 'open-ils.storage.action.survey.opac',
262         api_level       => 1,
263         stream          => 1,
264         method          => 'find_opac_surveys',
265 );
266
267 sub hold_pull_list {
268         my $self = shift;
269         my $client = shift;
270         my $ou = shift;
271         my $limit = shift || 10;
272         my $offset = shift || 0;
273
274         return undef unless ($ou);
275         my $h_table = action::hold_request->table;
276         my $a_table = asset::copy->table;
277
278         my $select = <<"        SQL";
279                 SELECT  h.*
280                   FROM  $h_table h
281                         JOIN $a_table a ON (h.current_copy = a.id)
282                   WHERE a.circ_lib = ?
283                         AND h.capture_time IS NULL
284                   ORDER BY h.request_time ASC
285                   LIMIT $limit
286                   OFFSET $offset
287         SQL
288
289         my $sth = action::survey->db_Main->prepare_cached($select);
290         $sth->execute($ou);
291
292         $client->respond( $_->to_fieldmapper ) for ( map { action::hold_request->construct($_) } $sth->fetchall_hash );
293
294         return undef;
295 }
296 __PACKAGE__->register_method(
297         api_name        => 'open-ils.storage.direct.action.hold_request.pull_list.search.current_copy_circ_lib',
298         api_level       => 1,
299         stream          => 1,
300         signature       => [
301                 "Returns the holds for a specific library's pull list.",
302                 [ [org_unit => "The library's org id", "number"],
303                   [limit => 'An optional page size, defaults to 10', 'number'],
304                   [offset => 'Offset for paging, defaults to 0, 0 based', 'number'],
305                 ],
306                 ['A list of holds for the stated library to pull for', 'array']
307         ],
308         method          => 'hold_pull_list',
309 );
310
311 sub find_optional_surveys {
312         my $self = shift;
313         my $client = shift;
314         my $ou = ''.shift();
315
316         return undef unless ($ou);
317         my $s_table = action::survey->table;
318
319         my $select = <<"        SQL";
320                 SELECT  s.*
321                   FROM  $s_table s
322                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
323                   WHERE CURRENT_DATE BETWEEN s.start_date AND s.end_date
324                         AND s.required IS FALSE;
325         SQL
326
327         my $sth = action::survey->db_Main->prepare_cached($select);
328         $sth->execute($ou);
329
330         $client->respond( $_->to_fieldmapper ) for ( map { action::survey->construct($_) } $sth->fetchall_hash );
331
332         return undef;
333 }
334 __PACKAGE__->register_method(
335         api_name        => 'open-ils.storage.action.survey.optional',
336         api_level       => 1,
337         stream          => 1,
338         method          => 'find_optional_surveys',
339 );
340
341 sub find_required_surveys {
342         my $self = shift;
343         my $client = shift;
344         my $ou = ''.shift();
345
346         return undef unless ($ou);
347         my $s_table = action::survey->table;
348
349         my $select = <<"        SQL";
350                 SELECT  s.*
351                   FROM  $s_table s
352                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
353                   WHERE CURRENT_DATE BETWEEN s.start_date AND s.end_date
354                         AND s.required IS TRUE;
355         SQL
356
357         my $sth = action::survey->db_Main->prepare_cached($select);
358         $sth->execute($ou);
359
360         $client->respond( $_->to_fieldmapper ) for ( map { action::survey->construct($_) } $sth->fetchall_hash );
361
362         return undef;
363 }
364 __PACKAGE__->register_method(
365         api_name        => 'open-ils.storage.action.survey.required',
366         api_level       => 1,
367         stream          => 1,
368         method          => 'find_required_surveys',
369 );
370
371 sub find_usr_summary_surveys {
372         my $self = shift;
373         my $client = shift;
374         my $ou = ''.shift();
375
376         return undef unless ($ou);
377         my $s_table = action::survey->table;
378
379         my $select = <<"        SQL";
380                 SELECT  s.*
381                   FROM  $s_table s
382                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
383                   WHERE CURRENT_DATE BETWEEN s.start_date AND s.end_date
384                         AND s.usr_summary IS TRUE;
385         SQL
386
387         my $sth = action::survey->db_Main->prepare_cached($select);
388         $sth->execute($ou);
389
390         $client->respond( $_->to_fieldmapper ) for ( map { action::survey->construct($_) } $sth->fetchall_hash );
391
392         return undef;
393 }
394 __PACKAGE__->register_method(
395         api_name        => 'open-ils.storage.action.survey.usr_summary',
396         api_level       => 1,
397         stream          => 1,
398         method          => 'find_usr_summary_surveys',
399 );
400
401
402 sub generate_fines {
403         my $self = shift;
404         my $client = shift;
405         my $grace = shift;
406         my $circ = shift;
407
408         local $OpenILS::Application::Storage::WRITE = 1;
409
410         my @circs;
411         if ($circ) {
412                 push @circs, action::circulation->search_where( { id => $circ, stop_fines => undef } );
413         } else {
414                 push @circs, overdue_circs($grace);
415         }
416
417         my $penalty = OpenSRF::AppSession->create('open-ils.penalty');
418         for my $c (@circs) {
419         
420                 try {
421                         my $due_dt = $parser->parse_datetime( clense_ISO8601( $c->due_date ) );
422         
423                         my $due = $due_dt->epoch;
424                         my $now = time;
425                         my $fine_interval = interval_to_seconds( $c->fine_interval );
426         
427                         if ( interval_to_seconds( $c->fine_interval ) >= interval_to_seconds('1d') ) {  
428                                 my $tz_offset_s = 0;;
429                                 if ($due_dt->strftime('%z') =~ /(-|\+)(\d{2}):?(\d{2})/) {
430                                         $tz_offset_s = $1 . interval_to_seconds( "${2}h ${3}m"); 
431                                 }
432         
433                                 $due -= ($due % $fine_interval) + $tz_offset_s;
434                                 $now -= ($now % $fine_interval) + $tz_offset_s;
435                         }
436         
437                         $client->respond(
438                                 "ARG! Overdue circulation ".$c->id.
439                                 " for item ".$c->target_copy.
440                                 " (user ".$c->usr.").\n".
441                                 "\tItem was due on or before: ".localtime($due)."\n");
442         
443                         my ($fine) = money::billing->search(
444                                 xact => $c->id, voided => 'f',
445                                 { order_by => 'billing_ts DESC', limit => '1' }
446                         );
447         
448                         my $last_fine;
449                         if ($fine) {
450                                 $last_fine = $parser->parse_datetime( clense_ISO8601( $fine->billing_ts ) )->epoch;
451                         } else {
452                                 $last_fine = $due;
453                                 $last_fine += $fine_interval * $grace;
454                         }
455         
456                         my $pending_fine_count = int( ($now - $last_fine) / $fine_interval ); 
457                         unless($pending_fine_count) {
458                                 $client->respond( "\tNo fines to create.  " );
459                                 if ($grace && $now < $due + $fine_interval * $grace) {
460                                         $client->respond( "Still inside grace period of: ". seconds_to_interval( $fine_interval * $grace)."\n" );
461                                 } else {
462                                         $client->respond( "Last fine generated for: ".localtime($last_fine)."\n" );
463                                 }
464                                 next;
465                         }
466         
467                         $client->respond( "\t$pending_fine_count pending fine(s)\n" );
468         
469                         for my $bill (1 .. $pending_fine_count) {
470         
471                                 my ($total) = money::billable_transaction_summary->retrieve( $c->id );
472         
473                                 if ($total && $total->balance_owed > $c->max_fine) {
474                                         $c->update({stop_fines => 'MAXFINES'});
475                                         $client->respond(
476                                                 "\tMaximum fine level of ".$c->max_fine.
477                                                 " reached for this circulation.\n".
478                                                 "\tNo more fines will be generated.\n" );
479                                         last;
480                                 }
481         
482                                 my $billing = money::billing->create(
483                                         { xact          => ''.$c->id,
484                                           note          => "Overdue Fine",
485                                           billing_type  => "Overdue materials",
486                                           amount        => ''.$c->recuring_fine,
487                                           billing_ts    => DateTime->from_epoch( epoch => $last_fine + $fine_interval * $bill )->strftime('%FT%T%z')
488                                         }
489                                 );
490         
491                                 $client->respond(
492                                         "\t\tCreating fine of ".$billing->amount." for period starting ".
493                                         localtime(
494                                                 $parser->parse_datetime(
495                                                         clense_ISO8601( $billing->billing_ts )
496                                                 )->epoch
497                                         )."\n" );
498                         }
499
500                         $penalty->request(
501                                 'open-ils.penalty.patron_penalty.calculate',
502                                 { patron        => $c->usr->to_fieldmapper,
503                                   update        => 1,
504                                   background    => 1,
505                                 }
506                         )->gather(1);
507
508                 } catch Error with {
509                         my $e = shift;
510                         $client->respond( "Error processing overdue circulation [".$c->id."]:\n\n$e\n" );
511                 };
512         }
513 }
514 __PACKAGE__->register_method(
515         api_name        => 'open-ils.storage.action.circulation.overdue.generate_fines',
516         api_level       => 1,
517         stream          => 1,
518         method          => 'generate_fines',
519 );
520
521
522
523 sub new_hold_copy_targeter {
524         my $self = shift;
525         my $client = shift;
526         my $check_expire = shift;
527         my $one_hold = shift;
528
529         local $OpenILS::Application::Storage::WRITE = 1;
530
531         my $holds;
532
533         try {
534                 if ($one_hold) {
535
536                         my $time = time;
537                         $check_expire ||= '12h';
538                         $check_expire = interval_to_seconds( $check_expire );
539
540                         my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime(time() - $check_expire);
541                         $year += 1900;
542                         $mon += 1;
543                         my $expire_threshold = sprintf(
544                                 '%s-%0.2d-%0.2dT%0.2d:%0.2d:%0.2d-00',
545                                 $year, $mon, $mday, $hour, $min, $sec
546                         );
547
548                         $holds = [ action::hold_request->search_where(
549                                         { id => $one_hold,
550                                           fulfillment_time => undef, 
551                                           prev_check_time => [ undef, { '<=' => $expire_threshold } ] }
552                                    ) ];
553                 } elsif ( $check_expire ) {
554
555                         my $time = time;
556                         $check_expire ||= '12h';
557                         $check_expire = interval_to_seconds( $check_expire );
558
559                         my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime(time() - $check_expire);
560                         $year += 1900;
561                         $mon += 1;
562                         my $expire_threshold = sprintf(
563                                 '%s-%0.2d-%0.2dT%0.2d:%0.2d:%0.2d-00',
564                                 $year, $mon, $mday, $hour, $min, $sec
565                         );
566
567                         $holds = [ action::hold_request->search_where(
568                                                         { capture_time => undef,
569                                                           fulfillment_time => undef,
570                                                           prev_check_time => { '<=' => $expire_threshold },
571                                                         },
572                                                         { order_by => 'selection_depth DESC, request_time,prev_check_time' } ) ];
573                         push @$holds, action::hold_request->search(
574                                                         capture_time => undef,
575                                                         fulfillment_time => undef,
576                                                         prev_check_time => undef,
577                                                         { order_by => 'selection_depth DESC, request_time' } );
578                 } else {
579                         $holds [ action::hold_request->search(
580                                                         capture_time => undef,
581                                                         fulfillment_time => undef,
582                                                         prev_check_time => undef,
583                                                         { order_by => 'selection_depth DESC, request_time' } ) ];
584                 }
585         } catch Error with {
586                 my $e = shift;
587                 die "Could not retrieve uncaptured hold requests:\n\n$e\n";
588         };
589
590         my @successes;
591         for my $hold (@$holds) {
592                 try {
593                         #action::hold_request->db_Main->begin_work;
594                         if ($self->method_lookup('open-ils.storage.transaction.current')->run) {
595                                 $log->debug("Cleaning up after previous transaction\n");
596                                 $self->method_lookup('open-ils.storage.transaction.rollback')->run;
597                         }
598                         $self->method_lookup('open-ils.storage.transaction.begin')->run( $client );
599                         $log->info("Processing hold ".$hold->id."...\n");
600
601                         action::hold_copy_map->search( { hold => $hold->id } )->delete_all;
602         
603                         my $all_copies = [];
604
605                         # find all the potential copies
606                         if ($hold->hold_type eq 'M') {
607                                 for my $r ( map
608                                                 {$_->record}
609                                                 metabib::record_descriptor
610                                                         ->search(
611                                                                 record => [ map { $_->id } metabib::metarecord
612                                                                                         ->retrieve($hold->target)
613                                                                                         ->source_records ],
614                                                                 item_type => [split '', $hold->holdable_formats]
615                                                         )
616                                 ) {
617                                         my ($rtree) = $self
618                                                 ->method_lookup( 'open-ils.storage.biblio.record_entry.ranged_tree')
619                                                 ->run( $r->id, $hold->usr->home_ou->id, $hold->selection_depth );
620
621                                         for my $cn ( @{ $rtree->call_numbers } ) {
622                                                 push @$all_copies,
623                                                         asset::copy->search( id => [map {$_->id} @{ $cn->copies }] );
624                                         }
625                                 }
626                         } elsif ($hold->hold_type eq 'T') {
627                                 my ($rtree) = $self
628                                         ->method_lookup( 'open-ils.storage.biblio.record_entry.ranged_tree')
629                                         ->run( $hold->target, $hold->usr->home_ou->id, $hold->selection_depth );
630
631                                 unless ($rtree) {
632                                         push @successes, { hold => $hold->id, eligible_copies => 0, error => 'NO_RECORD' };
633                                         die 'OK';
634                                 }
635
636                                 for my $cn ( @{ $rtree->call_numbers } ) {
637                                         push @$all_copies,
638                                                 asset::copy->search( id => [map {$_->id} @{ $cn->copies }] );
639                                 }
640                         } elsif ($hold->hold_type eq 'V') {
641                                 my ($vtree) = $self
642                                         ->method_lookup( 'open-ils.storage.asset.call_number.ranged_tree')
643                                         ->run( $hold->target, $hold->usr->home_ou->id, $hold->selection_depth );
644
645                                 push @$all_copies,
646                                         asset::copy->search( id => [map {$_->id} @{ $vtree->copies }] );
647                                         
648                         } elsif  ($hold->hold_type eq 'C') {
649
650                                 $all_copies = [asset::copy->retrieve($hold->target)];
651                         }
652
653                         @$all_copies = grep {   $_->status->holdable && 
654                                                 $_->location->holdable && 
655                                                 $_->holdable
656                                         } @$all_copies;
657
658                         # let 'em know we're still working
659                         $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
660                         
661                         if (!ref $all_copies || !@$all_copies) {
662                                 $log->info("\tNo copies available for targeting at all!\n");
663                                 $self->method_lookup('open-ils.storage.transaction.commit')->run;
664                                 push @successes, { hold => $hold->id, eligible_copies => 0, error => 'NO_COPIES' };
665                                 die 'OK';
666                         }
667
668                         my $copies = [];
669                         for my $c ( @$all_copies ) {
670                                 push @$copies, $c
671                                         if ( OpenILS::Utils::PermitHold::permit_copy_hold(
672                                                 { title => $c->call_number->record->to_fieldmapper,
673                                                   title_descriptor => $c->call_number->record->record_descriptor->next->to_fieldmapper,
674                                                   patron => $hold->usr->to_fieldmapper,
675                                                   copy => $c->to_fieldmapper,
676                                                   requestor => $hold->requestor->to_fieldmapper,
677                                                   request_lib => $hold->request_lib->to_fieldmapper,
678                                                 } ));
679                         }
680                         my $copy_count = @$copies;
681                         $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
682
683                         # map the potentials, so that we can pick up checkins
684                         $log->debug( "\tMapping ".scalar(@$copies)." potential copies for hold ".$hold->id);
685                         action::hold_copy_map->create( { hold => $hold->id, target_copy => $_->id } ) for (@$copies);
686
687                         my @good_copies;
688                         for my $c (@$copies) {
689                                 next if ($c->id == $hold->current_copy);
690                                 push @good_copies, $c if ($c);
691                         }
692
693                         $log->debug("\t".scalar(@good_copies)." (non-current) copies available for targeting...");
694
695                         my $old_best = $hold->current_copy;
696                         $hold->update({ current_copy => undef });
697         
698                         if (!scalar(@good_copies)) {
699                                 $log->info("\tNo (non-current) copies eligible to fill the hold.");
700                                 if ( $old_best && grep { $old_best == $_ } @$copies ) {
701                                         $log->debug("\tPushing current_copy back onto the targeting list");
702                                         push @good_copies, $old_best;
703                                 } else {
704                                         $log->debug("\tcurrent_copy is no longer available for targeting... NEXT HOLD, PLEASE!");
705                                         $self->method_lookup('open-ils.storage.transaction.commit')->run;
706                                         push @successes, { hold => $hold->id, eligible_copies => 0, error => 'NO_TARGETS' };
707                                         die 'OK';
708                                 }
709                         }
710
711                         $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
712                         my $prox_list = [];
713                         $$prox_list[0] =
714                         [
715                                 grep {
716                                         $_->circ_lib == $hold->pickup_lib
717                                 } @good_copies
718                         ];
719
720                         $copies = [grep {$_->circ_lib != $hold->pickup_lib } @good_copies];
721
722                         my $best = $self->choose_nearest_copy($hold, $prox_list);
723
724                         if (!$best) {
725                                 $log->debug("\tNothing at the pickup lib, looking elsewhere among ".scalar(@$copies)." copies");
726                                 $prox_list = $self->create_prox_list( $hold->pickup_lib, $copies );
727                                 $best = $self->choose_nearest_copy($hold, $prox_list);
728                         }
729
730                         $client->status( new OpenSRF::DomainObject::oilsContinueStatus );
731                         if ($old_best) {
732                                 # hold wasn't fulfilled, record the fact
733                         
734                                 $log->info("\tHold was not (but should have been) fulfilled by ".$old_best->id);
735                                 action::unfulfilled_hold_list->create(
736                                                 { hold => ''.$hold->id,
737                                                   current_copy => ''.$old_best->id,
738                                                   circ_lib => ''.$old_best->circ_lib,
739                                                 });
740                         }
741
742                         if ($best) {
743                                 $hold->update( { current_copy => ''.$best->id } );
744                                 $log->debug("\tUpdating hold [".$hold->id."] with new 'current_copy' [".$best->id."] for hold fulfillment.");
745                         } else {
746                                 $log->info( "\tThere were no targetable copies for the hold" );
747                         }
748
749                         $hold->update( { prev_check_time => 'now' } );
750
751                         $self->method_lookup('open-ils.storage.transaction.commit')->run;
752                         $log->info("\tProcessing of hold ".$hold->id." complete.");
753
754                         push @successes,
755                                 { hold => $hold->id,
756                                   old_target => ($old_best ? $old_best->id : undef),
757                                   eligible_copies => $copy_count,
758                                   target => ($best ? $best->id : undef) };
759
760                 } otherwise {
761                         my $e = shift;
762                         if ($e !~ /^OK/o) {
763                                 $log->error("Processing of hold failed:  $e");
764                                 $self->method_lookup('open-ils.storage.transaction.rollback')->run;
765                         }
766                 };
767         }
768
769         return \@successes;
770 }
771 __PACKAGE__->register_method(
772         api_name        => 'open-ils.storage.action.hold_request.copy_targeter',
773         api_level       => 1,
774         method          => 'new_hold_copy_targeter',
775 );
776
777 my $locations;
778 my $statuses;
779 my %cache = (titles => {}, cns => {});
780 sub hold_copy_targeter {
781         my $self = shift;
782         my $client = shift;
783         my $check_expire = shift;
784         my $one_hold = shift;
785
786         $self->{user_filter} = OpenSRF::AppSession->create('open-ils.circ');
787         $self->{user_filter}->connect;
788         $self->{client} = $client;
789
790         my $time = time;
791         $check_expire ||= '12h';
792         $check_expire = interval_to_seconds( $check_expire );
793
794         my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = gmtime(time() - $check_expire);
795         $year += 1900;
796         $mon += 1;
797         my $expire_threshold = sprintf(
798                 '%s-%0.2d-%0.2dT%0.2d:%0.2d:%0.2d-00',
799                 $year, $mon, $mday, $hour, $min, $sec
800         );
801
802
803         $statuses ||= [ config::copy_status->search(holdable => 't') ];
804
805         $locations ||= [ asset::copy_location->search(holdable => 't') ];
806
807         my $holds;
808
809         %cache = (titles => {}, cns => {});
810
811         try {
812                 if ($one_hold) {
813                         $holds = [ action::hold_request->search(id => $one_hold) ];
814                 } else {
815                         $holds = [ action::hold_request->search_where(
816                                                         { capture_time => undef,
817                                                           prev_check_time => { '<=' => $expire_threshold },
818                                                         },
819                                                         { order_by => 'request_time,prev_check_time' } ) ];
820                         push @$holds, action::hold_request->search(
821                                                         capture_time => undef,
822                                                         prev_check_time => undef,
823                                                         { order_by => 'request_time' } );
824                 }
825         } catch Error with {
826                 my $e = shift;
827                 die "Could not retrieve uncaptured hold requests:\n\n$e\n";
828         };
829
830         for my $hold (@$holds) {
831                 try {
832                         #action::hold_request->db_Main->begin_work;
833                         if ($self->method_lookup('open-ils.storage.transaction.current')->run) {
834                                 $client->respond("Cleaning up after previous transaction\n");
835                                 $self->method_lookup('open-ils.storage.transaction.rollback')->run;
836                         }
837                         $self->method_lookup('open-ils.storage.transaction.begin')->run( $client );
838                         $client->respond("Processing hold ".$hold->id."...\n");
839
840                         my $copies;
841
842                         $copies = $self->metarecord_hold_capture($hold) if ($hold->hold_type eq 'M');
843                         $self->{client}->status( new OpenSRF::DomainObject::oilsContinueStatus );
844
845                         $copies = $self->title_hold_capture($hold) if ($hold->hold_type eq 'T');
846                         $self->{client}->status( new OpenSRF::DomainObject::oilsContinueStatus );
847                         
848                         $copies = $self->volume_hold_capture($hold) if ($hold->hold_type eq 'V');
849                         $self->{client}->status( new OpenSRF::DomainObject::oilsContinueStatus );
850                         
851                         $copies = $self->copy_hold_capture($hold) if ($hold->hold_type eq 'C');
852
853                         unless (ref $copies || !@$copies) {
854                                 $client->respond("\tNo copies available for targeting at all!\n");
855                         }
856
857                         my @good_copies;
858                         for my $c (@$copies) {
859                                 next if ( grep {$c->id == $hold->current_copy} @good_copies);
860                                 push @good_copies, $c if ($c);
861                         }
862
863                         $client->respond("\t".scalar(@good_copies)." (non-current) copies available for targeting...\n");
864
865                         my $old_best = $hold->current_copy;
866                         $hold->update({ current_copy => undef });
867         
868                         if (!scalar(@good_copies)) {
869                                 $client->respond("\tNo (non-current) copies available to fill the hold.\n");
870                                 if ( $old_best && grep {$c->id == $hold->current_copy} @$copies ) {
871                                         $client->respond("\tPushing current_copy back onto the targeting list\n");
872                                         push @good_copies, asset::copy->retrieve( $old_best );
873                                 } else {
874                                         $client->respond("\tcurrent_copy is no longer available for targeting... NEXT HOLD, PLEASE!\n");
875                                         next;
876                                 }
877                         }
878
879                         my $prox_list;
880                         $$prox_list[0] = [grep {$_->circ_lib == $hold->pickup_lib } @good_copies];
881                         $copies = [grep {$_->circ_lib != $hold->pickup_lib } @good_copies];
882
883                         my $best = $self->choose_nearest_copy($hold, $prox_list);
884
885                         if (!$best) {
886                                 $prox_list = $self->create_prox_list( $hold->pickup_lib, $copies );
887                                 $best = $self->choose_nearest_copy($hold, $prox_list);
888                         }
889
890                         if ($old_best) {
891                                 # hold wasn't fulfilled, record the fact
892                         
893                                 $client->respond("\tHold was not (but should have been) fulfilled by ".$old_best->id.".\n");
894                                 action::unfulfilled_hold_list->create(
895                                                 { hold => ''.$hold->id,
896                                                   current_copy => ''.$old_best->id,
897                                                   circ_lib => ''.$old_best->circ_lib,
898                                                 });
899                         }
900
901                         if ($best) {
902                                 $hold->update( { current_copy => ''.$best->id } );
903                                 $client->respond("\tTargeting copy ".$best->id." for hold fulfillment.\n");
904                         }
905
906                         $hold->update( { prev_check_time => 'now' } );
907                         $client->respond("\tUpdating hold ".$hold->id." with new 'current_copy' for hold fulfillment.\n");
908
909                         $client->respond("\tProcessing of hold ".$hold->id." complete.\n");
910                         $self->method_lookup('open-ils.storage.transaction.commit')->run;
911
912                         #action::hold_request->dbi_commit;
913
914                 } otherwise {
915                         my $e = shift;
916                         $log->error("Processing of hold failed:  $e");
917                         $client->respond("\tProcessing of hold failed!.\n\t\t$e\n");
918                         $self->method_lookup('open-ils.storage.transaction.rollback')->run;
919                         #action::hold_request->dbi_rollback;
920                 };
921         }
922
923         $self->{user_filter}->disconnect;
924         $self->{user_filter}->finish;
925         delete $$self{user_filter};
926         return undef;
927 }
928 __PACKAGE__->register_method(
929         api_name        => 'open-ils.storage.action.hold_request.copy_targeter',
930         api_level       => 0,
931         stream          => 1,
932         method          => 'hold_copy_targeter',
933 );
934
935
936 sub copy_hold_capture {
937         my $self = shift;
938         my $hold = shift;
939         my $cps = shift;
940
941         if (!defined($cps)) {
942                 try {
943                         $cps = [ asset::copy->search( id => $hold->target ) ];
944                 } catch Error with {
945                         my $e = shift;
946                         die "Could not retrieve initial volume list:\n\n$e\n";
947                 };
948         }
949
950         my @copies = grep { $_->holdable } @$cps;
951
952         for (my $i = 0; $i < @$cps; $i++) {
953                 next unless $$cps[$i];
954                 
955                 my $cn = $cache{cns}{$copies[$i]->call_number};
956                 my $rec = $cache{titles}{$cn->record};
957                 $copies[$i] = undef if ($copies[$i] && !grep{ $copies[$i]->status eq $_->id}@$statuses);
958                 $copies[$i] = undef if ($copies[$i] && !grep{ $copies[$i]->location eq $_->id}@$locations);
959                 $copies[$i] = undef if (
960                         !$copies[$i] ||
961                         !$self->{user_filter}->request(
962                                 'open-ils.circ.permit_hold',
963                                 $hold->to_fieldmapper, do {
964                                         my $cp_fm = $copies[$i]->to_fieldmapper;
965                                         $cp_fm->circ_lib( $copies[$i]->circ_lib->to_fieldmapper );
966                                         $cp_fm->location( $copies[$i]->location->to_fieldmapper );
967                                         $cp_fm->status( $copies[$i]->status->to_fieldmapper );
968                                         $cp_fm;
969                                 },
970                                 { title => $rec->to_fieldmapper,
971                                   usr => actor::user->retrieve($hold->usr)->to_fieldmapper,
972                                   requestor => actor::user->retrieve($hold->requestor)->to_fieldmapper,
973                                 })->gather(1)
974                 );
975                 $self->{client}->status( new OpenSRF::DomainObject::oilsContinueStatus );
976         }
977
978         @copies = grep { $_ } @copies;
979
980         my $count = @copies;
981
982         return unless ($count);
983         
984         action::hold_copy_map->search( { hold => $hold->id } )->delete_all;
985         
986         my @maps;
987         $self->{client}->respond( "\tMapping ".scalar(@copies)." eligable copies for hold ".$hold->id."\n");
988         for my $c (@copies) {
989                 push @maps, action::hold_copy_map->create( { hold => $hold->id, target_copy => $c->id } );
990         }
991         $self->{client}->respond( "\tA total of ".scalar(@maps)." mapping were created for hold ".$hold->id."\n");
992
993         return \@copies;
994 }
995
996
997 sub choose_nearest_copy {
998         my $self = shift;
999         my $hold = shift;
1000         my $prox_list = shift;
1001
1002         for my $p ( 0 .. int( scalar(@$prox_list) - 1) ) {
1003                 next unless (ref $$prox_list[$p]);
1004                 my @capturable = grep { $_->status == 0 || $_->status == 7 } @{ $$prox_list[$p] };
1005                 next unless (@capturable);
1006                 return $capturable[rand(scalar(@capturable))];
1007         }
1008 }
1009
1010 sub create_prox_list {
1011         my $self = shift;
1012         my $lib = shift;
1013         my $copies = shift;
1014
1015         my @prox_list;
1016         for my $cp (@$copies) {
1017                 my ($prox) = $self->method_lookup('open-ils.storage.asset.copy.proximity')->run( $cp->id, $lib );
1018                 next unless (defined($prox));
1019                 $prox_list[$prox] = [] unless defined($prox_list[$prox]);
1020                 push @{$prox_list[$prox]}, $cp;
1021         }
1022         return \@prox_list;
1023 }
1024
1025 sub volume_hold_capture {
1026         my $self = shift;
1027         my $hold = shift;
1028         my $vols = shift;
1029
1030         if (!defined($vols)) {
1031                 try {
1032                         $vols = [ asset::call_number->search( id => $hold->target ) ];
1033                         $cache{cns}{$_->id} = $_ for (@$vols);
1034                 } catch Error with {
1035                         my $e = shift;
1036                         die "Could not retrieve initial volume list:\n\n$e\n";
1037                 };
1038         }
1039
1040         my @v_ids = map { $_->id } @$vols;
1041
1042         my $cp_list;
1043         try {
1044                 $cp_list = [ asset::copy->search( call_number => \@v_ids ) ];
1045         
1046         } catch Error with {
1047                 my $e = shift;
1048                 warn "Could not retrieve copy list:\n\n$e\n";
1049         };
1050
1051         $self->copy_hold_capture($hold,$cp_list) if (ref $cp_list and @$cp_list);
1052 }
1053
1054 sub title_hold_capture {
1055         my $self = shift;
1056         my $hold = shift;
1057         my $titles = shift;
1058
1059         if (!defined($titles)) {
1060                 try {
1061                         $titles = [ biblio::record_entry->search( id => $hold->target ) ];
1062                         $cache{titles}{$_->id} = $_ for (@$titles);
1063                 } catch Error with {
1064                         my $e = shift;
1065                         die "Could not retrieve initial title list:\n\n$e\n";
1066                 };
1067         }
1068
1069         my @t_ids = map { $_->id } @$titles;
1070         my $cn_list;
1071         try {
1072                 ($cn_list) = $self->method_lookup('open-ils.storage.direct.asset.call_number.search.record.atomic')->run( \@t_ids );
1073         
1074         } catch Error with {
1075                 my $e = shift;
1076                 warn "Could not retrieve volume list:\n\n$e\n";
1077         };
1078
1079         $cache{cns}{$_->id} = $_ for (@$cn_list);
1080
1081         $self->volume_hold_capture($hold,$cn_list) if (ref $cn_list and @$cn_list);
1082 }
1083
1084 sub metarecord_hold_capture {
1085         my $self = shift;
1086         my $hold = shift;
1087
1088         my $titles;
1089         try {
1090                 $titles = [ metabib::metarecord_source_map->search( metarecord => $hold->target) ];
1091         
1092         } catch Error with {
1093                 my $e = shift;
1094                 die "Could not retrieve initial title list:\n\n$e\n";
1095         };
1096
1097         try {
1098                 my @recs = map {$_->record} metabib::record_descriptor->search( record => $titles, item_type => [split '', $hold->holdable_formats] ); 
1099
1100                 $titles = [ biblio::record_entry->search( id => \@recs ) ];
1101         
1102         } catch Error with {
1103                 my $e = shift;
1104                 die "Could not retrieve format-pruned title list:\n\n$e\n";
1105         };
1106
1107
1108         $cache{titles}{$_->id} = $_ for (@$titles);
1109         $self->title_hold_capture($hold,$titles) if (ref $titles and @$titles);
1110 }
1111
1112 1;