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