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