]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/999.functions.global.sql
Add two functions to the actor schema:
[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 /**
41  * Attempts to move each row of the specified table from src_user to dest_user.  
42  * Where conflicts exist, the conflicting "source" row is deleted.
43  */
44 $$;
45
46
47 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 $$
48 DECLARE
49         suffix TEXT;
50         bucket_row RECORD;
51         picklist_row RECORD;
52         queue_row RECORD;
53         folder_row RECORD;
54 BEGIN
55
56     -- do some initial cleanup 
57     UPDATE actor.usr SET card = NULL WHERE id = src_usr;
58     UPDATE actor.usr SET mailing_address = NULL WHERE id = src_usr;
59     UPDATE actor.usr SET billing_address = NULL WHERE id = src_usr;
60
61     -- actor.*
62     IF del_cards THEN
63         DELETE FROM actor.card where usr = src_usr;
64     ELSE
65         IF deactivate_cards THEN
66             UPDATE actor.card SET active = 'f' WHERE usr = src_usr;
67         END IF;
68         UPDATE actor.card SET usr = dest_usr WHERE usr = src_usr;
69     END IF;
70
71
72     IF del_addrs THEN
73         DELETE FROM actor.usr_address WHERE usr = src_usr;
74     ELSE
75         UPDATE actor.usr_address SET usr = dest_usr WHERE usr = src_usr;
76     END IF;
77
78     UPDATE actor.usr_note SET usr = dest_usr WHERE usr = src_usr;
79     -- dupes are technically OK in actor.usr_standing_penalty, should manually delete them...
80     UPDATE actor.usr_standing_penalty SET usr = dest_usr WHERE usr = src_usr;
81     PERFORM actor.usr_merge_rows('actor.usr_org_unit_opt_in', 'usr', src_usr, dest_usr);
82     PERFORM actor.usr_merge_rows('actor.usr_setting', 'usr', src_usr, dest_usr);
83
84     -- permission.*
85     PERFORM actor.usr_merge_rows('permission.usr_perm_map', 'usr', src_usr, dest_usr);
86     PERFORM actor.usr_merge_rows('permission.usr_object_perm_map', 'usr', src_usr, dest_usr);
87     PERFORM actor.usr_merge_rows('permission.usr_grp_map', 'usr', src_usr, dest_usr);
88     PERFORM actor.usr_merge_rows('permission.usr_work_ou_map', 'usr', src_usr, dest_usr);
89
90
91     -- container.*
92         
93         -- For each *_bucket table: transfer every bucket belonging to src_usr
94         -- into the custody of dest_usr.
95         --
96         -- In order to avoid colliding with an existing bucket owned by
97         -- the destination user, append the source user's id (in parenthesese)
98         -- to the name.  If you still get a collision, add successive
99         -- spaces to the name and keep trying until you succeed.
100         --
101         FOR bucket_row in
102                 SELECT id, name
103                 FROM   container.biblio_record_entry_bucket
104                 WHERE  owner = src_usr
105         LOOP
106                 suffix := ' (' || src_usr || ')';
107                 LOOP
108                         BEGIN
109                                 UPDATE  container.biblio_record_entry_bucket
110                                 SET     owner = dest_usr, name = name || suffix
111                                 WHERE   id = bucket_row.id;
112                         EXCEPTION WHEN unique_violation THEN
113                                 suffix := suffix || ' ';
114                                 CONTINUE;
115                         END;
116                         EXIT;
117                 END LOOP;
118         END LOOP;
119
120         FOR bucket_row in
121                 SELECT id, name
122                 FROM   container.call_number_bucket
123                 WHERE  owner = src_usr
124         LOOP
125                 suffix := ' (' || src_usr || ')';
126                 LOOP
127                         BEGIN
128                                 UPDATE  container.call_number_bucket
129                                 SET     owner = dest_usr, name = name || suffix
130                                 WHERE   id = bucket_row.id;
131                         EXCEPTION WHEN unique_violation THEN
132                                 suffix := suffix || ' ';
133                                 CONTINUE;
134                         END;
135                         EXIT;
136                 END LOOP;
137         END LOOP;
138
139         FOR bucket_row in
140                 SELECT id, name
141                 FROM   container.copy_bucket
142                 WHERE  owner = src_usr
143         LOOP
144                 suffix := ' (' || src_usr || ')';
145                 LOOP
146                         BEGIN
147                                 UPDATE  container.copy_bucket
148                                 SET     owner = dest_usr, name = name || suffix
149                                 WHERE   id = bucket_row.id;
150                         EXCEPTION WHEN unique_violation THEN
151                                 suffix := suffix || ' ';
152                                 CONTINUE;
153                         END;
154                         EXIT;
155                 END LOOP;
156         END LOOP;
157
158         FOR bucket_row in
159                 SELECT id, name
160                 FROM   container.user_bucket
161                 WHERE  owner = src_usr
162         LOOP
163                 suffix := ' (' || src_usr || ')';
164                 LOOP
165                         BEGIN
166                                 UPDATE  container.user_bucket
167                                 SET     owner = dest_usr, name = name || suffix
168                                 WHERE   id = bucket_row.id;
169                         EXCEPTION WHEN unique_violation THEN
170                                 suffix := suffix || ' ';
171                                 CONTINUE;
172                         END;
173                         EXIT;
174                 END LOOP;
175         END LOOP;
176
177         UPDATE container.user_bucket_item SET target_user = dest_usr WHERE target_user = src_usr;
178
179     -- vandelay.*
180         -- transfer queues the same way we transfer buckets (see above)
181         FOR queue_row in
182                 SELECT id, name
183                 FROM   vandelay.queue
184                 WHERE  owner = src_usr
185         LOOP
186                 suffix := ' (' || src_usr || ')';
187                 LOOP
188                         BEGIN
189                                 UPDATE  vandelay.queue
190                                 SET     owner = dest_usr, name = name || suffix
191                                 WHERE   id = queue_row.id;
192                         EXCEPTION WHEN unique_violation THEN
193                                 suffix := suffix || ' ';
194                                 CONTINUE;
195                         END;
196                         EXIT;
197                 END LOOP;
198         END LOOP;
199
200     -- money.*
201     PERFORM actor.usr_merge_rows('money.collections_tracker', 'usr', src_usr, dest_usr);
202     PERFORM actor.usr_merge_rows('money.collections_tracker', 'collector', src_usr, dest_usr);
203     UPDATE money.billable_xact SET usr = dest_usr WHERE usr = src_usr;
204     UPDATE money.billing SET voider = dest_usr WHERE voider = src_usr;
205     UPDATE money.bnm_payment SET accepting_usr = dest_usr WHERE accepting_usr = src_usr;
206
207     -- action.*
208     UPDATE action.circulation SET usr = dest_usr WHERE usr = src_usr;
209     UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
210     UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
211
212     UPDATE action.hold_request SET usr = dest_usr WHERE usr = src_usr;
213     UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
214     UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
215     UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
216
217     UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
218     UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
219     UPDATE action.non_cataloged_circulation SET patron = dest_usr WHERE patron = src_usr;
220     UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
221     UPDATE action.survey_response SET usr = dest_usr WHERE usr = src_usr;
222
223     -- acq.*
224     UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
225
226         -- transfer picklists the same way we transfer buckets (see above)
227         FOR picklist_row in
228                 SELECT id, name
229                 FROM   acq.picklist
230                 WHERE  owner = src_usr
231         LOOP
232                 suffix := ' (' || src_usr || ')';
233                 LOOP
234                         BEGIN
235                                 UPDATE  acq.picklist
236                                 SET     owner = dest_usr, name = name || suffix
237                                 WHERE   id = picklist_row.id;
238                         EXCEPTION WHEN unique_violation THEN
239                                 suffix := suffix || ' ';
240                                 CONTINUE;
241                         END;
242                         EXIT;
243                 END LOOP;
244         END LOOP;
245
246     UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
247     UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
248     UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
249     UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
250     UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
251     UPDATE acq.lineitem_usr_attr_definition SET usr = dest_usr WHERE usr = src_usr;
252
253     -- asset.*
254     UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
255     UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
256     UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
257     UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
258     UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
259     UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
260
261     -- serial.*
262     UPDATE serial.record_entry SET creator = dest_usr WHERE creator = src_usr;
263     UPDATE serial.record_entry SET editor = dest_usr WHERE editor = src_usr;
264
265     -- reporter.*
266     -- It's not uncommon to define the reporter schema in a replica 
267     -- DB only, so don't assume these tables exist in the write DB.
268     BEGIN
269         UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
270     EXCEPTION WHEN undefined_table THEN
271         -- do nothing
272     END;
273     BEGIN
274         UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
275     EXCEPTION WHEN undefined_table THEN
276         -- do nothing
277     END;
278     BEGIN
279         UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
280     EXCEPTION WHEN undefined_table THEN
281         -- do nothing
282     END;
283     BEGIN
284                 -- transfer folders the same way we transfer buckets (see above)
285                 FOR folder_row in
286                         SELECT id, name
287                         FROM   reporter.template_folder
288                         WHERE  owner = src_usr
289                 LOOP
290                         suffix := ' (' || src_usr || ')';
291                         LOOP
292                                 BEGIN
293                                         UPDATE  reporter.template_folder
294                                         SET     owner = dest_usr, name = name || suffix
295                                         WHERE   id = folder_row.id;
296                                 EXCEPTION WHEN unique_violation THEN
297                                         suffix := suffix || ' ';
298                                         CONTINUE;
299                                 END;
300                                 EXIT;
301                         END LOOP;
302                 END LOOP;
303     EXCEPTION WHEN undefined_table THEN
304         -- do nothing
305     END;
306     BEGIN
307                 -- transfer folders the same way we transfer buckets (see above)
308                 FOR folder_row in
309                         SELECT id, name
310                         FROM   reporter.report_folder
311                         WHERE  owner = src_usr
312                 LOOP
313                         suffix := ' (' || src_usr || ')';
314                         LOOP
315                                 BEGIN
316                                         UPDATE  reporter.report_folder
317                                         SET     owner = dest_usr, name = name || suffix
318                                         WHERE   id = folder_row.id;
319                                 EXCEPTION WHEN unique_violation THEN
320                                         suffix := suffix || ' ';
321                                         CONTINUE;
322                                 END;
323                                 EXIT;
324                         END LOOP;
325                 END LOOP;
326     EXCEPTION WHEN undefined_table THEN
327         -- do nothing
328     END;
329     BEGIN
330                 -- transfer folders the same way we transfer buckets (see above)
331                 FOR folder_row in
332                         SELECT id, name
333                         FROM   reporter.output_folder
334                         WHERE  owner = src_usr
335                 LOOP
336                         suffix := ' (' || src_usr || ')';
337                         LOOP
338                                 BEGIN
339                                         UPDATE  reporter.output_folder
340                                         SET     owner = dest_usr, name = name || suffix
341                                         WHERE   id = folder_row.id;
342                                 EXCEPTION WHEN unique_violation THEN
343                                         suffix := suffix || ' ';
344                                         CONTINUE;
345                                 END;
346                                 EXIT;
347                         END LOOP;
348                 END LOOP;
349     EXCEPTION WHEN undefined_table THEN
350         -- do nothing
351     END;
352
353     -- Finally, delete the source user
354     DELETE FROM actor.usr WHERE id = src_usr;
355
356 END;
357 $$ LANGUAGE plpgsql;
358
359 COMMENT ON FUNCTION actor.usr_merge(INT, INT, BOOLEAN, BOOLEAN, BOOLEAN) IS $$
360 /**
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
367
368 CREATE OR REPLACE FUNCTION actor.usr_purge_data(
369         src_usr  IN INTEGER,
370         dest_usr IN INTEGER
371 ) RETURNS VOID AS $$
372 DECLARE
373         suffix TEXT;
374         renamable_row RECORD;
375 BEGIN
376
377         UPDATE actor.usr SET
378                 active = FALSE,
379                 card = NULL,
380                 mailing_address = NULL,
381                 billing_address = NULL
382         WHERE id = src_usr;
383
384         -- acq.*
385         UPDATE acq.fund_allocation SET allocator = dest_usr WHERE allocator = src_usr;
386         UPDATE acq.lineitem SET creator = dest_usr WHERE creator = src_usr;
387         UPDATE acq.lineitem SET editor = dest_usr WHERE editor = src_usr;
388         UPDATE acq.lineitem SET selector = dest_usr WHERE selector = src_usr;
389         UPDATE acq.lineitem_note SET creator = dest_usr WHERE creator = src_usr;
390         UPDATE acq.lineitem_note SET editor = dest_usr WHERE editor = src_usr;
391         DELETE FROM acq.lineitem_usr_attr_definition WHERE usr = src_usr;
392
393         -- Update with a rename to avoid collisions
394         FOR renamable_row in
395                 SELECT id, name
396                 FROM   acq.picklist
397                 WHERE  owner = src_usr
398         LOOP
399                 suffix := ' (' || src_usr || ')';
400                 LOOP
401                         BEGIN
402                                 UPDATE  acq.picklist
403                                 SET     owner = dest_usr, name = name || suffix
404                                 WHERE   id = renamable_row.id;
405                         EXCEPTION WHEN unique_violation THEN
406                                 suffix := suffix || ' ';
407                                 CONTINUE;
408                         END;
409                         EXIT;
410                 END LOOP;
411         END LOOP;
412
413         UPDATE acq.picklist SET creator = dest_usr WHERE creator = src_usr;
414         UPDATE acq.picklist SET editor = dest_usr WHERE editor = src_usr;
415         UPDATE acq.po_note SET creator = dest_usr WHERE creator = src_usr;
416         UPDATE acq.po_note SET editor = dest_usr WHERE editor = src_usr;
417         UPDATE acq.purchase_order SET owner = dest_usr WHERE owner = src_usr;
418         UPDATE acq.purchase_order SET creator = dest_usr WHERE creator = src_usr;
419         UPDATE acq.purchase_order SET editor = dest_usr WHERE editor = src_usr;
420
421         -- action.*
422
423         DELETE FROM action.circulation WHERE usr = src_usr;
424         UPDATE action.circulation SET circ_staff = dest_usr WHERE circ_staff = src_usr;
425         UPDATE action.circulation SET checkin_staff = dest_usr WHERE checkin_staff = src_usr;
426         UPDATE action.hold_notification SET notify_staff = dest_usr WHERE notify_staff = src_usr;
427         UPDATE action.hold_request SET fulfillment_staff = dest_usr WHERE fulfillment_staff = src_usr;
428         UPDATE action.hold_request SET requestor = dest_usr WHERE requestor = src_usr;
429         DELETE FROM action.hold_request WHERE usr = src_usr;
430         UPDATE action.in_house_use SET staff = dest_usr WHERE staff = src_usr;
431         UPDATE action.non_cat_in_house_use SET staff = dest_usr WHERE staff = src_usr;
432         DELETE FROM action.non_cataloged_circulation WHERE patron = src_usr;
433         UPDATE action.non_cataloged_circulation SET staff = dest_usr WHERE staff = src_usr;
434         DELETE FROM action.survey_response WHERE usr = src_usr;
435
436         -- actor.*
437         DELETE FROM actor.card WHERE usr = src_usr;
438         DELETE FROM actor.stat_cat_entry_usr_map WHERE target_usr = src_usr;
439
440         -- The following update is intended to avoid transient violations of a foreign
441         -- key constraint, whereby actor.usr_address references itself.  It may not be
442         -- necessary, but it does no harm.
443         UPDATE actor.usr_address SET replaces = NULL
444                 WHERE usr = src_usr AND replaces IS NOT NULL;
445         DELETE FROM actor.usr_address WHERE usr = src_usr;
446         DELETE FROM actor.usr_note WHERE usr = src_usr;
447         UPDATE actor.usr_note SET creator = dest_usr WHERE creator = src_usr;
448         DELETE FROM actor.usr_org_unit_opt_in WHERE usr = src_usr;
449         UPDATE actor.usr_org_unit_opt_in SET staff = dest_usr WHERE staff = src_usr;
450         DELETE FROM actor.usr_setting WHERE usr = src_usr;
451         DELETE FROM actor.usr_standing_penalty WHERE usr = src_usr;
452         UPDATE actor.usr_standing_penalty SET staff = dest_usr WHERE staff = src_usr;
453
454         -- asset.*
455         UPDATE asset.call_number SET creator = dest_usr WHERE creator = src_usr;
456         UPDATE asset.call_number SET editor = dest_usr WHERE editor = src_usr;
457         UPDATE asset.call_number_note SET creator = dest_usr WHERE creator = src_usr;
458         UPDATE asset.copy SET creator = dest_usr WHERE creator = src_usr;
459         UPDATE asset.copy SET editor = dest_usr WHERE editor = src_usr;
460         UPDATE asset.copy_note SET creator = dest_usr WHERE creator = src_usr;
461
462         -- biblio.*
463         UPDATE biblio.record_entry SET creator = dest_usr WHERE creator = src_usr;
464         UPDATE biblio.record_entry SET editor = dest_usr WHERE editor = src_usr;
465         UPDATE biblio.record_note SET creator = dest_usr WHERE creator = src_usr;
466         UPDATE biblio.record_note SET editor = dest_usr WHERE editor = src_usr;
467
468         -- container.*
469         -- Update buckets with a rename to avoid collisions
470         FOR renamable_row in
471                 SELECT id, name
472                 FROM   container.biblio_record_entry_bucket
473                 WHERE  owner = src_usr
474         LOOP
475                 suffix := ' (' || src_usr || ')';
476                 LOOP
477                         BEGIN
478                                 UPDATE  container.biblio_record_entry_bucket
479                                 SET     owner = dest_usr, name = name || suffix
480                                 WHERE   id = renamable_row.id;
481                         EXCEPTION WHEN unique_violation THEN
482                                 suffix := suffix || ' ';
483                                 CONTINUE;
484                         END;
485                         EXIT;
486                 END LOOP;
487         END LOOP;
488
489         FOR renamable_row in
490                 SELECT id, name
491                 FROM   container.call_number_bucket
492                 WHERE  owner = src_usr
493         LOOP
494                 suffix := ' (' || src_usr || ')';
495                 LOOP
496                         BEGIN
497                                 UPDATE  container.call_number_bucket
498                                 SET     owner = dest_usr, name = name || suffix
499                                 WHERE   id = renamable_row.id;
500                         EXCEPTION WHEN unique_violation THEN
501                                 suffix := suffix || ' ';
502                                 CONTINUE;
503                         END;
504                         EXIT;
505                 END LOOP;
506         END LOOP;
507
508         FOR renamable_row in
509                 SELECT id, name
510                 FROM   container.copy_bucket
511                 WHERE  owner = src_usr
512         LOOP
513                 suffix := ' (' || src_usr || ')';
514                 LOOP
515                         BEGIN
516                                 UPDATE  container.copy_bucket
517                                 SET     owner = dest_usr, name = name || suffix
518                                 WHERE   id = renamable_row.id;
519                         EXCEPTION WHEN unique_violation THEN
520                                 suffix := suffix || ' ';
521                                 CONTINUE;
522                         END;
523                         EXIT;
524                 END LOOP;
525         END LOOP;
526
527         FOR renamable_row in
528                 SELECT id, name
529                 FROM   container.user_bucket
530                 WHERE  owner = src_usr
531         LOOP
532                 suffix := ' (' || src_usr || ')';
533                 LOOP
534                         BEGIN
535                                 UPDATE  container.user_bucket
536                                 SET     owner = dest_usr, name = name || suffix
537                                 WHERE   id = renamable_row.id;
538                         EXCEPTION WHEN unique_violation THEN
539                                 suffix := suffix || ' ';
540                                 CONTINUE;
541                         END;
542                         EXIT;
543                 END LOOP;
544         END LOOP;
545
546         DELETE FROM container.user_bucket_item WHERE target_user = src_usr;
547
548         -- money.*
549         DELETE FROM money.billable_xact WHERE usr = src_usr;
550         DELETE FROM money.collections_tracker WHERE usr = src_usr;
551         UPDATE money.collections_tracker SET collector = dest_usr WHERE collector = src_usr;
552
553         -- permission.*
554         DELETE FROM permission.usr_grp_map WHERE usr = src_usr;
555         DELETE FROM permission.usr_object_perm_map WHERE usr = src_usr;
556         DELETE FROM permission.usr_perm_map WHERE usr = src_usr;
557         DELETE FROM permission.usr_work_ou_map WHERE usr = src_usr;
558
559         -- reporter.*
560         -- Update with a rename to avoid collisions
561         BEGIN
562                 FOR renamable_row in
563                         SELECT id, name
564                         FROM   reporter.output_folder
565                         WHERE  owner = src_usr
566                 LOOP
567                         suffix := ' (' || src_usr || ')';
568                         LOOP
569                                 BEGIN
570                                         UPDATE  reporter.output_folder
571                                         SET     owner = dest_usr, name = name || suffix
572                                         WHERE   id = renamable_row.id;
573                                 EXCEPTION WHEN unique_violation THEN
574                                         suffix := suffix || ' ';
575                                         CONTINUE;
576                                 END;
577                                 EXIT;
578                         END LOOP;
579                 END LOOP;
580         EXCEPTION WHEN undefined_table THEN
581                 -- do nothing
582         END;
583
584         BEGIN
585                 UPDATE reporter.report SET owner = dest_usr WHERE owner = src_usr;
586         EXCEPTION WHEN undefined_table THEN
587                 -- do nothing
588         END;
589
590         -- Update with a rename to avoid collisions
591         BEGIN
592                 FOR renamable_row in
593                         SELECT id, name
594                         FROM   reporter.report_folder
595                         WHERE  owner = src_usr
596                 LOOP
597                         suffix := ' (' || src_usr || ')';
598                         LOOP
599                                 BEGIN
600                                         UPDATE  reporter.report_folder
601                                         SET     owner = dest_usr, name = name || suffix
602                                         WHERE   id = renamable_row.id;
603                                 EXCEPTION WHEN unique_violation THEN
604                                         suffix := suffix || ' ';
605                                         CONTINUE;
606                                 END;
607                                 EXIT;
608                         END LOOP;
609                 END LOOP;
610         EXCEPTION WHEN undefined_table THEN
611                 -- do nothing
612         END;
613
614         BEGIN
615                 UPDATE reporter.schedule SET runner = dest_usr WHERE runner = src_usr;
616         EXCEPTION WHEN undefined_table THEN
617                 -- do nothing
618         END;
619
620         BEGIN
621                 UPDATE reporter.template SET owner = dest_usr WHERE owner = src_usr;
622         EXCEPTION WHEN undefined_table THEN
623                 -- do nothing
624         END;
625
626         -- Update with a rename to avoid collisions
627         BEGIN
628                 FOR renamable_row in
629                         SELECT id, name
630                         FROM   reporter.template_folder
631                         WHERE  owner = src_usr
632                 LOOP
633                         suffix := ' (' || src_usr || ')';
634                         LOOP
635                                 BEGIN
636                                         UPDATE  reporter.template_folder
637                                         SET     owner = dest_usr, name = name || suffix
638                                         WHERE   id = renamable_row.id;
639                                 EXCEPTION WHEN unique_violation THEN
640                                         suffix := suffix || ' ';
641                                         CONTINUE;
642                                 END;
643                                 EXIT;
644                         END LOOP;
645                 END LOOP;
646         EXCEPTION WHEN undefined_table THEN
647         -- do nothing
648         END;
649
650         -- vandelay.*
651         -- Update with a rename to avoid collisions
652         FOR renamable_row in
653                 SELECT id, name
654                 FROM   vandelay.queue
655                 WHERE  owner = src_usr
656         LOOP
657                 suffix := ' (' || src_usr || ')';
658                 LOOP
659                         BEGIN
660                                 UPDATE  vandelay.queue
661                                 SET     owner = dest_usr, name = name || suffix
662                                 WHERE   id = renamable_row.id;
663                         EXCEPTION WHEN unique_violation THEN
664                                 suffix := suffix || ' ';
665                                 CONTINUE;
666                         END;
667                         EXIT;
668                 END LOOP;
669         END LOOP;
670
671 END;
672 $$ LANGUAGE plpgsql;
673
674 COMMENT ON FUNCTION actor.usr_purge_data(INT, INT) IS $$
675 /**
676  * Finds rows dependent on a given row in actor.usr and either deletes them
677  * or reassigns them to a different user.
678  */
679 $$;
680
681
682
683 CREATE OR REPLACE FUNCTION actor.usr_delete(
684         src_usr  IN INTEGER,
685         dest_usr IN INTEGER
686 ) RETURNS VOID AS $$
687 DECLARE
688         old_profile actor.usr.profile%type;
689         old_home_ou actor.usr.home_ou%type;
690         new_profile actor.usr.profile%type;
691         new_home_ou actor.usr.home_ou%type;
692         new_name    text;
693         new_dob     actor.usr.dob%type;
694 BEGIN
695         SELECT
696                 id || '-PURGED-' || now(),
697                 profile,
698                 home_ou,
699                 dob
700         INTO
701                 new_name,
702                 old_profile,
703                 old_home_ou,
704                 new_dob
705         FROM
706                 actor.usr
707         WHERE
708                 id = src_usr;
709         --
710         -- Quit if no such user
711         --
712         IF old_profile IS NULL THEN
713                 RETURN;
714         END IF;
715         --
716         perform actor.usr_purge_data( src_usr, dest_usr );
717         --
718         -- Find the root org_unit(s).  This would be simpler if we could assume
719         -- that there is only one root.  Theoretically, someday, maybe, there
720         -- could be multiple roots, so we go to some extra trouble to get
721         -- the right ones.
722         --
723         SELECT
724                 id
725         INTO
726                 new_profile
727         FROM
728                 actor.org_unit_ancestors( old_profile )
729         WHERE
730                 parent_ou is null;
731         --
732         IF old_home_ou = old_profile THEN
733                 new_home_ou := new_profile;
734         ELSE
735                 SELECT
736                         id
737                 INTO
738                         new_home_ou
739                 FROM
740                         actor.org_unit_ancestors( old_home_ou )
741                 WHERE
742                         parent_ou is null;
743         END IF;
744         --
745         -- Truncate date of birth
746         --
747         IF new_dob IS NOT NULL THEN
748                 new_dob := date_trunc( 'year', new_dob );
749         END IF;
750         --
751         UPDATE
752                 actor.usr
753                 SET
754                         card = NULL,
755                         profile = new_profile,
756                         usrname = new_name,
757                         email = NULL,
758                         passwd = random()::text,
759                         standing = DEFAULT,
760                         ident_type = 
761                         (
762                                 SELECT MIN( id )
763                                 FROM config.identification_type
764                         ),
765                         ident_value = NULL,
766                         ident_type2 = NULL,
767                         ident_value2 = NULL,
768                         net_access_level = DEFAULT,
769                         photo_url = NULL,
770                         prefix = NULL,
771                         first_given_name = new_name,
772                         second_given_name = NULL,
773                         family_name = new_name,
774                         suffix = NULL,
775                         alias = NULL,
776                         day_phone = NULL,
777                         evening_phone = NULL,
778                         other_phone = NULL,
779                         mailing_address = NULL,
780                         billing_address = NULL,
781                         home_ou = new_home_ou,
782                         dob = new_dob,
783                         active = FALSE,
784                         master_account = DEFAULT, 
785                         super_user = DEFAULT,
786                         barred = FALSE,
787                         deleted = TRUE,
788                         juvenile = DEFAULT,
789                         usrgroup = 0,
790                         claims_returned_count = DEFAULT,
791                         credit_forward_balance = DEFAULT,
792                         last_xact_id = DEFAULT,
793                         alert_message = NULL,
794                         create_date = now(),
795                         expire_date = now()
796         WHERE
797                 id = src_usr;
798 END;
799 $$ LANGUAGE plpgsql;
800
801 COMMENT ON FUNCTION actor.usr_delete(INT, INT) IS $$
802 /**
803  * Logically deletes a user.  Removes personally identifiable information,
804  * and purges associated data in other tables.
805  */
806 $$;
807
808
809
810 CREATE OR REPLACE FUNCTION actor.approve_pending_address(pending_id INT) RETURNS BIGINT AS $$
811 DECLARE
812     old_id INT;
813 BEGIN
814     SELECT INTO old_id replaces FROM actor.usr_address where id = pending_id;
815     IF old_id IS NULL THEN
816         UPDATE actor.usr_address SET pending = 'f' WHERE id = pending_id;
817         RETURN pending_id;
818     END IF;
819     -- address replaces an existing address
820     DELETE FROM actor.usr_address WHERE id = -old_id;
821     UPDATE actor.usr_address SET id = -id WHERE id = old_id;
822     UPDATE actor.usr_address SET replaces = NULL, id = old_id, pending = 'f' WHERE id = pending_id;
823     RETURN old_id;
824 END
825 $$ LANGUAGE plpgsql;
826
827 COMMENT ON FUNCTION actor.approve_pending_address(INT) IS $$
828 /**
829  * Replaces an address with a pending address.  This is done by giving the pending 
830  * address the ID of the old address.  The replaced address is retained with -id.
831  */
832 $$;
833
834 CREATE OR REPLACE FUNCTION container.clear_expired_circ_history_items( 
835          ac_usr IN INTEGER
836 ) RETURNS VOID AS $$
837 --
838 -- Delete old circulation bucket items for a specified user.
839 -- "Old" means older than the interval specified by a
840 -- user-level setting, if it is so specified.
841 --
842 DECLARE
843     threshold TIMESTAMP WITH TIME ZONE;
844 BEGIN
845         -- Sanity check
846         IF ac_usr IS NULL THEN
847                 RETURN;
848         END IF;
849         -- Determine the threshold date that defines "old".  Subtract the
850         -- interval from the system date, then truncate to midnight.
851         SELECT
852                 date_trunc( 
853                         'day',
854                         now() - CAST( translate( value, '"', '' ) AS INTERVAL )
855                 )
856         INTO
857                 threshold
858         FROM
859                 actor.usr_setting
860         WHERE
861                 usr = ac_usr
862                 AND name = 'patron.max_reading_list_interval';
863         --
864         IF threshold is null THEN
865                 -- No interval defined; don't delete anything
866                 -- RAISE NOTICE 'No interval defined for user %', ac_usr;
867                 return;
868         END IF;
869         --
870         -- RAISE NOTICE 'Date threshold: %', threshold;
871         --
872         -- Threshold found; do the delete
873         delete from container.copy_bucket_item
874         where
875                 bucket in
876                 (
877                         select
878                                 id
879                         from
880                                 container.copy_bucket
881                         where
882                                 owner = ac_usr
883                                 and btype = 'circ_history'
884                 )
885                 and create_time < threshold;
886         --
887         RETURN;
888 END;
889 $$ LANGUAGE plpgsql;
890
891 COMMENT ON FUNCTION container.clear_expired_circ_history_items( INTEGER ) IS $$
892 /*
893  * Delete old circulation bucket items for a specified user.
894  * "Old" means older than the interval specified by a
895  * user-level setting, if it is so specified.
896 */
897 $$;
898
899 CREATE OR REPLACE FUNCTION container.clear_all_expired_circ_history_items( )
900 RETURNS VOID AS $$
901 --
902 -- Delete expired circulation bucket items for all users that have
903 -- a setting for patron.max_reading_list_interval.
904 --
905 DECLARE
906     today        TIMESTAMP WITH TIME ZONE;
907     threshold    TIMESTAMP WITH TIME ZONE;
908         usr_setting  RECORD;
909 BEGIN
910         SELECT date_trunc( 'day', now() ) INTO today;
911         --
912         FOR usr_setting in
913                 SELECT
914                         usr,
915                         value
916                 FROM
917                         actor.usr_setting
918                 WHERE
919                         name = 'patron.max_reading_list_interval'
920         LOOP
921                 --
922                 -- Make sure the setting is a valid interval
923                 --
924                 BEGIN
925                         threshold := today - CAST( translate( usr_setting.value, '"', '' ) AS INTERVAL );
926                 EXCEPTION
927                         WHEN OTHERS THEN
928                                 RAISE NOTICE 'Invalid setting patron.max_reading_list_interval for user %: ''%''',
929                                         usr_setting.usr, usr_setting.value;
930                                 CONTINUE;
931                 END;
932                 --
933                 --RAISE NOTICE 'User % threshold %', usr_setting.usr, threshold;
934                 --
935         DELETE FROM container.copy_bucket_item
936         WHERE
937                 bucket IN
938                 (
939                     SELECT
940                         id
941                     FROM
942                         container.copy_bucket
943                     WHERE
944                         owner = usr_setting.usr
945                         AND btype = 'circ_history'
946                 )
947                 AND create_time < threshold;
948         END LOOP;
949         --
950 END;
951 $$ LANGUAGE plpgsql;
952
953 COMMENT ON FUNCTION container.clear_all_expired_circ_history_items( ) IS $$
954 /*
955  * Delete expired circulation bucket items for all users that have
956  * a setting for patron.max_reading_list_interval.
957 */
958 $$
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     uri_count     INT := 0;
970     counter       INT := 0;
971     uri_datafield TEXT;
972     uri_text      TEXT := '';
973 BEGIN
974
975     -- move any 856 entries on records that have at least one MARC-mapped URI entry
976     SELECT  INTO uri_count COUNT(*)
977       FROM  asset.uri_call_number_map m
978             JOIN asset.call_number cn ON (m.call_number = cn.id)
979       WHERE cn.record = source_record;
980
981     IF uri_count > 0 THEN
982         
983         SELECT  COUNT(*) INTO counter
984           FROM  xpath_table(
985                     'id',
986                     'marc',
987                     'acq.lineitem',
988                     '//*[@tag="856"]',
989                     'id=' || lineitem
990                 ) as t(i int,c text);
991     
992         FOR i IN 1 .. counter LOOP
993             SELECT  '<datafield xmlns="http://www.loc.gov/MARC21/slim" tag="856">' ||
994                         array_to_string(
995                             array_accum(
996                                 '<subfield code="' || subfield || '">' ||
997                                 regexp_replace(
998                                     regexp_replace(
999                                         regexp_replace(data,'&','&amp;','g'),
1000                                         '>', '&gt;', 'g'
1001                                     ),
1002                                     '<', '&lt;', 'g'
1003                                 ) || '</subfield>'
1004                             ), ''
1005                         ) || '</datafield>' INTO uri_datafield
1006               FROM  xpath_table(
1007                         'id',
1008                         'marc',
1009                         'biblio.record_entry',
1010                         '//*[@tag="856"][position()=' || i || ']/*/@code|' ||
1011                         '//*[@tag="856"][position()=' || i || ']/*[@code]',
1012                         'id=' || source_record
1013                     ) as t(id int,subfield text,data text);
1014
1015             uri_text := uri_text || uri_datafield;
1016         END LOOP;
1017
1018         IF uri_text <> '' THEN
1019             UPDATE  biblio.record_entry
1020               SET   marc = regexp_replace(marc,'(</[^>]*record>)', uri_text || E'\\1')
1021               WHERE id = target_record;
1022         END IF;
1023
1024     END IF;
1025
1026         -- Find and move metarecords to the target record
1027         SELECT  INTO metarec *
1028           FROM  metabib.metarecord
1029           WHERE master_record = source_record;
1030
1031         IF FOUND THEN
1032                 UPDATE  metabib.metarecord
1033                   SET   master_record = target_record,
1034                         mods = NULL
1035                   WHERE id = metarec.id;
1036
1037                 moved_objects := moved_objects + 1;
1038         END IF;
1039
1040         -- Find call numbers attached to the source ...
1041         FOR source_cn IN SELECT * FROM asset.call_number WHERE record = source_record LOOP
1042
1043                 SELECT  INTO target_cn *
1044                   FROM  asset.call_number
1045                   WHERE label = source_cn.label
1046                         AND owning_lib = source_cn.owning_lib
1047                         AND record = target_record;
1048
1049                 -- ... and if there's a conflicting one on the target ...
1050                 IF FOUND THEN
1051
1052                         -- ... move the copies to that, and ...
1053                         UPDATE  asset.copy
1054                           SET   call_number = target_cn.id
1055                           WHERE call_number = source_cn.id;
1056
1057                         -- ... move V holds to the move-target call number
1058                         FOR hold IN SELECT * FROM action.hold_request WHERE target = source_cn.id AND hold_type = 'V' LOOP
1059                 
1060                                 UPDATE  action.hold_request
1061                                   SET   target = target_cn.id
1062                                   WHERE id = hold.id;
1063                 
1064                                 moved_objects := moved_objects + 1;
1065                         END LOOP;
1066
1067                 -- ... if not ...
1068                 ELSE
1069                         -- ... just move the call number to the target record
1070                         UPDATE  asset.call_number
1071                           SET   record = target_record
1072                           WHERE id = source_cn.id;
1073                 END IF;
1074
1075                 moved_objects := moved_objects + 1;
1076         END LOOP;
1077
1078         -- Find T holds targeting the source record ...
1079         FOR hold IN SELECT * FROM action.hold_request WHERE target = source_record AND hold_type = 'T' LOOP
1080
1081                 -- ... and move them to the target record
1082                 UPDATE  action.hold_request
1083                   SET   target = target_record
1084                   WHERE id = hold.id;
1085
1086                 moved_objects := moved_objects + 1;
1087         END LOOP;
1088
1089         -- Find serial records targeting the source record ...
1090         FOR ser_rec IN SELECT * FROM serial.record_entry WHERE record = source_record LOOP
1091                 -- ... and move them to the target record
1092                 UPDATE  serial.record_entry
1093                   SET   record = target_record
1094                   WHERE id = ser_rec.id;
1095
1096                 moved_objects := moved_objects + 1;
1097         END LOOP;
1098
1099     -- Finally, "delete" the source record
1100     DELETE FROM biblio.record_entry WHERE id = source_record;
1101
1102         -- That's all, folks!
1103         RETURN moved_objects;
1104 END;
1105 $func$ LANGUAGE plpgsql;
1106