]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/012.schema.vandelay.sql
Vandelay Copy Overlay support
[Evergreen.git] / Open-ILS / src / sql / Pg / 012.schema.vandelay.sql
1 DROP SCHEMA IF EXISTS vandelay CASCADE;
2
3 BEGIN;
4
5 CREATE SCHEMA vandelay;
6
7 CREATE TABLE vandelay.match_set (
8     id      SERIAL  PRIMARY KEY,
9     name    TEXT        NOT NULL,
10     owner   INT     NOT NULL REFERENCES actor.org_unit (id) ON DELETE CASCADE,
11     mtype   TEXT        NOT NULL DEFAULT 'biblio', -- 'biblio','authority','mfhd'?, others?
12     CONSTRAINT name_once_per_owner_mtype UNIQUE (name, owner, mtype)
13 );
14
15 -- Table to define match points, either FF via SVF or tag+subfield
16 CREATE TABLE vandelay.match_set_point (
17     id          SERIAL  PRIMARY KEY,
18     match_set   INT     REFERENCES vandelay.match_set (id) ON DELETE CASCADE,
19     parent      INT     REFERENCES vandelay.match_set_point (id),
20     bool_op     TEXT    CHECK (bool_op IS NULL OR (bool_op IN ('AND','OR','NOT'))),
21     svf         TEXT    REFERENCES config.record_attr_definition (name),
22     tag         TEXT,
23     subfield    TEXT,
24     negate      BOOL    DEFAULT FALSE,
25     quality     INT     NOT NULL DEFAULT 1, -- higher is better
26     CONSTRAINT vmsp_need_a_subfield_with_a_tag CHECK ((tag IS NOT NULL AND subfield IS NOT NULL) OR tag IS NULL),
27     CONSTRAINT vmsp_need_a_tag_or_a_ff_or_a_bo CHECK (
28         (tag IS NOT NULL AND svf IS NULL AND bool_op IS NULL) OR
29         (tag IS NULL AND svf IS NOT NULL AND bool_op IS NULL) OR
30         (tag IS NULL AND svf IS NULL AND bool_op IS NOT NULL)
31     )
32 );
33
34 CREATE TABLE vandelay.match_set_quality (
35     id          SERIAL  PRIMARY KEY,
36     match_set   INT     NOT NULL REFERENCES vandelay.match_set (id) ON DELETE CASCADE,
37     svf         TEXT    REFERENCES config.record_attr_definition,
38     tag         TEXT,
39     subfield    TEXT,
40     value       TEXT    NOT NULL,
41     quality     INT     NOT NULL DEFAULT 1, -- higher is better
42     CONSTRAINT vmsq_need_a_subfield_with_a_tag CHECK ((tag IS NOT NULL AND subfield IS NOT NULL) OR tag IS NULL),
43     CONSTRAINT vmsq_need_a_tag_or_a_ff CHECK ((tag IS NOT NULL AND svf IS NULL) OR (tag IS NULL AND svf IS NOT NULL))
44 );
45 CREATE UNIQUE INDEX vmsq_def_once_per_set ON vandelay.match_set_quality (match_set, COALESCE(tag,''), COALESCE(subfield,''), COALESCE(svf,''), value);
46
47
48 CREATE TABLE vandelay.queue (
49         id                              BIGSERIAL       PRIMARY KEY,
50         owner                   INT                     NOT NULL REFERENCES actor.usr (id) DEFERRABLE INITIALLY DEFERRED,
51         name                    TEXT            NOT NULL,
52         complete                BOOL            NOT NULL DEFAULT FALSE,
53     match_set       INT         REFERENCES vandelay.match_set (id) ON UPDATE CASCADE ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED
54 );
55
56 CREATE TABLE vandelay.queued_record (
57     id                  BIGSERIAL                   PRIMARY KEY,
58     create_time TIMESTAMP WITH TIME ZONE    NOT NULL DEFAULT NOW(),
59     import_time TIMESTAMP WITH TIME ZONE,
60         purpose         TEXT                                            NOT NULL DEFAULT 'import' CHECK (purpose IN ('import','overlay')),
61     marc                TEXT                        NOT NULL,
62     quality     INT                         NOT NULL DEFAULT 0
63 );
64
65
66
67 /* Bib stuff at the top */
68 ----------------------------------------------------
69
70 CREATE TABLE vandelay.bib_attr_definition (
71         id                      SERIAL  PRIMARY KEY,
72         code            TEXT    UNIQUE NOT NULL,
73         description     TEXT,
74         xpath           TEXT    NOT NULL,
75         remove          TEXT    NOT NULL DEFAULT ''
76 );
77
78 -- Each TEXT field (other than 'name') should hold an XPath predicate for pulling the data needed
79 -- DROP TABLE vandelay.import_item_attr_definition CASCADE;
80 CREATE TABLE vandelay.import_item_attr_definition (
81     id              BIGSERIAL   PRIMARY KEY,
82     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
83     name            TEXT        NOT NULL,
84     tag             TEXT        NOT NULL,
85     keep            BOOL        NOT NULL DEFAULT FALSE,
86     owning_lib      TEXT,
87     circ_lib        TEXT,
88     call_number     TEXT,
89     copy_number     TEXT,
90     status          TEXT,
91     location        TEXT,
92     circulate       TEXT,
93     deposit         TEXT,
94     deposit_amount  TEXT,
95     ref             TEXT,
96     holdable        TEXT,
97     price           TEXT,
98     barcode         TEXT,
99     circ_modifier   TEXT,
100     circ_as_type    TEXT,
101     alert_message   TEXT,
102     opac_visible    TEXT,
103     pub_note_title  TEXT,
104     pub_note        TEXT,
105     priv_note_title TEXT,
106     priv_note       TEXT,
107     internal_id     TEXT,
108         CONSTRAINT vand_import_item_attr_def_idx UNIQUE (owner,name)
109 );
110
111 CREATE TABLE vandelay.import_error (
112     code        TEXT    PRIMARY KEY,
113     description TEXT    NOT NULL -- i18n
114 );
115
116 CREATE TYPE vandelay.bib_queue_queue_type AS ENUM ('bib', 'acq');
117
118 CREATE TABLE vandelay.bib_queue (
119         queue_type          vandelay.bib_queue_queue_type       NOT NULL DEFAULT 'bib',
120         item_attr_def   BIGINT REFERENCES vandelay.import_item_attr_definition (id) ON DELETE SET NULL DEFERRABLE INITIALLY DEFERRED,
121         CONSTRAINT vand_bib_queue_name_once_per_owner_const UNIQUE (owner,name,queue_type)
122 ) INHERITS (vandelay.queue);
123 ALTER TABLE vandelay.bib_queue ADD PRIMARY KEY (id);
124
125 CREATE TABLE vandelay.queued_bib_record (
126         queue               INT         NOT NULL REFERENCES vandelay.bib_queue (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
127         bib_source          INT         REFERENCES config.bib_source (id) DEFERRABLE INITIALLY DEFERRED,
128         imported_as     BIGINT  REFERENCES biblio.record_entry (id) DEFERRABLE INITIALLY DEFERRED,
129         import_error    TEXT    REFERENCES vandelay.import_error (code) ON DELETE SET NULL ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,
130         error_detail    TEXT
131 ) INHERITS (vandelay.queued_record);
132 ALTER TABLE vandelay.queued_bib_record ADD PRIMARY KEY (id);
133 CREATE INDEX queued_bib_record_queue_idx ON vandelay.queued_bib_record (queue);
134
135 CREATE TABLE vandelay.queued_bib_record_attr (
136         id                      BIGSERIAL       PRIMARY KEY,
137         record          BIGINT          NOT NULL REFERENCES vandelay.queued_bib_record (id) DEFERRABLE INITIALLY DEFERRED,
138         field           INT                     NOT NULL REFERENCES vandelay.bib_attr_definition (id) DEFERRABLE INITIALLY DEFERRED,
139         attr_value      TEXT            NOT NULL
140 );
141 CREATE INDEX queued_bib_record_attr_record_idx ON vandelay.queued_bib_record_attr (record);
142
143 CREATE TABLE vandelay.bib_match (
144         id                              BIGSERIAL       PRIMARY KEY,
145         queued_record   BIGINT          REFERENCES vandelay.queued_bib_record (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
146         eg_record               BIGINT          REFERENCES biblio.record_entry (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
147     quality         INT         NOT NULL DEFAULT 1,
148     match_score     INT         NOT NULL DEFAULT 0
149 );
150
151 CREATE TABLE vandelay.import_item (
152     id              BIGSERIAL   PRIMARY KEY,
153     record          BIGINT      NOT NULL REFERENCES vandelay.queued_bib_record (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
154     definition      BIGINT      NOT NULL REFERENCES vandelay.import_item_attr_definition (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
155         import_error    TEXT        REFERENCES vandelay.import_error (code) ON DELETE SET NULL ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,
156         error_detail    TEXT,
157     imported_as     BIGINT,
158     import_time     TIMESTAMP WITH TIME ZONE,
159     owning_lib      INT,
160     circ_lib        INT,
161     call_number     TEXT,
162     copy_number     INT,
163     status          INT,
164     location        INT,
165     circulate       BOOL,
166     deposit         BOOL,
167     deposit_amount  NUMERIC(8,2),
168     ref             BOOL,
169     holdable        BOOL,
170     price           NUMERIC(8,2),
171     barcode         TEXT,
172     circ_modifier   TEXT,
173     circ_as_type    TEXT,
174     alert_message   TEXT,
175     pub_note        TEXT,
176     priv_note       TEXT,
177     opac_visible    BOOL,
178     internal_id     BIGINT -- queue_type == 'acq' ? acq.lineitem_detail.id : asset.copy.id
179 );
180  
181 CREATE TABLE vandelay.import_bib_trash_fields (
182     id              BIGSERIAL   PRIMARY KEY,
183     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
184     field           TEXT        NOT NULL,
185         CONSTRAINT vand_import_bib_trash_fields_idx UNIQUE (owner,field)
186 );
187
188 CREATE TABLE vandelay.merge_profile (
189     id              BIGSERIAL   PRIMARY KEY,
190     owner           INT         NOT NULL REFERENCES actor.org_unit (id) ON UPDATE CASCADE ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
191     name            TEXT        NOT NULL,
192     add_spec        TEXT,
193     replace_spec    TEXT,
194     strip_spec      TEXT,
195     preserve_spec   TEXT,
196     lwm_ratio       NUMERIC,
197         CONSTRAINT vand_merge_prof_owner_name_idx UNIQUE (owner,name),
198         CONSTRAINT add_replace_strip_or_preserve CHECK ((preserve_spec IS NOT NULL OR replace_spec IS NOT NULL) OR (preserve_spec IS NULL AND replace_spec IS NULL))
199 );
200
201 CREATE OR REPLACE FUNCTION vandelay.marc21_record_type( marc TEXT ) RETURNS config.marc21_rec_type_map AS $func$
202 DECLARE
203     ldr         TEXT;
204     tval        TEXT;
205     tval_rec    RECORD;
206     bval        TEXT;
207     bval_rec    RECORD;
208     retval      config.marc21_rec_type_map%ROWTYPE;
209 BEGIN
210     ldr := oils_xpath_string( '//*[local-name()="leader"]', marc );
211
212     IF ldr IS NULL OR ldr = '' THEN
213         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
214         RETURN retval;
215     END IF;
216
217     SELECT * INTO tval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'Type' LIMIT 1; -- They're all the same
218     SELECT * INTO bval_rec FROM config.marc21_ff_pos_map WHERE fixed_field = 'BLvl' LIMIT 1; -- They're all the same
219
220
221     tval := SUBSTRING( ldr, tval_rec.start_pos + 1, tval_rec.length );
222     bval := SUBSTRING( ldr, bval_rec.start_pos + 1, bval_rec.length );
223
224     -- RAISE NOTICE 'type %, blvl %, ldr %', tval, bval, ldr;
225
226     SELECT * INTO retval FROM config.marc21_rec_type_map WHERE type_val LIKE '%' || tval || '%' AND blvl_val LIKE '%' || bval || '%';
227
228
229     IF retval.code IS NULL THEN
230         SELECT * INTO retval FROM config.marc21_rec_type_map WHERE code = 'BKS';
231     END IF;
232
233     RETURN retval;
234 END;
235 $func$ LANGUAGE PLPGSQL;
236
237 CREATE OR REPLACE FUNCTION vandelay.marc21_extract_fixed_field( marc TEXT, ff TEXT ) RETURNS TEXT AS $func$
238 DECLARE
239     rtype       TEXT;
240     ff_pos      RECORD;
241     tag_data    RECORD;
242     val         TEXT;
243 BEGIN
244     rtype := (vandelay.marc21_record_type( marc )).code;
245     FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE fixed_field = ff AND rec_type = rtype ORDER BY tag DESC LOOP
246         FOR tag_data IN SELECT value FROM UNNEST( oils_xpath( '//*[@tag="' || UPPER(ff_pos.tag) || '"]/text()', marc ) ) x(value) LOOP
247             val := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length );
248             RETURN val;
249         END LOOP;
250         val := REPEAT( ff_pos.default_val, ff_pos.length );
251         RETURN val;
252     END LOOP;
253
254     RETURN NULL;
255 END;
256 $func$ LANGUAGE PLPGSQL;
257
258 CREATE TYPE biblio.record_ff_map AS (record BIGINT, ff_name TEXT, ff_value TEXT);
259 CREATE OR REPLACE FUNCTION vandelay.marc21_extract_all_fixed_fields( marc TEXT ) RETURNS SETOF biblio.record_ff_map AS $func$
260 DECLARE
261     tag_data    TEXT;
262     rtype       TEXT;
263     ff_pos      RECORD;
264     output      biblio.record_ff_map%ROWTYPE;
265 BEGIN
266     rtype := (vandelay.marc21_record_type( marc )).code;
267
268     FOR ff_pos IN SELECT * FROM config.marc21_ff_pos_map WHERE rec_type = rtype ORDER BY tag DESC LOOP
269         output.ff_name  := ff_pos.fixed_field;
270         output.ff_value := NULL;
271
272         FOR tag_data IN SELECT value FROM UNNEST( oils_xpath( '//*[@tag="' || UPPER(tag) || '"]/text()', marc ) ) x(value) LOOP
273             output.ff_value := SUBSTRING( tag_data.value, ff_pos.start_pos + 1, ff_pos.length );
274             IF output.ff_value IS NULL THEN output.ff_value := REPEAT( ff_pos.default_val, ff_pos.length ); END IF;
275             RETURN NEXT output;
276             output.ff_value := NULL;
277         END LOOP;
278
279     END LOOP;
280
281     RETURN;
282 END;
283 $func$ LANGUAGE PLPGSQL;
284
285 CREATE TYPE biblio.marc21_physical_characteristics AS ( id INT, record BIGINT, ptype TEXT, subfield INT, value INT );
286 CREATE OR REPLACE FUNCTION vandelay.marc21_physical_characteristics( marc TEXT) RETURNS SETOF biblio.marc21_physical_characteristics AS $func$
287 DECLARE
288     rowid   INT := 0;
289     _007    TEXT;
290     ptype   config.marc21_physical_characteristic_type_map%ROWTYPE;
291     psf     config.marc21_physical_characteristic_subfield_map%ROWTYPE;
292     pval    config.marc21_physical_characteristic_value_map%ROWTYPE;
293     retval  biblio.marc21_physical_characteristics%ROWTYPE;
294 BEGIN
295
296     _007 := oils_xpath_string( '//*[@tag="007"]', marc );
297
298     IF _007 IS NOT NULL AND _007 <> '' THEN
299         SELECT * INTO ptype FROM config.marc21_physical_characteristic_type_map WHERE ptype_key = SUBSTRING( _007, 1, 1 );
300
301         IF ptype.ptype_key IS NOT NULL THEN
302             FOR psf IN SELECT * FROM config.marc21_physical_characteristic_subfield_map WHERE ptype_key = ptype.ptype_key LOOP
303                 SELECT * INTO pval FROM config.marc21_physical_characteristic_value_map WHERE ptype_subfield = psf.id AND value = SUBSTRING( _007, psf.start_pos + 1, psf.length );
304
305                 IF pval.id IS NOT NULL THEN
306                     rowid := rowid + 1;
307                     retval.id := rowid;
308                     retval.ptype := ptype.ptype_key;
309                     retval.subfield := psf.id;
310                     retval.value := pval.id;
311                     RETURN NEXT retval;
312                 END IF;
313
314             END LOOP;
315         END IF;
316     END IF;
317
318     RETURN;
319 END;
320 $func$ LANGUAGE PLPGSQL;
321
322 CREATE TYPE vandelay.flat_marc AS ( tag CHAR(3), ind1 TEXT, ind2 TEXT, subfield TEXT, value TEXT );
323 CREATE OR REPLACE FUNCTION vandelay.flay_marc ( TEXT ) RETURNS SETOF vandelay.flat_marc AS $func$
324
325 use MARC::Record;
326 use MARC::File::XML (BinaryEncoding => 'UTF-8');
327 use MARC::Charset;
328 use strict;
329
330 MARC::Charset->assume_unicode(1);
331
332 my $xml = shift;
333 my $r = MARC::Record->new_from_xml( $xml );
334
335 return_next( { tag => 'LDR', value => $r->leader } );
336
337 for my $f ( $r->fields ) {
338     if ($f->is_control_field) {
339         return_next({ tag => $f->tag, value => $f->data });
340     } else {
341         for my $s ($f->subfields) {
342             return_next({
343                 tag      => $f->tag,
344                 ind1     => $f->indicator(1),
345                 ind2     => $f->indicator(2),
346                 subfield => $s->[0],
347                 value    => $s->[1]
348             });
349
350             if ( $f->tag eq '245' and $s->[0] eq 'a' ) {
351                 my $trim = $f->indicator(2) || 0;
352                 return_next({
353                     tag      => 'tnf',
354                     ind1     => $f->indicator(1),
355                     ind2     => $f->indicator(2),
356                     subfield => 'a',
357                     value    => substr( $s->[1], $trim )
358                 });
359             }
360         }
361     }
362 }
363
364 return undef;
365
366 $func$ LANGUAGE PLPERLU;
367
368 CREATE OR REPLACE FUNCTION vandelay.flatten_marc ( marc TEXT ) RETURNS SETOF vandelay.flat_marc AS $func$
369 DECLARE
370     output  vandelay.flat_marc%ROWTYPE;
371     field   RECORD;
372 BEGIN
373     FOR field IN SELECT * FROM vandelay.flay_marc( marc ) LOOP
374         output.ind1 := field.ind1;
375         output.ind2 := field.ind2;
376         output.tag := field.tag;
377         output.subfield := field.subfield;
378         IF field.subfield IS NOT NULL AND field.tag NOT IN ('020','022','024') THEN -- exclude standard numbers and control fields
379             output.value := naco_normalize(field.value, field.subfield);
380         ELSE
381             output.value := field.value;
382         END IF;
383
384         CONTINUE WHEN output.value IS NULL;
385
386         RETURN NEXT output;
387     END LOOP;
388 END;
389 $func$ LANGUAGE PLPGSQL;
390
391 CREATE OR REPLACE FUNCTION vandelay.extract_rec_attrs ( xml TEXT, attr_defs TEXT[]) RETURNS hstore AS $_$
392 DECLARE
393     transformed_xml TEXT;
394     prev_xfrm       TEXT;
395     normalizer      RECORD;
396     xfrm            config.xml_transform%ROWTYPE;
397     attr_value      TEXT;
398     new_attrs       HSTORE := ''::HSTORE;
399     attr_def        config.record_attr_definition%ROWTYPE;
400 BEGIN
401
402     FOR attr_def IN SELECT * FROM config.record_attr_definition WHERE name IN (SELECT * FROM UNNEST(attr_defs)) ORDER BY format LOOP
403
404         IF attr_def.tag IS NOT NULL THEN -- tag (and optional subfield list) selection
405             SELECT  ARRAY_TO_STRING(ARRAY_ACCUM(x.value), COALESCE(attr_def.joiner,' ')) INTO attr_value
406               FROM  vandelay.flatten_marc(xml) AS x
407               WHERE x.tag LIKE attr_def.tag
408                     AND CASE
409                         WHEN attr_def.sf_list IS NOT NULL
410                             THEN POSITION(x.subfield IN attr_def.sf_list) > 0
411                         ELSE TRUE
412                         END
413               GROUP BY x.tag
414               ORDER BY x.tag
415               LIMIT 1;
416
417         ELSIF attr_def.fixed_field IS NOT NULL THEN -- a named fixed field, see config.marc21_ff_pos_map.fixed_field
418             attr_value := vandelay.marc21_extract_fixed_field(xml, attr_def.fixed_field);
419
420         ELSIF attr_def.xpath IS NOT NULL THEN -- and xpath expression
421
422             SELECT INTO xfrm * FROM config.xml_transform WHERE name = attr_def.format;
423
424             -- See if we can skip the XSLT ... it's expensive
425             IF prev_xfrm IS NULL OR prev_xfrm <> xfrm.name THEN
426                 -- Can't skip the transform
427                 IF xfrm.xslt <> '---' THEN
428                     transformed_xml := oils_xslt_process(xml,xfrm.xslt);
429                 ELSE
430                     transformed_xml := xml;
431                 END IF;
432
433                 prev_xfrm := xfrm.name;
434             END IF;
435
436             IF xfrm.name IS NULL THEN
437                 -- just grab the marcxml (empty) transform
438                 SELECT INTO xfrm * FROM config.xml_transform WHERE xslt = '---' LIMIT 1;
439                 prev_xfrm := xfrm.name;
440             END IF;
441
442             attr_value := oils_xpath_string(attr_def.xpath, transformed_xml, COALESCE(attr_def.joiner,' '), ARRAY[ARRAY[xfrm.prefix, xfrm.namespace_uri]]);
443
444         ELSIF attr_def.phys_char_sf IS NOT NULL THEN -- a named Physical Characteristic, see config.marc21_physical_characteristic_*_map
445             SELECT  m.value::TEXT INTO attr_value
446               FROM  vandelay.marc21_physical_characteristics(xml) v
447                     JOIN config.marc21_physical_characteristic_value_map m ON (m.id = v.value)
448               WHERE v.subfield = attr_def.phys_char_sf
449               LIMIT 1; -- Just in case ...
450
451         END IF;
452
453         -- apply index normalizers to attr_value
454         FOR normalizer IN
455             SELECT  n.func AS func,
456                     n.param_count AS param_count,
457                     m.params AS params
458               FROM  config.index_normalizer n
459                     JOIN config.record_attr_index_norm_map m ON (m.norm = n.id)
460               WHERE attr = attr_def.name
461               ORDER BY m.pos LOOP
462                 EXECUTE 'SELECT ' || normalizer.func || '(' ||
463                     quote_literal( attr_value ) ||
464                     CASE
465                         WHEN normalizer.param_count > 0
466                             THEN ',' || REPLACE(REPLACE(BTRIM(normalizer.params,'[]'),E'\'',E'\\\''),E'"',E'\'')
467                             ELSE ''
468                         END ||
469                     ')' INTO attr_value;
470
471         END LOOP;
472
473         -- Add the new value to the hstore
474         new_attrs := new_attrs || hstore( attr_def.name, attr_value );
475
476     END LOOP;
477
478     RETURN new_attrs;
479 END;
480 $_$ LANGUAGE PLPGSQL;
481
482 CREATE OR REPLACE FUNCTION vandelay.extract_rec_attrs ( xml TEXT ) RETURNS hstore AS $_$
483     SELECT vandelay.extract_rec_attrs( $1, (SELECT ARRAY_ACCUM(name) FROM config.record_attr_definition));
484 $_$ LANGUAGE SQL;
485
486 -- Everything between this comment and the beginning of the definition of
487 -- vandelay.match_bib_record() is strictly in service of that function.
488 CREATE TYPE vandelay.match_set_test_result AS (record BIGINT, quality INTEGER);
489
490 CREATE OR REPLACE FUNCTION vandelay.match_set_test_marcxml(
491     match_set_id INTEGER, record_xml TEXT
492 ) RETURNS SETOF vandelay.match_set_test_result AS $$
493 DECLARE
494     tags_rstore HSTORE;
495     svf_rstore  HSTORE;
496     coal        TEXT;
497     joins       TEXT;
498     query_      TEXT;
499     wq          TEXT;
500     qvalue      INTEGER;
501     rec         RECORD;
502 BEGIN
503     tags_rstore := vandelay.flatten_marc_hstore(record_xml);
504     svf_rstore := vandelay.extract_rec_attrs(record_xml);
505
506     CREATE TEMPORARY TABLE _vandelay_tmp_qrows (q INTEGER);
507     CREATE TEMPORARY TABLE _vandelay_tmp_jrows (j TEXT);
508
509     -- generate the where clause and return that directly (into wq), and as
510     -- a side-effect, populate the _vandelay_tmp_[qj]rows tables.
511     wq := vandelay.get_expr_from_match_set(match_set_id);
512
513     query_ := 'SELECT DISTINCT(bre.id) AS record, ';
514
515     -- qrows table is for the quality bits we add to the SELECT clause
516     SELECT ARRAY_TO_STRING(
517         ARRAY_ACCUM('COALESCE(n' || q::TEXT || '.quality, 0)'), ' + '
518     ) INTO coal FROM _vandelay_tmp_qrows;
519
520     -- our query string so far is the SELECT clause and the inital FROM.
521     -- no JOINs yet nor the WHERE clause
522     query_ := query_ || coal || ' AS quality ' || E'\n' ||
523         'FROM biblio.record_entry bre ';
524
525     -- jrows table is for the joins we must make (and the real text conditions)
526     SELECT ARRAY_TO_STRING(ARRAY_ACCUM(j), E'\n') INTO joins
527         FROM _vandelay_tmp_jrows;
528
529     -- add those joins and the where clause to our query.
530     query_ := query_ || joins || E'\n' || 'WHERE ' || wq || ' AND not bre.deleted';
531
532     -- this will return rows of record,quality
533     FOR rec IN EXECUTE query_ USING tags_rstore, svf_rstore LOOP
534         RETURN NEXT rec;
535     END LOOP;
536
537     DROP TABLE _vandelay_tmp_qrows;
538     DROP TABLE _vandelay_tmp_jrows;
539     RETURN;
540 END;
541
542 $$ LANGUAGE PLPGSQL;
543
544 CREATE OR REPLACE FUNCTION vandelay.flatten_marc_hstore(
545     record_xml TEXT
546 ) RETURNS HSTORE AS $func$
547 BEGIN
548     RETURN (SELECT
549         HSTORE(
550             ARRAY_ACCUM(tag || (COALESCE(subfield, ''))),
551             ARRAY_ACCUM(value)
552         )
553         FROM (
554             SELECT  tag, subfield, ARRAY_ACCUM(value)::TEXT AS value
555               FROM  (SELECT tag,
556                             subfield,
557                             CASE WHEN tag = '020' THEN -- caseless -- isbn
558                                 LOWER((REGEXP_MATCHES(value,$$^(\S{10,17})$$))[1] || '%')
559                             WHEN tag = '022' THEN -- caseless -- issn
560                                 LOWER((REGEXP_MATCHES(value,$$^(\S{4}[- ]?\S{4})$$))[1] || '%')
561                             WHEN tag = '024' THEN -- caseless -- upc (other)
562                                 LOWER(value || '%')
563                             ELSE
564                                 value
565                             END AS value
566                       FROM  vandelay.flatten_marc(record_xml)) x
567                 GROUP BY tag, subfield ORDER BY tag, subfield
568         ) subquery
569     );
570 END;
571 $func$ LANGUAGE PLPGSQL;
572
573 CREATE OR REPLACE FUNCTION vandelay.get_expr_from_match_set(
574     match_set_id INTEGER
575 ) RETURNS TEXT AS $$
576 DECLARE
577     root    vandelay.match_set_point;
578 BEGIN
579     SELECT * INTO root FROM vandelay.match_set_point
580         WHERE parent IS NULL AND match_set = match_set_id;
581
582     RETURN vandelay.get_expr_from_match_set_point(root);
583 END;
584 $$  LANGUAGE PLPGSQL;
585
586 CREATE OR REPLACE FUNCTION vandelay.get_expr_from_match_set_point(
587     node vandelay.match_set_point
588 ) RETURNS TEXT AS $$
589 DECLARE
590     q           TEXT;
591     i           INTEGER;
592     this_op     TEXT;
593     children    INTEGER[];
594     child       vandelay.match_set_point;
595 BEGIN
596     SELECT ARRAY_ACCUM(id) INTO children FROM vandelay.match_set_point
597         WHERE parent = node.id;
598
599     IF ARRAY_LENGTH(children, 1) > 0 THEN
600         this_op := vandelay._get_expr_render_one(node);
601         q := '(';
602         i := 1;
603         WHILE children[i] IS NOT NULL LOOP
604             SELECT * INTO child FROM vandelay.match_set_point
605                 WHERE id = children[i];
606             IF i > 1 THEN
607                 q := q || ' ' || this_op || ' ';
608             END IF;
609             i := i + 1;
610             q := q || vandelay.get_expr_from_match_set_point(child);
611         END LOOP;
612         q := q || ')';
613         RETURN q;
614     ELSIF node.bool_op IS NULL THEN
615         PERFORM vandelay._get_expr_push_qrow(node);
616         PERFORM vandelay._get_expr_push_jrow(node);
617         RETURN vandelay._get_expr_render_one(node);
618     ELSE
619         RETURN '';
620     END IF;
621 END;
622 $$  LANGUAGE PLPGSQL;
623
624 CREATE OR REPLACE FUNCTION vandelay._get_expr_push_qrow(
625     node vandelay.match_set_point
626 ) RETURNS VOID AS $$
627 DECLARE
628 BEGIN
629     INSERT INTO _vandelay_tmp_qrows (q) VALUES (node.id);
630 END;
631 $$ LANGUAGE PLPGSQL;
632
633 CREATE OR REPLACE FUNCTION vandelay._get_expr_push_jrow(
634     node vandelay.match_set_point
635 ) RETURNS VOID AS $$
636 DECLARE
637     jrow        TEXT;
638     my_alias    TEXT;
639     op          TEXT;
640     tagkey      TEXT;
641     caseless    BOOL;
642 BEGIN
643     -- remember $1 is tags_rstore, and $2 is svf_rstore
644
645     caseless := FALSE;
646
647     IF node.tag IS NOT NULL THEN
648         caseless := (node.tag IN ('020', '022', '024'));
649         tagkey := node.tag;
650         IF node.subfield IS NOT NULL THEN
651             tagkey := tagkey || node.subfield;
652         END IF;
653     END IF;
654
655     IF node.negate THEN
656         IF caseless THEN
657             op := 'NOT LIKE';
658         ELSE
659             op := '<>';
660         END IF;
661     ELSE
662         IF caseless THEN
663             op := 'LIKE';
664         ELSE
665             op := '=';
666         END IF;
667     END IF;
668
669     my_alias := 'n' || node.id::TEXT;
670
671     jrow := 'LEFT JOIN (SELECT *, ' || node.quality ||
672         ' AS quality FROM metabib.';
673     IF node.tag IS NOT NULL THEN
674         jrow := jrow || 'full_rec) ' || my_alias || ' ON (' ||
675             my_alias || '.record = bre.id AND ' || my_alias || '.tag = ''' ||
676             node.tag || '''';
677         IF node.subfield IS NOT NULL THEN
678             jrow := jrow || ' AND ' || my_alias || '.subfield = ''' ||
679                 node.subfield || '''';
680         END IF;
681         jrow := jrow || ' AND (';
682
683         IF caseless THEN
684             jrow := jrow || 'LOWER(' || my_alias || '.value) ' || op;
685         ELSE
686             jrow := jrow || my_alias || '.value ' || op;
687         END IF;
688
689         jrow := jrow || ' ANY(($1->''' || tagkey || ''')::TEXT[])))';
690     ELSE    -- svf
691         jrow := jrow || 'record_attr) ' || my_alias || ' ON (' ||
692             my_alias || '.id = bre.id AND (' ||
693             my_alias || '.attrs->''' || node.svf ||
694             ''' ' || op || ' $2->''' || node.svf || '''))';
695     END IF;
696     INSERT INTO _vandelay_tmp_jrows (j) VALUES (jrow);
697 END;
698 $$ LANGUAGE PLPGSQL;
699
700 CREATE OR REPLACE FUNCTION vandelay._get_expr_render_one(
701     node vandelay.match_set_point
702 ) RETURNS TEXT AS $$
703 DECLARE
704     s           TEXT;
705 BEGIN
706     IF node.bool_op IS NOT NULL THEN
707         RETURN node.bool_op;
708     ELSE
709         RETURN '(n' || node.id::TEXT || '.id IS NOT NULL)';
710     END IF;
711 END;
712 $$ LANGUAGE PLPGSQL;
713
714 CREATE OR REPLACE FUNCTION vandelay.match_bib_record() RETURNS TRIGGER AS $func$
715 DECLARE
716     incoming_existing_id    TEXT;
717     test_result             vandelay.match_set_test_result%ROWTYPE;
718     tmp_rec                 BIGINT;
719     match_set               INT;
720 BEGIN
721     IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN
722         RETURN NEW;
723     END IF;
724
725     DELETE FROM vandelay.bib_match WHERE queued_record = NEW.id;
726
727     SELECT q.match_set INTO match_set FROM vandelay.bib_queue q WHERE q.id = NEW.queue;
728
729     IF match_set IS NOT NULL THEN
730         NEW.quality := vandelay.measure_record_quality( NEW.marc, match_set );
731     END IF;
732
733     -- Perfect matches on 901$c exit early with a match with high quality.
734     incoming_existing_id :=
735         oils_xpath_string('//*[@tag="901"]/*[@code="c"][1]', NEW.marc);
736
737     IF incoming_existing_id IS NOT NULL AND incoming_existing_id != '' THEN
738         SELECT id INTO tmp_rec FROM biblio.record_entry WHERE id = incoming_existing_id::bigint;
739         IF tmp_rec IS NOT NULL THEN
740             INSERT INTO vandelay.bib_match (queued_record, eg_record, match_score, quality) 
741                 SELECT
742                     NEW.id, 
743                     b.id,
744                     9999,
745                     -- note: no match_set means quality==0
746                     vandelay.measure_record_quality( b.marc, match_set )
747                 FROM biblio.record_entry b
748                 WHERE id = incoming_existing_id::bigint;
749         END IF;
750     END IF;
751
752     IF match_set IS NULL THEN
753         RETURN NEW;
754     END IF;
755
756     FOR test_result IN SELECT * FROM
757         vandelay.match_set_test_marcxml(match_set, NEW.marc) LOOP
758
759         INSERT INTO vandelay.bib_match ( queued_record, eg_record, match_score, quality )
760             SELECT  
761                 NEW.id,
762                 test_result.record,
763                 test_result.quality,
764                 vandelay.measure_record_quality( b.marc, match_set )
765                 FROM  biblio.record_entry b
766                 WHERE id = test_result.record;
767
768     END LOOP;
769
770     RETURN NEW;
771 END;
772 $func$ LANGUAGE PLPGSQL;
773
774 CREATE OR REPLACE FUNCTION vandelay.measure_record_quality ( xml TEXT, match_set_id INT ) RETURNS INT AS $_$
775 DECLARE
776     out_q   INT := 0;
777     rvalue  TEXT;
778     test    vandelay.match_set_quality%ROWTYPE;
779 BEGIN
780
781     FOR test IN SELECT * FROM vandelay.match_set_quality WHERE match_set = match_set_id LOOP
782         IF test.tag IS NOT NULL THEN
783             FOR rvalue IN SELECT value FROM vandelay.flatten_marc( xml ) WHERE tag = test.tag AND subfield = test.subfield LOOP
784                 IF test.value = rvalue THEN
785                     out_q := out_q + test.quality;
786                 END IF;
787             END LOOP;
788         ELSE
789             IF test.value = vandelay.extract_rec_attrs(xml, ARRAY[test.svf]) -> test.svf THEN
790                 out_q := out_q + test.quality;
791             END IF;
792         END IF;
793     END LOOP;
794
795     RETURN out_q;
796 END;
797 $_$ LANGUAGE PLPGSQL;
798
799 CREATE TYPE vandelay.tcn_data AS (tcn TEXT, tcn_source TEXT, used BOOL);
800 CREATE OR REPLACE FUNCTION vandelay.find_bib_tcn_data ( xml TEXT ) RETURNS SETOF vandelay.tcn_data AS $_$
801 DECLARE
802     eg_tcn          TEXT;
803     eg_tcn_source   TEXT;
804     output          vandelay.tcn_data%ROWTYPE;
805 BEGIN
806
807     -- 001/003
808     eg_tcn := BTRIM((oils_xpath('//*[@tag="001"]/text()',xml))[1]);
809     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
810
811         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="003"]/text()',xml))[1]);
812         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
813             eg_tcn_source := 'System Local';
814         END IF;
815
816         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
817
818         IF NOT FOUND THEN
819             output.used := FALSE;
820         ELSE
821             output.used := TRUE;
822         END IF;
823
824         output.tcn := eg_tcn;
825         output.tcn_source := eg_tcn_source;
826         RETURN NEXT output;
827
828     END IF;
829
830     -- 901 ab
831     eg_tcn := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="a"]/text()',xml))[1]);
832     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
833
834         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="901"]/*[@code="b"]/text()',xml))[1]);
835         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
836             eg_tcn_source := 'System Local';
837         END IF;
838
839         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
840
841         IF NOT FOUND THEN
842             output.used := FALSE;
843         ELSE
844             output.used := TRUE;
845         END IF;
846
847         output.tcn := eg_tcn;
848         output.tcn_source := eg_tcn_source;
849         RETURN NEXT output;
850
851     END IF;
852
853     -- 039 ab
854     eg_tcn := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="a"]/text()',xml))[1]);
855     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
856
857         eg_tcn_source := BTRIM((oils_xpath('//*[@tag="039"]/*[@code="b"]/text()',xml))[1]);
858         IF eg_tcn_source IS NULL OR eg_tcn_source = '' THEN
859             eg_tcn_source := 'System Local';
860         END IF;
861
862         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
863
864         IF NOT FOUND THEN
865             output.used := FALSE;
866         ELSE
867             output.used := TRUE;
868         END IF;
869
870         output.tcn := eg_tcn;
871         output.tcn_source := eg_tcn_source;
872         RETURN NEXT output;
873
874     END IF;
875
876     -- 020 a
877     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="020"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
878     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
879
880         eg_tcn_source := 'ISBN';
881
882         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
883
884         IF NOT FOUND THEN
885             output.used := FALSE;
886         ELSE
887             output.used := TRUE;
888         END IF;
889
890         output.tcn := eg_tcn;
891         output.tcn_source := eg_tcn_source;
892         RETURN NEXT output;
893
894     END IF;
895
896     -- 022 a
897     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="022"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
898     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
899
900         eg_tcn_source := 'ISSN';
901
902         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
903
904         IF NOT FOUND THEN
905             output.used := FALSE;
906         ELSE
907             output.used := TRUE;
908         END IF;
909
910         output.tcn := eg_tcn;
911         output.tcn_source := eg_tcn_source;
912         RETURN NEXT output;
913
914     END IF;
915
916     -- 010 a
917     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="010"]/*[@code="a"]/text()',xml))[1], $re$^(\w+).*?$$re$, $re$\1$re$);
918     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
919
920         eg_tcn_source := 'LCCN';
921
922         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
923
924         IF NOT FOUND THEN
925             output.used := FALSE;
926         ELSE
927             output.used := TRUE;
928         END IF;
929
930         output.tcn := eg_tcn;
931         output.tcn_source := eg_tcn_source;
932         RETURN NEXT output;
933
934     END IF;
935
936     -- 035 a
937     eg_tcn := REGEXP_REPLACE((oils_xpath('//*[@tag="035"]/*[@code="a"]/text()',xml))[1], $re$^.*?(\w+)$$re$, $re$\1$re$);
938     IF eg_tcn IS NOT NULL AND eg_tcn <> '' THEN
939
940         eg_tcn_source := 'System Legacy';
941
942         PERFORM id FROM biblio.record_entry WHERE tcn_value = eg_tcn  AND NOT deleted;
943
944         IF NOT FOUND THEN
945             output.used := FALSE;
946         ELSE
947             output.used := TRUE;
948         END IF;
949
950         output.tcn := eg_tcn;
951         output.tcn_source := eg_tcn_source;
952         RETURN NEXT output;
953
954     END IF;
955
956     RETURN;
957 END;
958 $_$ LANGUAGE PLPGSQL;
959
960 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT, force_add INT ) RETURNS TEXT AS $_$
961
962     use MARC::Record;
963     use MARC::File::XML (BinaryEncoding => 'UTF-8');
964     use MARC::Charset;
965     use strict;
966
967     MARC::Charset->assume_unicode(1);
968
969     my $target_xml = shift;
970     my $source_xml = shift;
971     my $field_spec = shift;
972     my $force_add = shift || 0;
973
974     my $target_r = MARC::Record->new_from_xml( $target_xml );
975     my $source_r = MARC::Record->new_from_xml( $source_xml );
976
977     return $target_xml unless ($target_r && $source_r);
978
979     my @field_list = split(',', $field_spec);
980
981     my %fields;
982     for my $f (@field_list) {
983         $f =~ s/^\s*//; $f =~ s/\s*$//;
984         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
985             my $field = $1;
986             $field =~ s/\s+//;
987             my $sf = $2;
988             $sf =~ s/\s+//;
989             my $match = $3;
990             $match =~ s/^\s*//; $match =~ s/\s*$//;
991             $fields{$field} = { sf => [ split('', $sf) ] };
992             if ($match) {
993                 my ($msf,$mre) = split('~', $match);
994                 if (length($msf) > 0 and length($mre) > 0) {
995                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
996                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
997                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
998                 }
999             }
1000         }
1001     }
1002
1003     for my $f ( keys %fields) {
1004         if ( @{$fields{$f}{sf}} ) {
1005             for my $from_field ($source_r->field( $f )) {
1006                 my @tos = $target_r->field( $f );
1007                 if (!@tos) {
1008                     next if (exists($fields{$f}{match}) and !$force_add);
1009                     my @new_fields = map { $_->clone } $source_r->field( $f );
1010                     $target_r->insert_fields_ordered( @new_fields );
1011                 } else {
1012                     for my $to_field (@tos) {
1013                         if (exists($fields{$f}{match})) {
1014                             next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
1015                         }
1016                         my @new_sf = map { ($_ => $from_field->subfield($_)) } grep { defined($from_field->subfield($_)) } @{$fields{$f}{sf}};
1017                         $to_field->add_subfields( @new_sf );
1018                     }
1019                 }
1020             }
1021         } else {
1022             my @new_fields = map { $_->clone } $source_r->field( $f );
1023             $target_r->insert_fields_ordered( @new_fields );
1024         }
1025     }
1026
1027     $target_xml = $target_r->as_xml_record;
1028     $target_xml =~ s/^<\?.+?\?>$//mo;
1029     $target_xml =~ s/\n//sgo;
1030     $target_xml =~ s/>\s+</></sgo;
1031
1032     return $target_xml;
1033
1034 $_$ LANGUAGE PLPERLU;
1035
1036 CREATE OR REPLACE FUNCTION vandelay.add_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
1037     SELECT vandelay.add_field( $1, $2, $3, 0 );
1038 $_$ LANGUAGE SQL;
1039
1040 CREATE OR REPLACE FUNCTION vandelay.strip_field ( xml TEXT, field TEXT ) RETURNS TEXT AS $_$
1041
1042     use MARC::Record;
1043     use MARC::File::XML (BinaryEncoding => 'UTF-8');
1044     use MARC::Charset;
1045     use strict;
1046
1047     MARC::Charset->assume_unicode(1);
1048
1049     my $xml = shift;
1050     my $r = MARC::Record->new_from_xml( $xml );
1051
1052     return $xml unless ($r);
1053
1054     my $field_spec = shift;
1055     my @field_list = split(',', $field_spec);
1056
1057     my %fields;
1058     for my $f (@field_list) {
1059         $f =~ s/^\s*//; $f =~ s/\s*$//;
1060         if ($f =~ /^(.{3})(\w*)(?:\[([^]]*)\])?$/) {
1061             my $field = $1;
1062             $field =~ s/\s+//;
1063             my $sf = $2;
1064             $sf =~ s/\s+//;
1065             my $match = $3;
1066             $match =~ s/^\s*//; $match =~ s/\s*$//;
1067             $fields{$field} = { sf => [ split('', $sf) ] };
1068             if ($match) {
1069                 my ($msf,$mre) = split('~', $match);
1070                 if (length($msf) > 0 and length($mre) > 0) {
1071                     $msf =~ s/^\s*//; $msf =~ s/\s*$//;
1072                     $mre =~ s/^\s*//; $mre =~ s/\s*$//;
1073                     $fields{$field}{match} = { sf => $msf, re => qr/$mre/ };
1074                 }
1075             }
1076         }
1077     }
1078
1079     for my $f ( keys %fields) {
1080         for my $to_field ($r->field( $f )) {
1081             if (exists($fields{$f}{match})) {
1082                 next unless (grep { $_ =~ $fields{$f}{match}{re} } $to_field->subfield($fields{$f}{match}{sf}));
1083             }
1084
1085             if ( @{$fields{$f}{sf}} ) {
1086                 $to_field->delete_subfield(code => $fields{$f}{sf});
1087             } else {
1088                 $r->delete_field( $to_field );
1089             }
1090         }
1091     }
1092
1093     $xml = $r->as_xml_record;
1094     $xml =~ s/^<\?.+?\?>$//mo;
1095     $xml =~ s/\n//sgo;
1096     $xml =~ s/>\s+</></sgo;
1097
1098     return $xml;
1099
1100 $_$ LANGUAGE PLPERLU;
1101
1102 CREATE OR REPLACE FUNCTION vandelay.replace_field ( target_xml TEXT, source_xml TEXT, field TEXT ) RETURNS TEXT AS $_$
1103 DECLARE
1104     xml_output TEXT;
1105     parsed_target TEXT;
1106     curr_field TEXT;
1107 BEGIN
1108
1109     parsed_target := vandelay.strip_field( target_xml, ''); -- this dance normalizes the format of the xml for the IF below
1110     xml_output := parsed_target; -- if there are no replace rules, just return the input
1111
1112     FOR curr_field IN SELECT UNNEST( STRING_TO_ARRAY(field, ',') ) LOOP -- naive split, but it's the same we use in the perl
1113
1114         xml_output := vandelay.strip_field( parsed_target, curr_field);
1115
1116         IF xml_output <> parsed_target  AND curr_field ~ E'~' THEN
1117             -- we removed something, and there was a regexp restriction in the curr_field definition, so proceed
1118             xml_output := vandelay.add_field( xml_output, source_xml, curr_field, 1 );
1119         ELSIF curr_field !~ E'~' THEN
1120             -- No regexp restriction, add the curr_field
1121             xml_output := vandelay.add_field( xml_output, source_xml, curr_field, 0 );
1122         END IF;
1123
1124         parsed_target := xml_output; -- in prep for any following loop iterations
1125
1126     END LOOP;
1127
1128     RETURN xml_output;
1129 END;
1130 $_$ LANGUAGE PLPGSQL;
1131
1132 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_xml TEXT, source_xml TEXT, add_rule TEXT, replace_preserve_rule TEXT, strip_rule TEXT ) RETURNS TEXT AS $_$
1133     SELECT vandelay.replace_field( vandelay.add_field( vandelay.strip_field( $1, $5) , $2, $3 ), $2, $4);
1134 $_$ LANGUAGE SQL;
1135
1136 CREATE TYPE vandelay.compile_profile AS (add_rule TEXT, replace_rule TEXT, preserve_rule TEXT, strip_rule TEXT);
1137 CREATE OR REPLACE FUNCTION vandelay.compile_profile ( incoming_xml TEXT ) RETURNS vandelay.compile_profile AS $_$
1138 DECLARE
1139     output              vandelay.compile_profile%ROWTYPE;
1140     profile             vandelay.merge_profile%ROWTYPE;
1141     profile_tmpl        TEXT;
1142     profile_tmpl_owner  TEXT;
1143     add_rule            TEXT := '';
1144     strip_rule          TEXT := '';
1145     replace_rule        TEXT := '';
1146     preserve_rule       TEXT := '';
1147
1148 BEGIN
1149
1150     profile_tmpl := (oils_xpath('//*[@tag="905"]/*[@code="t"]/text()',incoming_xml))[1];
1151     profile_tmpl_owner := (oils_xpath('//*[@tag="905"]/*[@code="o"]/text()',incoming_xml))[1];
1152
1153     IF profile_tmpl IS NOT NULL AND profile_tmpl <> '' AND profile_tmpl_owner IS NOT NULL AND profile_tmpl_owner <> '' THEN
1154         SELECT  p.* INTO profile
1155           FROM  vandelay.merge_profile p
1156                 JOIN actor.org_unit u ON (u.id = p.owner)
1157           WHERE p.name = profile_tmpl
1158                 AND u.shortname = profile_tmpl_owner;
1159
1160         IF profile.id IS NOT NULL THEN
1161             add_rule := COALESCE(profile.add_spec,'');
1162             strip_rule := COALESCE(profile.strip_spec,'');
1163             replace_rule := COALESCE(profile.replace_spec,'');
1164             preserve_rule := COALESCE(profile.preserve_spec,'');
1165         END IF;
1166     END IF;
1167
1168     add_rule := add_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="a"]/text()',incoming_xml),','),'');
1169     strip_rule := strip_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="d"]/text()',incoming_xml),','),'');
1170     replace_rule := replace_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="r"]/text()',incoming_xml),','),'');
1171     preserve_rule := preserve_rule || ',' || COALESCE(ARRAY_TO_STRING(oils_xpath('//*[@tag="905"]/*[@code="p"]/text()',incoming_xml),','),'');
1172
1173     output.add_rule := BTRIM(add_rule,',');
1174     output.replace_rule := BTRIM(replace_rule,',');
1175     output.strip_rule := BTRIM(strip_rule,',');
1176     output.preserve_rule := BTRIM(preserve_rule,',');
1177
1178     RETURN output;
1179 END;
1180 $_$ LANGUAGE PLPGSQL;
1181
1182 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
1183 DECLARE
1184     merge_profile   vandelay.merge_profile%ROWTYPE;
1185     dyn_profile     vandelay.compile_profile%ROWTYPE;
1186     editor_string   TEXT;
1187     editor_id       INT;
1188     source_marc     TEXT;
1189     target_marc     TEXT;
1190     eg_marc         TEXT;
1191     replace_rule    TEXT;
1192     match_count     INT;
1193 BEGIN
1194
1195     SELECT  b.marc INTO eg_marc
1196       FROM  biblio.record_entry b
1197       WHERE b.id = eg_id
1198       LIMIT 1;
1199
1200     IF eg_marc IS NULL OR v_marc IS NULL THEN
1201         -- RAISE NOTICE 'no marc for template or bib record';
1202         RETURN FALSE;
1203     END IF;
1204
1205     dyn_profile := vandelay.compile_profile( v_marc );
1206
1207     IF merge_profile_id IS NOT NULL THEN
1208         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
1209         IF FOUND THEN
1210             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
1211             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
1212             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
1213             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
1214         END IF;
1215     END IF;
1216
1217     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
1218         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
1219         RETURN FALSE;
1220     END IF;
1221
1222     IF dyn_profile.replace_rule <> '' THEN
1223         source_marc = v_marc;
1224         target_marc = eg_marc;
1225         replace_rule = dyn_profile.replace_rule;
1226     ELSE
1227         source_marc = eg_marc;
1228         target_marc = v_marc;
1229         replace_rule = dyn_profile.preserve_rule;
1230     END IF;
1231
1232     UPDATE  biblio.record_entry
1233       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
1234       WHERE id = eg_id;
1235
1236     IF NOT FOUND THEN
1237         -- RAISE NOTICE 'update of biblio.record_entry failed';
1238         RETURN FALSE;
1239     END IF;
1240
1241     RETURN TRUE;
1242
1243 END;
1244 $$ LANGUAGE PLPGSQL;
1245
1246 CREATE OR REPLACE FUNCTION vandelay.merge_record_xml ( target_marc TEXT, template_marc TEXT ) RETURNS TEXT AS $$
1247 DECLARE
1248     dyn_profile     vandelay.compile_profile%ROWTYPE;
1249     replace_rule    TEXT;
1250     tmp_marc        TEXT;
1251     trgt_marc        TEXT;
1252     tmpl_marc        TEXT;
1253     match_count     INT;
1254 BEGIN
1255
1256     IF target_marc IS NULL OR template_marc IS NULL THEN
1257         -- RAISE NOTICE 'no marc for target or template record';
1258         RETURN NULL;
1259     END IF;
1260
1261     dyn_profile := vandelay.compile_profile( template_marc );
1262
1263     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
1264         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
1265         RETURN NULL;
1266     END IF;
1267
1268     IF dyn_profile.replace_rule <> '' THEN
1269         trgt_marc = target_marc;
1270         tmpl_marc = template_marc;
1271         replace_rule = dyn_profile.replace_rule;
1272     ELSE
1273         tmp_marc = target_marc;
1274         trgt_marc = template_marc;
1275         tmpl_marc = tmp_marc;
1276         replace_rule = dyn_profile.preserve_rule;
1277     END IF;
1278
1279     RETURN vandelay.merge_record_xml( trgt_marc, tmpl_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule );
1280
1281 END;
1282 $$ LANGUAGE PLPGSQL;
1283
1284 CREATE OR REPLACE FUNCTION vandelay.template_overlay_bib_record ( v_marc TEXT, eg_id BIGINT) RETURNS BOOL AS $$
1285     SELECT vandelay.template_overlay_bib_record( $1, $2, NULL);
1286 $$ LANGUAGE SQL;
1287
1288 CREATE OR REPLACE FUNCTION vandelay.overlay_bib_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
1289 DECLARE
1290     merge_profile   vandelay.merge_profile%ROWTYPE;
1291     dyn_profile     vandelay.compile_profile%ROWTYPE;
1292     editor_string   TEXT;
1293     editor_id       INT;
1294     source_marc     TEXT;
1295     target_marc     TEXT;
1296     eg_marc         TEXT;
1297     v_marc          TEXT;
1298     replace_rule    TEXT;
1299 BEGIN
1300
1301     SELECT  q.marc INTO v_marc
1302       FROM  vandelay.queued_record q
1303             JOIN vandelay.bib_match m ON (m.queued_record = q.id AND q.id = import_id)
1304       LIMIT 1;
1305
1306     IF v_marc IS NULL THEN
1307         -- RAISE NOTICE 'no marc for vandelay or bib record';
1308         RETURN FALSE;
1309     END IF;
1310
1311     IF vandelay.template_overlay_bib_record( v_marc, eg_id, merge_profile_id) THEN
1312         UPDATE  vandelay.queued_bib_record
1313           SET   imported_as = eg_id,
1314                 import_time = NOW()
1315           WHERE id = import_id;
1316
1317         editor_string := (oils_xpath('//*[@tag="905"]/*[@code="u"]/text()',v_marc))[1];
1318
1319         IF editor_string IS NOT NULL AND editor_string <> '' THEN
1320             SELECT usr INTO editor_id FROM actor.card WHERE barcode = editor_string;
1321
1322             IF editor_id IS NULL THEN
1323                 SELECT id INTO editor_id FROM actor.usr WHERE usrname = editor_string;
1324             END IF;
1325
1326             IF editor_id IS NOT NULL THEN
1327                 UPDATE biblio.record_entry SET editor = editor_id WHERE id = eg_id;
1328             END IF;
1329         END IF;
1330
1331         RETURN TRUE;
1332     END IF;
1333
1334     -- RAISE NOTICE 'update of biblio.record_entry failed';
1335
1336     RETURN FALSE;
1337
1338 END;
1339 $$ LANGUAGE PLPGSQL;
1340
1341 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record_with_best ( import_id BIGINT, merge_profile_id INT, lwm_ratio_value_p NUMERIC ) RETURNS BOOL AS $$
1342 DECLARE
1343     eg_id           BIGINT;
1344     lwm_ratio_value NUMERIC;
1345 BEGIN
1346
1347     lwm_ratio_value := COALESCE(lwm_ratio_value_p, 0.0);
1348
1349     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
1350
1351     IF FOUND THEN
1352         -- RAISE NOTICE 'already imported, cannot auto-overlay'
1353         RETURN FALSE;
1354     END IF;
1355
1356     SELECT  m.eg_record INTO eg_id
1357       FROM  vandelay.bib_match m
1358             JOIN vandelay.queued_bib_record qr ON (m.queued_record = qr.id)
1359             JOIN vandelay.bib_queue q ON (qr.queue = q.id)
1360             JOIN biblio.record_entry r ON (r.id = m.eg_record)
1361       WHERE m.queued_record = import_id
1362             AND qr.quality::NUMERIC / COALESCE(NULLIF(m.quality,0),1)::NUMERIC >= lwm_ratio_value
1363       ORDER BY  m.match_score DESC, -- required match score
1364                 qr.quality::NUMERIC / COALESCE(NULLIF(m.quality,0),1)::NUMERIC DESC, -- quality tie breaker
1365                 m.id -- when in doubt, use the first match
1366       LIMIT 1;
1367
1368     IF eg_id IS NULL THEN
1369         -- RAISE NOTICE 'incoming record is not of high enough quality';
1370         RETURN FALSE;
1371     END IF;
1372
1373     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
1374 END;
1375 $$ LANGUAGE PLPGSQL;
1376
1377 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record_with_best ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
1378     SELECT vandelay.auto_overlay_bib_record_with_best( $1, $2, p.lwm_ratio ) FROM vandelay.merge_profile p WHERE id = $2;
1379 $$ LANGUAGE SQL;
1380
1381 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
1382 DECLARE
1383     eg_id           BIGINT;
1384     match_count     INT;
1385 BEGIN
1386
1387     PERFORM * FROM vandelay.queued_bib_record WHERE import_time IS NOT NULL AND id = import_id;
1388
1389     IF FOUND THEN
1390         -- RAISE NOTICE 'already imported, cannot auto-overlay'
1391         RETURN FALSE;
1392     END IF;
1393
1394     SELECT COUNT(*) INTO match_count FROM vandelay.bib_match WHERE queued_record = import_id;
1395
1396     IF match_count <> 1 THEN
1397         -- RAISE NOTICE 'not an exact match';
1398         RETURN FALSE;
1399     END IF;
1400
1401     -- Check that the one match is on the first 901c
1402     SELECT  m.eg_record INTO eg_id
1403       FROM  vandelay.queued_bib_record q
1404             JOIN vandelay.bib_match m ON (m.queued_record = q.id)
1405       WHERE q.id = import_id
1406             AND m.eg_record = oils_xpath_string('//*[@tag="901"]/*[@code="c"][1]',marc)::BIGINT;
1407
1408     IF NOT FOUND THEN
1409         -- RAISE NOTICE 'not a 901c match';
1410         RETURN FALSE;
1411     END IF;
1412
1413     RETURN vandelay.overlay_bib_record( import_id, eg_id, merge_profile_id );
1414 END;
1415 $$ LANGUAGE PLPGSQL;
1416
1417 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
1418 DECLARE
1419     queued_record   vandelay.queued_bib_record%ROWTYPE;
1420 BEGIN
1421
1422     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
1423
1424         IF vandelay.auto_overlay_bib_record( queued_record.id, merge_profile_id ) THEN
1425             RETURN NEXT queued_record.id;
1426         END IF;
1427
1428     END LOOP;
1429
1430     RETURN;
1431     
1432 END;
1433 $$ LANGUAGE PLPGSQL;
1434
1435 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue_with_best ( queue_id BIGINT, merge_profile_id INT, lwm_ratio_value NUMERIC ) RETURNS SETOF BIGINT AS $$
1436 DECLARE
1437     queued_record   vandelay.queued_bib_record%ROWTYPE;
1438 BEGIN
1439
1440     FOR queued_record IN SELECT * FROM vandelay.queued_bib_record WHERE queue = queue_id AND import_time IS NULL LOOP
1441
1442         IF vandelay.auto_overlay_bib_record_with_best( queued_record.id, merge_profile_id, lwm_ratio_value ) THEN
1443             RETURN NEXT queued_record.id;
1444         END IF;
1445
1446     END LOOP;
1447
1448     RETURN;
1449     
1450 END;
1451 $$ LANGUAGE PLPGSQL;
1452
1453 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue_with_best ( import_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
1454     SELECT vandelay.auto_overlay_bib_queue_with_best( $1, $2, p.lwm_ratio ) FROM vandelay.merge_profile p WHERE id = $2;
1455 $$ LANGUAGE SQL;
1456
1457 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_bib_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
1458     SELECT * FROM vandelay.auto_overlay_bib_queue( $1, NULL );
1459 $$ LANGUAGE SQL;
1460
1461 CREATE OR REPLACE FUNCTION vandelay.ingest_bib_marc ( ) RETURNS TRIGGER AS $$
1462 DECLARE
1463     value   TEXT;
1464     atype   TEXT;
1465     adef    RECORD;
1466 BEGIN
1467     IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN
1468         RETURN NEW;
1469     END IF;
1470
1471     FOR adef IN SELECT * FROM vandelay.bib_attr_definition LOOP
1472
1473         SELECT extract_marc_field('vandelay.queued_bib_record', id, adef.xpath, adef.remove) INTO value FROM vandelay.queued_bib_record WHERE id = NEW.id;
1474         IF (value IS NOT NULL AND value <> '') THEN
1475             INSERT INTO vandelay.queued_bib_record_attr (record, field, attr_value) VALUES (NEW.id, adef.id, value);
1476         END IF;
1477
1478     END LOOP;
1479
1480     RETURN NULL;
1481 END;
1482 $$ LANGUAGE PLPGSQL;
1483
1484 CREATE OR REPLACE FUNCTION vandelay.cleanup_bib_marc ( ) RETURNS TRIGGER AS $$
1485 BEGIN
1486     IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN
1487         RETURN NEW;
1488     END IF;
1489
1490     DELETE FROM vandelay.queued_bib_record_attr WHERE record = OLD.id;
1491     DELETE FROM vandelay.import_item WHERE record = OLD.id;
1492
1493     IF TG_OP = 'UPDATE' THEN
1494         RETURN NEW;
1495     END IF;
1496     RETURN OLD;
1497 END;
1498 $$ LANGUAGE PLPGSQL;
1499
1500 CREATE TRIGGER cleanup_bib_trigger
1501     BEFORE UPDATE OR DELETE ON vandelay.queued_bib_record
1502     FOR EACH ROW EXECUTE PROCEDURE vandelay.cleanup_bib_marc();
1503
1504 CREATE TRIGGER ingest_bib_trigger
1505     AFTER INSERT OR UPDATE ON vandelay.queued_bib_record
1506     FOR EACH ROW EXECUTE PROCEDURE vandelay.ingest_bib_marc();
1507
1508 CREATE TRIGGER zz_match_bibs_trigger
1509     BEFORE INSERT OR UPDATE ON vandelay.queued_bib_record
1510     FOR EACH ROW EXECUTE PROCEDURE vandelay.match_bib_record();
1511
1512
1513 /* Authority stuff down here */
1514 ---------------------------------------
1515 CREATE TABLE vandelay.authority_attr_definition (
1516         id                      SERIAL  PRIMARY KEY,
1517         code            TEXT    UNIQUE NOT NULL,
1518         description     TEXT,
1519         xpath           TEXT    NOT NULL,
1520         remove          TEXT    NOT NULL DEFAULT ''
1521 );
1522
1523 CREATE TYPE vandelay.authority_queue_queue_type AS ENUM ('authority');
1524 CREATE TABLE vandelay.authority_queue (
1525         queue_type      vandelay.authority_queue_queue_type NOT NULL DEFAULT 'authority',
1526         CONSTRAINT vand_authority_queue_name_once_per_owner_const UNIQUE (owner,name,queue_type)
1527 ) INHERITS (vandelay.queue);
1528 ALTER TABLE vandelay.authority_queue ADD PRIMARY KEY (id);
1529
1530 CREATE TABLE vandelay.queued_authority_record (
1531         queue           INT     NOT NULL REFERENCES vandelay.authority_queue (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
1532         imported_as     INT     REFERENCES authority.record_entry (id) DEFERRABLE INITIALLY DEFERRED,
1533         import_error    TEXT    REFERENCES vandelay.import_error (code) ON DELETE SET NULL ON UPDATE CASCADE DEFERRABLE INITIALLY DEFERRED,
1534         error_detail    TEXT
1535 ) INHERITS (vandelay.queued_record);
1536 ALTER TABLE vandelay.queued_authority_record ADD PRIMARY KEY (id);
1537 CREATE INDEX queued_authority_record_queue_idx ON vandelay.queued_authority_record (queue);
1538
1539 CREATE TABLE vandelay.queued_authority_record_attr (
1540         id                      BIGSERIAL       PRIMARY KEY,
1541         record          BIGINT          NOT NULL REFERENCES vandelay.queued_authority_record (id) DEFERRABLE INITIALLY DEFERRED,
1542         field           INT                     NOT NULL REFERENCES vandelay.authority_attr_definition (id) DEFERRABLE INITIALLY DEFERRED,
1543         attr_value      TEXT            NOT NULL
1544 );
1545 CREATE INDEX queued_authority_record_attr_record_idx ON vandelay.queued_authority_record_attr (record);
1546
1547 CREATE TABLE vandelay.authority_match (
1548         id                              BIGSERIAL       PRIMARY KEY,
1549         queued_record   BIGINT          REFERENCES vandelay.queued_authority_record (id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
1550         eg_record               BIGINT          REFERENCES authority.record_entry (id) DEFERRABLE INITIALLY DEFERRED,
1551     quality         INT         NOT NULL DEFAULT 0
1552 );
1553
1554 CREATE OR REPLACE FUNCTION vandelay.ingest_authority_marc ( ) RETURNS TRIGGER AS $$
1555 DECLARE
1556     value   TEXT;
1557     atype   TEXT;
1558     adef    RECORD;
1559 BEGIN
1560     IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN
1561         RETURN NEW;
1562     END IF;
1563
1564     FOR adef IN SELECT * FROM vandelay.authority_attr_definition LOOP
1565
1566         SELECT extract_marc_field('vandelay.queued_authority_record', id, adef.xpath, adef.remove) INTO value FROM vandelay.queued_authority_record WHERE id = NEW.id;
1567         IF (value IS NOT NULL AND value <> '') THEN
1568             INSERT INTO vandelay.queued_authority_record_attr (record, field, attr_value) VALUES (NEW.id, adef.id, value);
1569         END IF;
1570
1571     END LOOP;
1572
1573     RETURN NULL;
1574 END;
1575 $$ LANGUAGE PLPGSQL;
1576
1577 CREATE OR REPLACE FUNCTION vandelay.cleanup_authority_marc ( ) RETURNS TRIGGER AS $$
1578 BEGIN
1579     IF TG_OP IN ('INSERT','UPDATE') AND NEW.imported_as IS NOT NULL THEN
1580         RETURN NEW;
1581     END IF;
1582
1583     DELETE FROM vandelay.queued_authority_record_attr WHERE record = OLD.id;
1584     IF TG_OP = 'UPDATE' THEN
1585         RETURN NEW;
1586     END IF;
1587     RETURN OLD;
1588 END;
1589 $$ LANGUAGE PLPGSQL;
1590
1591 CREATE TRIGGER cleanup_authority_trigger
1592     BEFORE UPDATE OR DELETE ON vandelay.queued_authority_record
1593     FOR EACH ROW EXECUTE PROCEDURE vandelay.cleanup_authority_marc();
1594
1595 CREATE TRIGGER ingest_authority_trigger
1596     AFTER INSERT OR UPDATE ON vandelay.queued_authority_record
1597     FOR EACH ROW EXECUTE PROCEDURE vandelay.ingest_authority_marc();
1598
1599 CREATE OR REPLACE FUNCTION vandelay.overlay_authority_record ( import_id BIGINT, eg_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
1600 DECLARE
1601     merge_profile   vandelay.merge_profile%ROWTYPE;
1602     dyn_profile     vandelay.compile_profile%ROWTYPE;
1603     source_marc     TEXT;
1604     target_marc     TEXT;
1605     eg_marc         TEXT;
1606     v_marc          TEXT;
1607     replace_rule    TEXT;
1608     match_count     INT;
1609 BEGIN
1610
1611     SELECT  b.marc INTO eg_marc
1612       FROM  authority.record_entry b
1613             JOIN vandelay.authority_match m ON (m.eg_record = b.id AND m.queued_record = import_id)
1614       LIMIT 1;
1615
1616     SELECT  q.marc INTO v_marc
1617       FROM  vandelay.queued_record q
1618             JOIN vandelay.authority_match m ON (m.queued_record = q.id AND q.id = import_id)
1619       LIMIT 1;
1620
1621     IF eg_marc IS NULL OR v_marc IS NULL THEN
1622         -- RAISE NOTICE 'no marc for vandelay or authority record';
1623         RETURN FALSE;
1624     END IF;
1625
1626     dyn_profile := vandelay.compile_profile( v_marc );
1627
1628     IF merge_profile_id IS NOT NULL THEN
1629         SELECT * INTO merge_profile FROM vandelay.merge_profile WHERE id = merge_profile_id;
1630         IF FOUND THEN
1631             dyn_profile.add_rule := BTRIM( dyn_profile.add_rule || ',' || COALESCE(merge_profile.add_spec,''), ',');
1632             dyn_profile.strip_rule := BTRIM( dyn_profile.strip_rule || ',' || COALESCE(merge_profile.strip_spec,''), ',');
1633             dyn_profile.replace_rule := BTRIM( dyn_profile.replace_rule || ',' || COALESCE(merge_profile.replace_spec,''), ',');
1634             dyn_profile.preserve_rule := BTRIM( dyn_profile.preserve_rule || ',' || COALESCE(merge_profile.preserve_spec,''), ',');
1635         END IF;
1636     END IF;
1637
1638     IF dyn_profile.replace_rule <> '' AND dyn_profile.preserve_rule <> '' THEN
1639         -- RAISE NOTICE 'both replace [%] and preserve [%] specified', dyn_profile.replace_rule, dyn_profile.preserve_rule;
1640         RETURN FALSE;
1641     END IF;
1642
1643     IF dyn_profile.replace_rule <> '' THEN
1644         source_marc = v_marc;
1645         target_marc = eg_marc;
1646         replace_rule = dyn_profile.replace_rule;
1647     ELSE
1648         source_marc = eg_marc;
1649         target_marc = v_marc;
1650         replace_rule = dyn_profile.preserve_rule;
1651     END IF;
1652
1653     UPDATE  authority.record_entry
1654       SET   marc = vandelay.merge_record_xml( target_marc, source_marc, dyn_profile.add_rule, replace_rule, dyn_profile.strip_rule )
1655       WHERE id = eg_id;
1656
1657     IF FOUND THEN
1658         UPDATE  vandelay.queued_authority_record
1659           SET   imported_as = eg_id,
1660                 import_time = NOW()
1661           WHERE id = import_id;
1662         RETURN TRUE;
1663     END IF;
1664
1665     -- RAISE NOTICE 'update of authority.record_entry failed';
1666
1667     RETURN FALSE;
1668
1669 END;
1670 $$ LANGUAGE PLPGSQL;
1671
1672 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_record ( import_id BIGINT, merge_profile_id INT ) RETURNS BOOL AS $$
1673 DECLARE
1674     eg_id           BIGINT;
1675     match_count     INT;
1676 BEGIN
1677     SELECT COUNT(*) INTO match_count FROM vandelay.authority_match WHERE queued_record = import_id;
1678
1679     IF match_count <> 1 THEN
1680         -- RAISE NOTICE 'not an exact match';
1681         RETURN FALSE;
1682     END IF;
1683
1684     SELECT  m.eg_record INTO eg_id
1685       FROM  vandelay.authority_match m
1686       WHERE m.queued_record = import_id
1687       LIMIT 1;
1688
1689     IF eg_id IS NULL THEN
1690         RETURN FALSE;
1691     END IF;
1692
1693     RETURN vandelay.overlay_authority_record( import_id, eg_id, merge_profile_id );
1694 END;
1695 $$ LANGUAGE PLPGSQL;
1696
1697 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT, merge_profile_id INT ) RETURNS SETOF BIGINT AS $$
1698 DECLARE
1699     queued_record   vandelay.queued_authority_record%ROWTYPE;
1700 BEGIN
1701
1702     FOR queued_record IN SELECT * FROM vandelay.queued_authority_record WHERE queue = queue_id AND import_time IS NULL LOOP
1703
1704         IF vandelay.auto_overlay_authority_record( queued_record.id, merge_profile_id ) THEN
1705             RETURN NEXT queued_record.id;
1706         END IF;
1707
1708     END LOOP;
1709
1710     RETURN;
1711     
1712 END;
1713 $$ LANGUAGE PLPGSQL;
1714
1715 CREATE OR REPLACE FUNCTION vandelay.auto_overlay_authority_queue ( queue_id BIGINT ) RETURNS SETOF BIGINT AS $$
1716     SELECT * FROM vandelay.auto_overlay_authority_queue( $1, NULL );
1717 $$ LANGUAGE SQL;
1718
1719
1720 -- Vandelay (for importing and exporting records) 012.schema.vandelay.sql 
1721 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (1, 'title', oils_i18n_gettext(1, 'vqbrad', 'Title of work', 'description'),'//*[@tag="245"]/*[contains("abcmnopr",@code)]');
1722 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (2, 'author', oils_i18n_gettext(1, 'vqbrad', 'Author of work', 'description'),'//*[@tag="100" or @tag="110" or @tag="113"]/*[contains("ad",@code)]');
1723 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (3, 'language', oils_i18n_gettext(3, 'vqbrad', 'Language of work', 'description'),'//*[@tag="240"]/*[@code="l"][1]');
1724 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (4, 'pagination', oils_i18n_gettext(4, 'vqbrad', 'Pagination', 'description'),'//*[@tag="300"]/*[@code="a"][1]');
1725 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident, remove ) VALUES (5, 'isbn',oils_i18n_gettext(5, 'vqbrad', 'ISBN', 'description'),'//*[@tag="020"]/*[@code="a"]', TRUE, $r$(?:-|\s.+$)$r$);
1726 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident, remove ) VALUES (6, 'issn',oils_i18n_gettext(6, 'vqbrad', 'ISSN', 'description'),'//*[@tag="022"]/*[@code="a"]', TRUE, $r$(?:-|\s.+$)$r$);
1727 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (7, 'price',oils_i18n_gettext(7, 'vqbrad', 'Price', 'description'),'//*[@tag="020" or @tag="022"]/*[@code="c"][1]');
1728 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident ) VALUES (8, 'rec_identifier',oils_i18n_gettext(8, 'vqbrad', 'Accession Number', 'description'),'//*[@tag="001"]', TRUE);
1729 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident ) VALUES (9, 'eg_tcn',oils_i18n_gettext(9, 'vqbrad', 'TCN Value', 'description'),'//*[@tag="901"]/*[@code="a"]', TRUE);
1730 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident ) VALUES (10, 'eg_tcn_source',oils_i18n_gettext(10, 'vqbrad', 'TCN Source', 'description'),'//*[@tag="901"]/*[@code="b"]', TRUE);
1731 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, ident ) VALUES (11, 'eg_identifier',oils_i18n_gettext(11, 'vqbrad', 'Internal ID', 'description'),'//*[@tag="901"]/*[@code="c"]', TRUE);
1732 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (12, 'publisher',oils_i18n_gettext(12, 'vqbrad', 'Publisher', 'description'),'//*[@tag="260"]/*[@code="b"][1]');
1733 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath, remove ) VALUES (13, 'pubdate',oils_i18n_gettext(13, 'vqbrad', 'Publication Date', 'description'),'//*[@tag="260"]/*[@code="c"][1]',$r$\D$r$);
1734 --INSERT INTO vandelay.bib_attr_definition ( id, code, description, xpath ) VALUES (14, 'edition',oils_i18n_gettext(14, 'vqbrad', 'Edition', 'description'),'//*[@tag="250"]/*[@code="a"][1]');
1735 --
1736 --INSERT INTO vandelay.import_item_attr_definition (
1737 --    owner, name, tag, owning_lib, circ_lib, location,
1738 --    call_number, circ_modifier, barcode, price, copy_number,
1739 --    circulate, ref, holdable, opac_visible, status
1740 --) VALUES (
1741 --    1,
1742 --    'Evergreen 852 export format',
1743 --    '852',
1744 --    '[@code = "b"][1]',
1745 --    '[@code = "b"][2]',
1746 --    'c',
1747 --    'j',
1748 --    'g',
1749 --    'p',
1750 --    'y',
1751 --    't',
1752 --    '[@code = "x" and text() = "circulating"]',
1753 --    '[@code = "x" and text() = "reference"]',
1754 --    '[@code = "x" and text() = "holdable"]',
1755 --    '[@code = "x" and text() = "visible"]',
1756 --    'z'
1757 --);
1758 --
1759 --INSERT INTO vandelay.import_item_attr_definition (
1760 --    owner,
1761 --    name,
1762 --    tag,
1763 --    owning_lib,
1764 --    location,
1765 --    call_number,
1766 --    circ_modifier,
1767 --    barcode,
1768 --    price,
1769 --    status
1770 --) VALUES (
1771 --    1,
1772 --    'Unicorn Import format -- 999',
1773 --    '999',
1774 --    'm',
1775 --    'l',
1776 --    'a',
1777 --    't',
1778 --    'i',
1779 --    'p',
1780 --    'k'
1781 --);
1782 --
1783 --INSERT INTO vandelay.authority_attr_definition ( code, description, xpath, ident ) VALUES ('rec_identifier','Identifier','//*[@tag="001"]', TRUE);
1784
1785 COMMIT;
1786