]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/actor.pm
cd3d4b5d14a64e41d08b31f99d52a55ca8b77143
[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                         push @ps, "evergreen.lowercase($p) ~ ?";
684                         push @phonev, "^$pv";
685                 }
686                 $phone = '(' . join(' OR ', @ps) . ')';
687         }
688
689         my $ident = '';
690         my @is;
691         my @identv;
692         if ($iv) {
693                 for my $i ( qw/ident_value ident_value2/ ) {
694                         push @is, "evergreen.lowercase($i) ~ ?";
695                         push @identv, "^$iv";
696                 }
697                 $ident = '(' . join(' OR ', @is) . ')';
698         }
699
700         my $name = '';
701         my @ns;
702         my @namev;
703         if (0 && $nv) {
704                 for my $n ( qw/first_given_name second_given_name family_name/ ) {
705                         push @ns, "evergreen.lowercase($n) ~ ?";
706                         push @namev, "^$nv";
707                 }
708                 $name = '(' . join(' OR ', @ns) . ')';
709         }
710
711         my $usr_where = join ' AND ', grep { $_ } ($usr,$phone,$ident,$name);
712         my $addr_where = $addr;
713
714
715         my $u_table = actor::user->table;
716         my $a_table = actor::user_address->table;
717         my $opt_in_table = actor::usr_org_unit_opt_in->table;
718         my $ou_table = actor::org_unit->table;
719
720         my $u_select = "SELECT id as id FROM $u_table u WHERE $usr_where";
721         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";
722
723         my $clone_select = '';
724
725         #$clone_select = "JOIN (SELECT cu.id as id FROM $a_table ca ".
726         #                  "JOIN $u_table cu ON (cu.mailing_address = ca.id OR cu.billing_address = ca.id) ".
727         #                  "WHERE $addr_where) AS clone ON (clone.id = users.id)" if ($addr_where);
728
729         my $select = '';
730         if ($usr_where) {
731                 if ($addr_where) {
732                         $select = "$u_select INTERSECT $a_select";
733                 } else {
734                         $select = $u_select;
735                 }
736         } elsif ($addr_where) {
737                 $select = "$a_select";
738         }
739
740         return undef if (!$select && !$card);
741
742         my $order_by = join ', ', map { 'evergreen.lowercase(CAST(users.'. (split / /,$_)[0] . ' AS text)) ' . (split / /,$_)[1] } @$sort;
743         my $distinct_list = join ', ', map { 'evergreen.lowercase(CAST(users.'. (split / /,$_)[0] . ' AS text))' } @$sort;
744     my $group_list = $distinct_list;
745
746         if ($inactive) {
747                 $inactive = '';
748         } else {
749                 $inactive = 'AND users.active = TRUE';
750         }
751
752         if (!$ws_ou) {  # XXX This should be required!!
753                 $ws_ou = actor::org_unit->search( { parent_ou => undef } )->next->id;
754         }
755
756         my $opt_in_join = '';
757         my $opt_in_where = '';
758         if (lc($strict_opt_in) eq 'true') {
759                 $opt_in_join = "LEFT JOIN $opt_in_table oi ON (oi.org_unit = $ws_ou AND users.id = oi.usr)";
760                 $opt_in_where = "AND (oi.id IS NOT NULL OR users.home_ou = $ws_ou)";
761         }
762
763         my $penalty_join = '';
764     if ($penalty_sort) {
765         $distinct_list = 'COUNT(penalties.id), ' . $distinct_list;
766         $order_by = 'COUNT(penalties.id) DESC, ' . $order_by;
767         unshift @$sort, 'COUNT(penalties.id)';
768             $penalty_join = <<"        SQL";
769             LEFT JOIN actor.usr_standing_penalty penalties
770                 ON (users.id = penalties.usr AND (penalties.stop_date IS NULL OR penalties.stop_date > NOW()))
771         SQL
772     }
773
774         my $descendants = "actor.org_unit_descendants($ws_ou, $ws_ou_depth)";
775
776         $select = "JOIN ($select) AS search ON (search.id = users.id)" if ($select);
777         $select = <<"   SQL";
778                 SELECT  $distinct_list
779                   FROM  $u_table AS users $card
780                         JOIN $descendants d ON (d.id = users.home_ou)
781                         $select
782                         $opt_in_join
783                         $clone_select
784             $penalty_join
785                   WHERE users.deleted = FALSE
786                         $inactive
787                         $opt_in_where
788                   GROUP BY $group_list
789                   ORDER BY $order_by
790                   LIMIT $limit
791         SQL
792
793         return actor::user->db_Main->selectcol_arrayref($select, {Columns=>[scalar(@$sort)]}, map {lc($_)} (@usrv,@phonev,@identv,@namev,@addrv));
794 }
795 __PACKAGE__->register_method(
796         api_name        => 'open-ils.storage.actor.user.crazy_search',
797         api_level       => 1,
798         method          => 'patron_search',
799 );
800
801 sub org_unit_list {
802         my $self = shift;
803         my $client = shift;
804
805         my $select =<<" SQL";
806         SELECT  *
807           FROM  actor.org_unit
808           ORDER BY CASE WHEN parent_ou IS NULL THEN 0 ELSE 1 END, name;
809         SQL
810
811         my $sth = actor::org_unit->db_Main->prepare_cached($select);
812         $sth->execute;
813
814         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
815
816         return undef;
817 }
818 __PACKAGE__->register_method(
819         api_name        => 'open-ils.storage.direct.actor.org_unit.retrieve.all',
820         api_level       => 1,
821         stream          => 1,
822         method          => 'org_unit_list',
823 );
824
825 sub org_unit_type_list {
826         my $self = shift;
827         my $client = shift;
828
829         my $select =<<" SQL";
830         SELECT  *
831           FROM  actor.org_unit_type
832           ORDER BY depth, name;
833         SQL
834
835         my $sth = actor::org_unit_type->db_Main->prepare_cached($select);
836         $sth->execute;
837
838         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit_type->construct($_) } $sth->fetchall_hash );
839
840         return undef;
841 }
842 __PACKAGE__->register_method(
843         api_name        => 'open-ils.storage.direct.actor.org_unit_type.retrieve.all',
844         api_level       => 1,
845         stream          => 1,
846         method          => 'org_unit_type_list',
847 );
848
849 sub org_unit_full_path {
850         my $self = shift;
851         my $client = shift;
852         my @binds = @_;
853
854         return undef unless (@binds);
855
856         my $func = 'actor.org_unit_full_path(?)';
857         $func = 'actor.org_unit_full_path(?,?)' if (@binds > 1);
858
859         my $sth = actor::org_unit->db_Main->prepare_cached("SELECT * FROM $func");
860         $sth->execute(@binds);
861
862         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
863
864         return undef;
865 }
866 __PACKAGE__->register_method(
867         api_name        => 'open-ils.storage.actor.org_unit.full_path',
868         api_level       => 1,
869         stream          => 1,
870         method          => 'org_unit_full_path',
871 );
872
873 sub org_unit_ancestors {
874         my $self = shift;
875         my $client = shift;
876         my $id = shift;
877
878         return undef unless ($id);
879
880         my $func = 'actor.org_unit_ancestors(?)';
881
882         my $sth = actor::org_unit->db_Main->prepare_cached(<<"  SQL");
883                 SELECT  f.*
884                   FROM  $func f
885                         JOIN actor.org_unit_type t ON (f.ou_type = t.id)
886                   ORDER BY t.depth, f.name;
887         SQL
888         $sth->execute(''.$id);
889
890         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
891
892         return undef;
893 }
894 __PACKAGE__->register_method(
895         api_name        => 'open-ils.storage.actor.org_unit.ancestors',
896         api_level       => 1,
897         stream          => 1,
898         method          => 'org_unit_ancestors',
899 );
900
901 sub org_unit_descendants {
902         my $self = shift;
903         my $client = shift;
904         my $id = shift;
905         my $depth = shift;
906
907         return undef unless ($id);
908
909         my $func = 'actor.org_unit_descendants(?)';
910         if (defined $depth) {
911                 $func = 'actor.org_unit_descendants(?,?)';
912         }
913
914         my $sth = actor::org_unit->db_Main->prepare_cached("SELECT * FROM $func");
915         $sth->execute(''.$id, ''.$depth) if (defined $depth);
916         $sth->execute(''.$id) unless (defined $depth);
917
918         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
919
920         return undef;
921 }
922 __PACKAGE__->register_method(
923         api_name        => 'open-ils.storage.actor.org_unit.descendants',
924         api_level       => 1,
925         stream          => 1,
926         method          => 'org_unit_descendants',
927 );
928
929 sub fleshed_actor_stat_cat {
930         my $self = shift;
931         my $client = shift;
932         my @list = @_;
933         
934         @list = ($list[0]) unless ($self->api_name =~ /batch/o);
935
936         for my $sc (@list) {
937                 my $cat = actor::stat_cat->retrieve($sc);
938                 next unless ($cat);
939
940                 my $sc_fm = $cat->to_fieldmapper;
941                 $sc_fm->entries( [ map { $_->to_fieldmapper } $cat->entries ] );
942
943                 $client->respond( $sc_fm );
944
945         }
946
947         return undef;
948 }
949 __PACKAGE__->register_method(
950         api_name        => 'open-ils.storage.fleshed.actor.stat_cat.retrieve',
951         api_level       => 1,
952         argc            => 1,
953         method          => 'fleshed_actor_stat_cat',
954 );
955
956 __PACKAGE__->register_method(
957         api_name        => 'open-ils.storage.fleshed.actor.stat_cat.retrieve.batch',
958         api_level       => 1,
959         argc            => 1,
960         stream          => 1,
961         method          => 'fleshed_actor_stat_cat',
962 );
963
964 #XXX Fix stored proc calls
965 sub ranged_actor_stat_cat_all {
966         my $self = shift;
967         my $client = shift;
968         my $ou = ''.shift();
969         
970         return undef unless ($ou);
971         my $s_table = actor::stat_cat->table;
972
973         my $select = <<"        SQL";
974                 SELECT  s.*
975                   FROM  $s_table s
976                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
977                   ORDER BY name
978         SQL
979
980         $fleshed = 0;
981         $fleshed = 1 if ($self->api_name =~ /fleshed/o);
982
983         my $sth = actor::stat_cat->db_Main->prepare_cached($select);
984         $sth->execute($ou);
985
986         for my $sc ( map { actor::stat_cat->construct($_) } $sth->fetchall_hash ) {
987                 my $sc_fm = $sc->to_fieldmapper;
988                 $sc_fm->entries(
989                         [ $self->method_lookup( 'open-ils.storage.ranged.actor.stat_cat_entry.search.stat_cat' )->run($ou,$sc->id) ]
990                 ) if ($fleshed);
991                 $client->respond( $sc_fm );
992         }
993
994         return undef;
995 }
996 __PACKAGE__->register_method(
997         api_name        => 'open-ils.storage.ranged.fleshed.actor.stat_cat.all',
998         api_level       => 1,
999         argc            => 1,
1000         stream          => 1,
1001         method          => 'ranged_actor_stat_cat_all',
1002 );
1003
1004 __PACKAGE__->register_method(
1005         api_name        => 'open-ils.storage.ranged.actor.stat_cat.all',
1006         api_level       => 1,
1007         argc            => 1,
1008         stream          => 1,
1009         method          => 'ranged_actor_stat_cat_all',
1010 );
1011
1012 #XXX Fix stored proc calls
1013 sub ranged_actor_stat_cat_entry {
1014         my $self = shift;
1015         my $client = shift;
1016         my $ou = ''.shift();
1017         my $sc = ''.shift();
1018         
1019         return undef unless ($ou);
1020         my $s_table = actor::stat_cat_entry->table;
1021
1022         my $select = <<"        SQL";
1023                 SELECT  s.*
1024                   FROM  $s_table s
1025                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
1026                   WHERE stat_cat = ?
1027                   ORDER BY name
1028         SQL
1029
1030         my $sth = actor::stat_cat->db_Main->prepare_cached($select);
1031         $sth->execute($ou,$sc);
1032
1033         for my $sce ( map { actor::stat_cat_entry->construct($_) } $sth->fetchall_hash ) {
1034                 $client->respond( $sce->to_fieldmapper );
1035         }
1036
1037         return undef;
1038 }
1039 __PACKAGE__->register_method(
1040         api_name        => 'open-ils.storage.ranged.actor.stat_cat_entry.search.stat_cat',
1041         api_level       => 1,
1042         stream          => 1,
1043         method          => 'ranged_actor_stat_cat_entry',
1044 );
1045
1046
1047 1;