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