]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/011.schema.authority.sql
Minor bug fixes (alignment of fm classes, etc); Do not check deletedness, just remove...
[Evergreen.git] / Open-ILS / src / sql / Pg / 011.schema.authority.sql
1 /*
2  * Copyright (C) 2004-2008  Georgia Public Library Service
3  * Copyright (C) 2008  Equinox Software, Inc.
4  * Copyright (C) 2010  Laurentian University
5  * Mike Rylander <miker@esilibrary.com> 
6  * Dan Scott <dscott@laurentian.ca>
7  *
8  * This program is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU General Public License
10  * as published by the Free Software Foundation; either version 2
11  * of the License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  */
19
20 DROP SCHEMA IF EXISTS authority CASCADE;
21
22 BEGIN;
23 CREATE SCHEMA authority;
24
25 CREATE TABLE authority.control_set (
26     id          SERIAL  PRIMARY KEY,
27     name        TEXT    NOT NULL UNIQUE, -- i18n
28     description TEXT                     -- i18n
29 );
30
31 CREATE TABLE authority.control_set_authority_field (
32     id          SERIAL  PRIMARY KEY,
33     main_entry  INT     REFERENCES authority.control_set_authority_field (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
34     control_set INT     NOT NULL REFERENCES authority.control_set (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
35     tag         CHAR(3) NOT NULL,
36     sf_list     TEXT    NOT NULL,
37     name        TEXT    NOT NULL, -- i18n
38     description TEXT              -- i18n
39 );
40
41 CREATE TABLE authority.control_set_bib_field (
42     id              SERIAL  PRIMARY KEY,
43     authority_field INT     NOT NULL REFERENCES authority.control_set_authority_field (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
44     tag             CHAR(3) NOT NULL
45 );
46
47 CREATE TABLE authority.thesaurus (
48     code        TEXT    PRIMARY KEY,     -- MARC21 thesaurus code
49     control_set INT     NOT NULL REFERENCES authority.control_set (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
50     name        TEXT    NOT NULL UNIQUE, -- i18n
51     description TEXT                     -- i18n
52 );
53
54 CREATE TABLE authority.browse_axis (
55     code        TEXT    PRIMARY KEY,
56     name        TEXT    UNIQUE NOT NULL, -- i18n
57     description TEXT
58 );
59
60 CREATE TABLE authority.browse_axis_authority_field_map (
61     id          SERIAL  PRIMARY KEY,
62     axis        TEXT    NOT NULL REFERENCES authority.browse_axis (code) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
63     field       INT     NOT NULL REFERENCES authority.control_set_authority_field (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED
64 );
65
66 CREATE TABLE authority.record_entry (
67     id              BIGSERIAL    PRIMARY KEY,
68     create_date     TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT now(),
69     edit_date       TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT now(),
70     creator         INT     NOT NULL DEFAULT 1,
71     editor          INT     NOT NULL DEFAULT 1,
72     active          BOOL    NOT NULL DEFAULT TRUE,
73     deleted         BOOL    NOT NULL DEFAULT FALSE,
74     source          INT,
75     control_set     INT     REFERENCES authority.control_set (id) ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,
76     marc            TEXT    NOT NULL,
77     last_xact_id    TEXT    NOT NULL,
78     owner           INT
79 );
80 CREATE INDEX authority_record_entry_creator_idx ON authority.record_entry ( creator );
81 CREATE INDEX authority_record_entry_editor_idx ON authority.record_entry ( editor );
82 CREATE INDEX authority_record_deleted_idx ON authority.record_entry(deleted) WHERE deleted IS FALSE OR deleted = false;
83 CREATE TRIGGER a_marcxml_is_well_formed BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE biblio.check_marcxml_well_formed();
84 CREATE TRIGGER b_maintain_901 BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE evergreen.maintain_901();
85 CREATE TRIGGER c_maintain_control_numbers BEFORE INSERT OR UPDATE ON authority.record_entry FOR EACH ROW EXECUTE PROCEDURE maintain_control_numbers();
86 CREATE RULE protect_authority_rec_delete AS ON DELETE TO authority.record_entry DO INSTEAD (UPDATE authority.record_entry SET deleted = TRUE WHERE OLD.id = authority.record_entry.id; DELETE FROM authority.full_rec WHERE record = OLD.id);
87
88 CREATE TABLE authority.bib_linking (
89     id          BIGSERIAL   PRIMARY KEY,
90     bib         BIGINT      NOT NULL REFERENCES biblio.record_entry (id),
91     authority   BIGINT      NOT NULL REFERENCES authority.record_entry (id)
92 );
93 CREATE INDEX authority_bl_bib_idx ON authority.bib_linking ( bib );
94 CREATE UNIQUE INDEX authority_bl_bib_authority_once_idx ON authority.bib_linking ( authority, bib );
95
96 CREATE TABLE authority.record_note (
97     id          BIGSERIAL   PRIMARY KEY,
98     record      BIGINT      NOT NULL REFERENCES authority.record_entry (id) DEFERRABLE INITIALLY DEFERRED,
99     value       TEXT        NOT NULL,
100     creator     INT         NOT NULL DEFAULT 1,
101     editor      INT         NOT NULL DEFAULT 1,
102     create_date TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT now(),
103     edit_date   TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT now()
104 );
105 CREATE INDEX authority_record_note_record_idx ON authority.record_note ( record );
106 CREATE INDEX authority_record_note_creator_idx ON authority.record_note ( creator );
107 CREATE INDEX authority_record_note_editor_idx ON authority.record_note ( editor );
108
109 CREATE TABLE authority.rec_descriptor (
110     id              BIGSERIAL PRIMARY KEY,
111     record          BIGINT,
112     record_status   TEXT,
113     encoding_level  TEXT,
114     thesaurus       TEXT
115 );
116 CREATE INDEX authority_rec_descriptor_record_idx ON authority.rec_descriptor (record);
117
118 CREATE TABLE authority.full_rec (
119     id              BIGSERIAL   PRIMARY KEY,
120     record          BIGINT      NOT NULL,
121     tag             CHAR(3)     NOT NULL,
122     ind1            TEXT,
123     ind2            TEXT,
124     subfield        TEXT,
125     value           TEXT        NOT NULL,
126     index_vector    tsvector    NOT NULL
127 );
128 CREATE INDEX authority_full_rec_record_idx ON authority.full_rec (record);
129 CREATE INDEX authority_full_rec_tag_subfield_idx ON authority.full_rec (tag, subfield);
130 CREATE INDEX authority_full_rec_tag_part_idx ON authority.full_rec (SUBSTRING(tag FROM 2));
131 CREATE INDEX authority_full_rec_subfield_a_idx ON authority.full_rec (value) WHERE subfield = 'a';
132 CREATE TRIGGER authority_full_rec_fti_trigger
133     BEFORE UPDATE OR INSERT ON authority.full_rec
134     FOR EACH ROW EXECUTE PROCEDURE tsearch2(index_vector, value);
135
136 CREATE INDEX authority_full_rec_index_vector_idx ON authority.full_rec USING GIST (index_vector);
137 /* Enable LIKE to use an index for database clusters with locales other than C or POSIX */
138 CREATE INDEX authority_full_rec_value_tpo_index ON authority.full_rec (value text_pattern_ops);
139 /* But we still need this (boooo) for paging using >, <, etc */
140 CREATE INDEX authority_full_rec_value_index ON authority.full_rec (value);
141
142 -- Intended to be used in a unique index on authority.record_entry like so:
143 -- CREATE UNIQUE INDEX unique_by_heading_and_thesaurus
144 --   ON authority.record_entry (authority.normalize_heading(marc))
145 --   WHERE deleted IS FALSE or deleted = FALSE;
146 CREATE OR REPLACE FUNCTION authority.normalize_heading( marcxml TEXT, no_thesaurus BOOL ) RETURNS TEXT AS $func$
147 DECLARE
148     acsaf           authority.control_set_authority_field%ROWTYPE;
149     tag_used        TEXT;
150     sf              TEXT;
151     thes_code       TEXT;
152     cset            INT;
153     heading_text    TEXT;
154     tmp_text        TEXT;
155 BEGIN
156     thes_code := vandelay.marc21_extract_fixed_field(marcxml,'Subj');
157     IF thes_code IS NULL THEN
158         thes_code := '|';
159     END IF;
160
161     SELECT control_set INTO cset FROM authority.thesaurus WHERE code = thes_code;
162     IF NOT FOUND THEN
163         cset = 1;
164     END IF;
165
166     heading_text := '';
167     FOR acsaf IN SELECT * FROM authority.control_set_authority_field WHERE control_set = cset AND main_entry IS NULL LOOP
168         tag_used := acsaf.tag;
169         FOR sf IN SELECT * FROM regexp_split_to_table(acsaf.sf_list,'') LOOP
170             tmp_text := oils_xpath_string('//*[@tag="'||tag_used||'"]/*[@code="'||sf||'"]', marcxml);
171             IF tmp_text IS NOT NULL AND tmp_text <> '' THEN
172                 heading_text := heading_text || E'\u2021' || sf || ' ' || tmp_text;
173             END IF;
174         END LOOP;
175         EXIT WHEN heading_text <> '';
176     END LOOP;
177
178     IF heading_text <> '' THEN
179         IF no_thesaurus IS TRUE THEN
180             heading_text := tag_used || ' ' || public.naco_normalize(heading_text);
181         ELSE
182             heading_text := tag_used || '_' || thes_code || ' ' || public.naco_normalize(heading_text);
183         END IF;
184     ELSE
185         heading_text := 'NOHEADING_' || thes_code || ' ' || MD5(marcxml);
186     END IF;
187
188     RETURN heading_text;
189 END;
190 $func$ LANGUAGE PLPGSQL IMMUTABLE;
191
192 CREATE OR REPLACE FUNCTION authority.simple_normalize_heading( marcxml TEXT ) RETURNS TEXT AS $func$
193     SELECT authority.normalize_heading($1, TRUE);
194 $func$ LANGUAGE SQL IMMUTABLE;
195
196 CREATE OR REPLACE FUNCTION authority.normalize_heading( marcxml TEXT ) RETURNS TEXT AS $func$
197     SELECT authority.normalize_heading($1, FALSE);
198 $func$ LANGUAGE SQL IMMUTABLE;
199
200 COMMENT ON FUNCTION authority.normalize_heading( TEXT ) IS $$
201 Extract the authority heading, thesaurus, and NACO-normalized values
202 from an authority record. The primary purpose is to build a unique
203 index to defend against duplicated authority records from the same
204 thesaurus.
205 $$;
206
207 -- Adding indexes using oils_xpath_string() for the main entry tags described in
208 -- authority.control_set_authority_field would speed this up, if we ever want to use it, though
209 -- the existing index on authority.normalize_heading() helps already with a record in hand
210 CREATE OR REPLACE VIEW authority.tracing_links AS
211     SELECT  main.record AS record,
212             main.id AS main_id,
213             main.tag AS main_tag,
214             oils_xpath_string('//*[@tag="'||main.tag||'"]/*[local-name()="subfield"]', are.marc) AS main_value,
215             authority.normalize_heading(are.marc) AS normalized_main_value,
216             substr(link.value,1,1) AS relationship,
217             substr(link.value,2,1) AS use_restriction,
218             substr(link.value,3,1) AS deprecation,
219             substr(link.value,4,1) AS display_restriction,
220             link.id AS link_id,
221             link.tag AS link_tag,
222             oils_xpath_string('//*[@tag="'||link.tag||'"]/*[local-name()="subfield"]', are.marc) AS link_value
223       FROM  authority.full_rec main
224             JOIN authority.record_entry are ON (main.record = are.id)
225             JOIN authority.control_set_authority_field main_entry
226                 ON (main_entry.tag = main.tag
227                     AND main_entry.main_entry IS NULL
228                     AND main.subfield = 'a' )
229             JOIN authority.control_set_authority_field sub_entry
230                 ON (main_entry.id = sub_entry.main_entry)
231             JOIN authority.full_rec link
232                 ON (link.record = main.record
233                     AND link.tag = sub_entry.tag
234                     AND link.subfield = 'w' );
235
236 -- Function to generate an ephemeral overlay template from an authority record
237 CREATE OR REPLACE FUNCTION authority.generate_overlay_template (source_xml TEXT) RETURNS TEXT AS $f$
238 DECLARE
239     cset                INT;
240     main_entry          authority.control_set_authority_field%ROWTYPE;
241     bib_field           authority.control_set_bib_field%ROWTYPE;
242     auth_id             INT DEFAULT oils_xpath_string('//*[@tag="901"]/*[local-name()="subfield" and @code="c"]', source_xml)::INT;
243     replace_data        XML[] DEFAULT '{}'::XML[];
244     replace_rules       TEXT[] DEFAULT '{}'::TEXT[];
245     auth_field          TEXT;
246 BEGIN
247     IF auth_id IS NULL THEN
248         RETURN NULL;
249     END IF;
250
251     -- Default to the LoC controll set
252     SELECT COALESCE(control_set,1) INTO cset FROM authority.record_entry WHERE id = auth_id;
253
254     FOR main_entry IN SELECT * FROM authority.control_set_authority_field WHERE control_set = cset LOOP
255         auth_field := XPATH('//*[@tag="'||main_entry.tag||'"][1]',source_xml);
256         IF ARRAY_LENGTH(auth_field) > 0 THEN
257             FOR bib_field IN SELECT * FROM authority.control_set_bib_field WHERE authority_field = main_entry.id LOOP
258                 replace_data := replace_data || XMLELEMENT( name datafield, XMLATTRIBUTES(bib_field.tag AS tag), XPATH('//*[local-name()="subfield"]',auth_field[1])::XML[]);
259                 replace_rules := replace_rules || ( bib_field.tag || main_entry.sf_list || E'[0~\\)' || auth_id || '$]' );
260             END LOOP;
261             EXIT;
262         END IF;
263     END LOOP;
264
265     RETURN XMLELEMENT(
266         name record,
267         XMLATTRIBUTES('http://www.loc.gov/MARC21/slim' AS xmlns),
268         XMLELEMENT( name leader, '00881nam a2200193   4500'),
269         replace_data,
270         XMLELEMENT(
271             name datafield,
272             XMLATTRIBUTES( '905' AS tag, ' ' AS ind1, ' ' AS ind2),
273             XMLELEMENT(
274                 name subfield,
275                 XMLATTRIBUTES('r' AS code),
276                 ARRAY_TO_STRING(replace_rules,',')
277             )
278         )
279     )::TEXT;
280 END;
281 $f$ STABLE LANGUAGE PLPGSQL;
282
283 CREATE OR REPLACE FUNCTION authority.merge_records ( target_record BIGINT, source_record BIGINT ) RETURNS INT AS $func$
284 DECLARE
285     moved_objects INT := 0;
286     bib_id        INT := 0;
287     bib_rec       biblio.record_entry%ROWTYPE;
288     auth_link     authority.bib_linking%ROWTYPE;
289     ingest_same   boolean;
290 BEGIN
291
292     -- Defining our terms:
293     -- "target record" = the record that will survive the merge
294     -- "source record" = the record that is sacrifing its existence and being
295     --   replaced by the target record
296
297     -- 1. Update all bib records with the ID from target_record in their $0
298     FOR bib_rec IN
299             SELECT  bre.*
300               FROM  biblio.record_entry bre 
301                     JOIN authority.bib_linking abl ON abl.bib = bre.id
302               WHERE abl.authority = source_record
303         LOOP
304
305         UPDATE  biblio.record_entry
306           SET   marc = REGEXP_REPLACE(
307                     marc,
308                     E'(<subfield\\s+code="0"\\s*>[^<]*?\\))' || source_record || '<',
309                     E'\\1' || target_record || '<',
310                     'g'
311                 )
312           WHERE id = bib_rec.id;
313
314           moved_objects := moved_objects + 1;
315     END LOOP;
316
317     -- 2. Grab the current value of reingest on same MARC flag
318     SELECT  enabled INTO ingest_same
319       FROM  config.internal_flag
320       WHERE name = 'ingest.reingest.force_on_same_marc'
321     ;
322
323     -- 3. Temporarily set reingest on same to TRUE
324     UPDATE  config.internal_flag
325       SET   enabled = TRUE
326       WHERE name = 'ingest.reingest.force_on_same_marc'
327     ;
328
329     -- 4. Make a harmless update to target_record to trigger auto-update
330     --    in linked bibliographic records
331     UPDATE  authority.record_entry
332       SET   deleted = FALSE
333       WHERE id = target_record;
334
335     -- 5. "Delete" source_record
336     DELETE FROM authority.record_entry WHERE id = source_record;
337
338     -- 6. Set "reingest on same MARC" flag back to initial value
339     UPDATE  config.internal_flag
340       SET   enabled = ingest_same
341       WHERE name = 'ingest.reingest.force_on_same_marc'
342     ;
343
344     RETURN moved_objects;
345 END;
346 $func$ LANGUAGE plpgsql;
347
348 COMMIT;