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