]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/002.functions.config.sql
1a967db55df9cb7e963c05d8c7cb48e55b6d7d28
[Evergreen.git] / Open-ILS / src / sql / Pg / 002.functions.config.sql
1 /*
2  * Copyright (C) 2004-2008  Georgia Public Library Service
3  * Copyright (C) 2008  Equinox Software, Inc.
4  * Mike Rylander <miker@esilibrary.com>
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version 2
9  * of the License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  */
17
18
19 BEGIN;
20
21 /*
22 CREATE OR REPLACE FUNCTION oils_xml_transform ( TEXT, TEXT ) RETURNS TEXT AS $_$
23         SELECT  CASE    WHEN (SELECT COUNT(*) FROM config.xml_transform WHERE name = $2 AND xslt = '---') > 0 THEN $1
24                         ELSE xslt_process($1, (SELECT xslt FROM config.xml_transform WHERE name = $2))
25                 END;
26 $_$ LANGUAGE SQL STRICT IMMUTABLE;
27
28 CREATE OR REPLACE FUNCTION public.extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
29     SELECT regexp_replace(array_to_string( array_accum( output ),' ' ),$4,'','g') FROM oils_xpath_table('id', 'marc', $1, $3, 'id='||$2)x(id INT, output TEXT);
30 $$ LANGUAGE SQL;
31
32 CREATE OR REPLACE FUNCTION oils_xml_uncache (xml TEXT) RETURNS BOOL AS $func$
33   delete $_SHARED{'_xslt_process'}{docs}{shift()};
34   return 1;
35 $func$ LANGUAGE PLPERLU;
36
37 CREATE OR REPLACE FUNCTION oils_xml_cache (xml TEXT) RETURNS BOOL AS $func$
38   use strict;
39   use XML::LibXML;
40
41   my $doc = shift;
42
43   # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68
44   # methods of parsing XML documents and stylesheets, in the hopes of broader
45   # compatibility with distributions
46   my $parser = $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new();
47
48   # Cache the XML parser, if we do not already have one
49   $_SHARED{'_xslt_process'}{parsers}{xml} = $parser
50     unless ($_SHARED{'_xslt_process'}{parsers}{xml});
51
52   # Parse and cache the doc
53   eval { $_SHARED{'_xslt_process'}{docs}{$doc} = $parser->parse_string($doc) };
54
55   return 0 if ($@);
56   return 1;
57 $func$ LANGUAGE PLPERLU;
58
59 -- if we use these, we need to ...
60 drop function oils_xpath(text, text, anyarray);
61
62 CREATE OR REPLACE FUNCTION oils_xpath (xpath TEXT, xml TEXT, ns TEXT[][]) RETURNS TEXT[] AS $func$
63   use strict;
64   use XML::LibXML;
65
66   my $xpath = shift;
67   my $doc = shift;
68   my $ns_string = shift || '';
69   #elog(NOTICE,"ns_string: $ns_string");
70
71   my %ns_list = $ns_string =~ m/\{([^{,]+),([^}]+)\}/g;
72   #elog(NOTICE,"NS Prefix $_: $ns_list{$_}") for (keys %ns_list);
73
74   # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68
75   # methods of parsing XML documents and stylesheets, in the hopes of broader
76   # compatibility with distributions
77   my $parser = eval { $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new() };
78
79   return undef if ($@);
80
81   # Cache the XML parser, if we do not already have one
82   $_SHARED{'_xslt_process'}{parsers}{xml} = $parser
83     unless ($_SHARED{'_xslt_process'}{parsers}{xml});
84
85   # Look for a cached version of the doc, or parse it if none
86   my $dom = eval { $_SHARED{'_xslt_process'}{docs}{$doc} || $parser->parse_string($doc) };
87
88   return undef if ($@);
89
90   # Cache the parsed XML doc, if already there
91   $_SHARED{'_xslt_process'}{docs}{$doc} = $dom
92     unless ($_SHARED{'_xslt_process'}{docs}{$doc});
93
94   # Register the requested namespaces
95   $dom->documentElement->setNamespace( $ns_list{$_} => $_ ) for ( keys %ns_list );
96
97   # Gather and return nodes
98   my @nodes = $dom->findnodes($xpath);
99   #elog(NOTICE,"nodes found by $xpath: ". scalar(@nodes));
100
101   return [ map { $_->toString } @nodes ];
102 $func$ LANGUAGE PLPERLU;
103
104 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS $$SELECT oils_xpath( $1, $2, '{}'::TEXT[] );$$ LANGUAGE SQL IMMUTABLE;
105
106 */
107
108 CREATE FUNCTION version_specific_xpath () RETURNS TEXT AS $wrapper_function$
109 DECLARE
110     out_text TEXT;
111 BEGIN
112     
113     IF REGEXP_REPLACE(VERSION(),E'^.+?(\\d+\\.\\d+).*?$',E'\\1')::FLOAT < 8.3 THEN
114         out_text := 'Creating XPath functions that work like the native XPATH function in 8.3+';
115         
116         EXECUTE $create_82_funcs$
117                         
118 CREATE OR REPLACE FUNCTION oils_xpath ( xpath TEXT, xml TEXT, ns ANYARRAY ) RETURNS TEXT[] AS $func$
119 DECLARE
120     node_text   TEXT;
121     ns_regexp   TEXT;
122     munged_xpath    TEXT;
123 BEGIN
124
125     munged_xpath := xpath;
126
127     IF ns IS NOT NULL AND array_upper(ns, 1) IS NOT NULL THEN
128         FOR namespace IN 1 .. array_upper(ns, 1) LOOP
129             munged_xpath := REGEXP_REPLACE(
130                 munged_xpath,
131                 E'(' || ns[namespace][1] || E'):(\\w+)',
132                 E'*[local-name() = "\\2" and namespace-uri() = "' || ns[namespace][2] || E'"]',
133                 'g'
134             );
135         END LOOP;
136
137         munged_xpath := REGEXP_REPLACE( munged_xpath, E'\\]\\[(\\D)',E' and \\1', 'g');
138     END IF;
139
140     -- RAISE NOTICE 'munged xpath: %', munged_xpath;
141
142     node_text := xpath_nodeset(xml, munged_xpath, 'XXX_OILS_NODESET');
143     -- RAISE NOTICE 'node_text: %', node_text;
144
145     IF munged_xpath ~ $re$/[^/[]*@[^/]+$$re$ THEN
146         node_text := REGEXP_REPLACE(node_text,'<XXX_OILS_NODESET>[^"]+"', '<XXX_OILS_NODESET>', 'g');
147         node_text := REGEXP_REPLACE(node_text,'"</XXX_OILS_NODESET>', '</XXX_OILS_NODESET>', 'g');
148     END IF;
149
150     node_text := REGEXP_REPLACE(node_text,'^<XXX_OILS_NODESET>', '');
151     node_text := REGEXP_REPLACE(node_text,'</XXX_OILS_NODESET>$', '');
152
153     RETURN  STRING_TO_ARRAY(node_text, '</XXX_OILS_NODESET><XXX_OILS_NODESET>');
154 END;
155 $func$ LANGUAGE PLPGSQL IMMUTABLE;
156
157 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS $$SELECT oils_xpath( $1, $2, '{}'::TEXT[] );$$ LANGUAGE SQL IMMUTABLE;
158
159 CREATE OR REPLACE FUNCTION oils_xslt_process(TEXT, TEXT) RETURNS TEXT AS $$
160     SELECT xslt_process( $1, $2 );
161 $$ LANGUAGE SQL IMMUTABLE;
162
163         $create_82_funcs$;
164     ELSIF REGEXP_REPLACE(VERSION(),E'^.+?(\\d+\\.\\d+).*?$',E'\\1')::FLOAT = 8.3 THEN
165         out_text := 'Creating XPath wrapper functions around the native XPATH function in 8.3.  contrib/xml2 still required!';
166
167         EXECUTE $create_83_funcs$
168 -- 8.3 or after
169 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML, $3 )::TEXT[];' LANGUAGE SQL IMMUTABLE;
170 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML )::TEXT[];' LANGUAGE SQL IMMUTABLE;
171
172 CREATE OR REPLACE FUNCTION oils_xslt_process(TEXT, TEXT) RETURNS TEXT AS $$
173     SELECT xslt_process( $1, $2 );
174 $$ LANGUAGE SQL IMMUTABLE;
175
176         $create_83_funcs$;
177
178     ELSE
179         out_text := 'Creating XPath wrapper functions around the native XPATH function in 8.4+, and plperlu-based xslt processor.  No contrib/xml2 needed!';
180
181         EXECUTE $create_84_funcs$
182 -- 8.4 or after
183 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML, $3 )::TEXT[];' LANGUAGE SQL IMMUTABLE;
184 CREATE OR REPLACE FUNCTION oils_xpath ( TEXT, TEXT ) RETURNS TEXT[] AS 'SELECT XPATH( $1, $2::XML )::TEXT[];' LANGUAGE SQL IMMUTABLE;
185
186 CREATE OR REPLACE FUNCTION oils_xslt_process(TEXT, TEXT) RETURNS TEXT AS $func$
187   use strict;
188
189   use XML::LibXSLT;
190   use XML::LibXML;
191
192   my $doc = shift;
193   my $xslt = shift;
194
195   # The following approach uses the older XML::LibXML 1.69 / XML::LibXSLT 1.68
196   # methods of parsing XML documents and stylesheets, in the hopes of broader
197   # compatibility with distributions
198   my $parser = $_SHARED{'_xslt_process'}{parsers}{xml} || XML::LibXML->new();
199
200   # Cache the XML parser, if we do not already have one
201   $_SHARED{'_xslt_process'}{parsers}{xml} = $parser
202     unless ($_SHARED{'_xslt_process'}{parsers}{xml});
203
204   my $xslt_parser = $_SHARED{'_xslt_process'}{parsers}{xslt} || XML::LibXSLT->new();
205
206   # Cache the XSLT processor, if we do not already have one
207   $_SHARED{'_xslt_process'}{parsers}{xslt} = $xslt_parser
208     unless ($_SHARED{'_xslt_process'}{parsers}{xslt});
209
210   my $stylesheet = $_SHARED{'_xslt_process'}{stylesheets}{$xslt} ||
211     $xslt_parser->parse_stylesheet( $parser->parse_string($xslt) );
212
213   $_SHARED{'_xslt_process'}{stylesheets}{$xslt} = $stylesheet
214     unless ($_SHARED{'_xslt_process'}{stylesheets}{$xslt});
215
216   return $stylesheet->output_string(
217     $stylesheet->transform(
218       $parser->parse_string($doc)
219     )
220   );
221
222 $func$ LANGUAGE 'plperlu' STRICT IMMUTABLE;
223
224         $create_84_funcs$;
225
226     END IF;
227
228     RETURN out_text;
229 END;
230 $wrapper_function$ LANGUAGE PLPGSQL;
231
232 SELECT version_specific_xpath();
233 DROP FUNCTION version_specific_xpath();
234
235
236 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
237     SELECT  ARRAY_TO_STRING(
238                 oils_xpath(
239                     $1 ||
240                         CASE WHEN $1 ~ $re$/[^/[]*@[^]]+$$re$ OR $1 ~ $re$text\(\)$$re$ THEN '' ELSE '//text()' END,
241                     $2,
242                     $4
243                 ),
244                 $3
245             );
246 $func$ LANGUAGE SQL IMMUTABLE;
247
248 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, TEXT ) RETURNS TEXT AS $func$
249     SELECT oils_xpath_string( $1, $2, $3, '{}'::TEXT[] );
250 $func$ LANGUAGE SQL IMMUTABLE;
251
252 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT, ANYARRAY ) RETURNS TEXT AS $func$
253     SELECT oils_xpath_string( $1, $2, '', $3 );
254 $func$ LANGUAGE SQL IMMUTABLE;
255
256 CREATE OR REPLACE FUNCTION oils_xpath_string ( TEXT, TEXT ) RETURNS TEXT AS $func$
257     SELECT oils_xpath_string( $1, $2, '{}'::TEXT[] );
258 $func$ LANGUAGE SQL IMMUTABLE;
259
260
261 CREATE OR REPLACE FUNCTION oils_xpath_table ( key TEXT, document_field TEXT, relation_name TEXT, xpaths TEXT, criteria TEXT ) RETURNS SETOF RECORD AS $func$
262 DECLARE
263     xpath_list  TEXT[];
264     select_list TEXT[];
265     where_list  TEXT[];
266     q           TEXT;
267     out_record  RECORD;
268     empty_test  RECORD;
269 BEGIN
270     xpath_list := STRING_TO_ARRAY( xpaths, '|' );
271
272     select_list := ARRAY_APPEND( select_list, key || '::INT AS key' );
273
274     FOR i IN 1 .. ARRAY_UPPER(xpath_list,1) LOOP
275         IF xpath_list[i] = 'null()' THEN
276             select_list := ARRAY_APPEND( select_list, 'NULL::TEXT AS c_' || i );
277         ELSE
278             select_list := ARRAY_APPEND(
279                 select_list,
280                 $sel$
281                 EXPLODE_ARRAY(
282                     COALESCE(
283                         NULLIF(
284                             oils_xpath(
285                                 $sel$ ||
286                                     quote_literal(
287                                         CASE
288                                             WHEN xpath_list[i] ~ $re$/[^/[]*@[^/]+$$re$ OR xpath_list[i] ~ $re$text\(\)$$re$ THEN xpath_list[i]
289                                             ELSE xpath_list[i] || '//text()'
290                                         END
291                                     ) ||
292                                 $sel$,
293                                 $sel$ || document_field || $sel$
294                             ),
295                            '{}'::TEXT[]
296                         ),
297                         '{NULL}'::TEXT[]
298                     )
299                 ) AS c_$sel$ || i
300             );
301             where_list := ARRAY_APPEND(
302                 where_list,
303                 'c_' || i || ' IS NOT NULL'
304             );
305         END IF;
306     END LOOP;
307
308     q := $q$
309 SELECT * FROM (
310     SELECT $q$ || ARRAY_TO_STRING( select_list, ', ' ) || $q$ FROM $q$ || relation_name || $q$ WHERE ($q$ || criteria || $q$)
311 )x WHERE $q$ || ARRAY_TO_STRING( where_list, ' OR ' );
312     -- RAISE NOTICE 'query: %', q;
313
314     FOR out_record IN EXECUTE q LOOP
315         RETURN NEXT out_record;
316     END LOOP;
317
318     RETURN;
319 END;
320 $func$ LANGUAGE PLPGSQL IMMUTABLE;
321
322
323 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT, TEXT ) RETURNS TEXT AS $$
324 DECLARE
325     query TEXT;
326     output TEXT;
327 BEGIN
328     query := $q$
329         SELECT  regexp_replace(
330                     oils_xpath_string(
331                         $q$ || quote_literal($3) || $q$,
332                         marc,
333                         ' '
334                     ),
335                     $q$ || quote_literal($4) || $q$,
336                     '',
337                     'g')
338           FROM  $q$ || $1 || $q$
339           WHERE id = $q$ || $2;
340
341     EXECUTE query INTO output;
342
343     -- RAISE NOTICE 'query: %, output; %', query, output;
344
345     RETURN output;
346 END;
347 $$ LANGUAGE PLPGSQL IMMUTABLE;
348
349 CREATE OR REPLACE FUNCTION extract_marc_field ( TEXT, BIGINT, TEXT ) RETURNS TEXT AS $$
350     SELECT extract_marc_field($1,$2,$3,'');
351 $$ LANGUAGE SQL IMMUTABLE;
352
353
354
355 CREATE OR REPLACE FUNCTION oils_i18n_xlate ( keytable TEXT, keyclass TEXT, keycol TEXT, identcol TEXT, keyvalue TEXT, raw_locale TEXT ) RETURNS TEXT AS $func$
356 DECLARE
357     locale      TEXT := REGEXP_REPLACE( REGEXP_REPLACE( raw_locale, E'[;, ].+$', '' ), E'_', '-', 'g' );
358     language    TEXT := REGEXP_REPLACE( locale, E'-.+$', '' );
359     result      config.i18n_core%ROWTYPE;
360     fallback    TEXT;
361     keyfield    TEXT := keyclass || '.' || keycol;
362 BEGIN
363
364     -- Try the full locale
365     SELECT  * INTO result
366       FROM  config.i18n_core
367       WHERE fq_field = keyfield
368             AND identity_value = keyvalue
369             AND translation = locale;
370
371     -- Try just the language
372     IF NOT FOUND THEN
373         SELECT  * INTO result
374           FROM  config.i18n_core
375           WHERE fq_field = keyfield
376                 AND identity_value = keyvalue
377                 AND translation = language;
378     END IF;
379
380     -- Fall back to the string we passed in in the first place
381     IF NOT FOUND THEN
382         EXECUTE
383             'SELECT ' ||
384                 keycol ||
385             ' FROM ' || keytable ||
386             ' WHERE ' || identcol || ' = ' || quote_literal(keyvalue)
387                 INTO fallback;
388         RETURN fallback;
389     END IF;
390
391     RETURN result.string;
392 END;
393 $func$ LANGUAGE PLPGSQL STABLE;
394
395 -- Functions for marking translatable strings in SQL statements
396 -- Parameters are: primary key, string, class hint, property
397 CREATE OR REPLACE FUNCTION oils_i18n_gettext( INT, TEXT, TEXT, TEXT ) RETURNS TEXT AS $$
398     SELECT $2;
399 $$ LANGUAGE SQL;
400
401 CREATE OR REPLACE FUNCTION oils_i18n_gettext( TEXT, TEXT, TEXT, TEXT ) RETURNS TEXT AS $$
402     SELECT $2;
403 $$ LANGUAGE SQL;
404
405 CREATE OR REPLACE FUNCTION is_json( TEXT ) RETURNS BOOL AS $f$
406     use JSON::XS;
407     my $json = shift();
408     eval { JSON::XS->new->allow_nonref->decode( $json ) };
409     return $@ ? 0 : 1;
410 $f$ LANGUAGE PLPERLU;
411
412 -- turn a JSON scalar into an SQL TEXT value
413 CREATE OR REPLACE FUNCTION oils_json_to_text( TEXT ) RETURNS TEXT AS $f$
414     use JSON::XS;
415     my $json = shift();
416     my $txt;
417     eval { $txt = JSON::XS->new->allow_nonref->decode( $json ) };
418     return undef if ($@);
419     return $txt
420 $f$ LANGUAGE PLPERLU;
421
422 CREATE OR REPLACE FUNCTION maintain_901 () RETURNS TRIGGER AS $func$
423 BEGIN
424     -- Remove any existing 901 fields before we insert the authoritative one
425     NEW.marc := REGEXP_REPLACE(NEW.marc, E'<datafield\s*[^<>]*?\s*tag="901".+?</datafield>', '', 'g');
426     IF TG_TABLE_SCHEMA = 'biblio' THEN
427         NEW.marc := REGEXP_REPLACE(
428             NEW.marc,
429             E'(</(?:[^:]*?:)?record>)',
430             E'<datafield tag="901" ind1=" " ind2=" ">' ||
431                 '<subfield code="a">' || NEW.tcn_value || E'</subfield>' ||
432                 '<subfield code="b">' || NEW.tcn_source || E'</subfield>' ||
433                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
434                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
435                 CASE WHEN NEW.owner IS NOT NULL THEN '<subfield code="o">' || NEW.owner || E'</subfield>' ELSE '' END ||
436                 CASE WHEN NEW.share_depth IS NOT NULL THEN '<subfield code="d">' || NEW.share_depth || E'</subfield>' ELSE '' END ||
437              E'</datafield>\\1'
438         );
439     ELSIF TG_TABLE_SCHEMA = 'authority' THEN
440         NEW.marc := REGEXP_REPLACE(
441             NEW.marc,
442             E'(</(?:[^:]*?:)?record>)',
443             E'<datafield tag="901" ind1=" " ind2=" ">' ||
444                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
445                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
446              E'</datafield>\\1'
447         );
448     ELSIF TG_TABLE_SCHEMA = 'serial' THEN
449         NEW.marc := REGEXP_REPLACE(
450             NEW.marc,
451             E'(</(?:[^:]*?:)?record>)',
452             E'<datafield tag="901" ind1=" " ind2=" ">' ||
453                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
454                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
455                 '<subfield code="o">' || NEW.owning_lib || E'</subfield>' ||
456                 CASE WHEN NEW.record IS NOT NULL THEN '<subfield code="r">' || NEW.record || E'</subfield>' ELSE '' END ||
457              E'</datafield>\\1'
458         );
459     ELSE
460         NEW.marc := REGEXP_REPLACE(
461             NEW.marc,
462             E'(</(?:[^:]*?:)?record>)',
463             E'<datafield tag="901" ind1=" " ind2=" ">' ||
464                 '<subfield code="c">' || NEW.id || E'</subfield>' ||
465                 '<subfield code="t">' || TG_TABLE_SCHEMA || E'</subfield>' ||
466              E'</datafield>\\1'
467         );
468     END IF;
469
470     RETURN NEW;
471 END;
472 $func$ LANGUAGE PLPGSQL;
473
474 CREATE OR REPLACE FUNCTION maintain_control_numbers() RETURNS TRIGGER AS $func$
475 use strict;
476 use MARC::Record;
477 use MARC::File::XML (BinaryEncoding => 'UTF-8');
478 use Encode;
479 use Unicode::Normalize;
480
481 my $record = MARC::Record->new_from_xml($_TD->{new}{marc});
482 my $schema = $_TD->{table_schema};
483 my $rec_id = $_TD->{new}{id};
484
485 # Short-circuit if maintaining control numbers per MARC21 spec is not enabled
486 my $enable = spi_exec_query("SELECT enabled FROM config.global_flag WHERE name = 'cat.maintain_control_numbers'");
487 if (!($enable->{processed}) or $enable->{rows}[0]->{enabled} eq 'f') {
488     return;
489 }
490
491 # Get the control number identifier from an OU setting based on $_TD->{new}{owner}
492 my $ou_cni = 'EVRGRN';
493
494 my $owner;
495 if ($schema eq 'serial') {
496     $owner = $_TD->{new}{owning_lib};
497 } else {
498     # are.owner and bre.owner can be null, so fall back to the consortial setting
499     $owner = $_TD->{new}{owner} || 1;
500 }
501
502 my $ous_rv = spi_exec_query("SELECT value FROM actor.org_unit_ancestor_setting('cat.marc_control_number_identifier', $owner)");
503 if ($ous_rv->{processed}) {
504     $ou_cni = $ous_rv->{rows}[0]->{value};
505     $ou_cni =~ s/"//g; # Stupid VIM syntax highlighting"
506 } else {
507     # Fall back to the shortname of the OU if there was no OU setting
508     $ous_rv = spi_exec_query("SELECT shortname FROM actor.org_unit WHERE id = $owner");
509     if ($ous_rv->{processed}) {
510         $ou_cni = $ous_rv->{rows}[0]->{shortname};
511     }
512 }
513
514 my ($create, $munge) = (0, 0);
515
516 my @scns = $record->field('035');
517
518 foreach my $id_field ('001', '003') {
519     my $spec_value;
520     my @controls = $record->field($id_field);
521
522     if ($id_field eq '001') {
523         $spec_value = $rec_id;
524     } else {
525         $spec_value = $ou_cni;
526     }
527
528     # Create the 001/003 if none exist
529     if (scalar(@controls) == 1) {
530         # Only one field; check to see if we need to munge it
531         unless (grep $_->data() eq $spec_value, @controls) {
532             $munge = 1;
533         }
534     } else {
535         # Delete the other fields, as with more than 1 001/003 we do not know which 003/001 to match
536         foreach my $control (@controls) {
537             unless ($control->data() eq $spec_value) {
538                 $record->delete_field($control);
539             }
540         }
541         $record->insert_fields_ordered(MARC::Field->new($id_field, $spec_value));
542         $create = 1;
543     }
544 }
545
546 # Now, if we need to munge the 001, we will first push the existing 001/003
547 # into the 035; but if the record did not have one (and one only) 001 and 003
548 # to begin with, skip this process
549 if ($munge and not $create) {
550     my $scn = "(" . $record->field('003')->data() . ")" . $record->field('001')->data();
551
552     # Do not create duplicate 035 fields
553     unless (grep $_->subfield('a') eq $scn, @scns) {
554         $record->insert_fields_ordered(MARC::Field->new('035', '', '', 'a' => $scn));
555     }
556 }
557
558 # Set the 001/003 and update the MARC
559 if ($create or $munge) {
560     $record->field('001')->data($rec_id);
561     $record->field('003')->data($ou_cni);
562
563     my $xml = $record->as_xml_record();
564     $xml =~ s/\n//sgo;
565     $xml =~ s/^<\?xml.+\?\s*>//go;
566     $xml =~ s/>\s+</></go;
567     $xml =~ s/\p{Cc}//go;
568
569     # Embed a version of OpenILS::Application::AppUtils->entityize()
570     # to avoid having to set PERL5LIB for PostgreSQL as well
571
572     # If we are going to convert non-ASCII characters to XML entities,
573     # we had better be dealing with a UTF8 string to begin with
574     $xml = decode_utf8($xml);
575
576     $xml = NFC($xml);
577
578     # Convert raw ampersands to entities
579     $xml =~ s/&(?!\S+;)/&amp;/gso;
580
581     # Convert Unicode characters to entities
582     $xml =~ s/([\x{0080}-\x{fffd}])/sprintf('&#x%X;',ord($1))/sgoe;
583
584     $xml =~ s/[\x00-\x1f]//go;
585     $_TD->{new}{marc} = $xml;
586
587     return "MODIFY";
588 }
589
590 return;
591 $func$ LANGUAGE PLPERLU;
592
593 CREATE OR REPLACE FUNCTION oils_text_as_bytea (TEXT) RETURNS BYTEA AS $_$
594     SELECT CAST(REGEXP_REPLACE(UPPER($1), $$\\$$, $$\\\\$$, 'g') AS BYTEA);
595 $_$ LANGUAGE SQL IMMUTABLE;
596
597 COMMIT;
598