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