X-Git-Url: http://git.equinoxoli.org/?p=migration-tools.git;a=blobdiff_plain;f=sql%2Fbase%2Fbase.sql;h=4e8d5bdf2754e23ae7b5c2dc5c2104061f76459f;hp=84c35f326478583da2dde0019cd47b846e3b02e3;hb=2e53c25a974483f4d2519682d38455401cbde08e;hpb=8783c6c281d0aca08c1b88d1067d80a24a513696 diff --git a/sql/base/base.sql b/sql/base/base.sql index 84c35f3..4e8d5bd 100644 --- a/sql/base/base.sql +++ b/sql/base/base.sql @@ -1133,10 +1133,6 @@ CREATE OR REPLACE FUNCTION migration_tools.add_mod16_checkdigit (TEXT) RETURNS T } elsif ($difference == 13) { $checkdigit = '/'; } elsif ($difference == 14) { $checkdigit = '.'; } elsif ($difference == 15) { $checkdigit = '+'; - } elsif ($difference == 16) { $checkdigit = 'A'; - } elsif ($difference == 17) { $checkdigit = 'B'; - } elsif ($difference == 18) { $checkdigit = 'C'; - } elsif ($difference == 19) { $checkdigit = 'D'; } else { die "error calculating checkdigit"; } @@ -3301,6 +3297,53 @@ BEGIN END $$ LANGUAGE plpgsql; +-- yet another subfield 9 function, this one only adds the $9 if the ind1 = 1 or 4 and ind2 = 0 or 1 +DROP FUNCTION IF EXISTS migration_tools.strict_add_sf9(TEXT,TEXT); +CREATE OR REPLACE FUNCTION migration_tools.strict_add_sf9(marc TEXT, new_9 TEXT) + RETURNS TEXT + LANGUAGE plperlu +AS $function$ +use strict; +use warnings; + +use MARC::Record; +use MARC::File::XML (BinaryEncoding => 'utf8'); + +binmode(STDERR, ':bytes'); +binmode(STDOUT, ':utf8'); +binmode(STDERR, ':utf8'); + +my $marc_xml = shift; +my $new_9_to_set = shift; + +$marc_xml =~ s/(.........)./${1}a/; + +eval { + $marc_xml = MARC::Record->new_from_xml($marc_xml); +}; +if ($@) { + #elog("could not parse $bibid: $@\n"); + import MARC::File::XML (BinaryEncoding => 'utf8'); + return $marc_xml; +} + +my @uris = $marc_xml->field('856'); +return $marc_xml->as_xml_record() unless @uris; + +foreach my $field (@uris) { + my $ind1 = $field->indicator('1'); + if (!defined $ind1) { next; } + if ($ind1 ne '1' && $ind1 ne '4') { next; } + my $ind2 = $field->indicator('2'); + if (!defined $ind2) { next; } + if ($ind2 ne '0' && $ind2 ne '1') { next; } + $field->add_subfields( '9' => $new_9_to_set ); +} + +return $marc_xml->as_xml_record(); + +$function$; + -- alternate adding subfield 9 function in that it adds them to existing tags where the 856$u matches a correct value only DROP FUNCTION IF EXISTS migration_tools.add_sf9(TEXT,TEXT,TEXT); CREATE OR REPLACE FUNCTION migration_tools.add_sf9(marc TEXT, partial_u TEXT, new_9 TEXT)