1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
|
package Catmandu::Fix::viaf_match;
use strict;
use warnings;
use Catmandu::Sane;
use Moo;
use Catmandu::Fix::Has;
use Catmandu::Util qw(:is);
use Catmandu::Fix::Datahub::Util qw(declare_source);
has path => (fix_arg => 1);
has lang => (fix_opt => 1, default => sub {'nl-NL'});
has fallback_lang => (fix_opt => 1, default => sub {'en-US'});
sub emit {
my ($self, $fixer) = @_;
my $perl = '';
$perl .= 'use Catmandu::VIAF::API;';
my $name = $fixer->generate_var();
my $viaf = $fixer->generate_var();
$perl .= "my ${name};";
$perl .= declare_source($fixer, $self->path, $name);
$perl .= "my ${viaf} = Catmandu::VIAF::API->new(term => ${name}, lang => '".$self->lang."');";
$perl .= $fixer->emit_create_path(
$fixer->var,
$fixer->split_path($self->path),
sub {
my $root = shift;
my $code = '';
$code .= "${root} = ${viaf}->match();";
return $code;
}
);
return $perl;
}
1;
__END__
=encoding utf-8
=head1 NAME
=for html <a href="https://travis-ci.org/thedatahub/Catmandu-VIAF"><img src="https://travis-ci.org/thedatahub/Catmandu-VIAF.svg?branch=master"></a>
Catmandu::Fix::viaf_match - Perform a direct match between a name and a mainHeadingEl from VIAF
=head1 SYNOPSIS
viaf_match(authorName, -lang:'nl-NL', -fallback_lang:'en-US')
=head1 DESCRIPTION
Perform a direct match between a name and a I<mainHeadingEl> and the
I<local.personalNames> of a I<Person> in VIAF. The fix will return
the I<prefLabel> in the provided C<lang>, or C<fallback_lang> if one
in C<lang> does not exist. If C<fallback_lang> also doesn't exist, the
I<prefLabel> will be empty.
Returns the following data:
{
'dcterms:identifier' => 'The identifier',
'guid' => 'The VIAF URL',
'schema:birthDate' => 'Birth date, if provided',
'schema:deathDate' => 'Death date, if provided',
'schema:description' => 'Description, if provided',
'skos:prefLabel' => 'prefLabel, in lang or fallback_lang'
}
=head2 PARAMETERS
=head3 Required parameters
=over
=item C<path>
Path to the name.
=back
=head3 Optional parameters
=over
=item C<lang>
Language of the returned C<skos:prefLabel>. Falls back to
C<fallback_lang> if none was found. Use L<IETF language tags|https://en.wikipedia.org/wiki/IETF_language_tag>.
=item C<fallback_lang>
Fallback language.
=back
=head1 AUTHOR
Pieter De Praetere E<lt>pieter at packed.be E<gt>
=head1 COPYRIGHT
Copyright 2017- PACKED vzw
=head1 LICENSE
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
=head1 SEE ALSO
L<Catmandu>
L<Catmandu::VIAF>
L<Catmandu::Store::VIAF>
L<Catmandu::Fix::viaf_search>
=cut
|