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