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