]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/999.functions.global.sql
minor improvements to database object comments
[working/Evergreen.git] / Open-ILS / src / sql / Pg / 999.functions.global.sql
1 /*
2  * Copyright (C) 2008 Equinox Software, Inc.
3  * Bill Erickson <erickson@esilibrary.com>
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License
7  * as published by the Free Software Foundation; either version 2
8  * of the License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  */
16
17 CREATE OR REPLACE FUNCTION actor.usr_merge_rows( table_name TEXT, col_name TEXT, src_usr INT, dest_usr INT ) RETURNS VOID AS $$
18 DECLARE
19     sel TEXT;
20     upd TEXT;
21     del TEXT;
22     cur_row RECORD;
23 BEGIN
24     sel := 'SELECT id::BIGINT FROM ' || table_name || ' WHERE ' || quote_ident(col_name) || ' = ' || quote_literal(src_usr);
25     upd := 'UPDATE ' || table_name || ' SET ' || quote_ident(col_name) || ' = ' || quote_literal(dest_usr) || ' WHERE id = ';
26     del := 'DELETE FROM ' || table_name || ' WHERE id = ';
27     FOR cur_row IN EXECUTE sel LOOP
28         BEGIN
29             --RAISE NOTICE 'Attempting to merge % %', table_name, cur_row.id;
30             EXECUTE upd || cur_row.id;
31         EXCEPTION WHEN unique_violation THEN
32             --RAISE NOTICE 'Deleting conflicting % %', table_name, cur_row.id;
33             EXECUTE del || cur_row.id;
34         END;
35     END LOOP;
36 END;
37 $$ LANGUAGE plpgsql;
38
39 COMMENT ON FUNCTION actor.usr_merge_rows(TEXT, TEXT, INT, INT) IS $$
40 Attempts to move each row of the specified table from src_user to dest_user.  
41 Where conflicts exist, the conflicting "source" row is deleted.
42 $$;
43
44
45 CREATE OR REPLACE FUNCTION actor.usr_merge( src_usr INT, dest_usr INT, del_addrs BOOLEAN, del_cards BOOLEAN, deactivate_cards BOOLEAN ) RETURNS VOID AS $$
46 DECLARE
47         suffix TEXT;
48         bucket_row RECORD;
49         picklist_row RECORD;
50         queue_row RECORD;
51         folder_row RECORD;
52 BEGIN
53
54     -- do some initial cleanup 
55     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
56     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
57     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
58
59     -- actor.*
60     IF del_cards THEN
61         DELETE FROM actor.card where usr = src_usr;
62     ELSE
63         IF deactivate_cards THEN
64             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
65         END IF;
66         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
67     END IF;
68
69
70     IF del_addrs THEN
71         DELETE FROM actor.usr_address WHERE usr = src_usr;
72     ELSE
73         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
74     END IF;
75
76     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
77     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
78     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
79     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
80     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
81
82     -- permission.*
83     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
84     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
85     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
86     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
87
88
89     -- container.*
90         
91         -- For each *_bucket table: transfer every bucket belonging to src_usr
92         -- into the custody of dest_usr.
93         --
94         -- In order to avoid colliding with an existing bucket owned by
95         -- the destination user, append the source user's id (in parenthesese)
96         -- to the name.  If you still get a collision, add successive
97         -- spaces to the name and keep trying until you succeed.
98         --
99         FOR bucket_row in
100                 SELECT id, name
101                 FROM   container.biblio_record_entry_bucket
102                 WHERE  owner = src_usr
103         LOOP
104                 suffix := ' (' || src_usr || ')';
105                 LOOP
106                         BEGIN
107                                 UPDATE  container.biblio_record_entry_bucket
108                                 SET     owner = dest_usr, name = name || suffix
109                                 WHERE   id = bucket_row.id;
110                         EXCEPTION WHEN unique_violation THEN
111                                 suffix := suffix || ' ';
112                                 CONTINUE;
113                         END;
114                         EXIT;
115                 END LOOP;
116         END LOOP;
117
118         FOR bucket_row in
119                 SELECT id, name
120                 FROM   container.call_number_bucket
121                 WHERE  owner = src_usr
122         LOOP
123                 suffix := ' (' || src_usr || ')';
124                 LOOP
125                         BEGIN
126                                 UPDATE  container.call_number_bucket
127                                 SET     owner = dest_usr, name = name || suffix
128                                 WHERE   id = bucket_row.id;
129                         EXCEPTION WHEN unique_violation THEN
130                                 suffix := suffix || ' ';
131                                 CONTINUE;
132                         END;
133                         EXIT;
134                 END LOOP;
135         END LOOP;
136
137         FOR bucket_row in
138                 SELECT id, name
139                 FROM   container.copy_bucket
140                 WHERE  owner = src_usr
141         LOOP
142                 suffix := ' (' || src_usr || ')';
143                 LOOP
144                         BEGIN
145                                 UPDATE  container.copy_bucket
146                                 SET     owner = dest_usr, name = name || suffix
147                                 WHERE   id = bucket_row.id;
148                         EXCEPTION WHEN unique_violation THEN
149                                 suffix := suffix || ' ';
150                                 CONTINUE;
151                         END;
152                         EXIT;
153                 END LOOP;
154         END LOOP;
155
156         FOR bucket_row in
157                 SELECT id, name
158                 FROM   container.user_bucket
159                 WHERE  owner = src_usr
160         LOOP
161                 suffix := ' (' || src_usr || ')';
162                 LOOP
163                         BEGIN
164                                 UPDATE  container.user_bucket
165                                 SET     owner = dest_usr, name = name || suffix
166                                 WHERE   id = bucket_row.id;
167                         EXCEPTION WHEN unique_violation THEN
168                                 suffix := suffix || ' ';
169                                 CONTINUE;
170                         END;
171                         EXIT;
172                 END LOOP;
173         END LOOP;
174
175         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
176
177     -- vandelay.*
178         -- transfer queues the same way we transfer buckets (see above)
179         FOR queue_row in
180                 SELECT id, name
181                 FROM   vandelay.queue
182                 WHERE  owner = src_usr
183         LOOP
184                 suffix := ' (' || src_usr || ')';
185                 LOOP
186                         BEGIN
187                                 UPDATE  vandelay.queue
188                                 SET     owner = dest_usr, name = name || suffix
189                                 WHERE   id = queue_row.id;
190                         EXCEPTION WHEN unique_violation THEN
191                                 suffix := suffix || ' ';
192                                 CONTINUE;
193                         END;
194                         EXIT;
195                 END LOOP;
196         END LOOP;
197
198     -- money.*
199     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
200     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
201     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
202     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
203     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
204
205     -- action.*
206     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
207     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
208     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
209
210     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
211     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
212     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
213     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
214
215     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
216     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
217     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
218     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
219     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
220
221     -- acq.*
222     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
223         UPDATE acq.fund_transfer SET transfer_user = dest_usr WHERE transfer_user = src_usr;
224
225         -- transfer picklists the same way we transfer buckets (see above)
226         FOR picklist_row in
227                 SELECT id, name
228                 FROM   acq.picklist
229                 WHERE  owner = src_usr
230         LOOP
231                 suffix := ' (' || src_usr || ')';
232                 LOOP
233                         BEGIN
234                                 UPDATE  acq.picklist
235                                 SET     owner = dest_usr, name = name || suffix
236                                 WHERE   id = picklist_row.id;
237                         EXCEPTION WHEN unique_violation THEN
238                                 suffix := suffix || ' ';
239                                 CONTINUE;
240                         END;
241                         EXIT;
242                 END LOOP;
243         END LOOP;
244
245     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
246     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
247     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
248     UPDATE acq.provider_note SET creator = dest_usr WHERE creator = src_usr;
249     UPDATE acq.provider_note SET editor = dest_usr WHERE editor = src_usr;
250     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
251     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
252     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
253
254     -- asset.*
255     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
256     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
257     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
258     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
259     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
260     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
261
262     -- serial.*
263     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
264     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
265
266     -- reporter.*
267     -- It's not uncommon to define the reporter schema in a replica 
268     -- DB only, so don't assume these tables exist in the write DB.
269     BEGIN
270         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
271     EXCEPTION WHEN undefined_table THEN
272         -- do nothing
273     END;
274     BEGIN
275         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
276     EXCEPTION WHEN undefined_table THEN
277         -- do nothing
278     END;
279     BEGIN
280         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
281     EXCEPTION WHEN undefined_table THEN
282         -- do nothing
283     END;
284     BEGIN
285                 -- transfer folders the same way we transfer buckets (see above)
286                 FOR folder_row in
287                         SELECT id, name
288                         FROM   reporter.template_folder
289                         WHERE  owner = src_usr
290                 LOOP
291                         suffix := ' (' || src_usr || ')';
292                         LOOP
293                                 BEGIN
294                                         UPDATE  reporter.template_folder
295                                         SET     owner = dest_usr, name = name || suffix
296                                         WHERE   id = folder_row.id;
297                                 EXCEPTION WHEN unique_violation THEN
298                                         suffix := suffix || ' ';
299                                         CONTINUE;
300                                 END;
301                                 EXIT;
302                         END LOOP;
303                 END LOOP;
304     EXCEPTION WHEN undefined_table THEN
305         -- do nothing
306     END;
307     BEGIN
308                 -- transfer folders the same way we transfer buckets (see above)
309                 FOR folder_row in
310                         SELECT id, name
311                         FROM   reporter.report_folder
312                         WHERE  owner = src_usr
313                 LOOP
314                         suffix := ' (' || src_usr || ')';
315                         LOOP
316                                 BEGIN
317                                         UPDATE  reporter.report_folder
318                                         SET     owner = dest_usr, name = name || suffix
319                                         WHERE   id = folder_row.id;
320                                 EXCEPTION WHEN unique_violation THEN
321                                         suffix := suffix || ' ';
322                                         CONTINUE;
323                                 END;
324                                 EXIT;
325                         END LOOP;
326                 END LOOP;
327     EXCEPTION WHEN undefined_table THEN
328         -- do nothing
329     END;
330     BEGIN
331                 -- transfer folders the same way we transfer buckets (see above)
332                 FOR folder_row in
333                         SELECT id, name
334                         FROM   reporter.output_folder
335                         WHERE  owner = src_usr
336                 LOOP
337                         suffix := ' (' || src_usr || ')';
338                         LOOP
339                                 BEGIN
340                                         UPDATE  reporter.output_folder
341                                         SET     owner = dest_usr, name = name || suffix
342                                         WHERE   id = folder_row.id;
343                                 EXCEPTION WHEN unique_violation THEN
344                                         suffix := suffix || ' ';
345                                         CONTINUE;
346                                 END;
347                                 EXIT;
348                         END LOOP;
349                 END LOOP;
350     EXCEPTION WHEN undefined_table THEN
351         -- do nothing
352     END;
353
354     -- Finally, delete the source user
355     DELETE FROM actor.usr WHERE id = src_usr;
356
357 END;
358 $$ LANGUAGE plpgsql;
359
360 COMMENT ON FUNCTION actor.usr_merge(INT, INT, BOOLEAN, BOOLEAN, BOOLEAN) IS $$
361 Merges all user date from src_usr to dest_usr.  When collisions occur, 
362 keep dest_usr's data and delete src_usr's data.
363 $$;
364
365
366 CREATE OR REPLACE FUNCTION actor.usr_purge_data(
367         src_usr  IN INTEGER,
368         specified_dest_usr IN INTEGER
369 ) RETURNS VOID AS $$
370 DECLARE
371         suffix TEXT;
372         renamable_row RECORD;
373         dest_usr INTEGER;
374 BEGIN
375
376         IF specified_dest_usr IS NULL THEN
377                 dest_usr := 1; -- Admin user on stock installs
378         ELSE
379                 dest_usr := specified_dest_usr;
380         END IF;
381
382         UPDATE actor.usr SET
383                 active = FALSE,
384                 card = NULL,
385                 mailing_address = NULL,
386                 billing_address = NULL
387         WHERE id = src_usr;
388
389         -- acq.*
390         UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
391         UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr;
392         UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr;
393         UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr;
394         UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
395         UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
396         DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr;
397
398         -- Update with a rename to avoid collisions
399         FOR renamable_row in
400                 SELECT id, name
401                 FROM   acq.picklist
402                 WHERE  owner = src_usr
403         LOOP
404                 suffix := ' (' || src_usr || ')';
405                 LOOP
406                         BEGIN
407                                 UPDATE  acq.picklist
408                                 SET     owner = dest_usr, name = name || suffix
409                                 WHERE   id = renamable_row.id;
410                         EXCEPTION WHEN unique_violation THEN
411                                 suffix := suffix || ' ';
412                                 CONTINUE;
413                         END;
414                         EXIT;
415                 END LOOP;
416         END LOOP;
417
418         UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr;
419         UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr;
420         UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
421         UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
422         UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
423         UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr;
424         UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr;
425         UPDATE acq.claim_event SET creator = dest_usr WHERE creator = src_usr;
426
427         -- action.*
428         DELETE FROM action.circulation WHERE usr = src_usr;
429         UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
430         UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
431         UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
432         UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
433         UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
434         DELETE FROM action.hold_request WHERE usr = src_usr;
435         UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
436         UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
437         DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr;
438         UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
439         DELETE FROM action.survey_response WHERE usr = src_usr;
440         UPDATE action.fieldset SET owner = dest_usr WHERE owner = src_usr;
441
442         -- actor.*
443         DELETE FROM actor.card WHERE usr = src_usr;
444         DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr;
445
446         -- The following update is intended to avoid transient violations of a foreign
447         -- key constraint, whereby actor.usr_address references itself.  It may not be
448         -- necessary, but it does no harm.
449         UPDATE actor.usr_address SET replaces = NULL
450                 WHERE usr = src_usr AND replaces IS NOT NULL;
451         DELETE FROM actor.usr_address WHERE usr = src_usr;
452         DELETE FROM actor.usr_note WHERE usr = src_usr;
453         UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr;
454         DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr;
455         UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr;
456         DELETE FROM actor.usr_setting WHERE usr = src_usr;
457         DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr;
458         UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr;
459
460         -- asset.*
461         UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
462         UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
463         UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
464         UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
465         UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
466         UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
467
468         -- auditor.*
469         DELETE FROM auditor.actor_usr_address_history WHERE id = src_usr;
470         DELETE FROM auditor.actor_usr_history WHERE id = src_usr;
471         UPDATE auditor.asset_call_number_history SET creator = dest_usr WHERE creator = src_usr;
472         UPDATE auditor.asset_call_number_history SET editor  = dest_usr WHERE editor  = src_usr;
473         UPDATE auditor.asset_copy_history SET creator = dest_usr WHERE creator = src_usr;
474         UPDATE auditor.asset_copy_history SET editor  = dest_usr WHERE editor  = src_usr;
475         UPDATE auditor.biblio_record_entry_history SET creator = dest_usr WHERE creator = src_usr;
476         UPDATE auditor.biblio_record_entry_history SET editor  = dest_usr WHERE editor  = src_usr;
477
478         -- biblio.*
479         UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;
480         UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr;
481         UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr;
482         UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr;
483
484         -- container.*
485         -- Update buckets with a rename to avoid collisions
486         FOR renamable_row in
487                 SELECT id, name
488                 FROM   container.biblio_record_entry_bucket
489                 WHERE  owner = src_usr
490         LOOP
491                 suffix := ' (' || src_usr || ')';
492                 LOOP
493                         BEGIN
494                                 UPDATE  container.biblio_record_entry_bucket
495                                 SET     owner = dest_usr, name = name || suffix
496                                 WHERE   id = renamable_row.id;
497                         EXCEPTION WHEN unique_violation THEN
498                                 suffix := suffix || ' ';
499                                 CONTINUE;
500                         END;
501                         EXIT;
502                 END LOOP;
503         END LOOP;
504
505         FOR renamable_row in
506                 SELECT id, name
507                 FROM   container.call_number_bucket
508                 WHERE  owner = src_usr
509         LOOP
510                 suffix := ' (' || src_usr || ')';
511                 LOOP
512                         BEGIN
513                                 UPDATE  container.call_number_bucket
514                                 SET     owner = dest_usr, name = name || suffix
515                                 WHERE   id = renamable_row.id;
516                         EXCEPTION WHEN unique_violation THEN
517                                 suffix := suffix || ' ';
518                                 CONTINUE;
519                         END;
520                         EXIT;
521                 END LOOP;
522         END LOOP;
523
524         FOR renamable_row in
525                 SELECT id, name
526                 FROM   container.copy_bucket
527                 WHERE  owner = src_usr
528         LOOP
529                 suffix := ' (' || src_usr || ')';
530                 LOOP
531                         BEGIN
532                                 UPDATE  container.copy_bucket
533                                 SET     owner = dest_usr, name = name || suffix
534                                 WHERE   id = renamable_row.id;
535                         EXCEPTION WHEN unique_violation THEN
536                                 suffix := suffix || ' ';
537                                 CONTINUE;
538                         END;
539                         EXIT;
540                 END LOOP;
541         END LOOP;
542
543         FOR renamable_row in
544                 SELECT id, name
545                 FROM   container.user_bucket
546                 WHERE  owner = src_usr
547         LOOP
548                 suffix := ' (' || src_usr || ')';
549                 LOOP
550                         BEGIN
551                                 UPDATE  container.user_bucket
552                                 SET     owner = dest_usr, name = name || suffix
553                                 WHERE   id = renamable_row.id;
554                         EXCEPTION WHEN unique_violation THEN
555                                 suffix := suffix || ' ';
556                                 CONTINUE;
557                         END;
558                         EXIT;
559                 END LOOP;
560         END LOOP;
561
562         DELETE FROM container.user_bucket_item WHERE target_user = src_usr;
563
564         -- money.*
565         DELETE FROM money.billable_xact WHERE usr = src_usr;
566         DELETE FROM money.collections_tracker WHERE usr = src_usr;
567         UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr;
568
569         -- permission.*
570         DELETE FROM permission.usr_grp_map WHERE usr = src_usr;
571         DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr;
572         DELETE FROM permission.usr_perm_map WHERE usr = src_usr;
573         DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr;
574
575         -- reporter.*
576         -- Update with a rename to avoid collisions
577         BEGIN
578                 FOR renamable_row in
579                         SELECT id, name
580                         FROM   reporter.output_folder
581                         WHERE  owner = src_usr
582                 LOOP
583                         suffix := ' (' || src_usr || ')';
584                         LOOP
585                                 BEGIN
586                                         UPDATE  reporter.output_folder
587                                         SET     owner = dest_usr, name = name || suffix
588                                         WHERE   id = renamable_row.id;
589                                 EXCEPTION WHEN unique_violation THEN
590                                         suffix := suffix || ' ';
591                                         CONTINUE;
592                                 END;
593                                 EXIT;
594                         END LOOP;
595                 END LOOP;
596         EXCEPTION WHEN undefined_table THEN
597                 -- do nothing
598         END;
599
600         BEGIN
601                 UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
602         EXCEPTION WHEN undefined_table THEN
603                 -- do nothing
604         END;
605
606         -- Update with a rename to avoid collisions
607         BEGIN
608                 FOR renamable_row in
609                         SELECT id, name
610                         FROM   reporter.report_folder
611                         WHERE  owner = src_usr
612                 LOOP
613                         suffix := ' (' || src_usr || ')';
614                         LOOP
615                                 BEGIN
616                                         UPDATE  reporter.report_folder
617                                         SET     owner = dest_usr, name = name || suffix
618                                         WHERE   id = renamable_row.id;
619                                 EXCEPTION WHEN unique_violation THEN
620                                         suffix := suffix || ' ';
621                                         CONTINUE;
622                                 END;
623                                 EXIT;
624                         END LOOP;
625                 END LOOP;
626         EXCEPTION WHEN undefined_table THEN
627                 -- do nothing
628         END;
629
630         BEGIN
631                 UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
632         EXCEPTION WHEN undefined_table THEN
633                 -- do nothing
634         END;
635
636         BEGIN
637                 UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
638         EXCEPTION WHEN undefined_table THEN
639                 -- do nothing
640         END;
641
642         -- Update with a rename to avoid collisions
643         BEGIN
644                 FOR renamable_row in
645                         SELECT id, name
646                         FROM   reporter.template_folder
647                         WHERE  owner = src_usr
648                 LOOP
649                         suffix := ' (' || src_usr || ')';
650                         LOOP
651                                 BEGIN
652                                         UPDATE  reporter.template_folder
653                                         SET     owner = dest_usr, name = name || suffix
654                                         WHERE   id = renamable_row.id;
655                                 EXCEPTION WHEN unique_violation THEN
656                                         suffix := suffix || ' ';
657                                         CONTINUE;
658                                 END;
659                                 EXIT;
660                         END LOOP;
661                 END LOOP;
662         EXCEPTION WHEN undefined_table THEN
663         -- do nothing
664         END;
665
666         -- vandelay.*
667         -- Update with a rename to avoid collisions
668         FOR renamable_row in
669                 SELECT id, name
670                 FROM   vandelay.queue
671                 WHERE  owner = src_usr
672         LOOP
673                 suffix := ' (' || src_usr || ')';
674                 LOOP
675                         BEGIN
676                                 UPDATE  vandelay.queue
677                                 SET     owner = dest_usr, name = name || suffix
678                                 WHERE   id = renamable_row.id;
679                         EXCEPTION WHEN unique_violation THEN
680                                 suffix := suffix || ' ';
681                                 CONTINUE;
682                         END;
683                         EXIT;
684                 END LOOP;
685         END LOOP;
686
687 END;
688 $$ LANGUAGE plpgsql;
689
690 COMMENT ON FUNCTION actor.usr_purge_data(INT, INT) IS $$
691 Finds rows dependent on a given row in actor.usr and either deletes them
692 or reassigns them to a different user.
693 $$;
694
695
696
697 CREATE OR REPLACE FUNCTION actor.usr_delete(
698         src_usr  IN INTEGER,
699         dest_usr IN INTEGER
700 ) RETURNS VOID AS $$
701 DECLARE
702         old_profile actor.usr.profile%type;
703         old_home_ou actor.usr.home_ou%type;
704         new_profile actor.usr.profile%type;
705         new_home_ou actor.usr.home_ou%type;
706         new_name    text;
707         new_dob     actor.usr.dob%type;
708 BEGIN
709         SELECT
710                 id || '-PURGED-' || now(),
711                 profile,
712                 home_ou,
713                 dob
714         INTO
715                 new_name,
716                 old_profile,
717                 old_home_ou,
718                 new_dob
719         FROM
720                 actor.usr
721         WHERE
722                 id = src_usr;
723         --
724         -- Quit if no such user
725         --
726         IF old_profile IS NULL THEN
727                 RETURN;
728         END IF;
729         --
730         perform actor.usr_purge_data( src_usr, dest_usr );
731         --
732         -- Find the root grp_tree and the root org_unit.  This would be simpler if we 
733         -- could assume that there is only one root.  Theoretically, someday, maybe,
734         -- there could be multiple roots, so we take extra trouble to get the right ones.
735         --
736         SELECT
737                 id
738         INTO
739                 new_profile
740         FROM
741                 permission.grp_ancestors( old_profile )
742         WHERE
743                 parent is null;
744         --
745         SELECT
746                 id
747         INTO
748                 new_home_ou
749         FROM
750                 actor.org_unit_ancestors( old_home_ou )
751         WHERE
752                 parent_ou is null;
753         --
754         -- Truncate date of birth
755         --
756         IF new_dob IS NOT NULL THEN
757                 new_dob := date_trunc( 'year', new_dob );
758         END IF;
759         --
760         UPDATE
761                 actor.usr
762                 SET
763                         card = NULL,
764                         profile = new_profile,
765                         usrname = new_name,
766                         email = NULL,
767                         passwd = random()::text,
768                         standing = DEFAULT,
769                         ident_type = 
770                         (
771                                 SELECT MIN( id )
772                                 FROM config.identification_type
773                         ),
774                         ident_value = NULL,
775                         ident_type2 = NULL,
776                         ident_value2 = NULL,
777                         net_access_level = DEFAULT,
778                         photo_url = NULL,
779                         prefix = NULL,
780                         first_given_name = new_name,
781                         second_given_name = NULL,
782                         family_name = new_name,
783                         suffix = NULL,
784                         alias = NULL,
785                         day_phone = NULL,
786                         evening_phone = NULL,
787                         other_phone = NULL,
788                         mailing_address = NULL,
789                         billing_address = NULL,
790                         home_ou = new_home_ou,
791                         dob = new_dob,
792                         active = FALSE,
793                         master_account = DEFAULT, 
794                         super_user = DEFAULT,
795                         barred = FALSE,
796                         deleted = TRUE,
797                         juvenile = DEFAULT,
798                         usrgroup = 0,
799                         claims_returned_count = DEFAULT,
800                         credit_forward_balance = DEFAULT,
801                         last_xact_id = DEFAULT,
802                         alert_message = NULL,
803                         create_date = now(),
804                         expire_date = now()
805         WHERE
806                 id = src_usr;
807 END;
808 $$ LANGUAGE plpgsql;
809
810 COMMENT ON FUNCTION actor.usr_delete(INT, INT) IS $$
811 Logically deletes a user.  Removes personally identifiable information,
812 and purges associated data in other tables.
813 $$;
814
815
816
817 CREATE OR REPLACE FUNCTION actor.approve_pending_address(pending_id INT) RETURNS BIGINT AS $$
818 DECLARE
819     old_id INT;
820 BEGIN
821     SELECT INTO old_id replaces FROM actor.usr_address where id = pending_id;
822     IF old_id IS NULL THEN
823         UPDATE actor.usr_address SET pending = 'f' WHERE id = pending_id;
824         RETURN pending_id;
825     END IF;
826     -- address replaces an existing address
827     DELETE FROM actor.usr_address WHERE id = -old_id;
828     UPDATE actor.usr_address SET id = -id WHERE id = old_id;
829     UPDATE actor.usr_address SET replaces = NULL, id = old_id, pending = 'f' WHERE id = pending_id;
830     RETURN old_id;
831 END
832 $$ LANGUAGE plpgsql;
833
834 COMMENT ON FUNCTION actor.approve_pending_address(INT) IS $$
835 Replaces an address with a pending address.  This is done by giving the pending 
836 address the ID of the old address.  The replaced address is retained with -id.
837 $$;
838
839 CREATE OR REPLACE FUNCTION container.clear_expired_circ_history_items( 
840          ac_usr IN INTEGER
841 ) RETURNS VOID AS $$
842 --
843 -- Delete old circulation bucket items for a specified user.
844 -- "Old" means older than the interval specified by a
845 -- user-level setting, if it is so specified.
846 --
847 DECLARE
848     threshold TIMESTAMP WITH TIME ZONE;
849 BEGIN
850         -- Sanity check
851         IF ac_usr IS NULL THEN
852                 RETURN;
853         END IF;
854         -- Determine the threshold date that defines "old".  Subtract the
855         -- interval from the system date, then truncate to midnight.
856         SELECT
857                 date_trunc( 
858                         'day',
859                         now() - CAST( translate( value, '"', '' ) AS INTERVAL )
860                 )
861         INTO
862                 threshold
863         FROM
864                 actor.usr_setting
865         WHERE
866                 usr = ac_usr
867                 AND name = 'patron.max_reading_list_interval';
868         --
869         IF threshold is null THEN
870                 -- No interval defined; don't delete anything
871                 -- RAISE NOTICE 'No interval defined for user %', ac_usr;
872                 return;
873         END IF;
874         --
875         -- RAISE NOTICE 'Date threshold: %', threshold;
876         --
877         -- Threshold found; do the delete
878         delete from container.copy_bucket_item
879         where
880                 bucket in
881                 (
882                         select
883                                 id
884                         from
885                                 container.copy_bucket
886                         where
887                                 owner = ac_usr
888                                 and btype = 'circ_history'
889                 )
890                 and create_time < threshold;
891         --
892         RETURN;
893 END;
894 $$ LANGUAGE plpgsql;
895
896 COMMENT ON FUNCTION container.clear_expired_circ_history_items( INTEGER ) IS $$
897 Delete old circulation bucket items for a specified user.
898 "Old" means older than the interval specified by a
899 user-level setting, if it is so specified.
900 $$;
901
902 CREATE OR REPLACE FUNCTION container.clear_all_expired_circ_history_items( )
903 RETURNS VOID AS $$
904 --
905 -- Delete expired circulation bucket items for all users that have
906 -- a setting for patron.max_reading_list_interval.
907 --
908 DECLARE
909     today        TIMESTAMP WITH TIME ZONE;
910     threshold    TIMESTAMP WITH TIME ZONE;
911         usr_setting  RECORD;
912 BEGIN
913         SELECT date_trunc( 'day', now() ) INTO today;
914         --
915         FOR usr_setting in
916                 SELECT
917                         usr,
918                         value
919                 FROM
920                         actor.usr_setting
921                 WHERE
922                         name = 'patron.max_reading_list_interval'
923         LOOP
924                 --
925                 -- Make sure the setting is a valid interval
926                 --
927                 BEGIN
928                         threshold := today - CAST( translate( usr_setting.value, '"', '' ) AS INTERVAL );
929                 EXCEPTION
930                         WHEN OTHERS THEN
931                                 RAISE NOTICE 'Invalid setting patron.max_reading_list_interval for user %: ''%''',
932                                         usr_setting.usr, usr_setting.value;
933                                 CONTINUE;
934                 END;
935                 --
936                 --RAISE NOTICE 'User % threshold %', usr_setting.usr, threshold;
937                 --
938         DELETE FROM container.copy_bucket_item
939         WHERE
940                 bucket IN
941                 (
942                     SELECT
943                         id
944                     FROM
945                         container.copy_bucket
946                     WHERE
947                         owner = usr_setting.usr
948                         AND btype = 'circ_history'
949                 )
950                 AND create_time < threshold;
951         END LOOP;
952         --
953 END;
954 $$ LANGUAGE plpgsql;
955
956 COMMENT ON FUNCTION container.clear_all_expired_circ_history_items( ) IS $$
957 Delete expired circulation bucket items for all users that have
958 a setting for patron.max_reading_list_interval.
959 $$;
960
961 CREATE OR REPLACE FUNCTION asset.merge_record_assets( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
962 DECLARE
963     moved_objects INT := 0;
964     source_cn     asset.call_number%ROWTYPE;
965     target_cn     asset.call_number%ROWTYPE;
966     metarec       metabib.metarecord%ROWTYPE;
967     hold          action.hold_request%ROWTYPE;
968     ser_rec       serial.record_entry%ROWTYPE;
969     uri_count     INT := 0;
970     counter       INT := 0;
971     uri_datafield TEXT;
972     uri_text      TEXT := '';
973 BEGIN
974
975     -- move any 856 entries on records that have at least one MARC-mapped URI entry
976     SELECT  INTO uri_count COUNT(*)
977       FROM  asset.uri_call_number_map m
978             JOIN asset.call_number cn ON (m.call_number = cn.id)
979       WHERE cn.record = source_record;
980
981     IF uri_count > 0 THEN
982         
983         SELECT  COUNT(*) INTO counter
984           FROM  oils_xpath_table(
985                     'id',
986                     'marc',
987                     'biblio.record_entry',
988                     '//*[@tag="856"]',
989                     'id=' || source_record
990                 ) as t(i int,c text);
991     
992         FOR i IN 1 .. counter LOOP
993             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim"' || 
994                         ' tag="856"' ||
995                         ' ind1="' || FIRST(ind1) || '"'  ||
996                         ' ind2="' || FIRST(ind2) || '">' ||
997                         array_to_string(
998                             array_accum(
999                                 '<subfield code="' || subfield || '">' ||
1000                                 regexp_replace(
1001                                     regexp_replace(
1002                                         regexp_replace(data,'&','&amp;','g'),
1003                                         '>', '&gt;', 'g'
1004                                     ),
1005                                     '<', '&lt;', 'g'
1006                                 ) || '</subfield>'
1007                             ), ''
1008                         ) || '</datafield>' INTO uri_datafield
1009               FROM  oils_xpath_table(
1010                         'id',
1011                         'marc',
1012                         'biblio.record_entry',
1013                         '//*[@tag="856"][position()=' || i || ']/@ind1|' ||
1014                         '//*[@tag="856"][position()=' || i || ']/@ind2|' ||
1015                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
1016                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
1017                         'id=' || source_record
1018                     ) as t(id int,ind1 text, ind2 text,subfield text,data text);
1019
1020             uri_text := uri_text || uri_datafield;
1021         END LOOP;
1022
1023         IF uri_text <> '' THEN
1024             UPDATE  biblio.record_entry
1025               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
1026               WHERE id = target_record;
1027         END IF;
1028
1029     END IF;
1030
1031         -- Find and move metarecords to the target record
1032         SELECT  INTO metarec *
1033           FROM  metabib.metarecord
1034           WHERE master_record = source_record;
1035
1036         IF FOUND THEN
1037                 UPDATE  metabib.metarecord
1038                   SET   master_record = target_record,
1039                         mods = NULL
1040                   WHERE id = metarec.id;
1041
1042                 moved_objects := moved_objects + 1;
1043         END IF;
1044
1045         -- Find call numbers attached to the source ...
1046         FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
1047
1048                 SELECT  INTO target_cn *
1049                   FROM  asset.call_number
1050                   WHERE label = source_cn.label
1051                         AND owning_lib = source_cn.owning_lib
1052                         AND record = target_record;
1053
1054                 -- ... and if there's a conflicting one on the target ...
1055                 IF FOUND THEN
1056
1057                         -- ... move the copies to that, and ...
1058                         UPDATE  asset.copy
1059                           SET   call_number = target_cn.id
1060                           WHERE call_number = source_cn.id;
1061
1062                         -- ... move V holds to the move-target call number
1063                         FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
1064                 
1065                                 UPDATE  action.hold_request
1066                                   SET   target = target_cn.id
1067                                   WHERE id = hold.id;
1068                 
1069                                 moved_objects := moved_objects + 1;
1070                         END LOOP;
1071
1072                 -- ... if not ...
1073                 ELSE
1074                         -- ... just move the call number to the target record
1075                         UPDATE  asset.call_number
1076                           SET   record = target_record
1077                           WHERE id = source_cn.id;
1078                 END IF;
1079
1080                 moved_objects := moved_objects + 1;
1081         END LOOP;
1082
1083         -- Find T holds targeting the source record ...
1084         FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
1085
1086                 -- ... and move them to the target record
1087                 UPDATE  action.hold_request
1088                   SET   target = target_record
1089                   WHERE id = hold.id;
1090
1091                 moved_objects := moved_objects + 1;
1092         END LOOP;
1093
1094         -- Find serial records targeting the source record ...
1095         FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
1096                 -- ... and move them to the target record
1097                 UPDATE  serial.record_entry
1098                   SET   record = target_record
1099                   WHERE id = ser_rec.id;
1100
1101                 moved_objects := moved_objects + 1;
1102         END LOOP;
1103
1104     -- Finally, "delete" the source record
1105     DELETE FROM biblio.record_entry WHERE id = source_record;
1106
1107         -- That's all, folks!
1108         RETURN moved_objects;
1109 END;
1110 $func$ LANGUAGE plpgsql;
1111
1112 -- copy OPAC visibility materialized view
1113 CREATE OR REPLACE FUNCTION asset.refresh_opac_visible_copies_mat_view () RETURNS VOID AS $$
1114
1115     TRUNCATE TABLE asset.opac_visible_copies;
1116
1117     INSERT INTO asset.opac_visible_copies (copy_id, circ_lib, record)
1118     SELECT  cp.id, cp.circ_lib, cn.record
1119     FROM  asset.copy cp
1120         JOIN asset.call_number cn ON (cn.id = cp.call_number)
1121         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
1122         JOIN asset.copy_location cl ON (cp.location = cl.id)
1123         JOIN config.copy_status cs ON (cp.status = cs.id)
1124         JOIN biblio.record_entry b ON (cn.record = b.id)
1125     WHERE NOT cp.deleted
1126         AND NOT cn.deleted
1127         AND NOT b.deleted
1128         AND cs.opac_visible
1129         AND cl.opac_visible
1130         AND cp.opac_visible
1131         AND a.opac_visible
1132             UNION
1133     SELECT  cp.id, cp.circ_lib, pbcm.peer_record AS record
1134     FROM  asset.copy cp
1135         JOIN biblio.peer_bib_copy_map pbcm ON (pbcm.target_copy = cp.id)
1136         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
1137         JOIN asset.copy_location cl ON (cp.location = cl.id)
1138         JOIN config.copy_status cs ON (cp.status = cs.id)
1139     WHERE NOT cp.deleted
1140         AND cs.opac_visible
1141         AND cl.opac_visible
1142         AND cp.opac_visible
1143         AND a.opac_visible;
1144
1145 $$ LANGUAGE SQL;
1146 COMMENT ON FUNCTION asset.refresh_opac_visible_copies_mat_view() IS $$
1147 Rebuild the copy OPAC visibility cache.  Useful during migrations.
1148 $$;
1149
1150 CREATE OR REPLACE FUNCTION asset.cache_copy_visibility () RETURNS TRIGGER as $func$
1151 DECLARE
1152     add_query       TEXT;
1153     remove_query    TEXT;
1154     do_add          BOOLEAN := false;
1155     do_remove       BOOLEAN := false;
1156 BEGIN
1157     add_query := $$
1158             INSERT INTO asset.opac_visible_copies (copy_id, circ_lib, record)
1159               SELECT id, circ_lib, record FROM (
1160                 SELECT  cp.id, cp.circ_lib, cn.record, cn.id AS call_number
1161                   FROM  asset.copy cp
1162                         JOIN asset.call_number cn ON (cn.id = cp.call_number)
1163                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
1164                         JOIN asset.copy_location cl ON (cp.location = cl.id)
1165                         JOIN config.copy_status cs ON (cp.status = cs.id)
1166                         JOIN biblio.record_entry b ON (cn.record = b.id)
1167                   WHERE NOT cp.deleted
1168                         AND NOT cn.deleted
1169                         AND NOT b.deleted
1170                         AND cs.opac_visible
1171                         AND cl.opac_visible
1172                         AND cp.opac_visible
1173                         AND a.opac_visible
1174                             UNION
1175                 SELECT  cp.id, cp.circ_lib, pbcm.peer_record AS record, NULL AS call_number
1176                   FROM  asset.copy cp
1177                         JOIN biblio.peer_bib_copy_map pbcm ON (pbcm.target_copy = cp.id)
1178                         JOIN actor.org_unit a ON (cp.circ_lib = a.id)
1179                         JOIN asset.copy_location cl ON (cp.location = cl.id)
1180                         JOIN config.copy_status cs ON (cp.status = cs.id)
1181                   WHERE NOT cp.deleted
1182                         AND cs.opac_visible
1183                         AND cl.opac_visible
1184                         AND cp.opac_visible
1185                         AND a.opac_visible
1186                     ) AS x 
1187
1188     $$;
1189  
1190     remove_query := $$ DELETE FROM asset.opac_visible_copies WHERE copy_id IN ( SELECT id FROM asset.copy WHERE $$;
1191
1192     IF TG_TABLE_NAME = 'peer_bib_copy_map' THEN
1193         IF TG_OP = 'INSERT' THEN
1194             add_query := add_query || 'WHERE x.id = ' || NEW.target_copy || ' AND x.record = ' || NEW.peer_record || ';';
1195             EXECUTE add_query;
1196             RETURN NEW;
1197         ELSE
1198             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE copy_id = ' || OLD.target_copy || ' AND record = ' || OLD.peer_record || ';';
1199             EXECUTE remove_query;
1200             RETURN OLD;
1201         END IF;
1202     END IF;
1203
1204     IF TG_OP = 'INSERT' THEN
1205
1206         IF TG_TABLE_NAME IN ('copy', 'unit') THEN
1207             add_query := add_query || 'WHERE x.id = ' || NEW.id || ';';
1208             EXECUTE add_query;
1209         END IF;
1210
1211         RETURN NEW;
1212
1213     END IF;
1214
1215     -- handle items first, since with circulation activity
1216     -- their statuses change frequently
1217     IF TG_TABLE_NAME IN ('copy', 'unit') THEN
1218
1219         IF OLD.location    <> NEW.location OR
1220            OLD.call_number <> NEW.call_number OR
1221            OLD.status      <> NEW.status OR
1222            OLD.circ_lib    <> NEW.circ_lib THEN
1223             -- any of these could change visibility, but
1224             -- we'll save some queries and not try to calculate
1225             -- the change directly
1226             do_remove := true;
1227             do_add := true;
1228         ELSE
1229
1230             IF OLD.deleted <> NEW.deleted THEN
1231                 IF NEW.deleted THEN
1232                     do_remove := true;
1233                 ELSE
1234                     do_add := true;
1235                 END IF;
1236             END IF;
1237
1238             IF OLD.opac_visible <> NEW.opac_visible THEN
1239                 IF OLD.opac_visible THEN
1240                     do_remove := true;
1241                 ELSIF NOT do_remove THEN -- handle edge case where deleted item
1242                                         -- is also marked opac_visible
1243                     do_add := true;
1244                 END IF;
1245             END IF;
1246
1247         END IF;
1248
1249         IF do_remove THEN
1250             DELETE FROM asset.opac_visible_copies WHERE copy_id = NEW.id;
1251         END IF;
1252         IF do_add THEN
1253             add_query := add_query || 'WHERE x.id = ' || NEW.id || ';';
1254             EXECUTE add_query;
1255         END IF;
1256
1257         RETURN NEW;
1258
1259     END IF;
1260
1261     IF TG_TABLE_NAME IN ('call_number', 'record_entry') THEN -- these have a 'deleted' column
1262  
1263         IF OLD.deleted AND NEW.deleted THEN -- do nothing
1264
1265             RETURN NEW;
1266  
1267         ELSIF NEW.deleted THEN -- remove rows
1268  
1269             IF TG_TABLE_NAME = 'call_number' THEN
1270                 DELETE FROM asset.opac_visible_copies WHERE copy_id IN (SELECT id FROM asset.copy WHERE call_number = NEW.id);
1271             ELSIF TG_TABLE_NAME = 'record_entry' THEN
1272                 DELETE FROM asset.opac_visible_copies WHERE record = NEW.id;
1273             END IF;
1274  
1275             RETURN NEW;
1276  
1277         ELSIF OLD.deleted THEN -- add rows
1278  
1279             IF TG_TABLE_NAME IN ('copy','unit') THEN
1280                 add_query := add_query || 'WHERE x.id = ' || NEW.id || ';';
1281             ELSIF TG_TABLE_NAME = 'call_number' THEN
1282                 add_query := add_query || 'WHERE x.call_number = ' || NEW.id || ';';
1283             ELSIF TG_TABLE_NAME = 'record_entry' THEN
1284                 add_query := add_query || 'WHERE x.record = ' || NEW.id || ';';
1285             END IF;
1286  
1287             EXECUTE add_query;
1288             RETURN NEW;
1289  
1290         END IF;
1291  
1292     END IF;
1293
1294     IF TG_TABLE_NAME = 'call_number' THEN
1295
1296         IF OLD.record <> NEW.record THEN
1297             -- call number is linked to different bib
1298             remove_query := remove_query || 'call_number = ' || NEW.id || ');';
1299             EXECUTE remove_query;
1300             add_query := add_query || 'WHERE x.call_number = ' || NEW.id || ';';
1301             EXECUTE add_query;
1302         END IF;
1303
1304         RETURN NEW;
1305
1306     END IF;
1307
1308     IF TG_TABLE_NAME IN ('record_entry') THEN
1309         RETURN NEW; -- don't have 'opac_visible'
1310     END IF;
1311
1312     -- actor.org_unit, asset.copy_location, asset.copy_status
1313     IF NEW.opac_visible = OLD.opac_visible THEN -- do nothing
1314
1315         RETURN NEW;
1316
1317     ELSIF NEW.opac_visible THEN -- add rows
1318
1319         IF TG_TABLE_NAME = 'org_unit' THEN
1320             add_query := add_query || 'AND cp.circ_lib = ' || NEW.id || ';';
1321         ELSIF TG_TABLE_NAME = 'copy_location' THEN
1322             add_query := add_query || 'AND cp.location = ' || NEW.id || ';';
1323         ELSIF TG_TABLE_NAME = 'copy_status' THEN
1324             add_query := add_query || 'AND cp.status = ' || NEW.id || ';';
1325         END IF;
1326  
1327         EXECUTE add_query;
1328  
1329     ELSE -- delete rows
1330
1331         IF TG_TABLE_NAME = 'org_unit' THEN
1332             remove_query := 'DELETE FROM asset.opac_visible_copies WHERE circ_lib = ' || NEW.id || ';';
1333         ELSIF TG_TABLE_NAME = 'copy_location' THEN
1334             remove_query := remove_query || 'location = ' || NEW.id || ');';
1335         ELSIF TG_TABLE_NAME = 'copy_status' THEN
1336             remove_query := remove_query || 'status = ' || NEW.id || ');';
1337         END IF;
1338  
1339         EXECUTE remove_query;
1340  
1341     END IF;
1342  
1343     RETURN NEW;
1344 END;
1345 $func$ LANGUAGE PLPGSQL;
1346 COMMENT ON FUNCTION asset.cache_copy_visibility() IS $$
1347 Trigger function to update the copy OPAC visiblity cache.
1348 $$;
1349 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();
1350 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();
1351 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON asset.copy FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
1352 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();
1353 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();
1354 CREATE TRIGGER a_opac_vis_mat_view_tgr AFTER INSERT OR UPDATE ON serial.unit FOR EACH ROW EXECUTE PROCEDURE asset.cache_copy_visibility();
1355 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();
1356 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();
1357
1358 -- Authority ingest routines
1359 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT, bid BIGINT) RETURNS BIGINT AS $func$
1360     UPDATE  biblio.record_entry
1361       SET   marc = vandelay.merge_record_xml( marc, authority.generate_overlay_template( $1 ) )
1362       WHERE id = $2;
1363     SELECT $1;
1364 $func$ LANGUAGE SQL;
1365
1366 CREATE OR REPLACE FUNCTION authority.propagate_changes (aid BIGINT) RETURNS SETOF BIGINT AS $func$
1367     SELECT authority.propagate_changes( authority, bib ) FROM authority.bib_linking WHERE authority = $1;
1368 $func$ LANGUAGE SQL;
1369
1370 CREATE OR REPLACE FUNCTION authority.flatten_marc ( TEXT ) RETURNS SETOF authority.full_rec AS $func$
1371
1372 use MARC::Record;
1373 use MARC::File::XML (BinaryEncoding => 'UTF-8');
1374
1375 my $xml = shift;
1376 my $r = MARC::Record->new_from_xml( $xml );
1377
1378 return_next( { tag => 'LDR', value => $r->leader } );
1379
1380 for my $f ( $r->fields ) {
1381     if ($f->is_control_field) {
1382         return_next({ tag => $f->tag, value => $f->data });
1383     } else {
1384         for my $s ($f->subfields) {
1385             return_next({
1386                 tag      => $f->tag,
1387                 ind1     => $f->indicator(1),
1388                 ind2     => $f->indicator(2),
1389                 subfield => $s->[0],
1390                 value    => $s->[1]
1391             });
1392
1393         }
1394     }
1395 }
1396
1397 return undef;
1398
1399 $func$ LANGUAGE PLPERLU;
1400
1401 CREATE OR REPLACE FUNCTION authority.flatten_marc ( rid BIGINT ) RETURNS SETOF authority.full_rec AS $func$
1402 DECLARE
1403     auth    authority.record_entry%ROWTYPE;
1404     output    authority.full_rec%ROWTYPE;
1405     field    RECORD;
1406 BEGIN
1407     SELECT INTO auth * FROM authority.record_entry WHERE id = rid;
1408
1409     FOR field IN SELECT * FROM authority.flatten_marc( auth.marc ) LOOP
1410         output.record := rid;
1411         output.ind1 := field.ind1;
1412         output.ind2 := field.ind2;
1413         output.tag := field.tag;
1414         output.subfield := field.subfield;
1415         IF field.subfield IS NOT NULL THEN
1416             output.value := naco_normalize(field.value, field.subfield);
1417         ELSE
1418             output.value := field.value;
1419         END IF;
1420
1421         CONTINUE WHEN output.value IS NULL;
1422
1423         RETURN NEXT output;
1424     END LOOP;
1425 END;
1426 $func$ LANGUAGE PLPGSQL;
1427
1428 -- authority.rec_descriptor appears to be unused currently
1429 CREATE OR REPLACE FUNCTION authority.reingest_authority_rec_descriptor( auth_id BIGINT ) RETURNS VOID AS $func$
1430 BEGIN
1431     DELETE FROM authority.rec_descriptor WHERE record = auth_id;
1432 --    INSERT INTO authority.rec_descriptor (record, record_status, char_encoding)
1433 --        SELECT  auth_id, ;
1434
1435     RETURN;
1436 END;
1437 $func$ LANGUAGE PLPGSQL;
1438
1439 CREATE OR REPLACE FUNCTION authority.reingest_authority_full_rec( auth_id BIGINT ) RETURNS VOID AS $func$
1440 BEGIN
1441     DELETE FROM authority.full_rec WHERE record = auth_id;
1442     INSERT INTO authority.full_rec (record, tag, ind1, ind2, subfield, value)
1443         SELECT record, tag, ind1, ind2, subfield, value FROM authority.flatten_marc( auth_id );
1444
1445     RETURN;
1446 END;
1447 $func$ LANGUAGE PLPGSQL;
1448
1449 -- AFTER UPDATE OR INSERT trigger for authority.record_entry
1450 CREATE OR REPLACE FUNCTION authority.indexing_ingest_or_delete () RETURNS TRIGGER AS $func$
1451 BEGIN
1452
1453     IF NEW.deleted IS TRUE THEN -- If this authority is deleted
1454         DELETE FROM authority.bib_linking WHERE authority = NEW.id; -- Avoid updating fields in bibs that are no longer visible
1455         DELETE FROM authority.full_rec WHERE record = NEW.id; -- Avoid validating fields against deleted authority records
1456           -- Should remove matching $0 from controlled fields at the same time?
1457         RETURN NEW; -- and we're done
1458     END IF;
1459
1460     IF TG_OP = 'UPDATE' THEN -- re-ingest?
1461         PERFORM * FROM config.internal_flag WHERE name = 'ingest.reingest.force_on_same_marc' AND enabled;
1462
1463         IF NOT FOUND AND OLD.marc = NEW.marc THEN -- don't do anything if the MARC didn't change
1464             RETURN NEW;
1465         END IF;
1466         -- Propagate these updates to any linked bib records
1467         PERFORM authority.propagate_changes(NEW.id) FROM authority.record_entry WHERE id = NEW.id;
1468     END IF;
1469
1470     -- Flatten and insert the afr data
1471     PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_full_rec' AND enabled;
1472     IF NOT FOUND THEN
1473         PERFORM authority.reingest_authority_full_rec(NEW.id);
1474 -- authority.rec_descriptor is not currently used
1475 --        PERFORM * FROM config.internal_flag WHERE name = 'ingest.disable_authority_rec_descriptor' AND enabled;
1476 --        IF NOT FOUND THEN
1477 --            PERFORM authority.reingest_authority_rec_descriptor(NEW.id);
1478 --        END IF;
1479     END IF;
1480
1481     RETURN NEW;
1482 END;
1483 $func$ LANGUAGE PLPGSQL;
1484
1485 -- Ingest triggers
1486 CREATE TRIGGER fingerprint_tgr BEFORE INSERT OR UPDATE ON biblio.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.fingerprint_trigger ('eng','BKS');
1487 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 ();
1488 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 ();
1489
1490 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 ();
1491
1492 -- Utility routines, callable via cstore
1493
1494 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_val INTERVAL )
1495 RETURNS INTEGER AS $$
1496 BEGIN
1497         RETURN EXTRACT( EPOCH FROM interval_val );
1498 END;
1499 $$ LANGUAGE plpgsql;
1500
1501 CREATE OR REPLACE FUNCTION config.interval_to_seconds( interval_string TEXT )
1502 RETURNS INTEGER AS $$
1503 BEGIN
1504         RETURN config.interval_to_seconds( interval_string::INTERVAL );
1505 END;
1506 $$ LANGUAGE plpgsql;