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