]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/Application/Storage/Publisher/actor.pm
ranged non-cat types; depth aware full-path (my_orgs)
[working/Evergreen.git] / Open-ILS / src / perlmods / 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 OpenILS::Utils::Fieldmapper;
6
7 my $log = 'OpenSRF::Utils::Logger';
8
9 sub user_by_barcode {
10         my $self = shift;
11         my $client = shift;
12         my @barcodes = shift;
13
14         return undef unless @barcodes;
15
16         for my $card ( actor::card->search( { barcode => @barcodes } ) ) {
17                 next unless $card;
18                 if (@barcodes == 1) {
19                         return $card->usr->to_fieldmapper;
20                 }
21                 $client->respond( $card->usr->to_fieldmapper);
22         }
23         return undef;
24 }
25 __PACKAGE__->register_method(
26         api_name        => 'open-ils.storage.direct.actor.user.search.barcode',
27         api_level       => 1,
28         method          => 'user_by_barcode',
29         stream          => 1,
30         cachable        => 1,
31 );
32
33
34 sub patron_search {
35         my $self = shift;
36         my $client = shift;
37         my $search = shift;
38
39         # group 0 = user
40         # group 1 = address
41         # group 2 = phone, ident
42
43         my $usr = join ' AND ', map { "LOWER($_) ~ ?" } grep { ''.$$search{$_}{group} eq '0' } keys %$search;
44         my @usrv = map { "^$$search{$_}{value}" } grep { ''.$$search{$_}{group} eq '0' } keys %$search;
45
46         my $addr = join ' AND ', map { "LOWER($_) ~ ?" } grep { ''.$$search{$_}{group} eq '1' } keys %$search;
47         my @addrv = map { "^$$search{$_}{value}" } grep { ''.$$search{$_}{group} eq '1' } keys %$search;
48
49         my $pv = $$search{phone}{value};
50         my $iv = $$search{ident}{value};
51
52         my $phone = '';
53         my @ps;
54         my @phonev;
55         if ($pv) {
56                 for my $p ( qw/day_phone evening_phone other_phone/ ) {
57                         push @ps, "LOWER($p) ~ ?";
58                         push @phonev, "^$pv";
59                 }
60                 $phone = '(' . join(' OR ', @ps) . ')';
61         }
62
63         my $ident = '';
64         my @is;
65         my @identv;
66         if ($pv) {
67                 for my $i ( qw/ident_value ident_value2/ ) {
68                         push @is, "LOWER($i) ~ ?";
69                         push @identv, "^$iv";
70                 }
71                 $ident = '(' . join(' OR ', @is) . ')';
72         }
73
74         my $usr_where = join ' AND ', grep { $_ } ($usr,$phone,$ident);
75         my $addr_where = $addr;
76
77
78         my $u_table = actor::user->table;
79         my $a_table = actor::user_address->table;
80
81         my $u_select = "SELECT id FROM $u_table a WHERE $usr_where";
82         my $a_select = "SELECT usr FROM $a_table a WHERE $addr_where";
83
84         my $select = '';
85         if ($usr_where) {
86                 if ($addr_where) {
87                         $select = "$u_select INTERSECT $a_select";
88                 } else {
89                         $select = $u_select;
90                 }
91         } elsif ($addr_where) {
92                 $select = $a_select;
93         } else {
94                 return undef;
95         }
96
97         return actor::user->db_Main->selectcol_arrayref($select." LIMIT 1000", {}, map {lc($_)} (@usrv,@phonev,@identv,@addrv));
98 }
99 __PACKAGE__->register_method(
100         api_name        => 'open-ils.storage.actor.user.crazy_search',
101         api_level       => 1,
102         method          => 'patron_search',
103 );
104
105 =comment not gonna use it...
106
107 sub fleshed_search {
108         my $self = shift;
109         my $client = shift;
110         my $searches = shift;
111
112         return undef unless (defined $searches);
113
114         for my $usr ( actor::user->search( $searches ) ) {
115                 next unless $usr;
116                 $client->respond( flesh_user( $usr ) );
117         }
118         return undef;
119 }
120 __PACKAGE__->register_method(
121         api_name        => 'open-ils.storage.fleshed.actor.user.search',
122         api_level       => 1,
123         method          => 'fleshed_search',
124         stream          => 1,
125         cachable        => 1,
126 );
127
128 sub fleshed_search_like {
129         my $self = shift;
130         my $client = shift;
131         my $searches = shift;
132
133         return undef unless (defined $searches);
134
135         for my $usr ( actor::user->search_like( $searches ) ) {
136                 next unless $usr;
137                 $client->respond( flesh_user( $usr ) );
138         }
139         return undef;
140 }
141 __PACKAGE__->register_method(
142         api_name        => 'open-ils.storage.fleshed.actor.user.search_like',
143         api_level       => 1,
144         method          => 'user_by_barcode',
145         stream          => 1,
146         cachable        => 1,
147 );
148
149 sub retrieve_fleshed_user {
150         my $self = shift;
151         my $client = shift;
152         my @ids = shift;
153
154         return undef unless @ids;
155
156         @ids = ($ids[0]) unless ($self->api_name =~ /batch/o); 
157
158         $client->respond( flesh_user( actor::user->retrieve( $_ ) ) ) for ( @ids );
159
160         return undef;
161 }
162 __PACKAGE__->register_method(
163         api_name        => 'open-ils.storage.fleshed.actor.user.retrieve',
164         api_level       => 1,
165         method          => 'retrieve_fleshed_user',
166         cachable        => 1,
167 );
168 __PACKAGE__->register_method(
169         api_name        => 'open-ils.storage.fleshed.actor.user.batch.retrieve',
170         api_level       => 1,
171         method          => 'retrieve_fleshed_user',
172         stream          => 1,
173         cachable        => 1,
174 );
175
176 sub flesh_user {
177         my $usr = shift;
178
179
180         my $standing = $usr->standing;
181         my $profile = $usr->profile;
182         my $ident_type = $usr->ident_type;
183                 
184         my $maddress = $usr->mailing_address;
185         my $baddress = $usr->billing_address;
186         my $card = $usr->card;
187
188         my @addresses = $usr->addresses;
189         my @cards = $usr->cards;
190
191         my $usr_fm = $usr->to_fieldmapper;
192         $usr_fm->standing( $standing->to_fieldmapper );
193         $usr_fm->profile( $profile->to_fieldmapper );
194         $usr_fm->ident_type( $ident_type->to_fieldmapper );
195
196         $usr_fm->card( $card->to_fieldmapper );
197         $usr_fm->mailing_address( $maddress->to_fieldmapper ) if ($maddress);
198         $usr_fm->billing_address( $baddress->to_fieldmapper ) if ($baddress);
199
200         $usr_fm->cards( [ map { $_->to_fieldmapper } @cards ] );
201         $usr_fm->addresses( [ map { $_->to_fieldmapper } @addresses ] );
202
203         return $usr_fm;
204 }
205
206 =cut
207
208 sub org_unit_list {
209         my $self = shift;
210         my $client = shift;
211
212         my $select =<<" SQL";
213         SELECT  *
214           FROM  actor.org_unit
215           ORDER BY CASE WHEN parent_ou IS NULL THEN 0 ELSE 1 END, name;
216         SQL
217
218         my $sth = actor::org_unit->db_Main->prepare_cached($select);
219         $sth->execute;
220
221         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
222
223         return undef;
224 }
225 __PACKAGE__->register_method(
226         api_name        => 'open-ils.storage.direct.actor.org_unit.retrieve.all',
227         api_level       => 1,
228         stream          => 1,
229         method          => 'org_unit_list',
230 );
231
232 sub org_unit_type_list {
233         my $self = shift;
234         my $client = shift;
235
236         my $select =<<" SQL";
237         SELECT  *
238           FROM  actor.org_unit_type
239           ORDER BY depth, name;
240         SQL
241
242         my $sth = actor::org_unit_type->db_Main->prepare_cached($select);
243         $sth->execute;
244
245         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit_type->construct($_) } $sth->fetchall_hash );
246
247         return undef;
248 }
249 __PACKAGE__->register_method(
250         api_name        => 'open-ils.storage.direct.actor.org_unit_type.retrieve.all',
251         api_level       => 1,
252         stream          => 1,
253         method          => 'org_unit_type_list',
254 );
255
256 sub org_unit_full_path {
257         my $self = shift;
258         my $client = shift;
259         my $id = shift;
260         my $depth = shift;
261
262         return undef unless ($id);
263
264         my $func = 'actor.org_unit_full_path(?)';
265         my $func = 'actor.org_unit_full_path(?,?)' if defined($depth);
266
267         my $sth = actor::org_unit->db_Main->prepare_cached("SELECT * FROM $func");
268         $sth->execute($id, $depth);
269
270         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
271
272         return undef;
273 }
274 __PACKAGE__->register_method(
275         api_name        => 'open-ils.storage.actor.org_unit.full_path',
276         api_level       => 1,
277         stream          => 1,
278         method          => 'org_unit_full_path',
279 );
280
281 sub org_unit_ancestors {
282         my $self = shift;
283         my $client = shift;
284         my $id = shift;
285
286         return undef unless ($id);
287
288         my $func = 'actor.org_unit_ancestors(?)';
289
290         my $sth = actor::org_unit->db_Main->prepare_cached(<<"  SQL");
291                 SELECT  f.*
292                   FROM  $func f
293                         JOIN actor.org_unit_type t ON (f.ou_type = t.id)
294                   ORDER BY t.depth, f.name;
295         SQL
296         $sth->execute(''.$id);
297
298         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
299
300         return undef;
301 }
302 __PACKAGE__->register_method(
303         api_name        => 'open-ils.storage.actor.org_unit.ancestors',
304         api_level       => 1,
305         stream          => 1,
306         method          => 'org_unit_ancestors',
307 );
308
309 sub org_unit_descendants {
310         my $self = shift;
311         my $client = shift;
312         my $id = shift;
313         my $depth = shift;
314
315         return undef unless ($id);
316
317         my $func = 'actor.org_unit_descendants(?)';
318         if (defined $depth) {
319                 $func = 'actor.org_unit_descendants(?,?)';
320         }
321
322         my $sth = actor::org_unit->db_Main->prepare_cached("SELECT * FROM $func");
323         $sth->execute(''.$id, ''.$depth) if (defined $depth);
324         $sth->execute(''.$id) unless (defined $depth);
325
326         $client->respond( $_->to_fieldmapper ) for ( map { actor::org_unit->construct($_) } $sth->fetchall_hash );
327
328         return undef;
329 }
330 __PACKAGE__->register_method(
331         api_name        => 'open-ils.storage.actor.org_unit.descendants',
332         api_level       => 1,
333         stream          => 1,
334         method          => 'org_unit_descendants',
335 );
336
337 sub profile_all {
338         my $self = shift;
339         my $client = shift;
340
341         for my $rec ( actor::profile->retrieve_all ) {
342                 $client->respond( $rec->to_fieldmapper );
343         }
344
345         return undef;
346 }
347 __PACKAGE__->register_method(
348         method          => 'profile_all',
349         api_name        => 'open-ils.storage.direct.actor.profile.retrieve.all',
350         argc            => 0,
351         stream          => 1,
352 );
353
354 #XXX Fix stored proc calls
355 sub ranged_actor_stat_cat {
356         my $self = shift;
357         my $client = shift;
358         my $ou = ''.shift();
359         
360         return undef unless ($ou);
361         my $s_table = actor::stat_cat->table;
362
363         my $select = <<"        SQL";
364                 SELECT  s.*
365                   FROM  $s_table s
366                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
367                   ORDER BY name
368         SQL
369
370         $fleshed = 0;
371         $fleshed = 1 if ($self->api_name =~ /fleshed/o);
372
373         my $sth = actor::stat_cat->db_Main->prepare_cached($select);
374         $sth->execute($ou);
375
376         for my $sc ( map { actor::stat_cat->construct($_) } $sth->fetchall_hash ) {
377                 my $sc_fm = $sc->to_fieldmapper;
378                 $sc_fm->entries(
379                         [ $self->method_lookup( 'open-ils.storage.ranged.actor.stat_cat_entry.search.stat_cat' )->run($ou,$sc->id) ]
380                 ) if ($fleshed);
381                 $client->respond( $sc_fm );
382         }
383
384         return undef;
385 }
386 __PACKAGE__->register_method(
387         api_name        => 'open-ils.storage.ranged.fleshed.actor.stat_cat.all',
388         api_level       => 1,
389         stream          => 1,
390         method          => 'ranged_actor_stat_cat',
391 );
392
393 __PACKAGE__->register_method(
394         api_name        => 'open-ils.storage.ranged.actor.stat_cat.all',
395         api_level       => 1,
396         stream          => 1,
397         method          => 'ranged_actor_stat_cat',
398 );
399
400 #XXX Fix stored proc calls
401 sub ranged_actor_stat_cat_entry {
402         my $self = shift;
403         my $client = shift;
404         my $ou = ''.shift();
405         my $sc = ''.shift();
406         
407         return undef unless ($ou);
408         my $s_table = actor::stat_cat_entry->table;
409
410         my $select = <<"        SQL";
411                 SELECT  s.*
412                   FROM  $s_table s
413                         JOIN actor.org_unit_full_path(?) p ON (p.id = s.owner)
414                   WHERE stat_cat = ?
415                   ORDER BY name
416         SQL
417
418         my $sth = actor::stat_cat->db_Main->prepare_cached($select);
419         $sth->execute($ou,$sc);
420
421         for my $sce ( map { actor::stat_cat_entry->construct($_) } $sth->fetchall_hash ) {
422                 $client->respond( $sce->to_fieldmapper );
423         }
424
425         return undef;
426 }
427 __PACKAGE__->register_method(
428         api_name        => 'open-ils.storage.ranged.actor.stat_cat_entry.search.stat_cat',
429         api_level       => 1,
430         stream          => 1,
431         method          => 'ranged_actor_stat_cat_entry',
432 );
433
434
435 1;