1 package Koha
::MetadataRecord
;
3 # Copyright 2013 C & P Bibliography Services
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 Koha::MetadataRecord - base class for metadata records
26 my $record = new Koha::MetadataRecord({ 'record' => $record });
30 Object-oriented class that encapsulates all metadata (i.e. bibliographic
31 and authority) records in Koha.
41 use base
qw(Class::Accessor);
43 __PACKAGE__
->mk_accessors(qw( record schema format id ));
48 my $metadata_record = new Koha::MetadataRecord({
55 Returns a Koha::MetadataRecord object encapsulating record metadata.
57 C<$record> is expected to be a deserialized object (for example
58 a MARC::Record or XML::LibXML::Document object or JSON).
60 C<$schema> is used to describe the metadata schema (for example
61 marc21, unimarc, dc, mods, etc).
63 C<$format> is used to specify the serialization format. It is important
64 for Koha::RecordProcessor because it will pick the right Koha::Filter
65 implementation based on this parameter. Valid values are:
67 MARC (for MARC::Record objects)
68 XML (for XML::LibXML::Document objects)
69 JSON (for JSON objects)
71 (optional) C<$id> is used so the record carries its own id and Koha doesn't
72 need to look for it inside the record.
81 if (!defined $params->{ record
}) {
82 carp
'No record passed';
86 if (!defined $params->{ schema
}) {
87 carp
'No schema passed';
91 $params->{format
} //= 'MARC';
92 my $self = $class->SUPER::new
($params);
98 =head2 createMergeHash
100 Create a hash for use when merging records. At the moment the only
101 metadata schema supported is MARC.
105 sub createMergeHash
{
106 my ($self, $tagslib) = @_;
107 if ($self->schema =~ m/marc/) {
108 return Koha
::Util
::MARC
::createMergeHash
($self->record, $tagslib);
114 $metadata->{$key} = $record->getKohaField($kohafield);
119 my ($self, $kohafield) = @_;
120 if ($self->schema =~ m/marc/) {
121 return C4
::Biblio
::TransformMarcToKohaOneField
($kohafield, $self->record);