]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/090.schema.action.sql
LP#1705524: Adjust day-granular due date pushing
[working/Evergreen.git] / Open-ILS / src / sql / Pg / 090.schema.action.sql
1 /*
2  * Copyright (C) 2004-2008  Georgia Public Library Service
3  * Copyright (C) 2007-2008  Equinox Software, Inc.
4  * Mike Rylander <miker@esilibrary.com> 
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  */
17
18 DROP SCHEMA IF EXISTS action CASCADE;
19
20 BEGIN;
21
22 CREATE SCHEMA action;
23
24 CREATE TABLE action.in_house_use (
25         id              SERIAL                          PRIMARY KEY,
26         item            BIGINT                          NOT NULL, -- REFERENCES asset.copy (id) DEFERRABLE INITIALLY DEFERRED, -- XXX could be an serial.issuance
27         staff           INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
28         org_unit        INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
29         use_time        TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW()
30 );
31 CREATE INDEX action_in_house_use_staff_idx      ON action.in_house_use ( staff );
32
33 CREATE TABLE action.non_cataloged_circulation (
34         id              SERIAL                          PRIMARY KEY,
35         patron          INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
36         staff           INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
37         circ_lib        INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
38         item_type       INT                             NOT NULL REFERENCES config.non_cataloged_type (id) DEFERRABLE INITIALLY DEFERRED,
39         circ_time       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW()
40 );
41 CREATE INDEX action_non_cat_circ_patron_idx ON action.non_cataloged_circulation ( patron );
42 CREATE INDEX action_non_cat_circ_staff_idx  ON action.non_cataloged_circulation ( staff );
43
44 CREATE TABLE action.non_cat_in_house_use (
45         id              SERIAL                          PRIMARY KEY,
46         item_type       BIGINT                          NOT NULL REFERENCES config.non_cataloged_type(id) DEFERRABLE INITIALLY DEFERRED,
47         staff           INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
48         org_unit        INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
49         use_time        TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW()
50 );
51 CREATE INDEX non_cat_in_house_use_staff_idx ON action.non_cat_in_house_use ( staff );
52
53 CREATE TABLE action.survey (
54         id              SERIAL                          PRIMARY KEY,
55         owner           INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
56         start_date      TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
57         end_date        TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW() + '10 years'::INTERVAL,
58         usr_summary     BOOL                            NOT NULL DEFAULT FALSE,
59         opac            BOOL                            NOT NULL DEFAULT FALSE,
60         poll            BOOL                            NOT NULL DEFAULT FALSE,
61         required        BOOL                            NOT NULL DEFAULT FALSE,
62         name            TEXT                            NOT NULL,
63         description     TEXT                            NOT NULL
64 );
65 CREATE UNIQUE INDEX asv_once_per_owner_idx ON action.survey (owner,name);
66
67 CREATE TABLE action.survey_question (
68         id              SERIAL  PRIMARY KEY,
69         survey          INT     NOT NULL REFERENCES action.survey DEFERRABLE INITIALLY DEFERRED,
70         question        TEXT    NOT NULL
71 );
72
73 CREATE TABLE action.survey_answer (
74         id              SERIAL  PRIMARY KEY,
75         question        INT     NOT NULL REFERENCES action.survey_question DEFERRABLE INITIALLY DEFERRED,
76         answer          TEXT    NOT NULL
77 );
78
79 CREATE SEQUENCE action.survey_response_group_id_seq;
80
81 CREATE TABLE action.survey_response (
82         id                      BIGSERIAL                       PRIMARY KEY,
83         response_group_id       INT,
84         usr                     INT, -- REFERENCES actor.usr
85         survey                  INT                             NOT NULL REFERENCES action.survey DEFERRABLE INITIALLY DEFERRED,
86         question                INT                             NOT NULL REFERENCES action.survey_question DEFERRABLE INITIALLY DEFERRED,
87         answer                  INT                             NOT NULL REFERENCES action.survey_answer DEFERRABLE INITIALLY DEFERRED,
88         answer_date             TIMESTAMP WITH TIME ZONE,
89         effective_date          TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW()
90 );
91 CREATE INDEX action_survey_response_usr_idx ON action.survey_response ( usr );
92
93 CREATE OR REPLACE FUNCTION action.survey_response_answer_date_fixup () RETURNS TRIGGER AS '
94 BEGIN
95         NEW.answer_date := NOW();
96         RETURN NEW;
97 END;
98 ' LANGUAGE 'plpgsql';
99 CREATE TRIGGER action_survey_response_answer_date_fixup_tgr
100         BEFORE INSERT ON action.survey_response
101         FOR EACH ROW
102         EXECUTE PROCEDURE action.survey_response_answer_date_fixup ();
103
104 CREATE TABLE action.archive_actor_stat_cat (
105     id          BIGSERIAL   PRIMARY KEY,
106     xact        BIGINT      NOT NULL, -- action.circulation (+aged/all)
107     stat_cat    INT         NOT NULL,
108     value       TEXT        NOT NULL
109 );
110
111 CREATE TABLE action.archive_asset_stat_cat (
112     id          BIGSERIAL   PRIMARY KEY,
113     xact        BIGINT      NOT NULL, -- action.circulation (+aged/all)
114     stat_cat    INT         NOT NULL,
115     value       TEXT        NOT NULL
116 );
117
118
119 CREATE TABLE action.circulation (
120         target_copy             BIGINT                          NOT NULL, -- asset.copy.id
121         circ_lib                INT                             NOT NULL, -- actor.org_unit.id
122         circ_staff              INT                             NOT NULL, -- actor.usr.id
123         checkin_staff           INT,                                      -- actor.usr.id
124         checkin_lib             INT,                                      -- actor.org_unit.id
125         renewal_remaining       INT                             NOT NULL, -- derived from "circ duration" rule
126     grace_period           INTERVAL             NOT NULL, -- derived from "circ fine" rule
127         due_date                TIMESTAMP WITH TIME ZONE,
128         stop_fines_time         TIMESTAMP WITH TIME ZONE,
129         checkin_time            TIMESTAMP WITH TIME ZONE,
130         create_time             TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
131         duration                INTERVAL,                                 -- derived from "circ duration" rule
132         fine_interval           INTERVAL                        NOT NULL DEFAULT '1 day'::INTERVAL, -- derived from "circ fine" rule
133         recurring_fine          NUMERIC(6,2),                             -- derived from "circ fine" rule
134         max_fine                NUMERIC(6,2),                             -- derived from "max fine" rule
135         phone_renewal           BOOL                            NOT NULL DEFAULT FALSE,
136         desk_renewal            BOOL                            NOT NULL DEFAULT FALSE,
137         opac_renewal            BOOL                            NOT NULL DEFAULT FALSE,
138         duration_rule           TEXT                            NOT NULL, -- name of "circ duration" rule
139         recurring_fine_rule     TEXT                            NOT NULL, -- name of "circ fine" rule
140         max_fine_rule           TEXT                            NOT NULL, -- name of "max fine" rule
141         stop_fines              TEXT                            CHECK (stop_fines IN (
142                                                'CHECKIN','CLAIMSRETURNED','LOST','MAXFINES','RENEW','LONGOVERDUE','CLAIMSNEVERCHECKEDOUT')),
143         workstation         INT        REFERENCES actor.workstation(id)
144                                        ON DELETE SET NULL
145                                                                    DEFERRABLE INITIALLY DEFERRED,
146         checkin_workstation INT        REFERENCES actor.workstation(id)
147                                        ON DELETE SET NULL
148                                                                    DEFERRABLE INITIALLY DEFERRED,
149         copy_location   INT                             NOT NULL DEFAULT 1 REFERENCES asset.copy_location (id) DEFERRABLE INITIALLY DEFERRED,
150         checkin_scan_time   TIMESTAMP WITH TIME ZONE
151 ) INHERITS (money.billable_xact);
152 ALTER TABLE action.circulation ADD PRIMARY KEY (id);
153 ALTER TABLE action.circulation
154         ADD COLUMN parent_circ BIGINT
155         REFERENCES action.circulation( id )
156         DEFERRABLE INITIALLY DEFERRED;
157 CREATE INDEX circ_open_xacts_idx ON action.circulation (usr) WHERE xact_finish IS NULL;
158 CREATE INDEX circ_outstanding_idx ON action.circulation (usr) WHERE checkin_time IS NULL;
159 CREATE INDEX circ_checkin_time ON "action".circulation (checkin_time) WHERE checkin_time IS NOT NULL;
160 CREATE INDEX circ_circ_lib_idx ON "action".circulation (circ_lib);
161 CREATE INDEX circ_open_date_idx ON "action".circulation (xact_start) WHERE xact_finish IS NULL;
162 CREATE INDEX circ_all_usr_idx       ON action.circulation ( usr );
163 CREATE INDEX circ_circ_staff_idx    ON action.circulation ( circ_staff );
164 CREATE INDEX circ_checkin_staff_idx ON action.circulation ( checkin_staff );
165 CREATE INDEX action_circulation_target_copy_idx ON action.circulation (target_copy);
166 CREATE UNIQUE INDEX circ_parent_idx ON action.circulation ( parent_circ ) WHERE parent_circ IS NOT NULL;
167 CREATE UNIQUE INDEX only_one_concurrent_checkout_per_copy ON action.circulation(target_copy) WHERE checkin_time IS NULL;
168
169 CREATE TRIGGER action_circulation_target_copy_trig AFTER INSERT OR UPDATE ON action.circulation FOR EACH ROW EXECUTE PROCEDURE evergreen.fake_fkey_tgr('target_copy');
170
171 CREATE TRIGGER mat_summary_create_tgr AFTER INSERT ON action.circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_create ('circulation');
172 CREATE TRIGGER mat_summary_change_tgr AFTER UPDATE ON action.circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_update ();
173 CREATE TRIGGER mat_summary_remove_tgr AFTER DELETE ON action.circulation FOR EACH ROW EXECUTE PROCEDURE money.mat_summary_delete ();
174
175 CREATE OR REPLACE FUNCTION action.push_circ_due_time () RETURNS TRIGGER AS $$
176 DECLARE
177     proper_tz TEXT := COALESCE(
178         oils_json_to_text((
179             SELECT value
180               FROM  actor.org_unit_ancestor_setting('lib.timezone',NEW.circ_lib)
181               LIMIT 1
182         )),
183         CURRENT_SETTING('timezone')
184     );
185 BEGIN
186
187     IF (EXTRACT(EPOCH FROM NEW.duration)::INT % EXTRACT(EPOCH FROM '1 day'::INTERVAL)::INT) = 0 -- day-granular duration
188         AND SUBSTRING((NEW.due_date AT TIME ZONE proper_tz)::TIME::TEXT FROM 1 FOR 8) <> '23:59:59' THEN -- has not yet been pushed
189         NEW.due_date = ((NEW.due_date AT TIME ZONE proper_tz)::DATE + '1 day'::INTERVAL - '1 second'::INTERVAL) || ' ' || proper_tz;
190     END IF;
191
192     RETURN NEW;
193 END;
194 $$ LANGUAGE PLPGSQL;
195
196 CREATE TRIGGER push_due_date_tgr BEFORE INSERT OR UPDATE ON action.circulation FOR EACH ROW EXECUTE PROCEDURE action.push_circ_due_time();
197
198 CREATE OR REPLACE FUNCTION action.fill_circ_copy_location () RETURNS TRIGGER AS $$
199 BEGIN
200     SELECT INTO NEW.copy_location location FROM asset.copy WHERE id = NEW.target_copy;
201     RETURN NEW;
202 END;
203 $$ LANGUAGE PLPGSQL;
204
205 CREATE TRIGGER fill_circ_copy_location_tgr BEFORE INSERT ON action.circulation FOR EACH ROW EXECUTE PROCEDURE action.fill_circ_copy_location();
206
207 CREATE OR REPLACE FUNCTION action.archive_stat_cats () RETURNS TRIGGER AS $$
208 BEGIN
209     INSERT INTO action.archive_actor_stat_cat(xact, stat_cat, value)
210         SELECT NEW.id, asceum.stat_cat, asceum.stat_cat_entry
211         FROM actor.stat_cat_entry_usr_map asceum
212              JOIN actor.stat_cat sc ON asceum.stat_cat = sc.id
213         WHERE NEW.usr = asceum.target_usr AND sc.checkout_archive;
214     INSERT INTO action.archive_asset_stat_cat(xact, stat_cat, value)
215         SELECT NEW.id, ascecm.stat_cat, asce.value
216         FROM asset.stat_cat_entry_copy_map ascecm
217              JOIN asset.stat_cat sc ON ascecm.stat_cat = sc.id
218              JOIN asset.stat_cat_entry asce ON ascecm.stat_cat_entry = asce.id
219         WHERE NEW.target_copy = ascecm.owning_copy AND sc.checkout_archive;
220     RETURN NULL;
221 END;
222 $$ LANGUAGE PLPGSQL;
223
224 CREATE TRIGGER archive_stat_cats_tgr AFTER INSERT ON action.circulation FOR EACH ROW EXECUTE PROCEDURE action.archive_stat_cats();
225
226 CREATE TABLE action.aged_circulation (
227         usr_post_code           TEXT,
228         usr_home_ou             INT     NOT NULL,
229         usr_profile             INT     NOT NULL,
230         usr_birth_year          INT,
231         copy_call_number        INT     NOT NULL,
232         copy_owning_lib         INT     NOT NULL,
233         copy_circ_lib           INT     NOT NULL,
234         copy_bib_record         BIGINT  NOT NULL,
235         LIKE action.circulation
236
237 );
238 ALTER TABLE action.aged_circulation ADD PRIMARY KEY (id);
239 ALTER TABLE action.aged_circulation DROP COLUMN usr;
240 CREATE INDEX aged_circ_circ_lib_idx ON "action".aged_circulation (circ_lib);
241 CREATE INDEX aged_circ_start_idx ON "action".aged_circulation (xact_start);
242 CREATE INDEX aged_circ_copy_circ_lib_idx ON "action".aged_circulation (copy_circ_lib);
243 CREATE INDEX aged_circ_copy_owning_lib_idx ON "action".aged_circulation (copy_owning_lib);
244 CREATE INDEX aged_circ_copy_location_idx ON "action".aged_circulation (copy_location);
245 CREATE INDEX action_aged_circulation_target_copy_idx ON action.aged_circulation (target_copy);
246 CREATE INDEX action_aged_circulation_parent_circ_idx ON action.aged_circulation (parent_circ);
247
248 CREATE OR REPLACE VIEW action.all_circulation AS
249     SELECT  id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
250         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
251         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, grace_period, due_date,
252         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
253         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
254         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ,
255         NULL AS usr
256       FROM  action.aged_circulation
257             UNION ALL
258     SELECT  DISTINCT circ.id,COALESCE(a.post_code,b.post_code) AS usr_post_code, p.home_ou AS usr_home_ou, p.profile AS usr_profile, EXTRACT(YEAR FROM p.dob)::INT AS usr_birth_year,
259         cp.call_number AS copy_call_number, circ.copy_location, cn.owning_lib AS copy_owning_lib, cp.circ_lib AS copy_circ_lib,
260         cn.record AS copy_bib_record, circ.xact_start, circ.xact_finish, circ.target_copy, circ.circ_lib, circ.circ_staff, circ.checkin_staff,
261         circ.checkin_lib, circ.renewal_remaining, circ.grace_period, circ.due_date, circ.stop_fines_time, circ.checkin_time, circ.create_time, circ.duration,
262         circ.fine_interval, circ.recurring_fine, circ.max_fine, circ.phone_renewal, circ.desk_renewal, circ.opac_renewal, circ.duration_rule,
263         circ.recurring_fine_rule, circ.max_fine_rule, circ.stop_fines, circ.workstation, circ.checkin_workstation, circ.checkin_scan_time,
264         circ.parent_circ, circ.usr
265       FROM  action.circulation circ
266         JOIN asset.copy cp ON (circ.target_copy = cp.id)
267         JOIN asset.call_number cn ON (cp.call_number = cn.id)
268         JOIN actor.usr p ON (circ.usr = p.id)
269         LEFT JOIN actor.usr_address a ON (p.mailing_address = a.id)
270         LEFT JOIN actor.usr_address b ON (p.billing_address = b.id);
271
272 CREATE OR REPLACE VIEW action.all_circulation_slim AS
273     SELECT * FROM action.circulation
274 UNION ALL
275     SELECT
276         id,
277         NULL AS usr,
278         xact_start,
279         xact_finish,
280         unrecovered,
281         target_copy,
282         circ_lib,
283         circ_staff,
284         checkin_staff,
285         checkin_lib,
286         renewal_remaining,
287         grace_period,
288         due_date,
289         stop_fines_time,
290         checkin_time,
291         create_time,
292         duration,
293         fine_interval,
294         recurring_fine,
295         max_fine,
296         phone_renewal,
297         desk_renewal,
298         opac_renewal,
299         duration_rule,
300         recurring_fine_rule,
301         max_fine_rule,
302         stop_fines,
303         workstation,
304         checkin_workstation,
305         copy_location,
306         checkin_scan_time,
307         parent_circ
308     FROM action.aged_circulation
309 ;
310
311
312
313 CREATE OR REPLACE FUNCTION action.age_circ_on_delete () RETURNS TRIGGER AS $$
314 DECLARE
315 found char := 'N';
316 BEGIN
317
318     -- If there are any renewals for this circulation, don't archive or delete
319     -- it yet.   We'll do so later, when we archive and delete the renewals.
320
321     SELECT 'Y' INTO found
322     FROM action.circulation
323     WHERE parent_circ = OLD.id
324     LIMIT 1;
325
326     IF found = 'Y' THEN
327         RETURN NULL;  -- don't delete
328         END IF;
329
330     -- Archive a copy of the old row to action.aged_circulation
331
332     INSERT INTO action.aged_circulation
333         (id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
334         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
335         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, grace_period, due_date,
336         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
337         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
338         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ)
339       SELECT
340         id,usr_post_code, usr_home_ou, usr_profile, usr_birth_year, copy_call_number, copy_location,
341         copy_owning_lib, copy_circ_lib, copy_bib_record, xact_start, xact_finish, target_copy,
342         circ_lib, circ_staff, checkin_staff, checkin_lib, renewal_remaining, grace_period, due_date,
343         stop_fines_time, checkin_time, create_time, duration, fine_interval, recurring_fine,
344         max_fine, phone_renewal, desk_renewal, opac_renewal, duration_rule, recurring_fine_rule,
345         max_fine_rule, stop_fines, workstation, checkin_workstation, checkin_scan_time, parent_circ
346         FROM action.all_circulation WHERE id = OLD.id;
347
348     RETURN OLD;
349 END;
350 $$ LANGUAGE 'plpgsql';
351
352 CREATE TRIGGER action_circulation_aging_tgr
353         BEFORE DELETE ON action.circulation
354         FOR EACH ROW
355         EXECUTE PROCEDURE action.age_circ_on_delete ();
356
357
358 CREATE OR REPLACE FUNCTION action.age_parent_circ_on_delete () RETURNS TRIGGER AS $$
359 BEGIN
360
361     -- Having deleted a renewal, we can delete the original circulation (or a previous
362     -- renewal, if that's what parent_circ is pointing to).  That deletion will trigger
363     -- deletion of any prior parents, etc. recursively.
364
365     IF OLD.parent_circ IS NOT NULL THEN
366         DELETE FROM action.circulation
367         WHERE id = OLD.parent_circ;
368     END IF;
369
370     RETURN OLD;
371 END;
372 $$ LANGUAGE 'plpgsql';
373
374 CREATE TRIGGER age_parent_circ
375         AFTER DELETE ON action.circulation
376         FOR EACH ROW
377         EXECUTE PROCEDURE action.age_parent_circ_on_delete ();
378
379
380 CREATE OR REPLACE VIEW action.open_circulation AS
381         SELECT  *
382           FROM  action.circulation
383           WHERE checkin_time IS NULL
384           ORDER BY due_date;
385                 
386
387 CREATE OR REPLACE VIEW action.billable_circulations AS
388         SELECT  *
389           FROM  action.circulation
390           WHERE xact_finish IS NULL;
391
392 CREATE OR REPLACE FUNCTION action.circulation_claims_returned () RETURNS TRIGGER AS $$
393 BEGIN
394         IF OLD.stop_fines IS NULL OR OLD.stop_fines <> NEW.stop_fines THEN
395                 IF NEW.stop_fines = 'CLAIMSRETURNED' THEN
396                         UPDATE actor.usr SET claims_returned_count = claims_returned_count + 1 WHERE id = NEW.usr;
397                 END IF;
398                 IF NEW.stop_fines = 'CLAIMSNEVERCHECKEDOUT' THEN
399                         UPDATE actor.usr SET claims_never_checked_out_count = claims_never_checked_out_count + 1 WHERE id = NEW.usr;
400                 END IF;
401                 IF NEW.stop_fines = 'LOST' THEN
402                         UPDATE asset.copy SET status = 3 WHERE id = NEW.target_copy;
403                 END IF;
404         END IF;
405         RETURN NEW;
406 END;
407 $$ LANGUAGE 'plpgsql';
408 CREATE TRIGGER action_circulation_stop_fines_tgr
409         BEFORE UPDATE ON action.circulation
410         FOR EACH ROW
411         EXECUTE PROCEDURE action.circulation_claims_returned ();
412
413 CREATE TABLE action.hold_request_cancel_cause (
414     id      SERIAL  PRIMARY KEY,
415     label   TEXT    UNIQUE
416 );
417
418 CREATE TABLE action.hold_request (
419         id                      SERIAL                          PRIMARY KEY,
420         request_time            TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
421         capture_time            TIMESTAMP WITH TIME ZONE,
422         fulfillment_time        TIMESTAMP WITH TIME ZONE,
423         checkin_time            TIMESTAMP WITH TIME ZONE,
424         return_time             TIMESTAMP WITH TIME ZONE,
425         prev_check_time         TIMESTAMP WITH TIME ZONE,
426         expire_time             TIMESTAMP WITH TIME ZONE,
427         cancel_time             TIMESTAMP WITH TIME ZONE,
428         cancel_cause    INT REFERENCES action.hold_request_cancel_cause (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED,
429         cancel_note             TEXT,
430         target                  BIGINT                          NOT NULL, -- see hold_type
431         current_copy            BIGINT,                         -- REFERENCES asset.copy (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED,  -- XXX could be an serial.unit now...
432         fulfillment_staff       INT                             REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
433         fulfillment_lib         INT                             REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
434         request_lib             INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
435         requestor               INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
436         usr                     INT                             NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
437         selection_ou            INT                             NOT NULL,
438         selection_depth         INT                             NOT NULL DEFAULT 0,
439         pickup_lib              INT                             NOT NULL REFERENCES actor.org_unit DEFERRABLE INITIALLY DEFERRED,
440         hold_type               TEXT                            NOT NULL, -- CHECK (hold_type IN ('M','T','V','C')),  -- XXX constraint too constraining...
441         holdable_formats        TEXT,
442         phone_notify            TEXT,
443         email_notify            BOOL                            NOT NULL DEFAULT FALSE,
444         sms_notify              TEXT,
445         sms_carrier             INT REFERENCES config.sms_carrier (id),
446         frozen                  BOOL                            NOT NULL DEFAULT FALSE,
447         thaw_date               TIMESTAMP WITH TIME ZONE,
448         shelf_time              TIMESTAMP WITH TIME ZONE,
449     cut_in_line     BOOL,
450         mint_condition  BOOL NOT NULL DEFAULT TRUE,
451         shelf_expire_time TIMESTAMPTZ,
452         current_shelf_lib INT REFERENCES actor.org_unit DEFERRABLE INITIALLY DEFERRED,
453     behind_desk BOOLEAN NOT NULL DEFAULT FALSE
454 );
455 ALTER TABLE action.hold_request ADD CONSTRAINT sms_check CHECK (
456     sms_notify IS NULL
457     OR sms_carrier IS NOT NULL -- and implied sms_notify IS NOT NULL
458 );
459
460
461 CREATE OR REPLACE FUNCTION action.hold_request_clear_map () RETURNS TRIGGER AS $$
462 BEGIN
463   DELETE FROM action.hold_copy_map WHERE hold = NEW.id;
464   RETURN NEW;
465 END;
466 $$ LANGUAGE PLPGSQL;
467
468 CREATE TRIGGER hold_request_clear_map_tgr
469     AFTER UPDATE ON action.hold_request
470     FOR EACH ROW
471     WHEN (
472         (NEW.cancel_time IS NOT NULL AND OLD.cancel_time IS NULL)
473         OR (NEW.fulfillment_time IS NOT NULL AND OLD.fulfillment_time IS NULL)
474     )
475     EXECUTE PROCEDURE action.hold_request_clear_map();
476
477 CREATE INDEX hold_request_target_idx ON action.hold_request (target);
478 CREATE INDEX hold_request_usr_idx ON action.hold_request (usr);
479 CREATE INDEX hold_request_pickup_lib_idx ON action.hold_request (pickup_lib);
480 CREATE INDEX hold_request_current_copy_idx ON action.hold_request (current_copy);
481 CREATE INDEX hold_request_prev_check_time_idx ON action.hold_request (prev_check_time);
482 CREATE INDEX hold_request_fulfillment_staff_idx ON action.hold_request ( fulfillment_staff );
483 CREATE INDEX hold_request_requestor_idx         ON action.hold_request ( requestor );
484 CREATE INDEX hold_request_open_idx ON action.hold_request (id) WHERE cancel_time IS NULL AND fulfillment_time IS NULL;
485 CREATE INDEX hold_request_current_copy_before_cap_idx ON action.hold_request (current_copy) WHERE capture_time IS NULL AND cancel_time IS NULL;
486 CREATE UNIQUE INDEX hold_request_capture_protect_idx ON action.hold_request (current_copy) WHERE current_copy IS NOT NULL AND capture_time IS NOT NULL AND cancel_time IS NULL AND fulfillment_time IS NULL;
487 CREATE INDEX hold_request_copy_capture_time_idx ON action.hold_request (current_copy,capture_time);
488 CREATE INDEX hold_request_open_captured_shelf_lib_idx ON action.hold_request (current_shelf_lib) WHERE capture_time IS NOT NULL AND fulfillment_time IS NULL AND (pickup_lib <> current_shelf_lib);
489 CREATE INDEX hold_fulfillment_time_idx ON action.hold_request (fulfillment_time) WHERE fulfillment_time IS NOT NULL;
490 CREATE INDEX hold_request_time_idx ON action.hold_request (request_time);
491
492
493 CREATE TABLE action.hold_request_note (
494
495     id     BIGSERIAL PRIMARY KEY,
496     hold   BIGINT    NOT NULL REFERENCES action.hold_request (id)
497                               ON DELETE CASCADE
498                               DEFERRABLE INITIALLY DEFERRED,
499     title  TEXT      NOT NULL,
500     body   TEXT      NOT NULL,
501     slip   BOOL      NOT NULL DEFAULT FALSE,
502     pub    BOOL      NOT NULL DEFAULT FALSE,
503     staff  BOOL      NOT NULL DEFAULT FALSE  -- created by staff
504
505 );
506 CREATE INDEX ahrn_hold_idx ON action.hold_request_note (hold);
507
508
509 CREATE TABLE action.hold_notification (
510         id              SERIAL                          PRIMARY KEY,
511         hold            INT                             NOT NULL REFERENCES action.hold_request (id)
512                                                                         ON DELETE CASCADE
513                                                                         DEFERRABLE INITIALLY DEFERRED,
514         notify_staff    INT                     REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
515         notify_time     TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW(),
516         method          TEXT                            NOT NULL, -- email address or phone number
517         note            TEXT
518 );
519 CREATE INDEX ahn_hold_idx ON action.hold_notification (hold);
520 CREATE INDEX ahn_notify_staff_idx ON action.hold_notification ( notify_staff );
521
522 CREATE TABLE action.hold_copy_map (
523         id              BIGSERIAL       PRIMARY KEY,
524         hold            INT     NOT NULL REFERENCES action.hold_request (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
525         target_copy     BIGINT  NOT NULL, -- REFERENCES asset.copy (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, -- XXX could be an serial.issuance
526         proximity       NUMERIC,
527         CONSTRAINT copy_once_per_hold UNIQUE (hold,target_copy)
528 );
529 -- CREATE INDEX acm_hold_idx ON action.hold_copy_map (hold);
530 CREATE INDEX acm_copy_idx ON action.hold_copy_map (target_copy);
531
532 CREATE OR REPLACE FUNCTION
533     action.hold_request_regen_copy_maps(
534         hold_id INTEGER, copy_ids INTEGER[]) RETURNS VOID AS $$
535     DELETE FROM action.hold_copy_map WHERE hold = $1;
536     INSERT INTO action.hold_copy_map (hold, target_copy) SELECT $1, UNNEST($2);
537 $$ LANGUAGE SQL;
538
539 CREATE TABLE action.transit_copy (
540         id                      SERIAL                          PRIMARY KEY,
541         source_send_time        TIMESTAMP WITH TIME ZONE,
542         dest_recv_time          TIMESTAMP WITH TIME ZONE,
543         target_copy             BIGINT                          NOT NULL, -- REFERENCES asset.copy (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED, -- XXX could be an serial.issuance
544         source                  INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
545         dest                    INT                             NOT NULL REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
546         prev_hop                INT                             REFERENCES action.transit_copy (id) DEFERRABLE INITIALLY DEFERRED,
547         copy_status             INT                             NOT NULL REFERENCES config.copy_status (id) DEFERRABLE INITIALLY DEFERRED,
548         persistant_transfer     BOOL                            NOT NULL DEFAULT FALSE,
549         prev_dest               INT                             REFERENCES actor.org_unit (id) DEFERRABLE INITIALLY DEFERRED,
550         cancel_time             TIMESTAMP WITH TIME ZONE
551 );
552 CREATE INDEX active_transit_dest_idx ON "action".transit_copy (dest); 
553 CREATE INDEX active_transit_source_idx ON "action".transit_copy (source);
554 CREATE INDEX active_transit_cp_idx ON "action".transit_copy (target_copy);
555
556
557 CREATE TABLE action.hold_transit_copy (
558         hold    INT     REFERENCES action.hold_request (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED
559 ) INHERITS (action.transit_copy);
560 ALTER TABLE action.hold_transit_copy ADD PRIMARY KEY (id);
561 -- ALTER TABLE action.hold_transit_copy ADD CONSTRAINT ahtc_tc_fkey FOREIGN KEY (target_copy) REFERENCES asset.copy (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED; -- XXX could be an serial.issuance
562 CREATE INDEX active_hold_transit_dest_idx ON "action".hold_transit_copy (dest);
563 CREATE INDEX active_hold_transit_source_idx ON "action".hold_transit_copy (source);
564 CREATE INDEX active_hold_transit_cp_idx ON "action".hold_transit_copy (target_copy);
565 CREATE INDEX hold_transit_copy_hold_idx on action.hold_transit_copy (hold);
566
567
568 CREATE TABLE action.unfulfilled_hold_list (
569         id              BIGSERIAL                       PRIMARY KEY,
570         current_copy    BIGINT                          NOT NULL,
571         hold            INT                             NOT NULL,
572         circ_lib        INT                             NOT NULL,
573         fail_time       TIMESTAMP WITH TIME ZONE        NOT NULL DEFAULT NOW()
574 );
575 CREATE INDEX uhr_hold_idx ON action.unfulfilled_hold_list (hold);
576
577 CREATE OR REPLACE VIEW action.unfulfilled_hold_loops AS
578     SELECT  u.hold,
579             c.circ_lib,
580             count(*)
581       FROM  action.unfulfilled_hold_list u
582             JOIN asset.copy c ON (c.id = u.current_copy)
583       GROUP BY 1,2;
584
585 CREATE OR REPLACE VIEW action.unfulfilled_hold_min_loop AS
586     SELECT  hold,
587             min(count)
588       FROM  action.unfulfilled_hold_loops
589       GROUP BY 1;
590
591 CREATE OR REPLACE VIEW action.unfulfilled_hold_innermost_loop AS
592     SELECT  DISTINCT l.*
593       FROM  action.unfulfilled_hold_loops l
594             JOIN action.unfulfilled_hold_min_loop m USING (hold)
595       WHERE l.count = m.min;
596
597 CREATE VIEW action.unfulfilled_hold_max_loop AS
598     SELECT  hold,
599             max(count) AS max
600       FROM  action.unfulfilled_hold_loops
601       GROUP BY 1;
602
603
604 CREATE TABLE action.aged_hold_request (
605     usr_post_code               TEXT,
606     usr_home_ou         INT     NOT NULL,
607     usr_profile         INT     NOT NULL,
608     usr_birth_year              INT,
609     staff_placed        BOOLEAN NOT NULL,
610     LIKE action.hold_request
611 );
612 ALTER TABLE action.aged_hold_request
613       ADD PRIMARY KEY (id),
614       DROP COLUMN usr,
615       DROP COLUMN requestor,
616       DROP COLUMN sms_carrier,
617       ALTER COLUMN phone_notify TYPE BOOLEAN
618             USING CASE WHEN phone_notify IS NULL OR phone_notify = '' THEN FALSE ELSE TRUE END,
619       ALTER COLUMN sms_notify TYPE BOOLEAN
620             USING CASE WHEN sms_notify IS NULL OR sms_notify = '' THEN FALSE ELSE TRUE END,
621       ALTER COLUMN phone_notify SET NOT NULL,
622       ALTER COLUMN sms_notify SET NOT NULL;
623 CREATE INDEX aged_hold_request_target_idx ON action.aged_hold_request (target);
624 CREATE INDEX aged_hold_request_pickup_lib_idx ON action.aged_hold_request (pickup_lib);
625 CREATE INDEX aged_hold_request_current_copy_idx ON action.aged_hold_request (current_copy);
626 CREATE INDEX aged_hold_request_fulfillment_staff_idx ON action.aged_hold_request ( fulfillment_staff );
627
628 CREATE OR REPLACE VIEW action.all_hold_request AS
629     SELECT DISTINCT
630            COALESCE(a.post_code, b.post_code) AS usr_post_code,
631            p.home_ou AS usr_home_ou,
632            p.profile AS usr_profile,
633            EXTRACT(YEAR FROM p.dob)::INT AS usr_birth_year,
634            CAST(ahr.requestor <> ahr.usr AS BOOLEAN) AS staff_placed,
635            ahr.id,
636            ahr.request_time,
637            ahr.capture_time,
638            ahr.fulfillment_time,
639            ahr.checkin_time,
640            ahr.return_time,
641            ahr.prev_check_time,
642            ahr.expire_time,
643            ahr.cancel_time,
644            ahr.cancel_cause,
645            ahr.cancel_note,
646            ahr.target,
647            ahr.current_copy,
648            ahr.fulfillment_staff,
649            ahr.fulfillment_lib,
650            ahr.request_lib,
651            ahr.selection_ou,
652            ahr.selection_depth,
653            ahr.pickup_lib,
654            ahr.hold_type,
655            ahr.holdable_formats,
656            CASE
657            WHEN ahr.phone_notify IS NULL THEN FALSE
658            WHEN ahr.phone_notify = '' THEN FALSE
659            ELSE TRUE
660            END AS phone_notify,
661            ahr.email_notify,
662            CASE
663            WHEN ahr.sms_notify IS NULL THEN FALSE
664            WHEN ahr.sms_notify = '' THEN FALSE
665            ELSE TRUE
666            END AS sms_notify,
667            ahr.frozen,
668            ahr.thaw_date,
669            ahr.shelf_time,
670            ahr.cut_in_line,
671            ahr.mint_condition,
672            ahr.shelf_expire_time,
673            ahr.current_shelf_lib,
674            ahr.behind_desk
675     FROM action.hold_request ahr
676          JOIN actor.usr p ON (ahr.usr = p.id)
677          LEFT JOIN actor.usr_address a ON (p.mailing_address = a.id)
678          LEFT JOIN actor.usr_address b ON (p.billing_address = b.id)
679     UNION ALL
680     SELECT 
681            usr_post_code,
682            usr_home_ou,
683            usr_profile,
684            usr_birth_year,
685            staff_placed,
686            id,
687            request_time,
688            capture_time,
689            fulfillment_time,
690            checkin_time,
691            return_time,
692            prev_check_time,
693            expire_time,
694            cancel_time,
695            cancel_cause,
696            cancel_note,
697            target,
698            current_copy,
699            fulfillment_staff,
700            fulfillment_lib,
701            request_lib,
702            selection_ou,
703            selection_depth,
704            pickup_lib,
705            hold_type,
706            holdable_formats,
707            phone_notify,
708            email_notify,
709            sms_notify,
710            frozen,
711            thaw_date,
712            shelf_time,
713            cut_in_line,
714            mint_condition,
715            shelf_expire_time,
716            current_shelf_lib,
717            behind_desk
718     FROM action.aged_hold_request;
719
720 CREATE OR REPLACE FUNCTION action.age_hold_on_delete () RETURNS TRIGGER AS $$
721 DECLARE
722 BEGIN
723     -- Archive a copy of the old row to action.aged_hold_request
724
725     INSERT INTO action.aged_hold_request
726            (usr_post_code,
727             usr_home_ou,
728             usr_profile,
729             usr_birth_year,
730             staff_placed,
731             id,
732             request_time,
733             capture_time,
734             fulfillment_time,
735             checkin_time,
736             return_time,
737             prev_check_time,
738             expire_time,
739             cancel_time,
740             cancel_cause,
741             cancel_note,
742             target,
743             current_copy,
744             fulfillment_staff,
745             fulfillment_lib,
746             request_lib,
747             selection_ou,
748             selection_depth,
749             pickup_lib,
750             hold_type,
751             holdable_formats,
752             phone_notify,
753             email_notify,
754             sms_notify,
755             frozen,
756             thaw_date,
757             shelf_time,
758             cut_in_line,
759             mint_condition,
760             shelf_expire_time,
761             current_shelf_lib,
762             behind_desk)
763       SELECT 
764            usr_post_code,
765            usr_home_ou,
766            usr_profile,
767            usr_birth_year,
768            staff_placed,
769            id,
770            request_time,
771            capture_time,
772            fulfillment_time,
773            checkin_time,
774            return_time,
775            prev_check_time,
776            expire_time,
777            cancel_time,
778            cancel_cause,
779            cancel_note,
780            target,
781            current_copy,
782            fulfillment_staff,
783            fulfillment_lib,
784            request_lib,
785            selection_ou,
786            selection_depth,
787            pickup_lib,
788            hold_type,
789            holdable_formats,
790            phone_notify,
791            email_notify,
792            sms_notify,
793            frozen,
794            thaw_date,
795            shelf_time,
796            cut_in_line,
797            mint_condition,
798            shelf_expire_time,
799            current_shelf_lib,
800            behind_desk
801         FROM action.all_hold_request WHERE id = OLD.id;
802
803     RETURN OLD;
804 END;
805 $$ LANGUAGE 'plpgsql';
806
807 CREATE TRIGGER action_hold_request_aging_tgr
808         BEFORE DELETE ON action.hold_request
809         FOR EACH ROW
810         EXECUTE PROCEDURE action.age_hold_on_delete ();
811
812 CREATE TABLE action.fieldset (
813     id              SERIAL          PRIMARY KEY,
814     owner           INT             NOT NULL REFERENCES actor.usr (id)
815                                     DEFERRABLE INITIALLY DEFERRED,
816         owning_lib      INT             NOT NULL REFERENCES actor.org_unit (id)
817                                     DEFERRABLE INITIALLY DEFERRED,
818         status          TEXT            NOT NULL
819                                         CONSTRAINT valid_status CHECK ( status in
820                                                                         ( 'PENDING', 'APPLIED', 'ERROR' )),
821     creation_time   TIMESTAMPTZ     NOT NULL DEFAULT NOW(),
822     scheduled_time  TIMESTAMPTZ,
823     applied_time    TIMESTAMPTZ,
824     classname       TEXT            NOT NULL, -- an IDL class name
825     name            TEXT            NOT NULL,
826     stored_query    INT             REFERENCES query.stored_query (id)
827                                     DEFERRABLE INITIALLY DEFERRED,
828     pkey_value      TEXT,
829         CONSTRAINT lib_name_unique UNIQUE (owning_lib, name),
830     CONSTRAINT fieldset_one_or_the_other CHECK (
831         (stored_query IS NOT NULL AND pkey_value IS NULL) OR
832         (pkey_value IS NOT NULL AND stored_query IS NULL)
833     )
834         -- the CHECK constraint means we can update the fields for a single
835         -- row without all the extra overhead involved in a query
836 );
837
838 CREATE INDEX action_fieldset_sched_time_idx ON action.fieldset( scheduled_time );
839 CREATE INDEX action_owner_idx               ON action.fieldset( owner );
840
841
842 CREATE TABLE action.fieldset_col_val (
843     id              SERIAL  PRIMARY KEY,
844     fieldset        INT     NOT NULL REFERENCES action.fieldset
845                                          ON DELETE CASCADE
846                                          DEFERRABLE INITIALLY DEFERRED,
847     col             TEXT    NOT NULL,  -- "field" from the idl ... the column on the table
848     val             TEXT,              -- value for the column ... NULL means, well, NULL
849     CONSTRAINT fieldset_col_once_per_set UNIQUE (fieldset, col)
850 );
851
852
853 -- represents a circ chain summary
854 CREATE TYPE action.circ_chain_summary AS (
855     num_circs INTEGER,
856     start_time TIMESTAMP WITH TIME ZONE,
857     checkout_workstation TEXT,
858     last_renewal_time TIMESTAMP WITH TIME ZONE, -- NULL if no renewals
859     last_stop_fines TEXT,
860     last_stop_fines_time TIMESTAMP WITH TIME ZONE,
861     last_renewal_workstation TEXT, -- NULL if no renewals
862     last_checkin_workstation TEXT,
863     last_checkin_time TIMESTAMP WITH TIME ZONE,
864     last_checkin_scan_time TIMESTAMP WITH TIME ZONE
865 );
866
867
868 CREATE OR REPLACE FUNCTION action.circ_chain ( ctx_circ_id BIGINT ) RETURNS SETOF action.circulation AS $$
869 DECLARE
870     tmp_circ action.circulation%ROWTYPE;
871     circ_0 action.circulation%ROWTYPE;
872 BEGIN
873
874     SELECT INTO tmp_circ * FROM action.circulation WHERE id = ctx_circ_id;
875
876     IF tmp_circ IS NULL THEN
877         RETURN NEXT tmp_circ;
878     END IF;
879     circ_0 := tmp_circ;
880
881     -- find the front of the chain
882     WHILE TRUE LOOP
883         SELECT INTO tmp_circ * FROM action.circulation WHERE id = tmp_circ.parent_circ;
884         IF tmp_circ IS NULL THEN
885             EXIT;
886         END IF;
887         circ_0 := tmp_circ;
888     END LOOP;
889
890     -- now send the circs to the caller, oldest to newest
891     tmp_circ := circ_0;
892     WHILE TRUE LOOP
893         IF tmp_circ IS NULL THEN
894             EXIT;
895         END IF;
896         RETURN NEXT tmp_circ;
897         SELECT INTO tmp_circ * FROM action.circulation WHERE parent_circ = tmp_circ.id;
898     END LOOP;
899
900 END;
901 $$ LANGUAGE 'plpgsql';
902
903 CREATE OR REPLACE FUNCTION action.summarize_circ_chain ( ctx_circ_id BIGINT ) RETURNS action.circ_chain_summary AS $$
904
905 DECLARE
906
907     -- first circ in the chain
908     circ_0 action.circulation%ROWTYPE;
909
910     -- last circ in the chain
911     circ_n action.circulation%ROWTYPE;
912
913     -- circ chain under construction
914     chain action.circ_chain_summary;
915     tmp_circ action.circulation%ROWTYPE;
916
917 BEGIN
918     
919     chain.num_circs := 0;
920     FOR tmp_circ IN SELECT * FROM action.circ_chain(ctx_circ_id) LOOP
921
922         IF chain.num_circs = 0 THEN
923             circ_0 := tmp_circ;
924         END IF;
925
926         chain.num_circs := chain.num_circs + 1;
927         circ_n := tmp_circ;
928     END LOOP;
929
930     chain.start_time := circ_0.xact_start;
931     chain.last_stop_fines := circ_n.stop_fines;
932     chain.last_stop_fines_time := circ_n.stop_fines_time;
933     chain.last_checkin_time := circ_n.checkin_time;
934     chain.last_checkin_scan_time := circ_n.checkin_scan_time;
935     SELECT INTO chain.checkout_workstation name FROM actor.workstation WHERE id = circ_0.workstation;
936     SELECT INTO chain.last_checkin_workstation name FROM actor.workstation WHERE id = circ_n.checkin_workstation;
937
938     IF chain.num_circs > 1 THEN
939         chain.last_renewal_time := circ_n.xact_start;
940         SELECT INTO chain.last_renewal_workstation name FROM actor.workstation WHERE id = circ_n.workstation;
941     END IF;
942
943     RETURN chain;
944
945 END;
946 $$ LANGUAGE 'plpgsql';
947
948 -- same as action.circ_chain, but returns action.all_circulation 
949 -- rows which may include aged circulations.
950 CREATE OR REPLACE FUNCTION action.all_circ_chain (ctx_circ_id INTEGER) 
951     RETURNS SETOF action.all_circulation_slim AS $$
952 DECLARE
953     tmp_circ action.all_circulation_slim%ROWTYPE;
954     circ_0 action.all_circulation_slim%ROWTYPE;
955 BEGIN
956
957     SELECT INTO tmp_circ * FROM action.all_circulation_slim WHERE id = ctx_circ_id;
958
959     IF tmp_circ IS NULL THEN
960         RETURN NEXT tmp_circ;
961     END IF;
962     circ_0 := tmp_circ;
963
964     -- find the front of the chain
965     WHILE TRUE LOOP
966         SELECT INTO tmp_circ * FROM action.all_circulation_slim 
967             WHERE id = tmp_circ.parent_circ;
968         IF tmp_circ IS NULL THEN
969             EXIT;
970         END IF;
971         circ_0 := tmp_circ;
972     END LOOP;
973
974     -- now send the circs to the caller, oldest to newest
975     tmp_circ := circ_0;
976     WHILE TRUE LOOP
977         IF tmp_circ IS NULL THEN
978             EXIT;
979         END IF;
980         RETURN NEXT tmp_circ;
981         SELECT INTO tmp_circ * FROM action.all_circulation_slim 
982             WHERE parent_circ = tmp_circ.id;
983     END LOOP;
984
985 END;
986 $$ LANGUAGE 'plpgsql';
987
988 -- same as action.summarize_circ_chain, but returns data collected
989 -- from action.all_circulation, which may include aged circulations.
990 CREATE OR REPLACE FUNCTION action.summarize_all_circ_chain 
991     (ctx_circ_id INTEGER) RETURNS action.circ_chain_summary AS $$
992
993 DECLARE
994
995     -- first circ in the chain
996     circ_0 action.all_circulation_slim%ROWTYPE;
997
998     -- last circ in the chain
999     circ_n action.all_circulation_slim%ROWTYPE;
1000
1001     -- circ chain under construction
1002     chain action.circ_chain_summary;
1003     tmp_circ action.all_circulation_slim%ROWTYPE;
1004
1005 BEGIN
1006     
1007     chain.num_circs := 0;
1008     FOR tmp_circ IN SELECT * FROM action.all_circ_chain(ctx_circ_id) LOOP
1009
1010         IF chain.num_circs = 0 THEN
1011             circ_0 := tmp_circ;
1012         END IF;
1013
1014         chain.num_circs := chain.num_circs + 1;
1015         circ_n := tmp_circ;
1016     END LOOP;
1017
1018     chain.start_time := circ_0.xact_start;
1019     chain.last_stop_fines := circ_n.stop_fines;
1020     chain.last_stop_fines_time := circ_n.stop_fines_time;
1021     chain.last_checkin_time := circ_n.checkin_time;
1022     chain.last_checkin_scan_time := circ_n.checkin_scan_time;
1023     SELECT INTO chain.checkout_workstation name FROM actor.workstation WHERE id = circ_0.workstation;
1024     SELECT INTO chain.last_checkin_workstation name FROM actor.workstation WHERE id = circ_n.checkin_workstation;
1025
1026     IF chain.num_circs > 1 THEN
1027         chain.last_renewal_time := circ_n.xact_start;
1028         SELECT INTO chain.last_renewal_workstation name FROM actor.workstation WHERE id = circ_n.workstation;
1029     END IF;
1030
1031     RETURN chain;
1032
1033 END;
1034 $$ LANGUAGE 'plpgsql';
1035
1036 CREATE OR REPLACE FUNCTION action.usr_visible_holds (usr_id INT) RETURNS SETOF action.hold_request AS $func$
1037 DECLARE
1038     h               action.hold_request%ROWTYPE;
1039     view_age        INTERVAL;
1040     view_count      INT;
1041     usr_view_count  actor.usr_setting%ROWTYPE;
1042     usr_view_age    actor.usr_setting%ROWTYPE;
1043     usr_view_start  actor.usr_setting%ROWTYPE;
1044 BEGIN
1045     SELECT * INTO usr_view_count FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_count';
1046     SELECT * INTO usr_view_age FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_age';
1047     SELECT * INTO usr_view_start FROM actor.usr_setting WHERE usr = usr_id AND name = 'history.hold.retention_start';
1048
1049     FOR h IN
1050         SELECT  *
1051           FROM  action.hold_request
1052           WHERE usr = usr_id
1053                 AND fulfillment_time IS NULL
1054                 AND cancel_time IS NULL
1055           ORDER BY request_time DESC
1056     LOOP
1057         RETURN NEXT h;
1058     END LOOP;
1059
1060     IF usr_view_start.value IS NULL THEN
1061         RETURN;
1062     END IF;
1063
1064     IF usr_view_age.value IS NOT NULL THEN
1065         -- User opted in and supplied a retention age
1066         IF oils_json_to_text(usr_view_age.value)::INTERVAL > AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ) THEN
1067             view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
1068         ELSE
1069             view_age := oils_json_to_text(usr_view_age.value)::INTERVAL;
1070         END IF;
1071     ELSE
1072         -- User opted in
1073         view_age := AGE(NOW(), oils_json_to_text(usr_view_start.value)::TIMESTAMPTZ);
1074     END IF;
1075
1076     IF usr_view_count.value IS NOT NULL THEN
1077         view_count := oils_json_to_text(usr_view_count.value)::INT;
1078     ELSE
1079         view_count := 1000;
1080     END IF;
1081
1082     -- show some fulfilled/canceled holds
1083     FOR h IN
1084         SELECT  *
1085           FROM  action.hold_request
1086           WHERE usr = usr_id
1087                 AND ( fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL )
1088                 AND COALESCE(fulfillment_time, cancel_time) > NOW() - view_age
1089           ORDER BY COALESCE(fulfillment_time, cancel_time) DESC
1090           LIMIT view_count
1091     LOOP
1092         RETURN NEXT h;
1093     END LOOP;
1094
1095     RETURN;
1096 END;
1097 $func$ LANGUAGE PLPGSQL;
1098
1099 CREATE OR REPLACE FUNCTION action.purge_circulations () RETURNS INT AS $func$
1100 DECLARE
1101     org_keep_age    INTERVAL;
1102     org_use_last    BOOL = false;
1103     org_age_is_min  BOOL = false;
1104     org_keep_count  INT;
1105
1106     keep_age        INTERVAL;
1107
1108     target_acp      RECORD;
1109     circ_chain_head action.circulation%ROWTYPE;
1110     circ_chain_tail action.circulation%ROWTYPE;
1111
1112     count_purged    INT;
1113     num_incomplete  INT;
1114
1115     last_finished   TIMESTAMP WITH TIME ZONE;
1116 BEGIN
1117
1118     count_purged := 0;
1119
1120     SELECT value::INTERVAL INTO org_keep_age FROM config.global_flag WHERE name = 'history.circ.retention_age' AND enabled;
1121
1122     SELECT value::INT INTO org_keep_count FROM config.global_flag WHERE name = 'history.circ.retention_count' AND enabled;
1123     IF org_keep_count IS NULL THEN
1124         RETURN count_purged; -- Gimme a count to keep, or I keep them all, forever
1125     END IF;
1126
1127     SELECT enabled INTO org_use_last FROM config.global_flag WHERE name = 'history.circ.retention_uses_last_finished';
1128     SELECT enabled INTO org_age_is_min FROM config.global_flag WHERE name = 'history.circ.retention_age_is_min';
1129
1130     -- First, find copies with more than keep_count non-renewal circs
1131     FOR target_acp IN
1132         SELECT  target_copy,
1133                 COUNT(*) AS total_real_circs
1134           FROM  action.circulation
1135           WHERE parent_circ IS NULL
1136                 AND xact_finish IS NOT NULL
1137           GROUP BY target_copy
1138           HAVING COUNT(*) > org_keep_count
1139     LOOP
1140         -- And, for those, select circs that are finished and older than keep_age
1141         FOR circ_chain_head IN
1142             -- For reference, the subquery uses a window function to order the circs newest to oldest and number them
1143             -- The outer query then uses that information to skip the most recent set the library wants to keep
1144             -- End result is we don't care what order they come out in, as they are all potentials for deletion.
1145             SELECT ac.* FROM action.circulation ac JOIN (
1146               SELECT  rank() OVER (ORDER BY xact_start DESC), ac.id
1147                 FROM  action.circulation ac
1148                 WHERE ac.target_copy = target_acp.target_copy
1149                   AND ac.parent_circ IS NULL
1150                 ORDER BY ac.xact_start ) ranked USING (id)
1151                 WHERE ranked.rank > org_keep_count
1152         LOOP
1153
1154             SELECT * INTO circ_chain_tail FROM action.circ_chain(circ_chain_head.id) ORDER BY xact_start DESC LIMIT 1;
1155             SELECT COUNT(CASE WHEN xact_finish IS NULL THEN 1 ELSE NULL END), MAX(xact_finish) INTO num_incomplete, last_finished FROM action.circ_chain(circ_chain_head.id);
1156             CONTINUE WHEN circ_chain_tail.xact_finish IS NULL OR num_incomplete > 0;
1157
1158             IF NOT org_use_last THEN
1159                 last_finished := circ_chain_tail.xact_finish;
1160             END IF;
1161
1162             keep_age := COALESCE( org_keep_age, '2000 years'::INTERVAL );
1163
1164             IF org_age_is_min THEN
1165                 keep_age := GREATEST( keep_age, org_keep_age );
1166             END IF;
1167
1168             CONTINUE WHEN AGE(NOW(), last_finished) < keep_age;
1169
1170             -- We've passed the purging tests, purge the circ chain starting at the end
1171             -- A trigger should auto-purge the rest of the chain.
1172             DELETE FROM action.circulation WHERE id = circ_chain_tail.id;
1173
1174             count_purged := count_purged + 1;
1175
1176         END LOOP;
1177     END LOOP;
1178
1179     return count_purged;
1180 END;
1181 $func$ LANGUAGE PLPGSQL;
1182
1183 CREATE OR REPLACE FUNCTION action.purge_holds() RETURNS INT AS $func$
1184 DECLARE
1185   current_hold RECORD;
1186   purged_holds INT;
1187   cgf_d INTERVAL;
1188   cgf_f INTERVAL;
1189   cgf_c INTERVAL;
1190   prev_usr INT;
1191   user_start TIMESTAMPTZ;
1192   user_age INTERVAL;
1193   user_count INT;
1194 BEGIN
1195   purged_holds := 0;
1196   SELECT INTO cgf_d value::INTERVAL FROM config.global_flag WHERE name = 'history.hold.retention_age' AND enabled;
1197   SELECT INTO cgf_f value::INTERVAL FROM config.global_flag WHERE name = 'history.hold.retention_age_fulfilled' AND enabled;
1198   SELECT INTO cgf_c value::INTERVAL FROM config.global_flag WHERE name = 'history.hold.retention_age_canceled' AND enabled;
1199   FOR current_hold IN
1200     SELECT
1201       rank() OVER (PARTITION BY usr ORDER BY COALESCE(fulfillment_time, cancel_time) DESC),
1202       cgf_cs.value::INTERVAL as cgf_cs,
1203       ahr.*
1204     FROM
1205       action.hold_request ahr
1206       LEFT JOIN config.global_flag cgf_cs ON (ahr.cancel_cause IS NOT NULL AND cgf_cs.name = 'history.hold.retention_age_canceled_' || ahr.cancel_cause AND cgf_cs.enabled)
1207     WHERE
1208       (fulfillment_time IS NOT NULL OR cancel_time IS NOT NULL)
1209   LOOP
1210     IF prev_usr IS NULL OR prev_usr != current_hold.usr THEN
1211       prev_usr := current_hold.usr;
1212       SELECT INTO user_start oils_json_to_text(value)::TIMESTAMPTZ FROM actor.usr_setting WHERE usr = prev_usr AND name = 'history.hold.retention_start';
1213       SELECT INTO user_age oils_json_to_text(value)::INTERVAL FROM actor.usr_setting WHERE usr = prev_usr AND name = 'history.hold.retention_age';
1214       SELECT INTO user_count oils_json_to_text(value)::INT FROM actor.usr_setting WHERE usr = prev_usr AND name = 'history.hold.retention_count';
1215       IF user_start IS NOT NULL THEN
1216         user_age := LEAST(user_age, AGE(NOW(), user_start));
1217       END IF;
1218       IF user_count IS NULL THEN
1219         user_count := 1000; -- Assumption based on the user visible holds routine
1220       END IF;
1221     END IF;
1222     -- Library keep age trumps user keep anything, for purposes of being able to hold on to things when staff canceled and such.
1223     IF current_hold.fulfillment_time IS NOT NULL AND current_hold.fulfillment_time > NOW() - COALESCE(cgf_f, cgf_d) THEN
1224       CONTINUE;
1225     END IF;
1226     IF current_hold.cancel_time IS NOT NULL AND current_hold.cancel_time > NOW() - COALESCE(current_hold.cgf_cs, cgf_c, cgf_d) THEN
1227       CONTINUE;
1228     END IF;
1229
1230     -- User keep age needs combining with count. If too old AND within the count, keep!
1231     IF user_start IS NOT NULL AND COALESCE(current_hold.fulfillment_time, current_hold.cancel_time) > NOW() - user_age AND current_hold.rank <= user_count THEN
1232       CONTINUE;
1233     END IF;
1234
1235     -- All checks should have passed, delete!
1236     DELETE FROM action.hold_request WHERE id = current_hold.id;
1237     purged_holds := purged_holds + 1;
1238   END LOOP;
1239   RETURN purged_holds;
1240 END;
1241 $func$ LANGUAGE plpgsql;
1242
1243 CREATE OR REPLACE FUNCTION action.apply_fieldset(
1244         fieldset_id IN INT,        -- id from action.fieldset
1245         table_name  IN TEXT,       -- table to be updated
1246         pkey_name   IN TEXT,       -- name of primary key column in that table
1247         query       IN TEXT        -- query constructed by qstore (for query-based
1248                                    --    fieldsets only; otherwise null
1249 )
1250 RETURNS TEXT AS $$
1251 DECLARE
1252         statement TEXT;
1253         fs_status TEXT;
1254         fs_pkey_value TEXT;
1255         fs_query TEXT;
1256         sep CHAR;
1257         status_code TEXT;
1258         msg TEXT;
1259         update_count INT;
1260         cv RECORD;
1261 BEGIN
1262         -- Sanity checks
1263         IF fieldset_id IS NULL THEN
1264                 RETURN 'Fieldset ID parameter is NULL';
1265         END IF;
1266         IF table_name IS NULL THEN
1267                 RETURN 'Table name parameter is NULL';
1268         END IF;
1269         IF pkey_name IS NULL THEN
1270                 RETURN 'Primary key name parameter is NULL';
1271         END IF;
1272         --
1273         statement := 'UPDATE ' || table_name || ' SET';
1274         --
1275         SELECT
1276                 status,
1277                 quote_literal( pkey_value )
1278         INTO
1279                 fs_status,
1280                 fs_pkey_value
1281         FROM
1282                 action.fieldset
1283         WHERE
1284                 id = fieldset_id;
1285         --
1286         IF fs_status IS NULL THEN
1287                 RETURN 'No fieldset found for id = ' || fieldset_id;
1288         ELSIF fs_status = 'APPLIED' THEN
1289                 RETURN 'Fieldset ' || fieldset_id || ' has already been applied';
1290         END IF;
1291         --
1292         sep := '';
1293         FOR cv IN
1294                 SELECT  col,
1295                                 val
1296                 FROM    action.fieldset_col_val
1297                 WHERE   fieldset = fieldset_id
1298         LOOP
1299                 statement := statement || sep || ' ' || cv.col
1300                                          || ' = ' || coalesce( quote_literal( cv.val ), 'NULL' );
1301                 sep := ',';
1302         END LOOP;
1303         --
1304         IF sep = '' THEN
1305                 RETURN 'Fieldset ' || fieldset_id || ' has no column values defined';
1306         END IF;
1307         --
1308         -- Add the WHERE clause.  This differs according to whether it's a
1309         -- single-row fieldset or a query-based fieldset.
1310         --
1311         IF query IS NULL        AND fs_pkey_value IS NULL THEN
1312                 RETURN 'Incomplete fieldset: neither a primary key nor a query available';
1313         ELSIF query IS NOT NULL AND fs_pkey_value IS NULL THEN
1314             fs_query := rtrim( query, ';' );
1315             statement := statement || ' WHERE ' || pkey_name || ' IN ( '
1316                          || fs_query || ' );';
1317         ELSIF query IS NULL     AND fs_pkey_value IS NOT NULL THEN
1318                 statement := statement || ' WHERE ' || pkey_name || ' = '
1319                                      || fs_pkey_value || ';';
1320         ELSE  -- both are not null
1321                 RETURN 'Ambiguous fieldset: both a primary key and a query provided';
1322         END IF;
1323         --
1324         -- Execute the update
1325         --
1326         BEGIN
1327                 EXECUTE statement;
1328                 GET DIAGNOSTICS update_count = ROW_COUNT;
1329                 --
1330                 IF UPDATE_COUNT > 0 THEN
1331                         status_code := 'APPLIED';
1332                         msg := NULL;
1333                 ELSE
1334                         status_code := 'ERROR';
1335                         msg := 'No eligible rows found for fieldset ' || fieldset_id;
1336         END IF;
1337         EXCEPTION WHEN OTHERS THEN
1338                 status_code := 'ERROR';
1339                 msg := 'Unable to apply fieldset ' || fieldset_id
1340                            || ': ' || sqlerrm;
1341         END;
1342         --
1343         -- Update fieldset status
1344         --
1345         UPDATE action.fieldset
1346         SET status       = status_code,
1347             applied_time = now()
1348         WHERE id = fieldset_id;
1349         --
1350         RETURN msg;
1351 END;
1352 $$ LANGUAGE plpgsql;
1353
1354 COMMENT ON FUNCTION action.apply_fieldset( INT, TEXT, TEXT, TEXT ) IS $$
1355 Applies a specified fieldset, using a supplied table name and primary
1356 key name.  The query parameter should be non-null only for
1357 query-based fieldsets.
1358
1359 Returns NULL if successful, or an error message if not.
1360 $$;
1361
1362 CREATE OR REPLACE FUNCTION action.hold_copy_calculated_proximity(
1363     ahr_id INT,
1364     acp_id BIGINT,
1365     copy_context_ou INT DEFAULT NULL
1366     -- TODO maybe? hold_context_ou INT DEFAULT NULL.  This would optionally
1367     -- support an "ahprox" measurement: adjust prox between copy circ lib and
1368     -- hold request lib, but I'm unsure whether to use this theoretical
1369     -- argument only in the baseline calculation or later in the other
1370     -- queries in this function.
1371 ) RETURNS NUMERIC AS $f$
1372 DECLARE
1373     aoupa           actor.org_unit_proximity_adjustment%ROWTYPE;
1374     ahr             action.hold_request%ROWTYPE;
1375     acp             asset.copy%ROWTYPE;
1376     acn             asset.call_number%ROWTYPE;
1377     acl             asset.copy_location%ROWTYPE;
1378     baseline_prox   NUMERIC;
1379
1380     icl_list        INT[];
1381     iol_list        INT[];
1382     isl_list        INT[];
1383     hpl_list        INT[];
1384     hrl_list        INT[];
1385
1386 BEGIN
1387
1388     SELECT * INTO ahr FROM action.hold_request WHERE id = ahr_id;
1389     SELECT * INTO acp FROM asset.copy WHERE id = acp_id;
1390     SELECT * INTO acn FROM asset.call_number WHERE id = acp.call_number;
1391     SELECT * INTO acl FROM asset.copy_location WHERE id = acp.location;
1392
1393     IF copy_context_ou IS NULL THEN
1394         copy_context_ou := acp.circ_lib;
1395     END IF;
1396
1397     -- First, gather the baseline proximity of "here" to pickup lib
1398     SELECT prox INTO baseline_prox FROM actor.org_unit_proximity WHERE from_org = copy_context_ou AND to_org = ahr.pickup_lib;
1399
1400     -- Find any absolute adjustments, and set the baseline prox to that
1401     SELECT  adj.* INTO aoupa
1402       FROM  actor.org_unit_proximity_adjustment adj
1403             LEFT JOIN actor.org_unit_ancestors_distance(copy_context_ou) acp_cl ON (acp_cl.id = adj.item_circ_lib)
1404             LEFT JOIN actor.org_unit_ancestors_distance(acn.owning_lib) acn_ol ON (acn_ol.id = adj.item_owning_lib)
1405             LEFT JOIN actor.org_unit_ancestors_distance(acl.owning_lib) acl_ol ON (acl_ol.id = adj.copy_location)
1406             LEFT JOIN actor.org_unit_ancestors_distance(ahr.pickup_lib) ahr_pl ON (ahr_pl.id = adj.hold_pickup_lib)
1407             LEFT JOIN actor.org_unit_ancestors_distance(ahr.request_lib) ahr_rl ON (ahr_rl.id = adj.hold_request_lib)
1408       WHERE (adj.circ_mod IS NULL OR adj.circ_mod = acp.circ_modifier) AND
1409             (adj.item_circ_lib IS NULL OR adj.item_circ_lib = acp_cl.id) AND
1410             (adj.item_owning_lib IS NULL OR adj.item_owning_lib = acn_ol.id) AND
1411             (adj.copy_location IS NULL OR adj.copy_location = acl_ol.id) AND
1412             (adj.hold_pickup_lib IS NULL OR adj.hold_pickup_lib = ahr_pl.id) AND
1413             (adj.hold_request_lib IS NULL OR adj.hold_request_lib = ahr_rl.id) AND
1414             absolute_adjustment AND
1415             COALESCE(acp_cl.id, acn_ol.id, acl_ol.id, ahr_pl.id, ahr_rl.id) IS NOT NULL
1416       ORDER BY
1417             COALESCE(acp_cl.distance,999)
1418                 + COALESCE(acn_ol.distance,999)
1419                 + COALESCE(acl_ol.distance,999)
1420                 + COALESCE(ahr_pl.distance,999)
1421                 + COALESCE(ahr_rl.distance,999),
1422             adj.pos
1423       LIMIT 1;
1424
1425     IF FOUND THEN
1426         baseline_prox := aoupa.prox_adjustment;
1427     END IF;
1428
1429     -- Now find any relative adjustments, and change the baseline prox based on them
1430     FOR aoupa IN
1431         SELECT  adj.* 
1432           FROM  actor.org_unit_proximity_adjustment adj
1433                 LEFT JOIN actor.org_unit_ancestors_distance(copy_context_ou) acp_cl ON (acp_cl.id = adj.item_circ_lib)
1434                 LEFT JOIN actor.org_unit_ancestors_distance(acn.owning_lib) acn_ol ON (acn_ol.id = adj.item_owning_lib)
1435                 LEFT JOIN actor.org_unit_ancestors_distance(acl.owning_lib) acl_ol ON (acn_ol.id = adj.copy_location)
1436                 LEFT JOIN actor.org_unit_ancestors_distance(ahr.pickup_lib) ahr_pl ON (ahr_pl.id = adj.hold_pickup_lib)
1437                 LEFT JOIN actor.org_unit_ancestors_distance(ahr.request_lib) ahr_rl ON (ahr_rl.id = adj.hold_request_lib)
1438           WHERE (adj.circ_mod IS NULL OR adj.circ_mod = acp.circ_modifier) AND
1439                 (adj.item_circ_lib IS NULL OR adj.item_circ_lib = acp_cl.id) AND
1440                 (adj.item_owning_lib IS NULL OR adj.item_owning_lib = acn_ol.id) AND
1441                 (adj.copy_location IS NULL OR adj.copy_location = acl_ol.id) AND
1442                 (adj.hold_pickup_lib IS NULL OR adj.hold_pickup_lib = ahr_pl.id) AND
1443                 (adj.hold_request_lib IS NULL OR adj.hold_request_lib = ahr_rl.id) AND
1444                 NOT absolute_adjustment AND
1445                 COALESCE(acp_cl.id, acn_ol.id, acl_ol.id, ahr_pl.id, ahr_rl.id) IS NOT NULL
1446     LOOP
1447         baseline_prox := baseline_prox + aoupa.prox_adjustment;
1448     END LOOP;
1449
1450     RETURN baseline_prox;
1451 END;
1452 $f$ LANGUAGE PLPGSQL;
1453
1454 CREATE OR REPLACE FUNCTION action.hold_copy_calculated_proximity_update () RETURNS TRIGGER AS $f$
1455 BEGIN
1456     NEW.proximity := action.hold_copy_calculated_proximity(NEW.hold,NEW.target_copy);
1457     RETURN NEW;
1458 END;
1459 $f$ LANGUAGE PLPGSQL;
1460
1461 CREATE TRIGGER hold_copy_proximity_update_tgr BEFORE INSERT OR UPDATE ON action.hold_copy_map FOR EACH ROW EXECUTE PROCEDURE action.hold_copy_calculated_proximity_update ();
1462
1463 CREATE TABLE action.usr_circ_history (
1464     id           BIGSERIAL PRIMARY KEY,
1465     usr          INTEGER NOT NULL REFERENCES actor.usr(id)
1466                  DEFERRABLE INITIALLY DEFERRED,
1467     xact_start   TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW(),
1468     target_copy  BIGINT NOT NULL, -- asset.copy.id / serial.unit.id
1469     due_date     TIMESTAMP WITH TIME ZONE NOT NULL,
1470     checkin_time TIMESTAMP WITH TIME ZONE,
1471     source_circ  BIGINT REFERENCES action.circulation(id)
1472                  ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED
1473 );
1474
1475 CREATE INDEX action_usr_circ_history_usr_idx ON action.usr_circ_history ( usr );
1476
1477 CREATE TRIGGER action_usr_circ_history_target_copy_trig 
1478     AFTER INSERT OR UPDATE ON action.usr_circ_history 
1479     FOR EACH ROW EXECUTE PROCEDURE evergreen.fake_fkey_tgr('target_copy');
1480
1481 CREATE OR REPLACE FUNCTION action.maintain_usr_circ_history() 
1482     RETURNS TRIGGER AS $FUNK$
1483 DECLARE
1484     cur_circ  BIGINT;
1485     first_circ BIGINT;
1486 BEGIN                                                                          
1487
1488     -- Any retention value signifies history is enabled.
1489     -- This assumes that clearing these values via external 
1490     -- process deletes the action.usr_circ_history rows.
1491     -- TODO: replace these settings w/ a single bool setting?
1492     PERFORM 1 FROM actor.usr_setting 
1493         WHERE usr = NEW.usr AND value IS NOT NULL AND name IN (
1494             'history.circ.retention_age', 
1495             'history.circ.retention_start'
1496         );
1497
1498     IF NOT FOUND THEN
1499         RETURN NEW;
1500     END IF;
1501
1502     IF TG_OP = 'INSERT' AND NEW.parent_circ IS NULL THEN
1503         -- Starting a new circulation.  Insert the history row.
1504         INSERT INTO action.usr_circ_history 
1505             (usr, xact_start, target_copy, due_date, source_circ)
1506         VALUES (
1507             NEW.usr, 
1508             NEW.xact_start, 
1509             NEW.target_copy, 
1510             NEW.due_date, 
1511             NEW.id
1512         );
1513
1514         RETURN NEW;
1515     END IF;
1516
1517     -- find the first and last circs in the circ chain 
1518     -- for the currently modified circ.
1519     FOR cur_circ IN SELECT id FROM action.circ_chain(NEW.id) LOOP
1520         IF first_circ IS NULL THEN
1521             first_circ := cur_circ;
1522             CONTINUE;
1523         END IF;
1524         -- Allow the loop to continue so that at as the loop
1525         -- completes cur_circ points to the final circulation.
1526     END LOOP;
1527
1528     IF NEW.id <> cur_circ THEN
1529         -- Modifying an intermediate circ.  Ignore it.
1530         RETURN NEW;
1531     END IF;
1532
1533     -- Update the due_date/checkin_time on the history row if the current 
1534     -- circ is the last circ in the chain and an update is warranted.
1535
1536     UPDATE action.usr_circ_history 
1537         SET 
1538             due_date = NEW.due_date,
1539             checkin_time = NEW.checkin_time
1540         WHERE 
1541             source_circ = first_circ 
1542             AND (
1543                 due_date <> NEW.due_date OR (
1544                     (checkin_time IS NULL AND NEW.checkin_time IS NOT NULL) OR
1545                     (checkin_time IS NOT NULL AND NEW.checkin_time IS NULL) OR
1546                     (checkin_time <> NEW.checkin_time)
1547                 )
1548             );
1549     RETURN NEW;
1550 END;                                                                           
1551 $FUNK$ LANGUAGE PLPGSQL; 
1552
1553 CREATE TRIGGER maintain_usr_circ_history_tgr 
1554     AFTER INSERT OR UPDATE ON action.circulation 
1555     FOR EACH ROW EXECUTE PROCEDURE action.maintain_usr_circ_history();
1556
1557 CREATE OR REPLACE VIEW action.all_circulation_combined_types AS 
1558  SELECT acirc.id AS id,
1559     acirc.xact_start,
1560     acirc.circ_lib,
1561     acirc.circ_staff,
1562     acirc.create_time,
1563     ac_acirc.circ_modifier AS item_type,
1564     'regular_circ'::text AS circ_type
1565    FROM action.circulation acirc,
1566     asset.copy ac_acirc
1567   WHERE acirc.target_copy = ac_acirc.id
1568 UNION ALL
1569  SELECT ancc.id::BIGINT AS id,
1570     ancc.circ_time AS xact_start,
1571     ancc.circ_lib,
1572     ancc.staff AS circ_staff,
1573     ancc.circ_time AS create_time,
1574     cnct_ancc.name AS item_type,
1575     'non-cat_circ'::text AS circ_type
1576    FROM action.non_cataloged_circulation ancc,
1577     config.non_cataloged_type cnct_ancc
1578   WHERE ancc.item_type = cnct_ancc.id
1579 UNION ALL
1580  SELECT aihu.id::BIGINT AS id,
1581     aihu.use_time AS xact_start,
1582     aihu.org_unit AS circ_lib,
1583     aihu.staff AS circ_staff,
1584     aihu.use_time AS create_time,
1585     ac_aihu.circ_modifier AS item_type,
1586     'in-house_use'::text AS circ_type
1587    FROM action.in_house_use aihu,
1588     asset.copy ac_aihu
1589   WHERE aihu.item = ac_aihu.id
1590 UNION ALL
1591  SELECT ancihu.id::BIGINT AS id,
1592     ancihu.use_time AS xact_start,
1593     ancihu.org_unit AS circ_lib,
1594     ancihu.staff AS circ_staff,
1595     ancihu.use_time AS create_time,
1596     cnct_ancihu.name AS item_type,
1597     'non-cat_circ'::text AS circ_type
1598    FROM action.non_cat_in_house_use ancihu,
1599     config.non_cataloged_type cnct_ancihu
1600   WHERE ancihu.item_type = cnct_ancihu.id
1601 UNION ALL
1602  SELECT aacirc.id AS id,
1603     aacirc.xact_start,
1604     aacirc.circ_lib,
1605     aacirc.circ_staff,
1606     aacirc.create_time,
1607     ac_aacirc.circ_modifier AS item_type,
1608     'aged_circ'::text AS circ_type
1609    FROM action.aged_circulation aacirc,
1610     asset.copy ac_aacirc
1611   WHERE aacirc.target_copy = ac_aacirc.id;
1612
1613 COMMIT;