]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/999.functions.global.sql
syntax: end-quote for stored procedure
[working/Evergreen.git] / Open-ILS / src / sql / Pg / 999.functions.global.sql
1 /*
2  * Copyright (C) 2008 Equinox Software, Inc.
3  * Bill Erickson <erickson@esilibrary.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  */
16
17 CREATE OR REPLACE FUNCTION actor.usr_merge_rows( table_name TEXT, col_name TEXT, src_usr INT, dest_usr INT ) RETURNS VOID AS $$
18 DECLARE
19     sel TEXT;
20     upd TEXT;
21     del TEXT;
22     cur_row RECORD;
23 BEGIN
24     sel := 'SELECT id::BIGINT FROM ' || table_name || ' WHERE ' || quote_ident(col_name) || ' = ' || quote_literal(src_usr);
25     upd := 'UPDATE ' || table_name || ' SET ' || quote_ident(col_name) || ' = ' || quote_literal(dest_usr) || ' WHERE id = ';
26     del := 'DELETE FROM ' || table_name || ' WHERE id = ';
27     FOR cur_row IN EXECUTE sel LOOP
28         BEGIN
29             --RAISE NOTICE 'Attempting to merge % %', table_name, cur_row.id;
30             EXECUTE upd || cur_row.id;
31         EXCEPTION WHEN unique_violation THEN
32             --RAISE NOTICE 'Deleting conflicting % %', table_name, cur_row.id;
33             EXECUTE del || cur_row.id;
34         END;
35     END LOOP;
36 END;
37 $$ LANGUAGE plpgsql;
38
39 COMMENT ON FUNCTION actor.usr_merge_rows(TEXT, TEXT, INT, INT) IS $$
40 Attempts to move each row of the specified table from src_user to dest_user.  
41 Where conflicts exist, the conflicting "source" row is deleted.
42 $$;
43
44
45 CREATE OR REPLACE FUNCTION actor.usr_merge( src_usr INT, dest_usr INT, del_addrs BOOLEAN, del_cards BOOLEAN, deactivate_cards BOOLEAN ) RETURNS VOID AS $$
46 DECLARE
47         suffix TEXT;
48         bucket_row RECORD;
49         picklist_row RECORD;
50         queue_row RECORD;
51         folder_row RECORD;
52 BEGIN
53
54     -- do some initial cleanup 
55     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
56     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
57     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
58
59     -- actor.*
60     IF del_cards THEN
61         DELETE FROM actor.card where usr = src_usr;
62     ELSE
63         IF deactivate_cards THEN
64             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
65         END IF;
66         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
67     END IF;
68
69
70     IF del_addrs THEN
71         DELETE FROM actor.usr_address WHERE usr = src_usr;
72     ELSE
73         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
74     END IF;
75
76     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
77     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
78     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
79     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
80     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
81
82     -- permission.*
83     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
84     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
85     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
86     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
87
88
89     -- container.*
90         
91         -- For each *_bucket table: transfer every bucket belonging to src_usr
92         -- into the custody of dest_usr.
93         --
94         -- In order to avoid colliding with an existing bucket owned by
95         -- the destination user, append the source user's id (in parenthesese)
96         -- to the name.  If you still get a collision, add successive
97         -- spaces to the name and keep trying until you succeed.
98         --
99         FOR bucket_row in
100                 SELECT id, name
101                 FROM   container.biblio_record_entry_bucket
102                 WHERE  owner = src_usr
103         LOOP
104                 suffix := ' (' || src_usr || ')';
105                 LOOP
106                         BEGIN
107                                 UPDATE  container.biblio_record_entry_bucket
108                                 SET     owner = dest_usr, name = name || suffix
109                                 WHERE   id = bucket_row.id;
110                         EXCEPTION WHEN unique_violation THEN
111                                 suffix := suffix || ' ';
112                                 CONTINUE;
113                         END;
114                         EXIT;
115                 END LOOP;
116         END LOOP;
117
118         FOR bucket_row in
119                 SELECT id, name
120                 FROM   container.call_number_bucket
121                 WHERE  owner = src_usr
122         LOOP
123                 suffix := ' (' || src_usr || ')';
124                 LOOP
125                         BEGIN
126                                 UPDATE  container.call_number_bucket
127                                 SET     owner = dest_usr, name = name || suffix
128                                 WHERE   id = bucket_row.id;
129                         EXCEPTION WHEN unique_violation THEN
130                                 suffix := suffix || ' ';
131                                 CONTINUE;
132                         END;
133                         EXIT;
134                 END LOOP;
135         END LOOP;
136
137         FOR bucket_row in
138                 SELECT id, name
139                 FROM   container.copy_bucket
140                 WHERE  owner = src_usr
141         LOOP
142                 suffix := ' (' || src_usr || ')';
143                 LOOP
144                         BEGIN
145                                 UPDATE  container.copy_bucket
146                                 SET     owner = dest_usr, name = name || suffix
147                                 WHERE   id = bucket_row.id;
148                         EXCEPTION WHEN unique_violation THEN
149                                 suffix := suffix || ' ';
150                                 CONTINUE;
151                         END;
152                         EXIT;
153                 END LOOP;
154         END LOOP;
155
156         FOR bucket_row in
157                 SELECT id, name
158                 FROM   container.user_bucket
159                 WHERE  owner = src_usr
160         LOOP
161                 suffix := ' (' || src_usr || ')';
162                 LOOP
163                         BEGIN
164                                 UPDATE  container.user_bucket
165                                 SET     owner = dest_usr, name = name || suffix
166                                 WHERE   id = bucket_row.id;
167                         EXCEPTION WHEN unique_violation THEN
168                                 suffix := suffix || ' ';
169                                 CONTINUE;
170                         END;
171                         EXIT;
172                 END LOOP;
173         END LOOP;
174
175         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
176
177     -- vandelay.*
178         -- transfer queues the same way we transfer buckets (see above)
179         FOR queue_row in
180                 SELECT id, name
181                 FROM   vandelay.queue
182                 WHERE  owner = src_usr
183         LOOP
184                 suffix := ' (' || src_usr || ')';
185                 LOOP
186                         BEGIN
187                                 UPDATE  vandelay.queue
188                                 SET     owner = dest_usr, name = name || suffix
189                                 WHERE   id = queue_row.id;
190                         EXCEPTION WHEN unique_violation THEN
191                                 suffix := suffix || ' ';
192                                 CONTINUE;
193                         END;
194                         EXIT;
195                 END LOOP;
196         END LOOP;
197
198     -- money.*
199     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
200     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
201     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
202     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
203     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
204
205     -- action.*
206     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
207     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
208     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
209
210     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
211     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
212     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
213     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
214
215     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
216     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
217     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
218     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
219     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
220
221     -- acq.*
222     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
223         UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
224
225         -- transfer picklists the same way we transfer buckets (see above)
226         FOR picklist_row in
227                 SELECT id, name
228                 FROM   acq.picklist
229                 WHERE  owner = src_usr
230         LOOP
231                 suffix := ' (' || src_usr || ')';
232                 LOOP
233                         BEGIN
234                                 UPDATE  acq.picklist
235                                 SET     owner = dest_usr, name = name || suffix
236                                 WHERE   id = picklist_row.id;
237                         EXCEPTION WHEN unique_violation THEN
238                                 suffix := suffix || ' ';
239                                 CONTINUE;
240                         END;
241                         EXIT;
242                 END LOOP;
243         END LOOP;
244
245     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
246     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
247     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
248     UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
249     UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
250     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
251     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
252     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
253
254     -- asset.*
255     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
256     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
257     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
258     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
259     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
260     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
261
262     -- serial.*
263     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
264     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
265
266     -- reporter.*
267     -- It's not uncommon to define the reporter schema in a replica 
268     -- DB only, so don't assume these tables exist in the write DB.
269     BEGIN
270         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
271     EXCEPTION WHEN undefined_table THEN
272         -- do nothing
273     END;
274     BEGIN
275         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
276     EXCEPTION WHEN undefined_table THEN
277         -- do nothing
278     END;
279     BEGIN
280         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
281     EXCEPTION WHEN undefined_table THEN
282         -- do nothing
283     END;
284     BEGIN
285                 -- transfer folders the same way we transfer buckets (see above)
286                 FOR folder_row in
287                         SELECT id, name
288                         FROM   reporter.template_folder
289                         WHERE  owner = src_usr
290                 LOOP
291                         suffix := ' (' || src_usr || ')';
292                         LOOP
293                                 BEGIN
294                                         UPDATE  reporter.template_folder
295                                         SET     owner = dest_usr, name = name || suffix
296                                         WHERE   id = folder_row.id;
297                                 EXCEPTION WHEN unique_violation THEN
298                                         suffix := suffix || ' ';
299                                         CONTINUE;
300                                 END;
301                                 EXIT;
302                         END LOOP;
303                 END LOOP;
304     EXCEPTION WHEN undefined_table THEN
305         -- do nothing
306     END;
307     BEGIN
308                 -- transfer folders the same way we transfer buckets (see above)
309                 FOR folder_row in
310                         SELECT id, name
311                         FROM   reporter.report_folder
312                         WHERE  owner = src_usr
313                 LOOP
314                         suffix := ' (' || src_usr || ')';
315                         LOOP
316                                 BEGIN
317                                         UPDATE  reporter.report_folder
318                                         SET     owner = dest_usr, name = name || suffix
319                                         WHERE   id = folder_row.id;
320                                 EXCEPTION WHEN unique_violation THEN
321                                         suffix := suffix || ' ';
322                                         CONTINUE;
323                                 END;
324                                 EXIT;
325                         END LOOP;
326                 END LOOP;
327     EXCEPTION WHEN undefined_table THEN
328         -- do nothing
329     END;
330     BEGIN
331                 -- transfer folders the same way we transfer buckets (see above)
332                 FOR folder_row in
333                         SELECT id, name
334                         FROM   reporter.output_folder
335                         WHERE  owner = src_usr
336                 LOOP
337                         suffix := ' (' || src_usr || ')';
338                         LOOP
339                                 BEGIN
340                                         UPDATE  reporter.output_folder
341                                         SET     owner = dest_usr, name = name || suffix
342                                         WHERE   id = folder_row.id;
343                                 EXCEPTION WHEN unique_violation THEN
344                                         suffix := suffix || ' ';
345                                         CONTINUE;
346                                 END;
347                                 EXIT;
348                         END LOOP;
349                 END LOOP;
350     EXCEPTION WHEN undefined_table THEN
351         -- do nothing
352     END;
353
354     -- Finally, delete the source user
355     DELETE FROM actor.usr WHERE id = src_usr;
356
357 END;
358 $$ LANGUAGE plpgsql;
359
360 COMMENT ON FUNCTION actor.usr_merge(INT, INT, BOOLEAN, BOOLEAN, BOOLEAN) IS $$
361 Merges all user date from src_usr to dest_usr.  When collisions occur, 
362 keep dest_usr's data and delete src_usr's data.
363 $$;
364
365
366 CREATE OR REPLACE FUNCTION actor.usr_purge_data(
367         src_usr  IN INTEGER,
368         specified_dest_usr IN INTEGER
369 ) RETURNS VOID AS $$
370 DECLARE
371         suffix TEXT;
372         renamable_row RECORD;
373         dest_usr INTEGER;
374 BEGIN
375
376         IF specified_dest_usr IS NULL THEN
377                 dest_usr := 1; -- Admin user on stock installs
378         ELSE
379                 dest_usr := specified_dest_usr;
380         END IF;
381
382         -- acq.*
383         UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
384         UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr;
385         UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr;
386         UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr;
387         UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
388         UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
389         DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr;
390
391         -- Update with a rename to avoid collisions
392         FOR renamable_row in
393                 SELECT id, name
394                 FROM   acq.picklist
395                 WHERE  owner = src_usr
396         LOOP
397                 suffix := ' (' || src_usr || ')';
398                 LOOP
399                         BEGIN
400                                 UPDATE  acq.picklist
401                                 SET     owner = dest_usr, name = name || suffix
402                                 WHERE   id = renamable_row.id;
403                         EXCEPTION WHEN unique_violation THEN
404                                 suffix := suffix || ' ';
405                                 CONTINUE;
406                         END;
407                         EXIT;
408                 END LOOP;
409         END LOOP;
410
411         UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr;
412         UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr;
413         UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
414         UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
415         UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
416         UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr;
417         UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr;
418         UPDATE acq.claim_event SET creator = dest_usr WHERE creator = src_usr;
419
420         -- action.*
421         DELETE FROM action.circulation WHERE usr = src_usr;
422         UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
423         UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
424         UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
425         UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
426         UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
427         DELETE FROM action.hold_request WHERE usr = src_usr;
428         UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
429         UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
430         DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr;
431         UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
432         DELETE FROM action.survey_response WHERE usr = src_usr;
433         UPDATE action.fieldset SET owner = dest_usr WHERE owner = src_usr;
434         DELETE FROM action.usr_circ_history WHERE usr = src_usr;
435
436         -- actor.*
437         DELETE FROM actor.card WHERE usr = src_usr;
438         DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr;
439
440         -- The following update is intended to avoid transient violations of a foreign
441         -- key constraint, whereby actor.usr_address references itself.  It may not be
442         -- necessary, but it does no harm.
443         UPDATE actor.usr_address SET replaces = NULL
444                 WHERE usr = src_usr AND replaces IS NOT NULL;
445         DELETE FROM actor.usr_address WHERE usr = src_usr;
446         DELETE FROM actor.usr_note WHERE usr = src_usr;
447         UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr;
448         DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr;
449         UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr;
450         DELETE FROM actor.usr_setting WHERE usr = src_usr;
451         DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr;
452         UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr;
453
454         -- asset.*
455         UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
456         UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
457         UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
458         UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
459         UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
460         UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
461
462         -- auditor.*
463         DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr;
464         DELETE FROM auditor.actor_usr_history WHERE id = src_usr;
465         UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr;
466         UPDATE auditor.asset_call_number_history SET editor  = dest_usr WHERE editor  = src_usr;
467         UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr;
468         UPDATE auditor.asset_copy_history SET editor  = dest_usr WHERE editor  = src_usr;
469         UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
470         UPDATE auditor.biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
471
472         -- biblio.*
473         UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;
474         UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr;
475         UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr;
476         UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr;
477
478         -- container.*
479         -- Update buckets with a rename to avoid collisions
480         FOR renamable_row in
481                 SELECT id, name
482                 FROM   container.biblio_record_entry_bucket
483                 WHERE  owner = src_usr
484         LOOP
485                 suffix := ' (' || src_usr || ')';
486                 LOOP
487                         BEGIN
488                                 UPDATE  container.biblio_record_entry_bucket
489                                 SET     owner = dest_usr, name = name || suffix
490                                 WHERE   id = renamable_row.id;
491                         EXCEPTION WHEN unique_violation THEN
492                                 suffix := suffix || ' ';
493                                 CONTINUE;
494                         END;
495                         EXIT;
496                 END LOOP;
497         END LOOP;
498
499         FOR renamable_row in
500                 SELECT id, name
501                 FROM   container.call_number_bucket
502                 WHERE  owner = src_usr
503         LOOP
504                 suffix := ' (' || src_usr || ')';
505                 LOOP
506                         BEGIN
507                                 UPDATE  container.call_number_bucket
508                                 SET     owner = dest_usr, name = name || suffix
509                                 WHERE   id = renamable_row.id;
510                         EXCEPTION WHEN unique_violation THEN
511                                 suffix := suffix || ' ';
512                                 CONTINUE;
513                         END;
514                         EXIT;
515                 END LOOP;
516         END LOOP;
517
518         FOR renamable_row in
519                 SELECT id, name
520                 FROM   container.copy_bucket
521                 WHERE  owner = src_usr
522         LOOP
523                 suffix := ' (' || src_usr || ')';
524                 LOOP
525                         BEGIN
526                                 UPDATE  container.copy_bucket
527                                 SET     owner = dest_usr, name = name || suffix
528                                 WHERE   id = renamable_row.id;
529                         EXCEPTION WHEN unique_violation THEN
530                                 suffix := suffix || ' ';
531                                 CONTINUE;
532                         END;
533                         EXIT;
534                 END LOOP;
535         END LOOP;
536
537         FOR renamable_row in
538                 SELECT id, name
539                 FROM   container.user_bucket
540                 WHERE  owner = src_usr
541         LOOP
542                 suffix := ' (' || src_usr || ')';
543                 LOOP
544                         BEGIN
545                                 UPDATE  container.user_bucket
546                                 SET     owner = dest_usr, name = name || suffix
547                                 WHERE   id = renamable_row.id;
548                         EXCEPTION WHEN unique_violation THEN
549                                 suffix := suffix || ' ';
550                                 CONTINUE;
551                         END;
552                         EXIT;
553                 END LOOP;
554         END LOOP;
555
556         DELETE FROM container.user_bucket_item WHERE target_user = src_usr;
557
558         -- money.*
559         DELETE FROM money.billable_xact WHERE usr = src_usr;
560         DELETE FROM money.collections_tracker WHERE usr = src_usr;
561         UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr;
562
563         -- permission.*
564         DELETE FROM permission.usr_grp_map WHERE usr = src_usr;
565         DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr;
566         DELETE FROM permission.usr_perm_map WHERE usr = src_usr;
567         DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr;
568
569         -- reporter.*
570         -- Update with a rename to avoid collisions
571         BEGIN
572                 FOR renamable_row in
573                         SELECT id, name
574                         FROM   reporter.output_folder
575                         WHERE  owner = src_usr
576                 LOOP
577                         suffix := ' (' || src_usr || ')';
578                         LOOP
579                                 BEGIN
580                                         UPDATE  reporter.output_folder
581                                         SET     owner = dest_usr, name = name || suffix
582                                         WHERE   id = renamable_row.id;
583                                 EXCEPTION WHEN unique_violation THEN
584                                         suffix := suffix || ' ';
585                                         CONTINUE;
586                                 END;
587                                 EXIT;
588                         END LOOP;
589                 END LOOP;
590         EXCEPTION WHEN undefined_table THEN
591                 -- do nothing
592         END;
593
594         BEGIN
595                 UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
596         EXCEPTION WHEN undefined_table THEN
597                 -- do nothing
598         END;
599
600         -- Update with a rename to avoid collisions
601         BEGIN
602                 FOR renamable_row in
603                         SELECT id, name
604                         FROM   reporter.report_folder
605                         WHERE  owner = src_usr
606                 LOOP
607                         suffix := ' (' || src_usr || ')';
608                         LOOP
609                                 BEGIN
610                                         UPDATE  reporter.report_folder
611                                         SET     owner = dest_usr, name = name || suffix
612                                         WHERE   id = renamable_row.id;
613                                 EXCEPTION WHEN unique_violation THEN
614                                         suffix := suffix || ' ';
615                                         CONTINUE;
616                                 END;
617                                 EXIT;
618                         END LOOP;
619                 END LOOP;
620         EXCEPTION WHEN undefined_table THEN
621                 -- do nothing
622         END;
623
624         BEGIN
625                 UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
626         EXCEPTION WHEN undefined_table THEN
627                 -- do nothing
628         END;
629
630         BEGIN
631                 UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
632         EXCEPTION WHEN undefined_table THEN
633                 -- do nothing
634         END;
635
636         -- Update with a rename to avoid collisions
637         BEGIN
638                 FOR renamable_row in
639                         SELECT id, name
640                         FROM   reporter.template_folder
641                         WHERE  owner = src_usr
642                 LOOP
643                         suffix := ' (' || src_usr || ')';
644                         LOOP
645                                 BEGIN
646                                         UPDATE  reporter.template_folder
647                                         SET     owner = dest_usr, name = name || suffix
648                                         WHERE   id = renamable_row.id;
649                                 EXCEPTION WHEN unique_violation THEN
650                                         suffix := suffix || ' ';
651                                         CONTINUE;
652                                 END;
653                                 EXIT;
654                         END LOOP;
655                 END LOOP;
656         EXCEPTION WHEN undefined_table THEN
657         -- do nothing
658         END;
659
660         -- vandelay.*
661         -- Update with a rename to avoid collisions
662         FOR renamable_row in
663                 SELECT id, name
664                 FROM   vandelay.queue
665                 WHERE  owner = src_usr
666         LOOP
667                 suffix := ' (' || src_usr || ')';
668                 LOOP
669                         BEGIN
670                                 UPDATE  vandelay.queue
671                                 SET     owner = dest_usr, name = name || suffix
672                                 WHERE   id = renamable_row.id;
673                         EXCEPTION WHEN unique_violation THEN
674                                 suffix := suffix || ' ';
675                                 CONTINUE;
676                         END;
677                         EXIT;
678                 END LOOP;
679         END LOOP;
680
681     -- NULL-ify addresses last so other cleanup (e.g. circ anonymization)
682     -- can access the information before deletion.
683         UPDATE actor.usr SET
684                 active = FALSE,
685                 card = NULL,
686                 mailing_address = NULL,
687                 billing_address = NULL
688         WHERE id = src_usr;
689
690 END;
691 $$ LANGUAGE plpgsql;
692
693 COMMENT ON FUNCTION actor.usr_purge_data(INT, INT) IS $$
694 Finds rows dependent on a given row in actor.usr and either deletes them
695 or reassigns them to a different user.
696 $$;
697
698
699
700 CREATE OR REPLACE FUNCTION actor.usr_delete(
701         src_usr  IN INTEGER,
702         dest_usr IN INTEGER
703 ) RETURNS VOID AS $$
704 DECLARE
705         old_profile actor.usr.profile%type;
706         old_home_ou actor.usr.home_ou%type;
707         new_profile actor.usr.profile%type;
708         new_home_ou actor.usr.home_ou%type;
709         new_name    text;
710         new_dob     actor.usr.dob%type;
711 BEGIN
712         SELECT
713                 id || '-PURGED-' || now(),
714                 profile,
715                 home_ou,
716                 dob
717         INTO
718                 new_name,
719                 old_profile,
720                 old_home_ou,
721                 new_dob
722         FROM
723                 actor.usr
724         WHERE
725                 id = src_usr;
726         --
727         -- Quit if no such user
728         --
729         IF old_profile IS NULL THEN
730                 RETURN;
731         END IF;
732         --
733         perform actor.usr_purge_data( src_usr, dest_usr );
734         --
735         -- Find the root grp_tree and the root org_unit.  This would be simpler if we 
736         -- could assume that there is only one root.  Theoretically, someday, maybe,
737         -- there could be multiple roots, so we take extra trouble to get the right ones.
738         --
739         SELECT
740                 id
741         INTO
742                 new_profile
743         FROM
744                 permission.grp_ancestors( old_profile )
745         WHERE
746                 parent is null;
747         --
748         SELECT
749                 id
750         INTO
751                 new_home_ou
752         FROM
753                 actor.org_unit_ancestors( old_home_ou )
754         WHERE
755                 parent_ou is null;
756         --
757         -- Truncate date of birth
758         --
759         IF new_dob IS NOT NULL THEN
760                 new_dob := date_trunc( 'year', new_dob );
761         END IF;
762         --
763         UPDATE
764                 actor.usr
765                 SET
766                         card = NULL,
767                         profile = new_profile,
768                         usrname = new_name,
769                         email = NULL,
770                         passwd = random()::text,
771                         standing = DEFAULT,
772                         ident_type = 
773                         (
774                                 SELECT MIN( id )
775                                 FROM config.identification_type
776                         ),
777                         ident_value = NULL,
778                         ident_type2 = NULL,
779                         ident_value2 = NULL,
780                         net_access_level = DEFAULT,
781                         photo_url = NULL,
782                         prefix = NULL,
783                         first_given_name = new_name,
784                         second_given_name = NULL,
785                         family_name = new_name,
786                         suffix = NULL,
787                         alias = NULL,
788                         day_phone = NULL,
789                         evening_phone = NULL,
790                         other_phone = NULL,
791                         mailing_address = NULL,
792                         billing_address = NULL,
793                         home_ou = new_home_ou,
794                         dob = new_dob,
795                         active = FALSE,
796                         master_account = DEFAULT, 
797                         super_user = DEFAULT,
798                         barred = FALSE,
799                         deleted = TRUE,
800                         juvenile = DEFAULT,
801                         usrgroup = 0,
802                         claims_returned_count = DEFAULT,
803                         credit_forward_balance = DEFAULT,
804                         last_xact_id = DEFAULT,
805                         alert_message = NULL,
806                         create_date = now(),
807                         expire_date = now()
808         WHERE
809                 id = src_usr;
810 END;
811 $$ LANGUAGE plpgsql;
812
813 COMMENT ON FUNCTION actor.usr_delete(INT, INT) IS $$
814 Logically deletes a user.  Removes personally identifiable information,
815 and purges associated data in other tables.
816 $$;
817
818
819
820 CREATE OR REPLACE FUNCTION actor.approve_pending_address(pending_id INT) RETURNS BIGINT AS $$
821 DECLARE
822     old_id INT;
823 BEGIN
824     SELECT INTO old_id replaces FROM actor.usr_address where id = pending_id;
825     IF old_id IS NULL THEN
826         UPDATE actor.usr_address SET pending = 'f' WHERE id = pending_id;
827         RETURN pending_id;
828     END IF;
829     -- address replaces an existing address
830     DELETE FROM actor.usr_address WHERE id = -old_id;
831     UPDATE actor.usr_address SET id = -id WHERE id = old_id;
832     UPDATE actor.usr_address SET replaces = NULL, id = old_id, pending = 'f' WHERE id = pending_id;
833     RETURN old_id;
834 END
835 $$ LANGUAGE plpgsql;
836
837 COMMENT ON FUNCTION actor.approve_pending_address(INT) IS $$
838 Replaces an address with a pending address.  This is done by giving the pending 
839 address the ID of the old address.  The replaced address is retained with -id.
840 $$;
841
842 CREATE OR REPLACE FUNCTION container.clear_expired_circ_history_items( 
843          ac_usr IN INTEGER
844 ) RETURNS VOID AS $$
845 --
846 -- Delete old circulation bucket items for a specified user.
847 -- "Old" means older than the interval specified by a
848 -- user-level setting, if it is so specified.
849 --
850 DECLARE
851     threshold TIMESTAMP WITH TIME ZONE;
852 BEGIN
853         -- Sanity check
854         IF ac_usr IS NULL THEN
855                 RETURN;
856         END IF;
857         -- Determine the threshold date that defines "old".  Subtract the
858         -- interval from the system date, then truncate to midnight.
859         SELECT
860                 date_trunc( 
861                         'day',
862                         now() - CAST( translate( value, '"', '' ) AS INTERVAL )
863                 )
864         INTO
865                 threshold
866         FROM
867                 actor.usr_setting
868         WHERE
869                 usr = ac_usr
870                 AND name = 'patron.max_reading_list_interval';
871         --
872         IF threshold is null THEN
873                 -- No interval defined; don't delete anything
874                 -- RAISE NOTICE 'No interval defined for user %', ac_usr;
875                 return;
876         END IF;
877         --
878         -- RAISE NOTICE 'Date threshold: %', threshold;
879         --
880         -- Threshold found; do the delete
881         delete from container.copy_bucket_item
882         where
883                 bucket in
884                 (
885                         select
886                                 id
887                         from
888                                 container.copy_bucket
889                         where
890                                 owner = ac_usr
891                                 and btype = 'circ_history'
892                 )
893                 and create_time < threshold;
894         --
895         RETURN;
896 END;
897 $$ LANGUAGE plpgsql;
898
899 COMMENT ON FUNCTION container.clear_expired_circ_history_items( INTEGER ) IS $$
900 Delete old circulation bucket items for a specified user.
901 "Old" means older than the interval specified by a
902 user-level setting, if it is so specified.
903 $$;
904
905 CREATE OR REPLACE FUNCTION container.clear_all_expired_circ_history_items( )
906 RETURNS VOID AS $$
907 --
908 -- Delete expired circulation bucket items for all users that have
909 -- a setting for patron.max_reading_list_interval.
910 --
911 DECLARE
912     today        TIMESTAMP WITH TIME ZONE;
913     threshold    TIMESTAMP WITH TIME ZONE;
914         usr_setting  RECORD;
915 BEGIN
916         SELECT date_trunc( 'day', now() ) INTO today;
917         --
918         FOR usr_setting in
919                 SELECT
920                         usr,
921                         value
922                 FROM
923                         actor.usr_setting
924                 WHERE
925                         name = 'patron.max_reading_list_interval'
926         LOOP
927                 --
928                 -- Make sure the setting is a valid interval
929                 --
930                 BEGIN
931                         threshold := today - CAST( translate( usr_setting.value, '"', '' ) AS INTERVAL );
932                 EXCEPTION
933                         WHEN OTHERS THEN
934                                 RAISE NOTICE 'Invalid setting patron.max_reading_list_interval for user %: ''%''',
935                                         usr_setting.usr, usr_setting.value;
936                                 CONTINUE;
937                 END;
938                 --
939                 --RAISE NOTICE 'User % threshold %', usr_setting.usr, threshold;
940                 --
941         DELETE FROM container.copy_bucket_item
942         WHERE
943                 bucket IN
944                 (
945                     SELECT
946                         id
947                     FROM
948                         container.copy_bucket
949                     WHERE
950                         owner = usr_setting.usr
951                         AND btype = 'circ_history'
952                 )
953                 AND create_time < threshold;
954         END LOOP;
955         --
956 END;
957 $$ LANGUAGE plpgsql;
958
959 COMMENT ON FUNCTION container.clear_all_expired_circ_history_items( ) IS $$
960 Delete expired circulation bucket items for all users that have
961 a setting for patron.max_reading_list_interval.
962 $$;
963
964 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
965 DECLARE
966     moved_objects INT := 0;
967     source_cn     asset.call_number%ROWTYPE;
968     target_cn     asset.call_number%ROWTYPE;
969     metarec       metabib.metarecord%ROWTYPE;
970     hold          action.hold_request%ROWTYPE;
971     ser_rec       serial.record_entry%ROWTYPE;
972     ser_sub       serial.subscription%ROWTYPE;
973     acq_lineitem  acq.lineitem%ROWTYPE;
974     acq_request   acq.user_request%ROWTYPE;
975     booking       booking.resource_type%ROWTYPE;
976     source_part   biblio.monograph_part%ROWTYPE;
977     target_part   biblio.monograph_part%ROWTYPE;
978     multi_home    biblio.peer_bib_copy_map%ROWTYPE;
979     uri_count     INT := 0;
980     counter       INT := 0;
981     uri_datafield TEXT;
982     uri_text      TEXT := '';
983 BEGIN
984
985     -- move any 856 entries on records that have at least one MARC-mapped URI entry
986     SELECT  INTO uri_count COUNT(*)
987       FROM  asset.uri_call_number_map m
988             JOIN asset.call_number cn ON (m.call_number = cn.id)
989       WHERE cn.record = source_record;
990
991     IF uri_count > 0 THEN
992         
993         -- This returns more nodes than you might expect:
994         -- 7 instead of 1 for an 856 with $u $y $9
995         SELECT  COUNT(*) INTO counter
996           FROM  oils_xpath_table(
997                     'id',
998                     'marc',
999                     'biblio.record_entry',
1000                     '//*[@tag="856"]',
1001                     'id=' || source_record
1002                 ) as t(i int,c text);
1003     
1004         FOR i IN 1 .. counter LOOP
1005             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' || 
1006                         ' tag="856"' ||
1007                         ' ind1="' || FIRST(ind1) || '"'  ||
1008                         ' ind2="' || FIRST(ind2) || '">' ||
1009                         STRING_AGG(
1010                             '<subfield code="' || subfield || '">' ||
1011                             regexp_replace(
1012                                 regexp_replace(
1013                                     regexp_replace(data,'&','&amp;','g'),
1014                                     '>', '&gt;', 'g'
1015                                 ),
1016                                 '<', '&lt;', 'g'
1017                             ) || '</subfield>', ''
1018                         ) || '</datafield>' INTO uri_datafield
1019               FROM  oils_xpath_table(
1020                         'id',
1021                         'marc',
1022                         'biblio.record_entry',
1023                         '//*[@tag="856"][position()=' || i || ']/@ind1|' ||
1024                         '//*[@tag="856"][position()=' || i || ']/@ind2|' ||
1025                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
1026                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
1027                         'id=' || source_record
1028                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
1029
1030             -- As most of the results will be NULL, protect against NULLifying
1031             -- the valid content that we do generate
1032             uri_text := uri_text || COALESCE(uri_datafield, '');
1033         END LOOP;
1034
1035         IF uri_text <> '' THEN
1036             UPDATE  biblio.record_entry
1037               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
1038               WHERE id = target_record;
1039         END IF;
1040
1041     END IF;
1042
1043         -- Find and move metarecords to the target record
1044         SELECT  INTO metarec *
1045           FROM  metabib.metarecord
1046           WHERE master_record = source_record;
1047
1048         IF FOUND THEN
1049                 UPDATE  metabib.metarecord
1050                   SET   master_record = target_record,
1051                         mods = NULL
1052                   WHERE id = metarec.id;
1053
1054                 moved_objects := moved_objects + 1;
1055         END IF;
1056
1057         -- Find call numbers attached to the source ...
1058         FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
1059
1060                 SELECT  INTO target_cn *
1061                   FROM  asset.call_number
1062                   WHERE label = source_cn.label
1063                         AND owning_lib = source_cn.owning_lib
1064                         AND record = target_record
1065                         AND NOT deleted;
1066
1067                 -- ... and if there's a conflicting one on the target ...
1068                 IF FOUND THEN
1069
1070                         -- ... move the copies to that, and ...
1071                         UPDATE  asset.copy
1072                           SET   call_number = target_cn.id
1073                           WHERE call_number = source_cn.id;
1074
1075                         -- ... move V holds to the move-target call number
1076                         FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
1077                 
1078                                 UPDATE  action.hold_request
1079                                   SET   target = target_cn.id
1080                                   WHERE id = hold.id;
1081                 
1082                                 moved_objects := moved_objects + 1;
1083                         END LOOP;
1084
1085                 -- ... if not ...
1086                 ELSE
1087                         -- ... just move the call number to the target record
1088                         UPDATE  asset.call_number
1089                           SET   record = target_record
1090                           WHERE id = source_cn.id;
1091                 END IF;
1092
1093                 moved_objects := moved_objects + 1;
1094         END LOOP;
1095
1096         -- Find T holds targeting the source record ...
1097         FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
1098
1099                 -- ... and move them to the target record
1100                 UPDATE  action.hold_request
1101                   SET   target = target_record
1102                   WHERE id = hold.id;
1103
1104                 moved_objects := moved_objects + 1;
1105         END LOOP;
1106
1107         -- Find serial records targeting the source record ...
1108         FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
1109                 -- ... and move them to the target record
1110                 UPDATE  serial.record_entry
1111                   SET   record = target_record
1112                   WHERE id = ser_rec.id;
1113
1114                 moved_objects := moved_objects + 1;
1115         END LOOP;
1116
1117         -- Find serial subscriptions targeting the source record ...
1118         FOR ser_sub IN SELECT * FROM serial.subscription WHERE record_entry = source_record LOOP
1119                 -- ... and move them to the target record
1120                 UPDATE  serial.subscription
1121                   SET   record_entry = target_record
1122                   WHERE id = ser_sub.id;
1123
1124                 moved_objects := moved_objects + 1;
1125         END LOOP;
1126
1127         -- Find booking resource types targeting the source record ...
1128         FOR booking IN SELECT * FROM booking.resource_type WHERE record = source_record LOOP
1129                 -- ... and move them to the target record
1130                 UPDATE  booking.resource_type
1131                   SET   record = target_record
1132                   WHERE id = booking.id;
1133
1134                 moved_objects := moved_objects + 1;
1135         END LOOP;
1136
1137         -- Find acq lineitems targeting the source record ...
1138         FOR acq_lineitem IN SELECT * FROM acq.lineitem WHERE eg_bib_id = source_record LOOP
1139                 -- ... and move them to the target record
1140                 UPDATE  acq.lineitem
1141                   SET   eg_bib_id = target_record
1142                   WHERE id = acq_lineitem.id;
1143
1144                 moved_objects := moved_objects + 1;
1145         END LOOP;
1146
1147         -- Find acq user purchase requests targeting the source record ...
1148         FOR acq_request IN SELECT * FROM acq.user_request WHERE eg_bib = source_record LOOP
1149                 -- ... and move them to the target record
1150                 UPDATE  acq.user_request
1151                   SET   eg_bib = target_record
1152                   WHERE id = acq_request.id;
1153
1154                 moved_objects := moved_objects + 1;
1155         END LOOP;
1156
1157         -- Find parts attached to the source ...
1158         FOR source_part IN SELECT * FROM biblio.monograph_part WHERE record = source_record LOOP
1159
1160                 SELECT  INTO target_part *
1161                   FROM  biblio.monograph_part
1162                   WHERE label = source_part.label
1163                         AND record = target_record;
1164
1165                 -- ... and if there's a conflicting one on the target ...
1166                 IF FOUND THEN
1167
1168                         -- ... move the copy-part maps to that, and ...
1169                         UPDATE  asset.copy_part_map
1170                           SET   part = target_part.id
1171                           WHERE part = source_part.id;
1172
1173                         -- ... move P holds to the move-target part
1174                         FOR hold IN SELECT * FROM action.hold_request WHERE target = source_part.id AND hold_type = 'P' LOOP
1175                 
1176                                 UPDATE  action.hold_request
1177                                   SET   target = target_part.id
1178                                   WHERE id = hold.id;
1179                 
1180                                 moved_objects := moved_objects + 1;
1181                         END LOOP;
1182
1183                 -- ... if not ...
1184                 ELSE
1185                         -- ... just move the part to the target record
1186                         UPDATE  biblio.monograph_part
1187                           SET   record = target_record
1188                           WHERE id = source_part.id;
1189                 END IF;
1190
1191                 moved_objects := moved_objects + 1;
1192         END LOOP;
1193
1194         -- Find multi_home items attached to the source ...
1195         FOR multi_home IN SELECT * FROM biblio.peer_bib_copy_map WHERE peer_record = source_record LOOP
1196                 -- ... and move them to the target record
1197                 UPDATE  biblio.peer_bib_copy_map
1198                   SET   peer_record = target_record
1199                   WHERE id = multi_home.id;
1200
1201                 moved_objects := moved_objects + 1;
1202         END LOOP;
1203
1204         -- And delete mappings where the item's home bib was merged with the peer bib
1205         DELETE FROM biblio.peer_bib_copy_map WHERE peer_record = (
1206                 SELECT (SELECT record FROM asset.call_number WHERE id = call_number)
1207                 FROM asset.copy WHERE id = target_copy
1208         );
1209
1210     -- Finally, "delete" the source record
1211     DELETE FROM biblio.record_entry WHERE id = source_record;
1212
1213         -- That's all, folks!
1214         RETURN moved_objects;
1215 END;
1216 $func$ LANGUAGE plpgsql;
1217
1218
1219 -- copy OPAC visibility materialized view
1220 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
1221
1222     TRUNCATE TABLE asset.opac_visible_copies;
1223
1224     INSERT INTO asset.opac_visible_copies (copy_id, circ_lib, record)
1225     SELECT  cp.id, cp.circ_lib, cn.record
1226     FROM  asset.copy cp
1227         JOIN asset.call_number cn ON (cn.id = cp.call_number)
1228         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
1229         JOIN asset.copy_location cl ON (cp.location = cl.id)
1230         JOIN config.copy_status cs ON (cp.status = cs.id)
1231         JOIN biblio.record_entry b ON (cn.record = b.id)
1232     WHERE NOT cp.deleted
1233         AND NOT cl.deleted
1234         AND NOT cn.deleted
1235         AND NOT b.deleted
1236         AND cs.opac_visible
1237         AND cl.opac_visible
1238         AND cp.opac_visible
1239         AND a.opac_visible
1240             UNION
1241     SELECT  cp.id, cp.circ_lib, pbcm.peer_record AS record
1242     FROM  asset.copy cp
1243         JOIN biblio.peer_bib_copy_map pbcm ON (pbcm.target_copy = cp.id)
1244         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
1245         JOIN asset.copy_location cl ON (cp.location = cl.id)
1246         JOIN config.copy_status cs ON (cp.status = cs.id)
1247     WHERE NOT cp.deleted
1248         AND NOT cl.deleted
1249         AND cs.opac_visible
1250         AND cl.opac_visible
1251         AND cp.opac_visible
1252         AND a.opac_visible;
1253
1254 $$ LANGUAGE SQL;
1255 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
1256 Rebuild the copy OPAC visibility cache.  Useful during migrations.
1257 $$;
1258
1259 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
1260 DECLARE
1261     add_front       TEXT;
1262     add_back        TEXT;
1263     add_base_query  TEXT;
1264     add_peer_query  TEXT;
1265     remove_query    TEXT;
1266     do_add          BOOLEAN := false;
1267     do_remove       BOOLEAN := false;
1268 BEGIN
1269     add_base_query := $$
1270         SELECT  cp.id, cp.circ_lib, cn.record, cn.id AS call_number, cp.location, cp.status
1271           FROM  asset.copy cp
1272                 JOIN asset.call_number cn ON (cn.id = cp.call_number)
1273                 JOIN actor.org_unit a ON (cp.circ_lib = a.id)
1274                 JOIN asset.copy_location cl ON (cp.location = cl.id)
1275                 JOIN config.copy_status cs ON (cp.status = cs.id)
1276                 JOIN biblio.record_entry b ON (cn.record = b.id)
1277           WHERE NOT cp.deleted
1278                 AND NOT cl.deleted
1279                 AND NOT cn.deleted
1280                 AND NOT b.deleted
1281                 AND cs.opac_visible
1282                 AND cl.opac_visible
1283                 AND cp.opac_visible
1284                 AND a.opac_visible
1285     $$;
1286     add_peer_query := $$
1287         SELECT  cp.id, cp.circ_lib, pbcm.peer_record AS record, NULL AS call_number, cp.location, cp.status
1288           FROM  asset.copy cp
1289                 JOIN biblio.peer_bib_copy_map pbcm ON (pbcm.target_copy = cp.id)
1290                 JOIN actor.org_unit a ON (cp.circ_lib = a.id)
1291                 JOIN asset.copy_location cl ON (cp.location = cl.id)
1292                 JOIN config.copy_status cs ON (cp.status = cs.id)
1293           WHERE NOT cp.deleted
1294                 AND NOT cl.deleted
1295                 AND cs.opac_visible
1296                 AND cl.opac_visible
1297                 AND cp.opac_visible
1298                 AND a.opac_visible
1299     $$;
1300     add_front := $$
1301         INSERT INTO asset.opac_visible_copies (copy_id, circ_lib, record)
1302           SELECT DISTINCT ON (id, record) id, circ_lib, record FROM (
1303     $$;
1304     add_back := $$
1305         ) AS x
1306     $$;
1307  
1308     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE copy_id IN ( SELECT id FROM asset.copy WHERE $$;
1309
1310     IF TG_TABLE_NAME = 'peer_bib_copy_map' THEN
1311         IF TG_OP = 'INSERT' THEN
1312             add_peer_query := add_peer_query || ' AND cp.id = ' || NEW.target_copy || ' AND pbcm.peer_record = ' || NEW.peer_record;
1313             EXECUTE add_front || add_peer_query || add_back;
1314             RETURN NEW;
1315         ELSE
1316             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE copy_id = ' || OLD.target_copy || ' AND record = ' || OLD.peer_record || ';';
1317             EXECUTE remove_query;
1318             RETURN OLD;
1319         END IF;
1320     END IF;
1321
1322     IF TG_OP = 'INSERT' THEN
1323
1324         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
1325             add_base_query := add_base_query || ' AND cp.id = ' || NEW.id;
1326             EXECUTE add_front || add_base_query || add_back;
1327         END IF;
1328
1329         RETURN NEW;
1330
1331     END IF;
1332
1333     -- handle items first, since with circulation activity
1334     -- their statuses change frequently
1335     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
1336
1337         IF OLD.location    <> NEW.location OR
1338            OLD.call_number <> NEW.call_number OR
1339            OLD.status      <> NEW.status OR
1340            OLD.circ_lib    <> NEW.circ_lib THEN
1341             -- any of these could change visibility, but
1342             -- we'll save some queries and not try to calculate
1343             -- the change directly
1344             do_remove := true;
1345             do_add := true;
1346         ELSE
1347
1348             IF OLD.deleted <> NEW.deleted THEN
1349                 IF NEW.deleted THEN
1350                     do_remove := true;
1351                 ELSE
1352                     do_add := true;
1353                 END IF;
1354             END IF;
1355
1356             IF OLD.opac_visible <> NEW.opac_visible THEN
1357                 IF OLD.opac_visible THEN
1358                     do_remove := true;
1359                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
1360                                         -- is also marked opac_visible
1361                     do_add := true;
1362                 END IF;
1363             END IF;
1364
1365         END IF;
1366
1367         IF do_remove THEN
1368             DELETE FROM asset.opac_visible_copies WHERE copy_id = NEW.id;
1369         END IF;
1370         IF do_add THEN
1371             add_base_query := add_base_query || ' AND cp.id = ' || NEW.id;
1372             add_peer_query := add_peer_query || ' AND cp.id = ' || NEW.id;
1373             EXECUTE add_front || add_base_query || ' UNION ' || add_peer_query || add_back;
1374         END IF;
1375
1376         RETURN NEW;
1377
1378     END IF;
1379
1380     IF TG_TABLE_NAME IN ('call_number', 'copy_location', 'record_entry') THEN -- these have a 'deleted' column
1381  
1382         IF OLD.deleted AND NEW.deleted THEN -- do nothing
1383
1384             RETURN NEW;
1385  
1386         ELSIF NEW.deleted THEN -- remove rows
1387  
1388             IF TG_TABLE_NAME = 'call_number' THEN
1389                 DELETE FROM asset.opac_visible_copies WHERE copy_id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
1390             ELSIF TG_TABLE_NAME = 'copy_location' THEN
1391                 DELETE FROM asset.opac_visible_copies WHERE copy_id IN (SELECT id FROM asset.copy WHERE location = NEW.id);
1392             ELSIF TG_TABLE_NAME = 'record_entry' THEN
1393                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
1394             END IF;
1395  
1396             RETURN NEW;
1397  
1398         ELSIF OLD.deleted THEN -- add rows
1399  
1400             IF TG_TABLE_NAME = 'call_number' THEN
1401                 add_base_query := add_base_query || ' AND cn.id = ' || NEW.id;
1402                 EXECUTE add_front || add_base_query || add_back;
1403             ELSIF TG_TABLE_NAME = 'copy_location' THEN
1404                 add_base_query := add_base_query || 'AND cl.id = ' || NEW.id;
1405                 EXECUTE add_front || add_base_query || add_back;
1406             ELSIF TG_TABLE_NAME = 'record_entry' THEN
1407                 add_base_query := add_base_query || ' AND cn.record = ' || NEW.id;
1408                 add_peer_query := add_peer_query || ' AND pbcm.peer_record = ' || NEW.id;
1409                 EXECUTE add_front || add_base_query || ' UNION ' || add_peer_query || add_back;
1410             END IF;
1411  
1412             RETURN NEW;
1413  
1414         END IF;
1415  
1416     END IF;
1417
1418     IF TG_TABLE_NAME = 'call_number' THEN
1419
1420         IF OLD.record <> NEW.record THEN
1421             -- call number is linked to different bib
1422             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
1423             EXECUTE remove_query;
1424             add_base_query := add_base_query || ' AND cn.id = ' || NEW.id;
1425             EXECUTE add_front || add_base_query || add_back;
1426         END IF;
1427
1428         RETURN NEW;
1429
1430     END IF;
1431
1432     IF TG_TABLE_NAME IN ('record_entry') THEN
1433         RETURN NEW; -- don't have 'opac_visible'
1434     END IF;
1435
1436     -- actor.org_unit, asset.copy_location, asset.copy_status
1437     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
1438
1439         RETURN NEW;
1440
1441     ELSIF NEW.opac_visible THEN -- add rows
1442
1443         IF TG_TABLE_NAME = 'org_unit' THEN
1444             add_base_query := add_base_query || ' AND cp.circ_lib = ' || NEW.id;
1445             add_peer_query := add_peer_query || ' AND cp.circ_lib = ' || NEW.id;
1446         ELSIF TG_TABLE_NAME = 'copy_location' THEN
1447             add_base_query := add_base_query || ' AND cp.location = ' || NEW.id;
1448             add_peer_query := add_peer_query || ' AND cp.location = ' || NEW.id;
1449         ELSIF TG_TABLE_NAME = 'copy_status' THEN
1450             add_base_query := add_base_query || ' AND cp.status = ' || NEW.id;
1451             add_peer_query := add_peer_query || ' AND cp.status = ' || NEW.id;
1452         END IF;
1453  
1454         EXECUTE add_front || add_base_query || ' UNION ' || add_peer_query || add_back;
1455  
1456     ELSE -- delete rows
1457
1458         IF TG_TABLE_NAME = 'org_unit' THEN
1459             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
1460         ELSIF TG_TABLE_NAME = 'copy_location' THEN
1461             remove_query := remove_query || 'location = ' || NEW.id || ');';
1462         ELSIF TG_TABLE_NAME = 'copy_status' THEN
1463             remove_query := remove_query || 'status = ' || NEW.id || ');';
1464         END IF;
1465  
1466         EXECUTE remove_query;
1467  
1468     END IF;
1469  
1470     RETURN NEW;
1471 END;
1472 $func$ LANGUAGE PLPGSQL;
1473 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
1474 Trigger function to update the copy OPAC visiblity cache.
1475 $$;
1476 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR DELETE ON biblio.peer_bib_copy_map FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
1477 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
1478 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
1479 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.call_number FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
1480 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy_location FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
1481 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
1482 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON config.copy_status FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
1483 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON actor.org_unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
1484
1485 -- Authority ingest routines
1486 CREATE OR REPLACE FUNCTION authority.propagate_changes 
1487     (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
1488 DECLARE
1489     bib_rec biblio.record_entry%ROWTYPE;
1490     new_marc TEXT;
1491 BEGIN
1492
1493     SELECT INTO bib_rec * FROM biblio.record_entry WHERE id = bid;
1494
1495     new_marc := vandelay.merge_record_xml(
1496         bib_rec.marc, authority.generate_overlay_template(aid));
1497
1498     IF new_marc = bib_rec.marc THEN
1499         -- Authority record change had no impact on this bib record.
1500         -- Nothing left to do.
1501         RETURN aid;
1502     END IF;
1503
1504     PERFORM 1 FROM config.global_flag 
1505         WHERE name = 'ingest.disable_authority_auto_update_bib_meta' 
1506             AND enabled;
1507
1508     IF NOT FOUND THEN 
1509         -- update the bib record editor and edit_date
1510         bib_rec.editor := (
1511             SELECT editor FROM authority.record_entry WHERE id = aid);
1512         bib_rec.edit_date = NOW();
1513     END IF;
1514
1515     UPDATE biblio.record_entry SET
1516         marc = new_marc,
1517         editor = bib_rec.editor,
1518         edit_date = bib_rec.edit_date
1519     WHERE id = bid;
1520
1521     RETURN aid;
1522
1523 END;
1524 $func$ LANGUAGE PLPGSQL;
1525
1526 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
1527     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
1528 $func$ LANGUAGE SQL;
1529
1530 CREATE OR REPLACE FUNCTION authority.map_thesaurus_to_control_set () RETURNS TRIGGER AS $func$
1531 BEGIN
1532     IF NEW.control_set IS NULL THEN
1533         SELECT  control_set INTO NEW.control_set
1534           FROM  authority.thesaurus
1535           WHERE vandelay.marc21_extract_fixed_field(NEW.marc,'Subj') = code;
1536     END IF;
1537
1538     RETURN NEW;
1539 END;
1540 $func$ LANGUAGE PLPGSQL;
1541
1542 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
1543 BEGIN
1544     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
1545     INSERT INTO authority.rec_descriptor (record, record_status, encoding_level, thesaurus)
1546         SELECT  auth_id,
1547                 vandelay.marc21_extract_fixed_field(marc,'RecStat'),
1548                 vandelay.marc21_extract_fixed_field(marc,'ELvl'),
1549                 vandelay.marc21_extract_fixed_field(marc,'Subj')
1550           FROM  authority.record_entry
1551           WHERE id = auth_id;
1552     RETURN;
1553 END;
1554 $func$ LANGUAGE PLPGSQL;
1555
1556 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
1557 BEGIN
1558     DELETE FROM authority.full_rec WHERE record = auth_id;
1559     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
1560         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
1561
1562     RETURN;
1563 END;
1564 $func$ LANGUAGE PLPGSQL;
1565
1566 -- Given an authority record's ID, control set ID (if known), and marc::XML,
1567 -- return all links to other authority records in the form of rows that
1568 -- can be inserted into authority.authority_linking.
1569 CREATE OR REPLACE FUNCTION authority.calculate_authority_linking(
1570     rec_id BIGINT, rec_control_set INT, rec_marc_xml XML
1571 ) RETURNS SETOF authority.authority_linking AS $func$
1572 DECLARE
1573     acsaf       authority.control_set_authority_field%ROWTYPE;
1574     link        TEXT;
1575     aal         authority.authority_linking%ROWTYPE;
1576 BEGIN
1577     IF rec_control_set IS NULL THEN
1578         -- No control_set on record?  Guess at one
1579         SELECT control_set INTO rec_control_set
1580             FROM authority.control_set_authority_field
1581             WHERE tag IN (
1582                 SELECT UNNEST(
1583                     XPATH('//*[starts-with(@tag,"1")]/@tag',rec_marc_xml)::TEXT[]
1584                 )
1585             ) LIMIT 1;
1586
1587         IF NOT FOUND THEN
1588             RAISE WARNING 'Could not even guess at control set for authority record %', rec_id;
1589             RETURN;
1590         END IF;
1591     END IF;
1592
1593     aal.source := rec_id;
1594
1595     FOR acsaf IN
1596         SELECT * FROM authority.control_set_authority_field
1597         WHERE control_set = rec_control_set
1598             AND linking_subfield IS NOT NULL
1599             AND main_entry IS NOT NULL
1600     LOOP
1601         -- Loop over the trailing-number contents of all linking subfields
1602         FOR link IN
1603             SELECT  SUBSTRING( x::TEXT, '\d+$' )
1604               FROM  UNNEST(
1605                         XPATH(
1606                             '//*[@tag="'
1607                                 || acsaf.tag
1608                                 || '"]/*[@code="'
1609                                 || acsaf.linking_subfield
1610                                 || '"]/text()',
1611                             rec_marc_xml
1612                         )
1613                     ) x
1614         LOOP
1615
1616             -- Ignore links that are null, malformed, circular, or point to
1617             -- non-existent authority records.
1618             IF link IS NOT NULL AND link::BIGINT <> rec_id THEN
1619                 PERFORM * FROM authority.record_entry WHERE id = link::BIGINT;
1620                 IF FOUND THEN
1621                     aal.target := link::BIGINT;
1622                     aal.field := acsaf.id;
1623                     RETURN NEXT aal;
1624                 END IF;
1625             END IF;
1626         END LOOP;
1627     END LOOP;
1628 END;
1629 $func$ LANGUAGE PLPGSQL;
1630
1631 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
1632 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
1633 DECLARE
1634     ashs    authority.simple_heading%ROWTYPE;
1635     mbe_row metabib.browse_entry%ROWTYPE;
1636     mbe_id  BIGINT;
1637     ash_id  BIGINT;
1638 BEGIN
1639
1640     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
1641         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
1642         DELETE FROM authority.full_rec WHERE record = NEW.id; -- Avoid validating fields against deleted authority records
1643         DELETE FROM authority.simple_heading WHERE record = NEW.id;
1644           -- Should remove matching $0 from controlled fields at the same time?
1645
1646         -- XXX What do we about the actual linking subfields present in
1647         -- authority records that target this one when this happens?
1648         DELETE FROM authority.authority_linking
1649             WHERE source = NEW.id OR target = NEW.id;
1650
1651         RETURN NEW; -- and we're done
1652     END IF;
1653
1654     IF TG_OP = 'UPDATE' THEN -- re-ingest?
1655         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
1656
1657         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
1658             RETURN NEW;
1659         END IF;
1660
1661         -- Unless there's a setting stopping us, propagate these updates to any linked bib records when the heading changes
1662         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_auto_update' AND enabled;
1663
1664         IF NOT FOUND AND NEW.heading <> OLD.heading THEN
1665             PERFORM authority.propagate_changes(NEW.id);
1666         END IF;
1667         
1668         DELETE FROM authority.simple_heading WHERE record = NEW.id;
1669         DELETE FROM authority.authority_linking WHERE source = NEW.id;
1670     END IF;
1671
1672     INSERT INTO authority.authority_linking (source, target, field)
1673         SELECT source, target, field FROM authority.calculate_authority_linking(
1674             NEW.id, NEW.control_set, NEW.marc::XML
1675         );
1676
1677     FOR ashs IN SELECT * FROM authority.simple_heading_set(NEW.marc) LOOP
1678
1679         INSERT INTO authority.simple_heading (record,atag,value,sort_value,thesaurus)
1680             VALUES (ashs.record, ashs.atag, ashs.value, ashs.sort_value, ashs.thesaurus);
1681             ash_id := CURRVAL('authority.simple_heading_id_seq'::REGCLASS);
1682
1683         SELECT INTO mbe_row * FROM metabib.browse_entry
1684             WHERE value = ashs.value AND sort_value = ashs.sort_value;
1685
1686         IF FOUND THEN
1687             mbe_id := mbe_row.id;
1688         ELSE
1689             INSERT INTO metabib.browse_entry
1690                 ( value, sort_value ) VALUES
1691                 ( ashs.value, ashs.sort_value );
1692
1693             mbe_id := CURRVAL('metabib.browse_entry_id_seq'::REGCLASS);
1694         END IF;
1695
1696         INSERT INTO metabib.browse_entry_simple_heading_map (entry,simple_heading) VALUES (mbe_id,ash_id);
1697
1698     END LOOP;
1699
1700     -- Flatten and insert the afr data
1701     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
1702     IF NOT FOUND THEN
1703         PERFORM authority.reingest_authority_full_rec(NEW.id);
1704         PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
1705         IF NOT FOUND THEN
1706             PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
1707         END IF;
1708     END IF;
1709
1710     RETURN NEW;
1711 END;
1712 $func$ LANGUAGE PLPGSQL;
1713
1714 -- Ingest triggers
1715 CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.fingerprint_trigger ('eng','BKS');
1716 CREATE TRIGGER aaa_indexing_ingest_or_delete AFTER INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.indexing_ingest_or_delete ();
1717 CREATE TRIGGER bbb_simple_rec_trigger AFTER INSERT OR UPDATE OR DELETE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE reporter.simple_rec_trigger ();
1718
1719 CREATE TRIGGER map_thesaurus_to_control_set BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE authority.map_thesaurus_to_control_set ();
1720 CREATE TRIGGER aaa_auth_ingest_or_delete AFTER INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE authority.indexing_ingest_or_delete ();
1721
1722 -- Utility routines, callable via cstore
1723
1724 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
1725 RETURNS INTEGER AS $$
1726 BEGIN
1727         RETURN EXTRACT( EPOCH FROM interval_val );
1728 END;
1729 $$ LANGUAGE plpgsql;
1730
1731 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
1732 RETURNS INTEGER AS $$
1733 BEGIN
1734         RETURN config.interval_to_seconds( interval_string::INTERVAL );
1735 END;
1736 $$ LANGUAGE plpgsql;
1737
1738 CREATE OR REPLACE FUNCTION vandelay.ingest_items ( import_id BIGINT, attr_def_id BIGINT ) RETURNS SETOF vandelay.import_item AS $$
1739 DECLARE
1740
1741     owning_lib      TEXT;
1742     circ_lib        TEXT;
1743     call_number     TEXT;
1744     copy_number     TEXT;
1745     status          TEXT;
1746     location        TEXT;
1747     circulate       TEXT;
1748     deposit         TEXT;
1749     deposit_amount  TEXT;
1750     ref             TEXT;
1751     holdable        TEXT;
1752     price           TEXT;
1753     barcode         TEXT;
1754     circ_modifier   TEXT;
1755     circ_as_type    TEXT;
1756     alert_message   TEXT;
1757     opac_visible    TEXT;
1758     pub_note        TEXT;
1759     priv_note       TEXT;
1760     internal_id     TEXT;
1761     stat_cat_data   TEXT;
1762     parts_data      TEXT;
1763
1764     attr_def        RECORD;
1765     tmp_attr_set    RECORD;
1766     attr_set        vandelay.import_item%ROWTYPE;
1767
1768     xpaths          TEXT[];
1769     tmp_str         TEXT;
1770
1771 BEGIN
1772
1773     SELECT * INTO attr_def FROM vandelay.import_item_attr_definition WHERE id = attr_def_id;
1774
1775     IF FOUND THEN
1776
1777         attr_set.definition := attr_def.id;
1778
1779         -- Build the combined XPath
1780
1781         owning_lib :=
1782             CASE
1783                 WHEN attr_def.owning_lib IS NULL THEN 'null()'
1784                 WHEN LENGTH( attr_def.owning_lib ) = 1 THEN '*[@code="' || attr_def.owning_lib || '"]'
1785                 ELSE '*' || attr_def.owning_lib
1786             END;
1787
1788         circ_lib :=
1789             CASE
1790                 WHEN attr_def.circ_lib IS NULL THEN 'null()'
1791                 WHEN LENGTH( attr_def.circ_lib ) = 1 THEN '*[@code="' || attr_def.circ_lib || '"]'
1792                 ELSE '*' || attr_def.circ_lib
1793             END;
1794
1795         call_number :=
1796             CASE
1797                 WHEN attr_def.call_number IS NULL THEN 'null()'
1798                 WHEN LENGTH( attr_def.call_number ) = 1 THEN '*[@code="' || attr_def.call_number || '"]'
1799                 ELSE '*' || attr_def.call_number
1800             END;
1801
1802         copy_number :=
1803             CASE
1804                 WHEN attr_def.copy_number IS NULL THEN 'null()'
1805                 WHEN LENGTH( attr_def.copy_number ) = 1 THEN '*[@code="' || attr_def.copy_number || '"]'
1806                 ELSE '*' || attr_def.copy_number
1807             END;
1808
1809         status :=
1810             CASE
1811                 WHEN attr_def.status IS NULL THEN 'null()'
1812                 WHEN LENGTH( attr_def.status ) = 1 THEN '*[@code="' || attr_def.status || '"]'
1813                 ELSE '*' || attr_def.status
1814             END;
1815
1816         location :=
1817             CASE
1818                 WHEN attr_def.location IS NULL THEN 'null()'
1819                 WHEN LENGTH( attr_def.location ) = 1 THEN '*[@code="' || attr_def.location || '"]'
1820                 ELSE '*' || attr_def.location
1821             END;
1822
1823         circulate :=
1824             CASE
1825                 WHEN attr_def.circulate IS NULL THEN 'null()'
1826                 WHEN LENGTH( attr_def.circulate ) = 1 THEN '*[@code="' || attr_def.circulate || '"]'
1827                 ELSE '*' || attr_def.circulate
1828             END;
1829
1830         deposit :=
1831             CASE
1832                 WHEN attr_def.deposit IS NULL THEN 'null()'
1833                 WHEN LENGTH( attr_def.deposit ) = 1 THEN '*[@code="' || attr_def.deposit || '"]'
1834                 ELSE '*' || attr_def.deposit
1835             END;
1836
1837         deposit_amount :=
1838             CASE
1839                 WHEN attr_def.deposit_amount IS NULL THEN 'null()'
1840                 WHEN LENGTH( attr_def.deposit_amount ) = 1 THEN '*[@code="' || attr_def.deposit_amount || '"]'
1841                 ELSE '*' || attr_def.deposit_amount
1842             END;
1843
1844         ref :=
1845             CASE
1846                 WHEN attr_def.ref IS NULL THEN 'null()'
1847                 WHEN LENGTH( attr_def.ref ) = 1 THEN '*[@code="' || attr_def.ref || '"]'
1848                 ELSE '*' || attr_def.ref
1849             END;
1850
1851         holdable :=
1852             CASE
1853                 WHEN attr_def.holdable IS NULL THEN 'null()'
1854                 WHEN LENGTH( attr_def.holdable ) = 1 THEN '*[@code="' || attr_def.holdable || '"]'
1855                 ELSE '*' || attr_def.holdable
1856             END;
1857
1858         price :=
1859             CASE
1860                 WHEN attr_def.price IS NULL THEN 'null()'
1861                 WHEN LENGTH( attr_def.price ) = 1 THEN '*[@code="' || attr_def.price || '"]'
1862                 ELSE '*' || attr_def.price
1863             END;
1864
1865         barcode :=
1866             CASE
1867                 WHEN attr_def.barcode IS NULL THEN 'null()'
1868                 WHEN LENGTH( attr_def.barcode ) = 1 THEN '*[@code="' || attr_def.barcode || '"]'
1869                 ELSE '*' || attr_def.barcode
1870             END;
1871
1872         circ_modifier :=
1873             CASE
1874                 WHEN attr_def.circ_modifier IS NULL THEN 'null()'
1875                 WHEN LENGTH( attr_def.circ_modifier ) = 1 THEN '*[@code="' || attr_def.circ_modifier || '"]'
1876                 ELSE '*' || attr_def.circ_modifier
1877             END;
1878
1879         circ_as_type :=
1880             CASE
1881                 WHEN attr_def.circ_as_type IS NULL THEN 'null()'
1882                 WHEN LENGTH( attr_def.circ_as_type ) = 1 THEN '*[@code="' || attr_def.circ_as_type || '"]'
1883                 ELSE '*' || attr_def.circ_as_type
1884             END;
1885
1886         alert_message :=
1887             CASE
1888                 WHEN attr_def.alert_message IS NULL THEN 'null()'
1889                 WHEN LENGTH( attr_def.alert_message ) = 1 THEN '*[@code="' || attr_def.alert_message || '"]'
1890                 ELSE '*' || attr_def.alert_message
1891             END;
1892
1893         opac_visible :=
1894             CASE
1895                 WHEN attr_def.opac_visible IS NULL THEN 'null()'
1896                 WHEN LENGTH( attr_def.opac_visible ) = 1 THEN '*[@code="' || attr_def.opac_visible || '"]'
1897                 ELSE '*' || attr_def.opac_visible
1898             END;
1899
1900         pub_note :=
1901             CASE
1902                 WHEN attr_def.pub_note IS NULL THEN 'null()'
1903                 WHEN LENGTH( attr_def.pub_note ) = 1 THEN '*[@code="' || attr_def.pub_note || '"]'
1904                 ELSE '*' || attr_def.pub_note
1905             END;
1906         priv_note :=
1907             CASE
1908                 WHEN attr_def.priv_note IS NULL THEN 'null()'
1909                 WHEN LENGTH( attr_def.priv_note ) = 1 THEN '*[@code="' || attr_def.priv_note || '"]'
1910                 ELSE '*' || attr_def.priv_note
1911             END;
1912
1913         internal_id :=
1914             CASE
1915                 WHEN attr_def.internal_id IS NULL THEN 'null()'
1916                 WHEN LENGTH( attr_def.internal_id ) = 1 THEN '*[@code="' || attr_def.internal_id || '"]'
1917                 ELSE '*' || attr_def.internal_id
1918             END;
1919
1920         stat_cat_data :=
1921             CASE
1922                 WHEN attr_def.stat_cat_data IS NULL THEN 'null()'
1923                 WHEN LENGTH( attr_def.stat_cat_data ) = 1 THEN '*[@code="' || attr_def.stat_cat_data || '"]'
1924                 ELSE '*' || attr_def.stat_cat_data
1925             END;
1926
1927         parts_data :=
1928             CASE
1929                 WHEN attr_def.parts_data IS NULL THEN 'null()'
1930                 WHEN LENGTH( attr_def.parts_data ) = 1 THEN '*[@code="' || attr_def.parts_data || '"]'
1931                 ELSE '*' || attr_def.parts_data
1932             END;
1933
1934
1935
1936         xpaths := ARRAY[owning_lib, circ_lib, call_number, copy_number, status, location, circulate,
1937                         deposit, deposit_amount, ref, holdable, price, barcode, circ_modifier, circ_as_type,
1938                         alert_message, pub_note, priv_note, internal_id, stat_cat_data, parts_data, opac_visible];
1939
1940         FOR tmp_attr_set IN
1941                 SELECT  *
1942                   FROM  oils_xpath_tag_to_table( (SELECT marc FROM vandelay.queued_bib_record WHERE id = import_id), attr_def.tag, xpaths)
1943                             AS t( ol TEXT, clib TEXT, cn TEXT, cnum TEXT, cs TEXT, cl TEXT, circ TEXT,
1944                                   dep TEXT, dep_amount TEXT, r TEXT, hold TEXT, pr TEXT, bc TEXT, circ_mod TEXT,
1945                                   circ_as TEXT, amessage TEXT, note TEXT, pnote TEXT, internal_id TEXT,
1946                                   stat_cat_data TEXT, parts_data TEXT, opac_vis TEXT )
1947         LOOP
1948
1949             attr_set.import_error := NULL;
1950             attr_set.error_detail := NULL;
1951             attr_set.deposit_amount := NULL;
1952             attr_set.copy_number := NULL;
1953             attr_set.price := NULL;
1954             attr_set.circ_modifier := NULL;
1955             attr_set.location := NULL;
1956             attr_set.barcode := NULL;
1957             attr_set.call_number := NULL;
1958
1959             IF tmp_attr_set.pr != '' THEN
1960                 tmp_str = REGEXP_REPLACE(tmp_attr_set.pr, E'[^0-9\\.]', '', 'g');
1961                 IF tmp_str = '' THEN 
1962                     attr_set.import_error := 'import.item.invalid.price';
1963                     attr_set.error_detail := tmp_attr_set.pr; -- original value
1964                     RETURN NEXT attr_set; CONTINUE; 
1965                 END IF;
1966                 attr_set.price := tmp_str::NUMERIC(8,2); 
1967             END IF;
1968
1969             IF tmp_attr_set.dep_amount != '' THEN
1970                 tmp_str = REGEXP_REPLACE(tmp_attr_set.dep_amount, E'[^0-9\\.]', '', 'g');
1971                 IF tmp_str = '' THEN 
1972                     attr_set.import_error := 'import.item.invalid.deposit_amount';
1973                     attr_set.error_detail := tmp_attr_set.dep_amount; 
1974                     RETURN NEXT attr_set; CONTINUE; 
1975                 END IF;
1976                 attr_set.deposit_amount := tmp_str::NUMERIC(8,2); 
1977             END IF;
1978
1979             IF tmp_attr_set.cnum != '' THEN
1980                 tmp_str = REGEXP_REPLACE(tmp_attr_set.cnum, E'[^0-9]', '', 'g');
1981                 IF tmp_str = '' THEN 
1982                     attr_set.import_error := 'import.item.invalid.copy_number';
1983                     attr_set.error_detail := tmp_attr_set.cnum; 
1984                     RETURN NEXT attr_set; CONTINUE; 
1985                 END IF;
1986                 attr_set.copy_number := tmp_str::INT; 
1987             END IF;
1988
1989             IF tmp_attr_set.ol != '' THEN
1990                 SELECT id INTO attr_set.owning_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.ol); -- INT
1991                 IF NOT FOUND THEN
1992                     attr_set.import_error := 'import.item.invalid.owning_lib';
1993                     attr_set.error_detail := tmp_attr_set.ol;
1994                     RETURN NEXT attr_set; CONTINUE; 
1995                 END IF;
1996             END IF;
1997
1998             IF tmp_attr_set.clib != '' THEN
1999                 SELECT id INTO attr_set.circ_lib FROM actor.org_unit WHERE shortname = UPPER(tmp_attr_set.clib); -- INT
2000                 IF NOT FOUND THEN
2001                     attr_set.import_error := 'import.item.invalid.circ_lib';
2002                     attr_set.error_detail := tmp_attr_set.clib;
2003                     RETURN NEXT attr_set; CONTINUE; 
2004                 END IF;
2005             END IF;
2006
2007             IF tmp_attr_set.cs != '' THEN
2008                 SELECT id INTO attr_set.status FROM config.copy_status WHERE LOWER(name) = LOWER(tmp_attr_set.cs); -- INT
2009                 IF NOT FOUND THEN
2010                     attr_set.import_error := 'import.item.invalid.status';
2011                     attr_set.error_detail := tmp_attr_set.cs;
2012                     RETURN NEXT attr_set; CONTINUE; 
2013                 END IF;
2014             END IF;
2015
2016             IF COALESCE(tmp_attr_set.circ_mod, '') = '' THEN
2017
2018                 -- no circ mod defined, see if we should apply a default
2019                 SELECT INTO attr_set.circ_modifier TRIM(BOTH '"' FROM value) 
2020                     FROM actor.org_unit_ancestor_setting(
2021                         'vandelay.item.circ_modifier.default', 
2022                         attr_set.owning_lib
2023                     );
2024
2025                 -- make sure the value from the org setting is still valid
2026                 PERFORM 1 FROM config.circ_modifier WHERE code = attr_set.circ_modifier;
2027                 IF NOT FOUND THEN
2028                     attr_set.import_error := 'import.item.invalid.circ_modifier';
2029                     attr_set.error_detail := tmp_attr_set.circ_mod;
2030                     RETURN NEXT attr_set; CONTINUE; 
2031                 END IF;
2032
2033             ELSE 
2034
2035                 SELECT code INTO attr_set.circ_modifier FROM config.circ_modifier WHERE code = tmp_attr_set.circ_mod;
2036                 IF NOT FOUND THEN
2037                     attr_set.import_error := 'import.item.invalid.circ_modifier';
2038                     attr_set.error_detail := tmp_attr_set.circ_mod;
2039                     RETURN NEXT attr_set; CONTINUE; 
2040                 END IF;
2041             END IF;
2042
2043             IF tmp_attr_set.circ_as != '' THEN
2044                 SELECT code INTO attr_set.circ_as_type FROM config.coded_value_map WHERE ctype = 'item_type' AND code = tmp_attr_set.circ_as;
2045                 IF NOT FOUND THEN
2046                     attr_set.import_error := 'import.item.invalid.circ_as_type';
2047                     attr_set.error_detail := tmp_attr_set.circ_as;
2048                     RETURN NEXT attr_set; CONTINUE; 
2049                 END IF;
2050             END IF;
2051
2052             IF COALESCE(tmp_attr_set.cl, '') = '' THEN
2053                 -- no location specified, see if we should apply a default
2054
2055                 SELECT INTO attr_set.location TRIM(BOTH '"' FROM value) 
2056                     FROM actor.org_unit_ancestor_setting(
2057                         'vandelay.item.copy_location.default', 
2058                         attr_set.owning_lib
2059                     );
2060
2061                 -- make sure the value from the org setting is still valid
2062                 PERFORM 1 FROM asset.copy_location 
2063                     WHERE id = attr_set.location AND NOT deleted;
2064                 IF NOT FOUND THEN
2065                     attr_set.import_error := 'import.item.invalid.location';
2066                     attr_set.error_detail := tmp_attr_set.cs;
2067                     RETURN NEXT attr_set; CONTINUE; 
2068                 END IF;
2069             ELSE
2070
2071                 -- search up the org unit tree for a matching copy location
2072                 WITH RECURSIVE anscestor_depth AS (
2073                     SELECT  ou.id,
2074                         out.depth AS depth,
2075                         ou.parent_ou
2076                     FROM  actor.org_unit ou
2077                         JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
2078                     WHERE ou.id = COALESCE(attr_set.owning_lib, attr_set.circ_lib)
2079                         UNION ALL
2080                     SELECT  ou.id,
2081                         out.depth,
2082                         ou.parent_ou
2083                     FROM  actor.org_unit ou
2084                         JOIN actor.org_unit_type out ON (out.id = ou.ou_type)
2085                         JOIN anscestor_depth ot ON (ot.parent_ou = ou.id)
2086                 ) SELECT  cpl.id INTO attr_set.location
2087                     FROM  anscestor_depth a
2088                         JOIN asset.copy_location cpl ON (cpl.owning_lib = a.id)
2089                     WHERE LOWER(cpl.name) = LOWER(tmp_attr_set.cl) 
2090                         AND NOT cpl.deleted
2091                     ORDER BY a.depth DESC
2092                     LIMIT 1; 
2093
2094                 IF NOT FOUND THEN
2095                     attr_set.import_error := 'import.item.invalid.location';
2096                     attr_set.error_detail := tmp_attr_set.cs;
2097                     RETURN NEXT attr_set; CONTINUE; 
2098                 END IF;
2099             END IF;
2100
2101             attr_set.circulate      :=
2102                 LOWER( SUBSTRING( tmp_attr_set.circ, 1, 1)) IN ('t','y','1')
2103                 OR LOWER(tmp_attr_set.circ) = 'circulating'; -- BOOL
2104
2105             attr_set.deposit        :=
2106                 LOWER( SUBSTRING( tmp_attr_set.dep, 1, 1 ) ) IN ('t','y','1')
2107                 OR LOWER(tmp_attr_set.dep) = 'deposit'; -- BOOL
2108
2109             attr_set.holdable       :=
2110                 LOWER( SUBSTRING( tmp_attr_set.hold, 1, 1 ) ) IN ('t','y','1')
2111                 OR LOWER(tmp_attr_set.hold) = 'holdable'; -- BOOL
2112
2113             attr_set.opac_visible   :=
2114                 LOWER( SUBSTRING( tmp_attr_set.opac_vis, 1, 1 ) ) IN ('t','y','1')
2115                 OR LOWER(tmp_attr_set.opac_vis) = 'visible'; -- BOOL
2116
2117             attr_set.ref            :=
2118                 LOWER( SUBSTRING( tmp_attr_set.r, 1, 1 ) ) IN ('t','y','1')
2119                 OR LOWER(tmp_attr_set.r) = 'reference'; -- BOOL
2120
2121             attr_set.call_number    := tmp_attr_set.cn; -- TEXT
2122             attr_set.barcode        := tmp_attr_set.bc; -- TEXT,
2123             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
2124             attr_set.pub_note       := tmp_attr_set.note; -- TEXT,
2125             attr_set.priv_note      := tmp_attr_set.pnote; -- TEXT,
2126             attr_set.alert_message  := tmp_attr_set.amessage; -- TEXT,
2127             attr_set.internal_id    := tmp_attr_set.internal_id::BIGINT;
2128             attr_set.stat_cat_data  := tmp_attr_set.stat_cat_data; -- TEXT,
2129             attr_set.parts_data     := tmp_attr_set.parts_data; -- TEXT,
2130
2131             RETURN NEXT attr_set;
2132
2133         END LOOP;
2134
2135     END IF;
2136
2137     RETURN;
2138
2139 END;
2140 $$ LANGUAGE PLPGSQL;
2141
2142
2143
2144
2145 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_items ( ) RETURNS TRIGGER AS $func$
2146 DECLARE
2147     attr_def    BIGINT;
2148     item_data   vandelay.import_item%ROWTYPE;
2149 BEGIN
2150
2151     IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN
2152         RETURN NEW;
2153     END IF;
2154
2155     SELECT item_attr_def INTO attr_def FROM vandelay.bib_queue WHERE id = NEW.queue;
2156
2157     FOR item_data IN SELECT * FROM vandelay.ingest_items( NEW.id::BIGINT, attr_def ) LOOP
2158         INSERT INTO vandelay.import_item (
2159             record,
2160             definition,
2161             owning_lib,
2162             circ_lib,
2163             call_number,
2164             copy_number,
2165             status,
2166             location,
2167             circulate,
2168             deposit,
2169             deposit_amount,
2170             ref,
2171             holdable,
2172             price,
2173             barcode,
2174             circ_modifier,
2175             circ_as_type,
2176             alert_message,
2177             pub_note,
2178             priv_note,
2179             internal_id,
2180             opac_visible,
2181             stat_cat_data,
2182             parts_data,
2183             import_error,
2184             error_detail
2185         ) VALUES (
2186             NEW.id,
2187             item_data.definition,
2188             item_data.owning_lib,
2189             item_data.circ_lib,
2190             item_data.call_number,
2191             item_data.copy_number,
2192             item_data.status,
2193             item_data.location,
2194             item_data.circulate,
2195             item_data.deposit,
2196             item_data.deposit_amount,
2197             item_data.ref,
2198             item_data.holdable,
2199             item_data.price,
2200             item_data.barcode,
2201             item_data.circ_modifier,
2202             item_data.circ_as_type,
2203             item_data.alert_message,
2204             item_data.pub_note,
2205             item_data.priv_note,
2206             item_data.internal_id,
2207             item_data.opac_visible,
2208             item_data.stat_cat_data,
2209             item_data.parts_data,
2210             item_data.import_error,
2211             item_data.error_detail
2212         );
2213     END LOOP;
2214
2215     RETURN NULL;
2216 END;
2217 $func$ LANGUAGE PLPGSQL;
2218
2219 CREATE TRIGGER ingest_item_trigger
2220     AFTER INSERT OR UPDATE ON vandelay.queued_bib_record
2221     FOR EACH ROW EXECUTE PROCEDURE vandelay.ingest_bib_items();
2222
2223
2224 -- evergreen.generic_map_normalizer 
2225
2226 CREATE OR REPLACE FUNCTION evergreen.generic_map_normalizer ( TEXT, TEXT ) RETURNS TEXT AS $f$
2227 my $string = shift;
2228 my %map;
2229
2230 my $default = $string;
2231
2232 $_ = shift;
2233 while (/^\s*?(.*?)\s*?=>\s*?(\S+)\s*/) {
2234     if ($1 eq '') {
2235         $default = $2;
2236     } else {
2237         $map{$2} = [split(/\s*,\s*/, $1)];
2238     }
2239     $_ = $';
2240 }
2241
2242 for my $key ( keys %map ) {
2243     return $key if (grep { $_ eq $string } @{ $map{$key} });
2244 }
2245
2246 return $default;
2247
2248 $f$ LANGUAGE PLPERLU;
2249
2250 CREATE OR REPLACE FUNCTION actor.address_alert_matches (
2251         org_unit INT, 
2252         street1 TEXT, 
2253         street2 TEXT, 
2254         city TEXT, 
2255         county TEXT, 
2256         state TEXT, 
2257         country TEXT, 
2258         post_code TEXT,
2259         mailing_address BOOL DEFAULT FALSE,
2260         billing_address BOOL DEFAULT FALSE
2261     ) RETURNS SETOF actor.address_alert AS $$
2262
2263 SELECT *
2264 FROM actor.address_alert
2265 WHERE
2266     active
2267     AND owner IN (SELECT id FROM actor.org_unit_ancestors($1)) 
2268     AND (
2269         (NOT mailing_address AND NOT billing_address)
2270         OR (mailing_address AND $9)
2271         OR (billing_address AND $10)
2272     )
2273     AND (
2274             (
2275                 match_all
2276                 AND COALESCE($2, '') ~* COALESCE(street1,   '.*')
2277                 AND COALESCE($3, '') ~* COALESCE(street2,   '.*')
2278                 AND COALESCE($4, '') ~* COALESCE(city,      '.*')
2279                 AND COALESCE($5, '') ~* COALESCE(county,    '.*')
2280                 AND COALESCE($6, '') ~* COALESCE(state,     '.*')
2281                 AND COALESCE($7, '') ~* COALESCE(country,   '.*')
2282                 AND COALESCE($8, '') ~* COALESCE(post_code, '.*')
2283             ) OR (
2284                 NOT match_all 
2285                 AND (  
2286                        $2 ~* street1
2287                     OR $3 ~* street2
2288                     OR $4 ~* city
2289                     OR $5 ~* county
2290                     OR $6 ~* state
2291                     OR $7 ~* country
2292                     OR $8 ~* post_code
2293                 )
2294             )
2295         )
2296     ORDER BY actor.org_unit_proximity(owner, $1)
2297 $$ LANGUAGE SQL;
2298
2299 CREATE OR REPLACE FUNCTION evergreen.coded_value_map_normalizer( input TEXT, ctype TEXT ) 
2300     RETURNS TEXT AS $F$
2301         SELECT COALESCE(value,$1) 
2302             FROM config.coded_value_map 
2303             WHERE ctype = $2 AND code = $1;
2304 $F$ LANGUAGE SQL;
2305
2306 -- user activity functions --
2307
2308 -- remove transient activity entries on insert of new entries
2309 CREATE OR REPLACE FUNCTION actor.usr_activity_transient_trg () RETURNS TRIGGER AS $$
2310 BEGIN
2311     DELETE FROM actor.usr_activity act USING config.usr_activity_type atype
2312         WHERE atype.transient AND 
2313             NEW.etype = atype.id AND
2314             act.etype = atype.id AND
2315             act.usr = NEW.usr;
2316     RETURN NEW;
2317 END;
2318 $$ LANGUAGE PLPGSQL;
2319
2320 CREATE TRIGGER remove_transient_usr_activity
2321     BEFORE INSERT ON actor.usr_activity
2322     FOR EACH ROW EXECUTE PROCEDURE actor.usr_activity_transient_trg();
2323
2324 -- given a set of activity criteria, find the most approprate activity type
2325 CREATE OR REPLACE FUNCTION actor.usr_activity_get_type (
2326         ewho TEXT, 
2327         ewhat TEXT, 
2328         ehow TEXT
2329     ) RETURNS SETOF config.usr_activity_type AS $$
2330 SELECT * FROM config.usr_activity_type 
2331     WHERE 
2332         enabled AND 
2333         (ewho  IS NULL OR ewho  = $1) AND
2334         (ewhat IS NULL OR ewhat = $2) AND
2335         (ehow  IS NULL OR ehow  = $3) 
2336     ORDER BY 
2337         -- BOOL comparisons sort false to true
2338         COALESCE(ewho, '')  != COALESCE($1, ''),
2339         COALESCE(ewhat,'')  != COALESCE($2, ''),
2340         COALESCE(ehow, '')  != COALESCE($3, '') 
2341     LIMIT 1;
2342 $$ LANGUAGE SQL;
2343
2344 -- given a set of activity criteria, finds the best
2345 -- activity type and inserts the activity entry
2346 CREATE OR REPLACE FUNCTION actor.insert_usr_activity (
2347         usr INT,
2348         ewho TEXT, 
2349         ewhat TEXT, 
2350         ehow TEXT
2351     ) RETURNS SETOF actor.usr_activity AS $$
2352 DECLARE
2353     new_row actor.usr_activity%ROWTYPE;
2354 BEGIN
2355     SELECT id INTO new_row.etype FROM actor.usr_activity_get_type(ewho, ewhat, ehow);
2356     IF FOUND THEN
2357         new_row.usr := usr;
2358         INSERT INTO actor.usr_activity (usr, etype) 
2359             VALUES (usr, new_row.etype)
2360             RETURNING * INTO new_row;
2361         RETURN NEXT new_row;
2362     END IF;
2363 END;
2364 $$ LANGUAGE plpgsql;
2365
2366 CREATE OR REPLACE FUNCTION evergreen.rel_bump(terms TEXT[], value TEXT, bumps TEXT[], mults NUMERIC[]) RETURNS NUMERIC AS
2367 $BODY$
2368 use strict;
2369 my ($terms,$value,$bumps,$mults) = @_;
2370
2371 my $retval = 1;
2372
2373 for (my $id = 0; $id < @$bumps; $id++) {
2374         if ($bumps->[$id] eq 'first_word') {
2375                 $retval *= $mults->[$id] if ($value =~ /^$terms->[0]/);
2376         } elsif ($bumps->[$id] eq 'full_match') {
2377                 my $fullmatch = join(' ', @$terms);
2378                 $retval *= $mults->[$id] if ($value =~ /^$fullmatch$/);
2379         } elsif ($bumps->[$id] eq 'word_order') {
2380                 my $wordorder = join('.*', @$terms);
2381                 $retval *= $mults->[$id] if ($value =~ /$wordorder/);
2382         }
2383 }
2384 return $retval;
2385 $BODY$ LANGUAGE plperlu IMMUTABLE STRICT COST 100;
2386
2387 -- user activity functions --
2388
2389
2390 -- find the most relevant set of credentials for the Z source and org
2391 CREATE OR REPLACE FUNCTION config.z3950_source_credentials_lookup
2392         (source TEXT, owner INTEGER) 
2393         RETURNS config.z3950_source_credentials AS $$
2394
2395     SELECT creds.* 
2396     FROM config.z3950_source_credentials creds
2397         JOIN actor.org_unit aou ON (aou.id = creds.owner)
2398         JOIN actor.org_unit_type aout ON (aout.id = aou.ou_type)
2399     WHERE creds.source = $1 AND creds.owner IN ( 
2400         SELECT id FROM actor.org_unit_ancestors($2) 
2401     )
2402     ORDER BY aout.depth DESC LIMIT 1;
2403
2404 $$ LANGUAGE SQL STABLE;
2405
2406 -- since we are not exposing config.z3950_source_credentials
2407 -- via the IDL, providing a stored proc gives us a way to
2408 -- set values in the table via cstore
2409 CREATE OR REPLACE FUNCTION config.z3950_source_credentials_apply
2410         (src TEXT, org INTEGER, uname TEXT, passwd TEXT) 
2411         RETURNS VOID AS $$
2412 BEGIN
2413     PERFORM 1 FROM config.z3950_source_credentials
2414         WHERE owner = org AND source = src;
2415
2416     IF FOUND THEN
2417         IF COALESCE(uname, '') = '' AND COALESCE(passwd, '') = '' THEN
2418             DELETE FROM config.z3950_source_credentials 
2419                 WHERE owner = org AND source = src;
2420         ELSE 
2421             UPDATE config.z3950_source_credentials 
2422                 SET username = uname, password = passwd
2423                 WHERE owner = org AND source = src;
2424         END IF;
2425     ELSE
2426         IF COALESCE(uname, '') <> '' OR COALESCE(passwd, '') <> '' THEN
2427             INSERT INTO config.z3950_source_credentials
2428                 (source, owner, username, password) 
2429                 VALUES (src, org, uname, passwd);
2430         END IF;
2431     END IF;
2432 END;
2433 $$ LANGUAGE PLPGSQL;
2434
2435