]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/actor.pm
1cb3dce467d6a0f6867af1a4401925b57efcb27a
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / Application / Storage / Publisher / actor.pm
1 package OpenILS::Application::Storage::Publisher::actor;
2 use base qw/OpenILS::Application::Storage/;
3 use OpenILS::Application::Storage::CDBI::actor;
4 use OpenSRF::Utils::Logger qw/:level/;
5 use OpenSRF::Utils qw/:datetime/;
6 use OpenILS::Utils::Fieldmapper;
7 use OpenSRF::Utils::SettingsClient;
8
9 use DateTime;           
10 use DateTime::Format::ISO8601;  
11 use DateTime::Set;
12 use DateTime::SpanSet;
13
14 my $_dt_parser = DateTime::Format::ISO8601->new;    
15
16 my $log = 'OpenSRF::Utils::Logger';
17
18 sub new_usergroup_id {
19         return actor::user->db_Main->selectrow_array("select nextval('actor.usr_usrgroup_seq'::regclass)");
20 }
21 __PACKAGE__->register_method(
22         api_name        => 'open-ils.storage.actor.user.group_id.new',
23         api_level       => 1,
24         method          => 'new_usergroup_id',
25 );
26
27 sub juv_to_adult {
28         my $self = shift;
29         my $client = shift;
30         my $adult_age = shift;
31
32         my $sql = <<"   SQL";
33             UPDATE  actor.usr
34               SET   juvenile = FALSE
35               WHERE AGE(dob) > ?::INTERVAL;
36         SQL
37
38     my $sth = actor::user->db_Main->prepare_cached($sql);
39     $sth->execute($adult_age);
40
41     return $sth->rows;
42 }
43 __PACKAGE__->register_method(
44         api_name        => 'open-ils.storage.actor.user.juvenile_to_adult',
45         api_level       => 1,
46         method          => 'juv_to_adult',
47 );
48
49 sub usr_total_owed {
50         my $self = shift;
51         my $client = shift;
52         my $usr = shift;
53
54         my $sql = <<"   SQL";
55                         SELECT  x.usr,
56                                         SUM(COALESCE((SELECT SUM(b.amount) FROM money.billing b WHERE b.voided IS FALSE AND b.xact = x.id),0.0)) -
57                                                 SUM(COALESCE((SELECT SUM(p.amount) FROM money.payment p WHERE p.voided IS FALSE AND p.xact = x.id),0.0))
58                           FROM  money.billable_xact x
59                           WHERE x.usr = ? AND x.xact_finish IS NULL
60                           GROUP BY 1
61         SQL
62
63         my (undef,$val) = actor::user->db_Main->selectrow_array($sql, {}, $usr);
64
65         return $val;
66 }
67 __PACKAGE__->register_method(
68         api_name        => 'open-ils.storage.actor.user.total_owed',
69         api_level       => 1,
70         method          => 'usr_total_owed',
71 );
72
73 sub usr_breakdown_out {
74         my $self = shift;
75         my $client = shift;
76         my $usr = shift;
77
78         $self->method_lookup('open-ils.storage.transaction.begin')->run($client);
79
80         my $out_sql = <<"       SQL";
81                         SELECT  id
82                           FROM  action.circulation
83                           WHERE usr = ?
84                     AND checkin_time IS NULL
85                     AND (  (fine_interval >= '1 day' AND due_date >= 'today')
86                         OR (fine_interval < '1 day'  AND due_date > 'now'   ))
87                     AND (stop_fines IS NULL
88                         OR stop_fines NOT IN ('LOST','CLAIMSRETURNED','LONGOVERDUE'))
89         SQL
90
91         my $out = actor::user->db_Main->selectcol_arrayref($out_sql, {}, $usr);
92
93         my $od_sql = <<"        SQL";
94                         SELECT  id
95                           FROM  action.circulation
96                           WHERE usr = ?
97                     AND checkin_time IS NULL
98                     AND (  (fine_interval >= '1 day' AND due_date < 'today')
99                         OR (fine_interval < '1 day'  AND due_date < 'now'  ))
100                     AND (stop_fines IS NULL
101                         OR stop_fines NOT IN ('LOST','CLAIMSRETURNED','LONGOVERDUE'))
102         SQL
103
104         my $od = actor::user->db_Main->selectcol_arrayref($od_sql, {}, $usr);
105
106         my $lost_sql = <<"      SQL";
107                         SELECT  id
108                           FROM  action.circulation
109                           WHERE usr = ? AND checkin_time IS NULL AND xact_finish IS NULL AND stop_fines = 'LOST'
110         SQL
111
112         my $lost = actor::user->db_Main->selectcol_arrayref($lost_sql, {}, $usr);
113
114         my $cl_sql = <<"        SQL";
115                         SELECT  id
116                           FROM  action.circulation
117                           WHERE usr = ? AND checkin_time IS NULL AND stop_fines = 'CLAIMSRETURNED'
118         SQL
119
120         my $cl = actor::user->db_Main->selectcol_arrayref($cl_sql, {}, $usr);
121
122         my $lo_sql = <<"        SQL";
123                         SELECT  id
124                           FROM  action.circulation
125                           WHERE usr = ? AND checkin_time IS NULL AND stop_fines = 'LONGOVERDUE'
126         SQL
127
128         my $lo = actor::user->db_Main->selectcol_arrayref($lo_sql, {}, $usr);
129
130         $self->method_lookup('open-ils.storage.transaction.rollback')->run($client);
131
132         if ($self->api_name =~/count$/o) {
133                 return {        total   => scalar(@$out) + scalar(@$od) + scalar(@$lost) + scalar(@$cl) + scalar(@$lo),
134                                         out             => scalar(@$out),
135                                         overdue => scalar(@$od),
136                                         lost    => scalar(@$lost),
137                                         claims_returned => scalar(@$cl),
138                                         long_overdue            => scalar(@$lo),
139                 };
140         }
141
142         return {        out             => $out,
143                                 overdue => $od,
144                                 lost    => $lost,
145                                 claims_returned => $cl,
146                                 long_overdue            => $lo,
147         };
148 }
149 __PACKAGE__->register_method(
150         api_name        => 'open-ils.storage.actor.user.checked_out',
151         api_level       => 1,
152         method          => 'usr_breakdown_out',
153 );
154 __PACKAGE__->register_method(
155         api_name        => 'open-ils.storage.actor.user.checked_out.count',
156         api_level       => 1,
157         method          => 'usr_breakdown_out',
158 );
159
160 sub usr_total_out {
161         my $self = shift;
162         my $client = shift;
163         my $usr = shift;
164
165         my $sql = <<"   SQL";
166                         SELECT  count(*)
167                           FROM  action.circulation
168                           WHERE usr = ? AND checkin_time IS NULL
169         SQL
170
171         my ($val) = actor::user->db_Main->selectrow_array($sql, {}, $usr);
172
173         return $val;
174 }
175 __PACKAGE__->register_method(
176         api_name        => 'open-ils.storage.actor.user.total_out',
177         api_level       => 1,
178         method          => 'usr_total_out',
179 );
180
181 sub calc_proximity {
182         my $self = shift;
183         my $client = shift;
184
185         local $OpenILS::Application::Storage::WRITE = 1;
186
187         my $delete_sql = <<"    SQL";
188                 DELETE FROM actor.org_unit_proximity;
189         SQL
190
191         my $insert_sql = <<"    SQL";
192                 INSERT INTO actor.org_unit_proximity (from_org, to_org, prox)
193                         SELECT  l.id,
194                                 r.id,
195                                 actor.org_unit_proximity(l.id,r.id)
196                           FROM  actor.org_unit l,
197                                 actor.org_unit r;
198         SQL
199
200         actor::org_unit_proximity->db_Main->do($delete_sql);
201         actor::org_unit_proximity->db_Main->do($insert_sql);
202
203         return 1;
204 }
205 __PACKAGE__->register_method(
206         api_name        => 'open-ils.storage.actor.org_unit.refresh_proximity',
207         api_level       => 1,
208         method          => 'calc_proximity',
209 );
210
211 sub make_hoo_spanset {
212     my $hoo = shift;
213     return undef unless $hoo;
214
215     my $today = shift || DateTime->now;
216
217     my $tz = OpenSRF::AppSession->create('open-ils.actor')->request(
218         'open-ils.actor.ou_setting.ancestor_default' => $hoo->id.'' => 'org_unit.timezone'
219     )->gather(1) || DateTime::TimeZone->new( name => 'local' )->name;
220
221     my $current_dow = $today->day_of_week_0;
222
223     my $spanset = DateTime::SpanSet->empty_set;
224     for my $d ( 0 .. 6 ) {
225
226         my $omethod = 'dow_'.$d.'_open';
227         my $cmethod = 'dow_'.$d.'_close';
228
229         my $open = interval_to_seconds($hoo->$omethod());
230         my $close = interval_to_seconds($hoo->$cmethod());
231
232         next if ($open == $close && $open == 0);
233
234         my $dow_offset = ($d - $current_dow) * $one_day;
235         $close += $one_day if ($close <= $open);
236
237         $spanset = $spanset->union(
238             DateTime::Span->new(
239                 start => $today->clone->add( seconds => $dow_offset + $open  ),
240                 end   => $today->clone->add( seconds => $dow_offset + $close )
241             )
242         );
243     }
244
245     return $spanset->complement;
246 }
247
248 sub make_closure_spanset {
249     my $closures = shift;
250     return undef unless $closures;
251
252     my $spanset = DateTime::SpanSet->empty_set;
253     for my $k ( keys %$closures ) {
254         my $c = $$closures{$k};
255
256         $spanset = $spanset->union(
257             DateTime::Span->new(
258                 start => $_dt_parser->parse_datetime(cleanse_ISO8601($c->{close_start})),
259                 end   => $_dt_parser->parse_datetime(cleanse_ISO8601($c->{close_end}))
260             )
261         );
262     }
263
264     return $spanset;
265 }
266
267 sub new_org_closed_overlap {
268         my $self = shift;
269         my $client = shift;
270         my $ou = shift;
271         my $date = shift;
272         my $direction = shift || 0;
273         my $no_hoo = shift || 0;
274
275         return undef unless ($date && $ou);
276
277     # we're given a date and a direction, find any closures that contain the date
278         my $t = actor::org_unit::closed_date->table;
279         my $sql = <<"   SQL";
280                 SELECT  *
281                   FROM  $t
282                   WHERE close_end > ?
283                         AND org_unit = ?
284                   ORDER BY close_start ASC, close_end DESC
285                   LIMIT 1
286         SQL
287
288         $date = cleanse_ISO8601($date);
289
290     my $target_date = $_dt_parser->parse_datetime( $date );
291         my ($begin, $end) = ($target_date, $target_date);
292
293     # create a spanset from the closures that contain the $date
294         my $closure_spanset = make_closure_spanset(
295         actor::org_unit::closed_date->db_Main->selectall_hashref( $sql, 'id', {}, $date, $ou )
296     );
297
298     if ($closure_spanset && $closure_spanset->intersects( $target_date )) {
299         my $closure_intersection = $closure_spanset->intersection( $target_date );
300         $begin = $closure_intersection->min;
301         $end = $closure_intersection->max;
302
303                 if ( $direction <= 0 ) {
304                         $begin->subtract( minutes => 1 );
305
306                         while ( my $_b = new_org_closed_overlap($self, $client, $ou, $begin->strftime('%FT%T%z'), -1, 1 ) ) {
307                                 $begin = $_dt_parser->parse_datetime( cleanse_ISO8601($_b->{start}) );
308                         }
309                 }
310
311                 if ( $direction >= 0 ) {
312                         $end->add( minutes => 1 );
313
314                         while ( my $_a = new_org_closed_overlap($self, $client, $ou, $end->strftime('%FT%T%z'), 1, 1 ) ) {
315                                 $end = $_dt_parser->parse_datetime( cleanse_ISO8601($_a->{end}) );
316                         }
317                 }
318     }
319
320         if ( !$no_hoo ) {
321
322             my $begin_hoo = make_hoo_spanset(actor::org_unit::hours_of_operation->retrieve($ou), $begin);
323             my $end_hoo   = make_hoo_spanset(actor::org_unit::hours_of_operation->retrieve($ou), $end  );
324
325
326         if ( $begin_hoo && $direction <= 0 && $begin_hoo->intersects($begin) ) {
327             my $hoo_intersection = $begin_hoo->intersection( $begin );
328             $begin = $hoo_intersection->min;
329             $begin->subtract( minutes => 1 );
330
331             while ( my $_b = new_org_closed_overlap($self, $client, $ou, $begin->strftime('%FT%T%z'), -1 ) ) {
332                 $begin = $_dt_parser->parse_datetime( cleanse_ISO8601($_b->{start}) );
333             }
334         }
335         
336         if ( $end_hoo && $direction >= 0 && $end_hoo->intersects($end) ) {
337             my $hoo_intersection = $end_hoo->intersection( $end );
338             $end = $hoo_intersection->max;
339                         $end->add( minutes => 1 );
340
341
342             while ( my $_b = new_org_closed_overlap($self, $client, $ou, $end->strftime('%FT%T%z'), -1 ) ) {
343                 $end = $_dt_parser->parse_datetime( cleanse_ISO8601($_b->{end}) );
344             }
345         }
346     }
347
348     my $start = $begin->strftime('%FT%T%z');
349     my $stop = $end->strftime('%FT%T%z');
350
351     return undef if ($start eq $stop);
352     return { start => $start, end => $stop };
353 }
354 __PACKAGE__->register_method(
355         api_name        => 'open-ils.storage.actor.org_unit.closed_date.overlap',
356         api_level       => 0,
357         method          => 'new_org_closed_overlap',
358 );
359
360 sub org_closed_overlap {
361     my $self = shift;
362     my $client = shift;
363     my $ou = shift;
364     my $date = shift;
365     my $direction = shift || 0;
366     my $no_hoo = shift || 0;
367
368     return undef unless ($date && $ou);
369
370     my $t = actor::org_unit::closed_date->table;
371     my $sql = <<"    SQL";
372         SELECT  *
373           FROM  $t
374           WHERE ? between close_start and close_end
375             AND org_unit = ?
376           ORDER BY close_start ASC, close_end DESC
377           LIMIT 1
378     SQL
379
380     $date = cleanse_ISO8601($date);
381     my ($begin, $end) = ($date,$date);
382
383     my $hoo = actor::org_unit::hours_of_operation->retrieve($ou);
384
385     if (my $closure = actor::org_unit::closed_date->db_Main->selectrow_hashref( $sql, {}, $date, $ou )) {
386         $begin = cleanse_ISO8601($closure->{close_start});
387         $end = cleanse_ISO8601($closure->{close_end});
388
389         if ( $direction <= 0 ) {
390             $before = $_dt_parser->parse_datetime( $begin );
391             $before->subtract( minutes => 1 );
392
393             while ( my $_b = org_closed_overlap($self, $client, $ou, $before->strftime('%FT%T%z'), -1, 1 ) ) {
394                 $before = $_dt_parser->parse_datetime( cleanse_ISO8601($_b->{start}) );
395             }
396             $begin = cleanse_ISO8601($before->strftime('%FT%T%z'));
397         }
398
399         if ( $direction >= 0 ) {
400             $after = $_dt_parser->parse_datetime( $end );
401             $after->add( minutes => 1 );
402
403             while ( my $_a = org_closed_overlap($self, $client, $ou, $after->strftime('%FT%T%z'), 1, 1 ) ) {
404                 $after = $_dt_parser->parse_datetime( cleanse_ISO8601($_a->{end}) );
405             }
406             $end = cleanse_ISO8601($after->strftime('%FT%T%z'));
407         }
408     }
409
410     if ( !$no_hoo ) {
411         if ( $hoo ) {
412
413             if ( $direction <= 0 ) {
414                 my $begin_dow = $_dt_parser->parse_datetime( $begin )->day_of_week_0;
415                 my $begin_open_meth = "dow_".$begin_dow."_open";
416                 my $begin_close_meth = "dow_".$begin_dow."_close";
417
418                 my $count = 1;
419                 while ($hoo->$begin_open_meth eq '00:00:00' and $hoo->$begin_close_meth eq '00:00:00') {
420                     $begin = cleanse_ISO8601($_dt_parser->parse_datetime( $begin )->subtract( days => 1)->strftime('%FT%T%z'));
421                     $begin_dow++;
422                     $begin_dow %= 7;
423                     $count++;
424                     last if ($count > 6);
425                     $begin_open_meth = "dow_".$begin_dow."_open";
426                     $begin_close_meth = "dow_".$begin_dow."_close";
427                 }
428
429                 if (my $closure = actor::org_unit::closed_date->db_Main->selectrow_hashref( $sql, {}, $begin, $ou )) {
430                     $before = $_dt_parser->parse_datetime( $begin );
431                     $before->subtract( minutes => 1 );
432                     while ( my $_b = org_closed_overlap($self, $client, $ou, $before->strftime('%FT%T%z'), -1 ) ) {
433                         $before = $_dt_parser->parse_datetime( cleanse_ISO8601($_b->{start}) );
434                     }
435                 }
436             }
437     
438             if ( $direction >= 0 ) {
439                 my $end_dow = $_dt_parser->parse_datetime( $end )->day_of_week_0;
440                 my $end_open_meth = "dow_".$end_dow."_open";
441                 my $end_close_meth = "dow_".$end_dow."_close";
442     
443                 $count = 1;
444                 while ($hoo->$end_open_meth eq '00:00:00' and $hoo->$end_close_meth eq '00:00:00') {
445                     $end = cleanse_ISO8601($_dt_parser->parse_datetime( $end )->add( days => 1)->strftime('%FT%T%z'));
446                     $end_dow++;
447                     $end_dow %= 7;
448                     $count++;
449                     last if ($count > 6);
450                     $end_open_meth = "dow_".$end_dow."_open";
451                     $end_close_meth = "dow_".$end_dow."_close";
452                 }
453
454                 if (my $closure = actor::org_unit::closed_date->db_Main->selectrow_hashref( $sql, {}, $end, $ou )) {
455                     $after = $_dt_parser->parse_datetime( $end );
456                     $after->add( minutes => 1 );
457
458                     while ( my $_a = org_closed_overlap($self, $client, $ou, $after->strftime('%FT%T%z'), 1 ) ) {
459                         $after = $_dt_parser->parse_datetime( cleanse_ISO8601($_a->{end}) );
460                     }
461                     $end = cleanse_ISO8601($after->strftime('%FT%T%z'));
462                 }
463             }
464
465         }
466     }
467
468     if ($begin eq $date && $end eq $date) {
469         return undef;
470     }
471
472     return { start => $begin, end => $end };
473 }
474 __PACKAGE__->register_method(
475         api_name        => 'open-ils.storage.actor.org_unit.closed_date.overlap',
476         api_level       => 1,
477         method          => 'org_closed_overlap',
478 );
479
480 sub user_by_barcode {
481         my $self = shift;
482         my $client = shift;
483         my @barcodes = shift;
484
485         return undef unless @barcodes;
486
487         for my $card ( actor::card->search( { barcode => @barcodes } ) ) {
488                 next unless $card;
489                 if (@barcodes == 1) {
490                         return $card->usr->to_fieldmapper;
491                 }
492                 $client->respond( $card->usr->to_fieldmapper);
493         }
494         return undef;
495 }
496 __PACKAGE__->register_method(
497         api_name        => 'open-ils.storage.direct.actor.user.search.barcode',
498         api_level       => 1,
499         method          => 'user_by_barcode',
500         stream          => 1,
501         cachable        => 1,
502 );
503
504 sub lost_barcodes {
505         my $self = shift;
506         my $client = shift;
507
508         my $c = actor::card->table;
509         my $p = actor::user->table;
510
511         my $sql = "SELECT c.barcode FROM $c c JOIN $p p ON (c.usr = p.id) WHERE p.card <> c.id";
512
513         my $list = actor::user->db_Main->selectcol_arrayref($sql);
514         for my $bc ( @$list ) {
515                 $client->respond($bc);
516         }
517         return undef;
518 }
519 __PACKAGE__->register_method(
520         api_name        => 'open-ils.storage.actor.user.lost_barcodes',
521         api_level       => 1,
522         stream          => 1,
523         method          => 'lost_barcodes',
524         signature       => <<'  NOTE',
525                 Returns an array of barcodes that belong to lost cards.
526                 @return array of barcodes
527         NOTE
528 );
529
530 sub expired_barcodes {
531         my $self = shift;
532         my $client = shift;
533
534         my $c = actor::card->table;
535         my $p = actor::user->table;
536
537         my $sql = "SELECT c.barcode FROM $c c JOIN $p p ON (c.usr = p.id) WHERE p.expire_date < CURRENT_DATE";
538
539         my $list = actor::user->db_Main->selectcol_arrayref($sql);
540         for my $bc ( @$list ) {
541                 $client->respond($bc);
542         }
543         return undef;
544 }
545 __PACKAGE__->register_method(
546         api_name        => 'open-ils.storage.actor.user.expired_barcodes',
547         api_level       => 1,
548         stream          => 1,
549         method          => 'expired_barcodes',
550         signature       => <<'  NOTE',
551                 Returns an array of barcodes that are currently expired.
552                 @return array of barcodes
553         NOTE
554 );
555
556 sub barred_barcodes {
557         my $self = shift;
558         my $client = shift;
559
560         my $c = actor::card->table;
561         my $p = actor::user->table;
562
563         my $sql = "SELECT c.barcode FROM $c c JOIN $p p ON (c.usr = p.id) WHERE p.barred IS TRUE";
564
565         my $list = actor::user->db_Main->selectcol_arrayref($sql);
566         for my $bc ( @$list ) {
567                 $client->respond($bc);
568         }
569         return undef;
570 }
571 __PACKAGE__->register_method(
572         api_name        => 'open-ils.storage.actor.user.barred_barcodes',
573         api_level       => 1,
574         stream          => 1,
575         method          => 'barred_barcodes',
576         signature       => <<'  NOTE',
577                 Returns an array of barcodes that are currently barred.
578                 @return array of barcodes
579         NOTE
580 );
581
582 sub penalized_barcodes {
583         my $self = shift;
584         my $client = shift;
585
586         my $c = actor::card->table;
587         my $p = actor::user_standing_penalty->table;
588
589         my $sql = <<"   SQL";
590                 SELECT  DISTINCT c.barcode
591                   FROM  $c c
592                         JOIN $p p USING (usr)
593                         JOIN config.standing_penalty csp ON (csp.id = p.standing_penalty)
594                   WHERE csp.block_list IS NOT NULL
595                         AND p.set_date < CURRENT_DATE
596                         AND (p.stop_date IS NULL OR p.stop_date > CURRENT_DATE);
597         SQL
598
599         my $list = actor::user->db_Main->selectcol_arrayref($sql);
600         for my $bc ( @$list ) {
601                 $client->respond($bc);
602         }
603         return undef;
604 }
605 __PACKAGE__->register_method(
606         api_name        => 'open-ils.storage.actor.user.penalized_barcodes',
607         api_level       => 1,
608         stream          => 1,
609         method          => 'penalized_barcodes',
610         signature       => <<'  NOTE',
611                 Returns an array of barcodes that have blocking penalties.
612                 @return array of barcodes
613         NOTE
614 );
615
616 sub _clean_regex_chars {
617     my ($search) = @_;
618
619     # Escape metacharacters for SIMILAR TO 
620     # (http://www.postgresql.org/docs/8.4/interactive/functions-matching.html)
621     $search =~ s/\_/\\_/g;
622     $search =~ s/\%/\\%/g;
623     $search =~ s/\|/\\|/g;
624     $search =~ s/\*/\\*/g;
625     $search =~ s/\+/\\+/g;
626     $search =~ s/\[/\\[/g;
627     $search =~ s/\]/\\]/g;
628     $search =~ s/\(/\\(/g;
629     $search =~ s/\)/\\)/g;
630
631     return $search;
632 }
633
634 sub patron_search {
635         my $self = shift;
636         my $client = shift;
637         my $search = shift;
638         my $limit = shift || 1000;
639         my $sort = shift;
640         my $inactive = shift;
641         my $ws_ou = shift;
642         my $ws_ou_depth = shift || 0;
643
644     my $penalty_sort = 0;
645
646         my $strict_opt_in = OpenSRF::Utils::SettingsClient->new->config_value( share => user => 'opt_in' );
647
648         $sort = ['family_name','first_given_name'] unless ($$sort[0]);
649         push @$sort,'id';
650
651     if ($$sort[0] eq 'penalties') {
652         shift @$sort;
653         $penalty_sort = 1;
654     }
655
656         # group 0 = user
657         # group 1 = address
658         # group 2 = phone, ident
659         # group 3 = barcode
660
661         my $usr = join ' AND ', map { "evergreen.lowercase(CAST($_ AS text)) ~ ?" } grep { ''.$$search{$_}{group} eq '0' } keys %$search;
662         my @usrv = map { "^" . _clean_regex_chars($$search{$_}{value}) } grep { ''.$$search{$_}{group} eq '0' } keys %$search;
663
664         my $addr = join ' AND ', map { "evergreen.lowercase(CAST($_ AS text)) ~ ?" } grep { ''.$$search{$_}{group} eq '1' } keys %$search;
665         my @addrv = map { "^" . _clean_regex_chars($$search{$_}{value}) } grep { ''.$$search{$_}{group} eq '1' } keys %$search;
666
667         my $pv = _clean_regex_chars($$search{phone}{value});
668         my $iv = _clean_regex_chars($$search{ident}{value});
669         my $nv = _clean_regex_chars($$search{name}{value});
670         my $cv = _clean_regex_chars($$search{card}{value});
671
672         my $card = '';
673         if ($cv) {
674             $card = 'JOIN (SELECT DISTINCT usr FROM actor.card WHERE evergreen.lowercase(barcode) LIKE ?||\'%\') AS card ON (card.usr = users.id)';
675             unshift(@usrv, $cv);
676         }
677
678         my $phone = '';
679         my @ps;
680         my @phonev;
681         if ($pv) {
682                 for my $p ( qw/day_phone evening_phone other_phone/ ) {
683                         if ($pv =~ /^\d+$/) {
684                                 push @ps, "evergreen.lowercase(REGEXP_REPLACE($p, '[^0-9]', '', 'g')) ~ ?";
685                         } else {
686                                 push @ps, "evergreen.lowercase($p) ~ ?";
687                         }
688                         push @phonev, "^$pv";
689                 }
690                 $phone = '(' . join(' OR ', @ps) . ')';
691         }
692
693         my $ident = '';
694         my @is;
695         my @identv;
696         if ($iv) {
697                 for my $i ( qw/ident_value ident_value2/ ) {
698                         push @is, "evergreen.lowercase($i) ~ ?";
699                         push @identv, "^$iv";
700                 }
701                 $ident = '(' . join(' OR ', @is) . ')';
702         }
703
704         my $name = '';
705         my @ns;
706         my @namev;
707         if (0 && $nv) {
708                 for my $n ( qw/first_given_name second_given_name family_name/ ) {
709                         push @ns, "evergreen.lowercase($n) ~ ?";
710                         push @namev, "^$nv";
711                 }
712                 $name = '(' . join(' OR ', @ns) . ')';
713         }
714
715         my $usr_where = join ' AND ', grep { $_ } ($usr,$phone,$ident,$name);
716         my $addr_where = $addr;
717
718
719         my $u_table = actor::user->table;
720         my $a_table = actor::user_address->table;
721         my $opt_in_table = actor::usr_org_unit_opt_in->table;
722         my $ou_table = actor::org_unit->table;
723
724         my $u_select = "SELECT id as id FROM $u_table u WHERE $usr_where";
725         my $a_select = "SELECT u.id as id FROM $a_table a JOIN $u_table u ON (u.mailing_address = a.id OR u.billing_address = a.id) WHERE $addr_where";
726
727         my $clone_select = '';
728
729         #$clone_select = "JOIN (SELECT cu.id as id FROM $a_table ca ".
730         #                  "JOIN $u_table cu ON (cu.mailing_address = ca.id OR cu.billing_address = ca.id) ".
731         #                  "WHERE $addr_where) AS clone ON (clone.id = users.id)" if ($addr_where);
732
733         my $select = '';
734         if ($usr_where) {
735                 if ($addr_where) {
736                         $select = "$u_select INTERSECT $a_select";
737                 } else {
738                         $select = $u_select;
739                 }
740         } elsif ($addr_where) {
741                 $select = "$a_select";
742         }
743
744         return undef if (!$select && !$card);
745
746         my $order_by = join ', ', map { 'evergreen.lowercase(CAST(users.'. (split / /,$_)[0] . ' AS text)) ' . (split / /,$_)[1] } @$sort;
747         my $distinct_list = join ', ', map { 'evergreen.lowercase(CAST(users.'. (split / /,$_)[0] . ' AS text))' } @$sort;
748     my $group_list = $distinct_list;
749
750         if ($inactive) {
751                 $inactive = '';
752         } else {
753                 $inactive = 'AND users.active = TRUE';
754         }
755
756         if (!$ws_ou) {  # XXX This should be required!!
757                 $ws_ou = actor::org_unit->search( { parent_ou => undef } )->next->id;
758         }
759
760         my $opt_in_join = '';
761         my $opt_in_where = '';
762         if (lc($strict_opt_in) eq 'true') {
763                 $opt_in_join = "LEFT JOIN $opt_in_table oi ON (oi.org_unit = $ws_ou AND users.id = oi.usr)";
764                 $opt_in_where = "AND (oi.id IS NOT NULL OR users.home_ou = $ws_ou)";
765         }
766
767         my $penalty_join = '';
768     if ($penalty_sort) {
769         $distinct_list = 'COUNT(penalties.id), ' . $distinct_list;
770         $order_by = 'COUNT(penalties.id) DESC, ' . $order_by;
771         unshift @$sort, 'COUNT(penalties.id)';
772             $penalty_join = <<"        SQL";
773             LEFT JOIN actor.usr_standing_penalty penalties
774                 ON (users.id = penalties.usr AND (penalties.stop_date IS NULL OR penalties.stop_date > NOW()))
775         SQL
776     }
777
778         my $descendants = "actor.org_unit_descendants($ws_ou, $ws_ou_depth)";
779
780         $select = "JOIN ($select) AS search ON (search.id = users.id)" if ($select);
781         $select = <<"   SQL";
782                 SELECT  $distinct_list
783                   FROM  $u_table AS users $card
784                         JOIN $descendants d ON (d.id = users.home_ou)
785                         $select
786                         $opt_in_join
787                         $clone_select
788             $penalty_join
789                   WHERE users.deleted = FALSE
790                         $inactive
791                         $opt_in_where
792                   GROUP BY $group_list
793                   ORDER BY $order_by
794                   LIMIT $limit
795         SQL
796
797         return actor::user->db_Main->selectcol_arrayref($select, {Columns=>[scalar(@$sort)]}, map {lc($_)} (@usrv,@phonev,@identv,@namev,@addrv));
798 }
799 __PACKAGE__->register_method(
800         api_name        => 'open-ils.storage.actor.user.crazy_search',
801         api_level       => 1,
802         method          => 'patron_search',
803 );
804
805 sub org_unit_list {
806         my $self = shift;
807         my $client = shift;
808
809         my $select =<<" SQL";
810         SELECT  *
811           FROM  actor.org_unit
812           ORDER BY CASE WHEN parent_ou IS NULL THEN 0 ELSE 1 END, name;
813         SQL
814
815         my $sth = actor::org_unit->db_Main->prepare_cached($select);
816         $sth->execute;
817
818         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
819
820         return undef;
821 }
822 __PACKAGE__->register_method(
823         api_name        => 'open-ils.storage.direct.actor.org_unit.retrieve.all',
824         api_level       => 1,
825         stream          => 1,
826         method          => 'org_unit_list',
827 );
828
829 sub org_unit_type_list {
830         my $self = shift;
831         my $client = shift;
832
833         my $select =<<" SQL";
834         SELECT  *
835           FROM  actor.org_unit_type
836           ORDER BY depth, name;
837         SQL
838
839         my $sth = actor::org_unit_type->db_Main->prepare_cached($select);
840         $sth->execute;
841
842         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit_type->construct($_) } $sth->fetchall_hash );
843
844         return undef;
845 }
846 __PACKAGE__->register_method(
847         api_name        => 'open-ils.storage.direct.actor.org_unit_type.retrieve.all',
848         api_level       => 1,
849         stream          => 1,
850         method          => 'org_unit_type_list',
851 );
852
853 sub org_unit_full_path {
854         my $self = shift;
855         my $client = shift;
856         my @binds = @_;
857
858         return undef unless (@binds);
859
860         my $func = 'actor.org_unit_full_path(?)';
861         $func = 'actor.org_unit_full_path(?,?)' if (@binds > 1);
862
863         my $sth = actor::org_unit->db_Main->prepare_cached("SELECT * FROM $func");
864         $sth->execute(@binds);
865
866         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
867
868         return undef;
869 }
870 __PACKAGE__->register_method(
871         api_name        => 'open-ils.storage.actor.org_unit.full_path',
872         api_level       => 1,
873         stream          => 1,
874         method          => 'org_unit_full_path',
875 );
876
877 sub org_unit_ancestors {
878         my $self = shift;
879         my $client = shift;
880         my $id = shift;
881
882         return undef unless ($id);
883
884         my $func = 'actor.org_unit_ancestors(?)';
885
886         my $sth = actor::org_unit->db_Main->prepare_cached(<<"  SQL");
887                 SELECT  f.*
888                   FROM  $func f
889                         JOIN actor.org_unit_type t ON (f.ou_type = t.id)
890                   ORDER BY t.depth, f.name;
891         SQL
892         $sth->execute(''.$id);
893
894         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
895
896         return undef;
897 }
898 __PACKAGE__->register_method(
899         api_name        => 'open-ils.storage.actor.org_unit.ancestors',
900         api_level       => 1,
901         stream          => 1,
902         method          => 'org_unit_ancestors',
903 );
904
905 sub org_unit_descendants {
906         my $self = shift;
907         my $client = shift;
908         my $id = shift;
909         my $depth = shift;
910
911         return undef unless ($id);
912
913         my $func = 'actor.org_unit_descendants(?)';
914         if (defined $depth) {
915                 $func = 'actor.org_unit_descendants(?,?)';
916         }
917
918         my $sth = actor::org_unit->db_Main->prepare_cached("SELECT * FROM $func");
919         $sth->execute(''.$id, ''.$depth) if (defined $depth);
920         $sth->execute(''.$id) unless (defined $depth);
921
922         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
923
924         return undef;
925 }
926 __PACKAGE__->register_method(
927         api_name        => 'open-ils.storage.actor.org_unit.descendants',
928         api_level       => 1,
929         stream          => 1,
930         method          => 'org_unit_descendants',
931 );
932
933 sub fleshed_actor_stat_cat {
934         my $self = shift;
935         my $client = shift;
936         my @list = @_;
937         
938         @list = ($list[0]) unless ($self->api_name =~ /batch/o);
939
940         for my $sc (@list) {
941                 my $cat = actor::stat_cat->retrieve($sc);
942                 next unless ($cat);
943
944                 my $sc_fm = $cat->to_fieldmapper;
945                 $sc_fm->entries( [ map { $_->to_fieldmapper } $cat->entries ] );
946
947                 $client->respond( $sc_fm );
948
949         }
950
951         return undef;
952 }
953 __PACKAGE__->register_method(
954         api_name        => 'open-ils.storage.fleshed.actor.stat_cat.retrieve',
955         api_level       => 1,
956         argc            => 1,
957         method          => 'fleshed_actor_stat_cat',
958 );
959
960 __PACKAGE__->register_method(
961         api_name        => 'open-ils.storage.fleshed.actor.stat_cat.retrieve.batch',
962         api_level       => 1,
963         argc            => 1,
964         stream          => 1,
965         method          => 'fleshed_actor_stat_cat',
966 );
967
968 #XXX Fix stored proc calls
969 sub ranged_actor_stat_cat_all {
970         my $self = shift;
971         my $client = shift;
972         my $ou = ''.shift();
973         
974         return undef unless ($ou);
975         my $s_table = actor::stat_cat->table;
976
977         my $select = <<"        SQL";
978                 SELECT  s.*
979                   FROM  $s_table s
980                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
981                   ORDER BY name
982         SQL
983
984         $fleshed = 0;
985         $fleshed = 1 if ($self->api_name =~ /fleshed/o);
986
987         my $sth = actor::stat_cat->db_Main->prepare_cached($select);
988         $sth->execute($ou);
989
990         for my $sc ( map { actor::stat_cat->construct($_) } $sth->fetchall_hash ) {
991                 my $sc_fm = $sc->to_fieldmapper;
992                 $sc_fm->entries(
993                         [ $self->method_lookup( 'open-ils.storage.ranged.actor.stat_cat_entry.search.stat_cat' )->run($ou,$sc->id) ]
994                 ) if ($fleshed);
995                 $client->respond( $sc_fm );
996         }
997
998         return undef;
999 }
1000 __PACKAGE__->register_method(
1001         api_name        => 'open-ils.storage.ranged.fleshed.actor.stat_cat.all',
1002         api_level       => 1,
1003         argc            => 1,
1004         stream          => 1,
1005         method          => 'ranged_actor_stat_cat_all',
1006 );
1007
1008 __PACKAGE__->register_method(
1009         api_name        => 'open-ils.storage.ranged.actor.stat_cat.all',
1010         api_level       => 1,
1011         argc            => 1,
1012         stream          => 1,
1013         method          => 'ranged_actor_stat_cat_all',
1014 );
1015
1016 #XXX Fix stored proc calls
1017 sub ranged_actor_stat_cat_entry {
1018         my $self = shift;
1019         my $client = shift;
1020         my $ou = ''.shift();
1021         my $sc = ''.shift();
1022         
1023         return undef unless ($ou);
1024         my $s_table = actor::stat_cat_entry->table;
1025
1026         my $select = <<"        SQL";
1027                 SELECT  s.*
1028                   FROM  $s_table s
1029                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
1030                   WHERE stat_cat = ?
1031                   ORDER BY name
1032         SQL
1033
1034         my $sth = actor::stat_cat->db_Main->prepare_cached($select);
1035         $sth->execute($ou,$sc);
1036
1037         for my $sce ( map { actor::stat_cat_entry->construct($_) } $sth->fetchall_hash ) {
1038                 $client->respond( $sce->to_fieldmapper );
1039         }
1040
1041         return undef;
1042 }
1043 __PACKAGE__->register_method(
1044         api_name        => 'open-ils.storage.ranged.actor.stat_cat_entry.search.stat_cat',
1045         api_level       => 1,
1046         stream          => 1,
1047         method          => 'ranged_actor_stat_cat_entry',
1048 );
1049
1050
1051 1;