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