3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2010 BibLibre
5 # Copyright 2011 Equinox Software, Inc.
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 use vars
qw(@ISA @EXPORT);
48 GetAuthorisedValueDesc
50 IsMarcStructureInternal
52 GetMarcSubfieldStructureFromKohaField
63 LinkBibHeadingsToAuthorities
71 # those functions are exported but should not be used
72 # they are useful in a few circumstances, so they are exported,
73 # but don't use them unless you are a core developer ;-)
82 use Encode
qw( decode is_utf8 );
83 use List
::MoreUtils
qw( uniq );
85 use MARC
::File
::USMARC
;
87 use POSIX
qw(strftime);
88 use Module
::Load
::Conditional
qw(can_load);
91 use C4
::Log
; # logaction
100 use Koha
::Authority
::Types
;
101 use Koha
::Acquisition
::Currencies
;
102 use Koha
::Biblio
::Metadatas
;
106 use Koha
::SearchEngine
;
108 use Koha
::Util
::MARC
;
110 use vars
qw($debug $cgi_debug);
115 C4::Biblio - cataloging management functions
119 Biblio.pm contains functions for managing storage and editing of bibliographic data within Koha. Most of the functions in this module are used for cataloging records: adding, editing, or removing biblios, biblioitems, or items. Koha's stores bibliographic information in three places:
123 =item 1. in the biblio,biblioitems,items, etc tables, which are limited to a one-to-one mapping to underlying MARC data
125 =item 2. as raw MARC in the Zebra index and storage engine
127 =item 3. as MARC XML in biblio_metadata.metadata
131 In the 3.0 version of Koha, the authoritative record-level information is in biblio_metadata.metadata
133 Because the data isn't completely normalized there's a chance for information to get out of sync. The design choice to go with a un-normalized schema was driven by performance and stability concerns. However, if this occur, it can be considered as a bug : The API is (or should be) complete & the only entry point for all biblio/items managements.
137 =item 1. Compared with MySQL, Zebra is slow to update an index for small data changes -- especially for proc-intensive operations like circulation
139 =item 2. Zebra's index has been known to crash and a backup of the data is necessary to rebuild it in such cases
143 Because of this design choice, the process of managing storage and editing is a bit convoluted. Historically, Biblio.pm's grown to an unmanagable size and as a result we have several types of functions currently:
147 =item 1. Add*/Mod*/Del*/ - high-level external functions suitable for being called from external scripts to manage the collection
149 =item 2. _koha_* - low-level internal functions for managing the koha tables
151 =item 3. Marc management function : as the MARC record is stored in biblio_metadata.metadata, some subs dedicated to it's management are in this package. They should be used only internally by Biblio.pm, the only official entry points being AddBiblio, AddItem, ModBiblio, ModItem.
153 =item 4. Zebra functions used to update the Zebra index
155 =item 5. internal helper functions such as char_decode, checkitems, etc. Some of these probably belong in Koha.pm
159 The MARC record (in biblio_metadata.metadata) contains the complete marc record, including items. It also contains the biblionumber. That is the reason why it is not stored directly by AddBiblio, with all other fields . To save a biblio, we need to :
163 =item 1. save datas in biblio and biblioitems table, that gives us a biblionumber and a biblioitemnumber
165 =item 2. add the biblionumber and biblioitemnumber into the MARC records
167 =item 3. save the marc record
171 =head1 EXPORTED FUNCTIONS
175 ($biblionumber,$biblioitemnumber) = AddBiblio($record,$frameworkcode);
177 Exported function (core API) for adding a new biblio to koha.
179 The first argument is a C<MARC::Record> object containing the
180 bib to add, while the second argument is the desired MARC
183 This function also accepts a third, optional argument: a hashref
184 to additional options. The only defined option is C<defer_marc_save>,
185 which if present and mapped to a true value, causes C<AddBiblio>
186 to omit the call to save the MARC in C<biblio_metadata.metadata>
187 This option is provided B<only>
188 for the use of scripts such as C<bulkmarcimport.pl> that may need
189 to do some manipulation of the MARC record for item parsing before
190 saving it and which cannot afford the performance hit of saving
191 the MARC record twice. Consequently, do not use that option
192 unless you can guarantee that C<ModBiblioMarc> will be called.
198 my $frameworkcode = shift;
199 my $options = @_ ? shift : undef;
200 my $defer_marc_save = 0;
202 carp('AddBiblio called with undefined record');
205 if ( defined $options and exists $options->{'defer_marc_save'} and $options->{'defer_marc_save'} ) {
206 $defer_marc_save = 1;
209 if (C4::Context->preference('BiblioAddsAuthorities')) {
210 BiblioAutoLink( $record, $frameworkcode );
213 my ( $biblionumber, $biblioitemnumber, $error );
214 my $dbh = C4::Context->dbh;
216 # transform the data into koha-table style data
217 SetUTF8Flag($record);
218 my $olddata = TransformMarcToKoha( $record, $frameworkcode );
219 ( $biblionumber, $error ) = _koha_add_biblio( $dbh, $olddata, $frameworkcode );
220 $olddata->{'biblionumber'} = $biblionumber;
221 ( $biblioitemnumber, $error ) = _koha_add_biblioitem( $dbh, $olddata );
223 _koha_marc_update_bib_ids( $record, $frameworkcode, $biblionumber, $biblioitemnumber );
225 # update MARC subfield that stores biblioitems.cn_sort
226 _koha_marc_update_biblioitem_cn_sort( $record, $olddata, $frameworkcode );
229 ModBiblioMarc( $record, $biblionumber, $frameworkcode ) unless $defer_marc_save;
231 # update OAI-PMH sets
232 if(C4::Context->preference("OAI-PMH:AutoUpdateSets")) {
233 C4::OAI::Sets::UpdateOAISetsBiblio($biblionumber, $record);
236 _after_biblio_action_hooks({ action => 'create', biblio_id => $biblionumber });
238 logaction( "CATALOGUING", "ADD", $biblionumber, "biblio" ) if C4::Context->preference("CataloguingLog");
239 return ( $biblionumber, $biblioitemnumber );
244 ModBiblio( $record,$biblionumber,$frameworkcode, $disable_autolink);
246 Replace an existing bib record identified by C<$biblionumber>
247 with one supplied by the MARC::Record object C<$record>. The embedded
248 item, biblioitem, and biblionumber fields from the previous
249 version of the bib record replace any such fields of those tags that
250 are present in C<$record>. Consequently, ModBiblio() is not
251 to be used to try to modify item records.
253 C<$frameworkcode> specifies the MARC framework to use
254 when storing the modified bib record; among other things,
255 this controls how MARC fields get mapped to display columns
256 in the C<biblio> and C<biblioitems> tables, as well as
257 which fields are used to store embedded item, biblioitem,
258 and biblionumber data for indexing.
260 Unless C<$disable_autolink> is passed ModBiblio will relink record headings
261 to authorities based on settings in the system preferences. This flag allows
262 us to not relink records when the authority linker is saving modifications.
264 Returns 1 on success 0 on failure
269 my ( $record, $biblionumber, $frameworkcode, $disable_autolink ) = @_;
271 carp 'No record passed to ModBiblio';
275 if ( C4::Context->preference("CataloguingLog") ) {
276 my $newrecord = GetMarcBiblio({ biblionumber => $biblionumber });
277 logaction( "CATALOGUING", "MODIFY", $biblionumber, "biblio BEFORE=>" . $newrecord->as_formatted );
280 if ( !$disable_autolink && C4::Context->preference('BiblioAddsAuthorities') ) {
281 BiblioAutoLink( $record, $frameworkcode );
284 # Cleaning up invalid fields must be done early or SetUTF8Flag is liable to
285 # throw an exception which probably won't be handled.
286 foreach my $field ($record->fields()) {
287 if (! $field->is_control_field()) {
288 if (scalar($field->subfields()) == 0 || (scalar($field->subfields()) == 1 && $field->subfield('9'))) {
289 $record->delete_field($field);
294 SetUTF8Flag($record);
295 my $dbh = C4::Context->dbh;
297 $frameworkcode = "" if !$frameworkcode || $frameworkcode eq "Default"; # XXX
299 _strip_item_fields($record, $frameworkcode);
301 # update biblionumber and biblioitemnumber in MARC
302 # FIXME - this is assuming a 1 to 1 relationship between
303 # biblios and biblioitems
304 my $sth = $dbh->prepare("select biblioitemnumber from biblioitems where biblionumber=?");
305 $sth->execute($biblionumber);
306 my ($biblioitemnumber) = $sth->fetchrow;
308 _koha_marc_update_bib_ids( $record, $frameworkcode, $biblionumber, $biblioitemnumber );
310 # load the koha-table data object
311 my $oldbiblio = TransformMarcToKoha( $record, $frameworkcode );
313 # update MARC subfield that stores biblioitems.cn_sort
314 _koha_marc_update_biblioitem_cn_sort( $record, $oldbiblio, $frameworkcode );
316 # update the MARC record (that now contains biblio and items) with the new record data
317 &ModBiblioMarc( $record, $biblionumber, $frameworkcode );
319 # modify the other koha tables
320 _koha_modify_biblio( $dbh, $oldbiblio, $frameworkcode );
321 _koha_modify_biblioitem_nonmarc( $dbh, $oldbiblio );
323 _after_biblio_action_hooks({ action => 'modify', biblio_id => $biblionumber });
325 # update OAI-PMH sets
326 if(C4::Context->preference("OAI-PMH:AutoUpdateSets")) {
327 C4::OAI::Sets::UpdateOAISetsBiblio($biblionumber, $record);
333 =head2 _strip_item_fields
335 _strip_item_fields($record, $frameworkcode)
337 Utility routine to remove item tags from a
342 sub _strip_item_fields {
344 my $frameworkcode = shift;
345 # get the items before and append them to the biblio before updating the record, atm we just have the biblio
346 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField( "items.itemnumber" );
348 # delete any item fields from incoming record to avoid
349 # duplication or incorrect data - use AddItem() or ModItem()
351 foreach my $field ( $record->field($itemtag) ) {
352 $record->delete_field($field);
358 my $error = &DelBiblio($biblionumber);
360 Exported function (core API) for deleting a biblio in koha.
361 Deletes biblio record from Zebra and Koha tables (biblio & biblioitems)
362 Also backs it up to deleted* tables.
363 Checks to make sure that the biblio has no items attached.
365 C<$error> : undef unless an error occurs
370 my ($biblionumber) = @_;
372 my $biblio = Koha::Biblios->find( $biblionumber );
373 return unless $biblio; # Should we throw an exception instead?
375 my $dbh = C4::Context->dbh;
376 my $error; # for error handling
378 # First make sure this biblio has no items attached
379 my $sth = $dbh->prepare("SELECT itemnumber FROM items WHERE biblionumber=?");
380 $sth->execute($biblionumber);
381 if ( my $itemnumber = $sth->fetchrow ) {
383 # Fix this to use a status the template can understand
384 $error .= "This Biblio has items attached, please delete them first before deleting this biblio ";
387 return $error if $error;
389 # We delete attached subscriptions
391 my $subscriptions = C4::Serials::GetFullSubscriptionsFromBiblionumber($biblionumber);
392 foreach my $subscription (@$subscriptions) {
393 C4::Serials::DelSubscription( $subscription->{subscriptionid} );
396 # We delete any existing holds
397 my $holds = $biblio->holds;
398 while ( my $hold = $holds->next ) {
402 # Delete in Zebra. Be careful NOT to move this line after _koha_delete_biblio
403 # for at least 2 reasons :
404 # - if something goes wrong, the biblio may be deleted from Koha but not from zebra
405 # and we would have no way to remove it (except manually in zebra, but I bet it would be very hard to handle the problem)
406 ModZebra( $biblionumber, "recordDelete", "biblioserver" );
408 # delete biblioitems and items from Koha tables and save in deletedbiblioitems,deleteditems
409 $sth = $dbh->prepare("SELECT biblioitemnumber FROM biblioitems WHERE biblionumber=?");
410 $sth->execute($biblionumber);
411 while ( my $biblioitemnumber = $sth->fetchrow ) {
413 # delete this biblioitem
414 $error = _koha_delete_biblioitems( $dbh, $biblioitemnumber );
415 return $error if $error;
419 # delete biblio from Koha tables and save in deletedbiblio
420 # must do this *after* _koha_delete_biblioitems, otherwise
421 # delete cascade will prevent deletedbiblioitems rows
422 # from being generated by _koha_delete_biblioitems
423 $error = _koha_delete_biblio( $dbh, $biblionumber );
425 _after_biblio_action_hooks({ action => 'delete', biblio_id => $biblionumber });
427 logaction( "CATALOGUING", "DELETE", $biblionumber, "biblio" ) if C4::Context->preference("CataloguingLog");
433 =head2 BiblioAutoLink
435 my $headings_linked = BiblioAutoLink($record, $frameworkcode)
437 Automatically links headings in a bib record to authorities.
439 Returns the number of headings changed
445 my $frameworkcode = shift;
447 carp('Undefined record passed to BiblioAutoLink');
450 my ( $num_headings_changed, %results );
453 "C4::Linker::" . ( C4::Context->preference("LinkerModule") || 'Default' );
454 unless ( can_load( modules => { $linker_module => undef } ) ) {
455 $linker_module = 'C4::Linker::Default';
456 unless ( can_load( modules => { $linker_module => undef } ) ) {
461 my $linker = $linker_module->new(
462 { 'options' => C4::Context->preference("LinkerOptions") } );
463 my ( $headings_changed, undef ) =
464 LinkBibHeadingsToAuthorities( $linker, $record, $frameworkcode, C4::Context->preference("CatalogModuleRelink") || '' );
465 # By default we probably don't want to relink things when cataloging
466 return $headings_changed;
469 =head2 LinkBibHeadingsToAuthorities
471 my $num_headings_changed, %results = LinkBibHeadingsToAuthorities($linker, $marc, $frameworkcode, [$allowrelink]);
473 Links bib headings to authority records by checking
474 each authority-controlled field in the C<MARC::Record>
475 object C<$marc>, looking for a matching authority record,
476 and setting the linking subfield $9 to the ID of that
479 If $allowrelink is false, existing authids will never be
480 replaced, regardless of the values of LinkerKeepStale and
483 Returns the number of heading links changed in the
488 sub LinkBibHeadingsToAuthorities {
491 my $frameworkcode = shift;
492 my $allowrelink = shift;
495 carp 'LinkBibHeadingsToAuthorities called on undefined bib record';
499 require C4::AuthoritiesMarc;
501 $allowrelink = 1 unless defined $allowrelink;
502 my $num_headings_changed = 0;
503 foreach my $field ( $bib->fields() ) {
504 my $heading = C4::Heading->new_from_bib_field( $field, $frameworkcode );
505 next unless defined $heading;
508 my $current_link = $field->subfield('9');
510 if ( defined $current_link && (!$allowrelink || !C4::Context->preference('LinkerRelink')) )
512 $results{'linked'}->{ $heading->display_form() }++;
516 my ( $authid, $fuzzy ) = $linker->get_link($heading);
518 $results{ $fuzzy ? 'fuzzy' : 'linked' }
519 ->{ $heading->display_form() }++;
520 next if defined $current_link and $current_link == $authid;
522 $field->delete_subfield( code => '9' ) if defined $current_link;
523 $field->add_subfields( '9', $authid );
524 $num_headings_changed++;
527 if ( defined $current_link
528 && (!$allowrelink || C4::Context->preference('LinkerKeepStale')) )
530 $results{'fuzzy'}->{ $heading->display_form() }++;
532 elsif ( C4::Context->preference('AutoCreateAuthorities') ) {
533 if ( _check_valid_auth_link( $current_link, $field ) ) {
534 $results{'linked'}->{ $heading->display_form() }++;
537 my $authority_type = Koha::Authority::Types->find( $heading->auth_type() );
538 my $marcrecordauth = MARC::Record->new();
539 if ( C4::Context->preference('marcflavour') eq 'MARC21' ) {
540 $marcrecordauth->leader(' nz a22 o 4500');
541 SetMarcUnicodeFlag( $marcrecordauth, 'MARC21' );
543 $field->delete_subfield( code => '9' )
544 if defined $current_link;
546 MARC::Field->new( $authority_type->auth_tag_to_report,
547 '', '', "a" => "" . $field->subfield('a') );
549 $authfield->add_subfields( $_->[0] => $_->[1] )
550 if ( $_->[0] =~ /[A-z]/ && $_->[0] ne "a"
551 && C4::Heading::valid_bib_heading_subfield(
552 $field->tag, $_->[0] )
554 } $field->subfields();
555 $marcrecordauth->insert_fields_ordered($authfield);
557 # bug 2317: ensure new authority knows it's using UTF-8; currently
558 # only need to do this for MARC21, as MARC::Record->as_xml_record() handles
559 # automatically for UNIMARC (by not transcoding)
560 # FIXME: AddAuthority() instead should simply explicitly require that the MARC::Record
561 # use UTF-8, but as of 2008-08-05, did not want to introduce that kind
562 # of change to a core API just before the 3.0 release.
564 if ( C4::Context->preference('marcflavour') eq 'MARC21' ) {
565 my $userenv = C4::Context->userenv;
567 if ( $userenv && $userenv->{'branch'} ) {
568 $library = Koha::Libraries->find( $userenv->{'branch'} );
570 $marcrecordauth->insert_fields_ordered(
573 'a' => "Machine generated authority record."
577 $bib->author() . ", "
578 . $bib->title_proper() . ", "
579 . $bib->publication_date() . " ";
580 $cite =~ s/^[\s\,]*//;
581 $cite =~ s/[\s\,]*$//;
584 . ( $library ? $library->get_effective_marcorgcode : C4::Context->preference('MARCOrgCode') ) . ")"
585 . $bib->subfield( '999', 'c' ) . ": "
587 $marcrecordauth->insert_fields_ordered(
588 MARC::Field->new( '670', '', '', 'a' => $cite ) );
591 # warn "AUTH RECORD ADDED : ".$marcrecordauth->as_formatted;
594 C4::AuthoritiesMarc::AddAuthority( $marcrecordauth, '',
595 $heading->auth_type() );
596 $field->add_subfields( '9', $authid );
597 $num_headings_changed++;
598 $linker->update_cache($heading, $authid);
599 $results{'added'}->{ $heading->display_form() }++;
602 elsif ( defined $current_link ) {
603 if ( _check_valid_auth_link( $current_link, $field ) ) {
604 $results{'linked'}->{ $heading->display_form() }++;
607 $field->delete_subfield( code => '9' );
608 $num_headings_changed++;
609 $results{'unlinked'}->{ $heading->display_form() }++;
613 $results{'unlinked'}->{ $heading->display_form() }++;
618 return $num_headings_changed, \%results;
621 =head2 _check_valid_auth_link
623 if ( _check_valid_auth_link($authid, $field) ) {
627 Check whether the specified heading-auth link is valid without reference
628 to Zebra. Ideally this code would be in C4::Heading, but that won't be
629 possible until we have de-cycled C4::AuthoritiesMarc, so this is the
634 sub _check_valid_auth_link {
635 my ( $authid, $field ) = @_;
636 require C4::AuthoritiesMarc;
638 my $authorized_heading =
639 C4::AuthoritiesMarc::GetAuthorizedHeading( { 'authid' => $authid } ) || '';
640 return ($field->as_string('abcdefghijklmnopqrstuvwxyz') eq $authorized_heading);
645 $data = &GetBiblioData($biblionumber);
647 Returns information about the book with the given biblionumber.
648 C<&GetBiblioData> returns a reference-to-hash. The keys are the fields in
649 the C<biblio> and C<biblioitems> tables in the
652 In addition, C<$data-E<gt>{subject}> is the list of the book's
653 subjects, separated by C<" , "> (space, comma, space).
654 If there are multiple biblioitems with the given biblionumber, only
655 the first one is considered.
661 my $dbh = C4::Context->dbh;
663 my $query = " SELECT * , biblioitems.notes AS bnotes, itemtypes.notforloan as bi_notforloan, biblio.notes
665 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
666 LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype
667 WHERE biblio.biblionumber = ?";
669 my $sth = $dbh->prepare($query);
670 $sth->execute($bibnum);
672 $data = $sth->fetchrow_hashref;
676 } # sub GetBiblioData
680 $isbd = &GetISBDView({
681 'record' => $marc_record,
682 'template' => $interface, # opac/intranet
683 'framework' => $framework,
686 Return the ISBD view which can be included in opac and intranet
693 # Expecting record WITH items.
694 my $record = $params->{record};
695 return unless defined $record;
697 my $template = $params->{template} // q{};
698 my $sysprefname = $template eq 'opac' ?
'opacisbd' : 'isbd';
699 my $framework = $params->{framework
};
700 my $itemtype = $framework;
701 my ( $holdingbrtagf, $holdingbrtagsubf ) = &GetMarcFromKohaField
( "items.holdingbranch" );
702 my $tagslib = GetMarcStructure
( 1, $itemtype, { unsafe
=> 1 } );
704 my $ISBD = C4
::Context
->preference($sysprefname);
709 foreach my $isbdfield ( split( /#/, $bloc ) ) {
711 # $isbdfield= /(.?.?.?)/;
712 $isbdfield =~ /(\d\d\d)([^\|])?\|(.*)\|(.*)\|(.*)/;
713 my $fieldvalue = $1 || 0;
714 my $subfvalue = $2 || "";
716 my $analysestring = $4;
719 # warn "==> $1 / $2 / $3 / $4";
720 # my $fieldvalue=substr($isbdfield,0,3);
721 if ( $fieldvalue > 0 ) {
722 my $hasputtextbefore = 0;
723 my @fieldslist = $record->field($fieldvalue);
724 @fieldslist = sort { $a->subfield($holdingbrtagsubf) cmp $b->subfield($holdingbrtagsubf) } @fieldslist if ( $fieldvalue eq $holdingbrtagf );
726 # warn "ERROR IN ISBD DEFINITION at : $isbdfield" unless $fieldvalue;
727 # warn "FV : $fieldvalue";
728 if ( $subfvalue ne "" ) {
729 # OPAC hidden subfield
731 if ( ( $template eq 'opac' )
732 && ( $tagslib->{$fieldvalue}->{$subfvalue}->{'hidden'} || 0 ) > 0 );
733 foreach my $field (@fieldslist) {
734 foreach my $subfield ( $field->subfield($subfvalue) ) {
735 my $calculated = $analysestring;
736 my $tag = $field->tag();
739 my $subfieldvalue = GetAuthorisedValueDesc
( $tag, $subfvalue, $subfield, '', $tagslib );
740 my $tagsubf = $tag . $subfvalue;
741 $calculated =~ s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
742 if ( $template eq "opac" ) { $calculated =~ s
#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g; }
744 # field builded, store the result
745 if ( $calculated && !$hasputtextbefore ) { # put textbefore if not done
746 $blocres .= $textbefore;
747 $hasputtextbefore = 1;
750 # remove punctuation at start
751 $calculated =~ s/^( |;|:|\.|-)*//g;
752 $blocres .= $calculated;
757 $blocres .= $textafter if $hasputtextbefore;
759 foreach my $field (@fieldslist) {
760 my $calculated = $analysestring;
761 my $tag = $field->tag();
764 my @subf = $field->subfields;
765 for my $i ( 0 .. $#subf ) {
766 my $valuecode = $subf[$i][1];
767 my $subfieldcode = $subf[$i][0];
768 # OPAC hidden subfield
770 if ( ( $template eq 'opac' )
771 && ( $tagslib->{$fieldvalue}->{$subfieldcode}->{'hidden'} || 0 ) > 0 );
772 my $subfieldvalue = GetAuthorisedValueDesc
( $tag, $subf[$i][0], $subf[$i][1], '', $tagslib );
773 my $tagsubf = $tag . $subfieldcode;
775 $calculated =~ s
/ # replace all {{}} codes by the value code.
776 \
{\
{$tagsubf\
}\
} # catch the {{actualcode}}
778 $valuecode # replace by the value code
781 $calculated =~ s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
782 if ( $template eq "opac" ) { $calculated =~ s
#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g; }
785 # field builded, store the result
786 if ( $calculated && !$hasputtextbefore ) { # put textbefore if not done
787 $blocres .= $textbefore;
788 $hasputtextbefore = 1;
791 # remove punctuation at start
792 $calculated =~ s/^( |;|:|\.|-)*//g;
793 $blocres .= $calculated;
796 $blocres .= $textafter if $hasputtextbefore;
799 $blocres .= $isbdfield;
804 $res =~ s/\{(.*?)\}//g;
806 $res =~ s/\n/<br\/>/g
;
814 =head1 FUNCTIONS FOR HANDLING MARC MANAGEMENT
816 =head2 IsMarcStructureInternal
818 my $tagslib = C4::Biblio::GetMarcStructure();
819 for my $tag ( sort keys %$tagslib ) {
821 for my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
822 next if IsMarcStructureInternal($tagslib->{$tag}{$subfield});
827 GetMarcStructure creates keys (lib, tab, mandatory, repeatable, important) for a display purpose.
828 These different values should not be processed as valid subfields.
832 sub IsMarcStructureInternal
{
833 my ( $subfield ) = @_;
834 return ref $subfield ?
0 : 1;
837 =head2 GetMarcStructure
839 $res = GetMarcStructure($forlibrarian, $frameworkcode, [ $params ]);
841 Returns a reference to a big hash of hash, with the Marc structure for the given frameworkcode
842 $forlibrarian :if set to 1, the MARC descriptions are the librarians ones, otherwise it's the public (OPAC) ones
843 $frameworkcode : the framework code to read
844 $params allows you to pass { unsafe => 1 } for better performance.
846 Note: If you call GetMarcStructure with unsafe => 1, do not modify or
847 even autovivify its contents. It is a cached/shared data structure. Your
848 changes c/would be passed around in subsequent calls.
852 sub GetMarcStructure
{
853 my ( $forlibrarian, $frameworkcode, $params ) = @_;
854 $frameworkcode = "" unless $frameworkcode;
856 $forlibrarian = $forlibrarian ?
1 : 0;
857 my $unsafe = ($params && $params->{unsafe
})?
1: 0;
858 my $cache = Koha
::Caches
->get_instance();
859 my $cache_key = "MarcStructure-$forlibrarian-$frameworkcode";
860 my $cached = $cache->get_from_cache($cache_key, { unsafe
=> $unsafe });
861 return $cached if $cached;
863 my $dbh = C4
::Context
->dbh;
864 my $sth = $dbh->prepare(
865 "SELECT tagfield,liblibrarian,libopac,mandatory,repeatable,important,ind1_defaultvalue,ind2_defaultvalue
866 FROM marc_tag_structure
867 WHERE frameworkcode=?
870 $sth->execute($frameworkcode);
871 my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable, $important, $ind1_defaultvalue, $ind2_defaultvalue );
873 while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable, $important, $ind1_defaultvalue, $ind2_defaultvalue ) = $sth->fetchrow ) {
874 $res->{$tag}->{lib
} = ( $forlibrarian or !$libopac ) ?
$liblibrarian : $libopac;
875 $res->{$tag}->{tab
} = "";
876 $res->{$tag}->{mandatory
} = $mandatory;
877 $res->{$tag}->{important
} = $important;
878 $res->{$tag}->{repeatable
} = $repeatable;
879 $res->{$tag}->{ind1_defaultvalue
} = $ind1_defaultvalue;
880 $res->{$tag}->{ind2_defaultvalue
} = $ind2_defaultvalue;
883 $sth = $dbh->prepare(
884 "SELECT tagfield,tagsubfield,liblibrarian,libopac,tab,mandatory,repeatable,authorised_value,authtypecode,value_builder,kohafield,seealso,hidden,isurl,link,defaultvalue,maxlength,important
885 FROM marc_subfield_structure
886 WHERE frameworkcode=?
887 ORDER BY tagfield,tagsubfield
891 $sth->execute($frameworkcode);
894 my $authorised_value;
906 ( $tag, $subfield, $liblibrarian, $libopac, $tab, $mandatory, $repeatable, $authorised_value,
907 $authtypecode, $value_builder, $kohafield, $seealso, $hidden, $isurl, $link, $defaultvalue,
908 $maxlength, $important
912 $res->{$tag}->{$subfield}->{lib
} = ( $forlibrarian or !$libopac ) ?
$liblibrarian : $libopac;
913 $res->{$tag}->{$subfield}->{tab
} = $tab;
914 $res->{$tag}->{$subfield}->{mandatory
} = $mandatory;
915 $res->{$tag}->{$subfield}->{important
} = $important;
916 $res->{$tag}->{$subfield}->{repeatable
} = $repeatable;
917 $res->{$tag}->{$subfield}->{authorised_value
} = $authorised_value;
918 $res->{$tag}->{$subfield}->{authtypecode
} = $authtypecode;
919 $res->{$tag}->{$subfield}->{value_builder
} = $value_builder;
920 $res->{$tag}->{$subfield}->{kohafield
} = $kohafield;
921 $res->{$tag}->{$subfield}->{seealso
} = $seealso;
922 $res->{$tag}->{$subfield}->{hidden
} = $hidden;
923 $res->{$tag}->{$subfield}->{isurl
} = $isurl;
924 $res->{$tag}->{$subfield}->{'link'} = $link;
925 $res->{$tag}->{$subfield}->{defaultvalue
} = $defaultvalue;
926 $res->{$tag}->{$subfield}->{maxlength
} = $maxlength;
929 $cache->set_in_cache($cache_key, $res);
933 =head2 GetUsedMarcStructure
935 The same function as GetMarcStructure except it just takes field
936 in tab 0-9. (used field)
938 my $results = GetUsedMarcStructure($frameworkcode);
940 C<$results> is a ref to an array which each case contains a ref
941 to a hash which each keys is the columns from marc_subfield_structure
943 C<$frameworkcode> is the framework code.
947 sub GetUsedMarcStructure
{
948 my $frameworkcode = shift || '';
951 FROM marc_subfield_structure
953 AND frameworkcode = ?
954 ORDER BY tagfield, tagsubfield
956 my $sth = C4
::Context
->dbh->prepare($query);
957 $sth->execute($frameworkcode);
958 return $sth->fetchall_arrayref( {} );
963 =head2 GetMarcSubfieldStructure
965 my $structure = GetMarcSubfieldStructure($frameworkcode, [$params]);
967 Returns a reference to hash representing MARC subfield structure
968 for framework with framework code C<$frameworkcode>, C<$params> is
969 optional and may contain additional options.
973 =item C<$frameworkcode>
979 An optional hash reference with additional options.
980 The following options are supported:
986 Pass { unsafe => 1 } do disable cached object cloning,
987 and instead get a shared reference, resulting in better
988 performance (but care must be taken so that retured object
991 Note: If you call GetMarcSubfieldStructure with unsafe => 1, do not modify or
992 even autovivify its contents. It is a cached/shared data structure. Your
993 changes would be passed around in subsequent calls.
1001 sub GetMarcSubfieldStructure
{
1002 my ( $frameworkcode, $params ) = @_;
1004 $frameworkcode //= '';
1006 my $cache = Koha
::Caches
->get_instance();
1007 my $cache_key = "MarcSubfieldStructure-$frameworkcode";
1008 my $cached = $cache->get_from_cache($cache_key, { unsafe
=> ($params && $params->{unsafe
}) });
1009 return $cached if $cached;
1011 my $dbh = C4
::Context
->dbh;
1012 # We moved to selectall_arrayref since selectall_hashref does not
1013 # keep duplicate mappings on kohafield (like place in 260 vs 264)
1014 my $subfield_aref = $dbh->selectall_arrayref( q
|
1016 FROM marc_subfield_structure
1017 WHERE frameworkcode
= ?
1019 ORDER BY frameworkcode
,tagfield
,tagsubfield
1020 |, { Slice
=> {} }, $frameworkcode );
1021 # Now map the output to a hash structure
1022 my $subfield_structure = {};
1023 foreach my $row ( @
$subfield_aref ) {
1024 push @
{ $subfield_structure->{ $row->{kohafield
} }}, $row;
1026 $cache->set_in_cache( $cache_key, $subfield_structure );
1027 return $subfield_structure;
1030 =head2 GetMarcFromKohaField
1032 ( $field,$subfield ) = GetMarcFromKohaField( $kohafield );
1033 @fields = GetMarcFromKohaField( $kohafield );
1034 $field = GetMarcFromKohaField( $kohafield );
1036 Returns the MARC fields & subfields mapped to $kohafield.
1037 Since the Default framework is considered as authoritative for such
1038 mappings, the former frameworkcode parameter is obsoleted.
1040 In list context all mappings are returned; there can be multiple
1041 mappings. Note that in the above example you could miss a second
1042 mappings in the first call.
1043 In scalar context only the field tag of the first mapping is returned.
1047 sub GetMarcFromKohaField
{
1048 my ( $kohafield ) = @_;
1049 return unless $kohafield;
1050 # The next call uses the Default framework since it is AUTHORITATIVE
1051 # for all Koha to MARC mappings.
1052 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # Do not change framework
1054 foreach( @
{ $mss->{$kohafield} } ) {
1055 push @retval, $_->{tagfield
}, $_->{tagsubfield
};
1057 return wantarray ?
@retval : ( @retval ?
$retval[0] : undef );
1060 =head2 GetMarcSubfieldStructureFromKohaField
1062 my $str = GetMarcSubfieldStructureFromKohaField( $kohafield );
1064 Returns marc subfield structure information for $kohafield.
1065 The Default framework is used, since it is authoritative for kohafield
1067 In list context returns a list of all hashrefs, since there may be
1068 multiple mappings. In scalar context the first hashref is returned.
1072 sub GetMarcSubfieldStructureFromKohaField
{
1073 my ( $kohafield ) = @_;
1075 return unless $kohafield;
1077 # The next call uses the Default framework since it is AUTHORITATIVE
1078 # for all Koha to MARC mappings.
1079 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # Do not change framework
1080 return unless $mss->{$kohafield};
1081 return wantarray ? @
{$mss->{$kohafield}} : $mss->{$kohafield}->[0];
1084 =head2 GetMarcBiblio
1086 my $record = GetMarcBiblio({
1087 biblionumber => $biblionumber,
1088 embed_items => $embeditems,
1090 borcat => $patron_category });
1092 Returns MARC::Record representing a biblio record, or C<undef> if the
1093 biblionumber doesn't exist.
1095 Both embed_items and opac are optional.
1096 If embed_items is passed and is 1, items are embedded.
1097 If opac is passed and is 1, the record is filtered as needed.
1101 =item C<$biblionumber>
1105 =item C<$embeditems>
1107 set to true to include item information.
1111 set to true to make the result suited for OPAC view. This causes things like
1112 OpacHiddenItems to be applied.
1116 If the OpacHiddenItemsExceptions system preference is set, this patron category
1117 can be used to make visible OPAC items which would be normally hidden.
1118 It only makes sense in combination both embed_items and opac values true.
1127 if (not defined $params) {
1128 carp
'GetMarcBiblio called without parameters';
1132 my $biblionumber = $params->{biblionumber
};
1133 my $embeditems = $params->{embed_items
} || 0;
1134 my $opac = $params->{opac
} || 0;
1135 my $borcat = $params->{borcat
} // q{};
1137 if (not defined $biblionumber) {
1138 carp
'GetMarcBiblio called with undefined biblionumber';
1142 my $dbh = C4
::Context
->dbh;
1143 my $sth = $dbh->prepare("SELECT biblioitemnumber FROM biblioitems WHERE biblionumber=? ");
1144 $sth->execute($biblionumber);
1145 my $row = $sth->fetchrow_hashref;
1146 my $biblioitemnumber = $row->{'biblioitemnumber'};
1147 my $marcxml = GetXmlBiblio
( $biblionumber );
1148 $marcxml = StripNonXmlChars
( $marcxml );
1149 my $frameworkcode = GetFrameworkCode
($biblionumber);
1150 MARC
::File
::XML
->default_record_format( C4
::Context
->preference('marcflavour') );
1151 my $record = MARC
::Record
->new();
1155 MARC
::Record
::new_from_xml
( $marcxml, "utf8",
1156 C4
::Context
->preference('marcflavour') );
1158 if ($@
) { warn " problem with :$biblionumber : $@ \n$marcxml"; }
1159 return unless $record;
1161 C4
::Biblio
::_koha_marc_update_bib_ids
( $record, $frameworkcode, $biblionumber,
1162 $biblioitemnumber );
1163 C4
::Biblio
::EmbedItemsInMarcBiblio
({
1164 marc_record
=> $record,
1165 biblionumber
=> $biblionumber,
1167 borcat
=> $borcat })
1179 my $marcxml = GetXmlBiblio($biblionumber);
1181 Returns biblio_metadata.metadata/marcxml of the biblionumber passed in parameter.
1182 The XML should only contain biblio information (item information is no longer stored in marcxml field)
1187 my ($biblionumber) = @_;
1188 my $dbh = C4
::Context
->dbh;
1189 return unless $biblionumber;
1190 my ($marcxml) = $dbh->selectrow_array(
1193 FROM biblio_metadata
1194 WHERE biblionumber
=?
1195 AND format
='marcxml'
1197 |, undef, $biblionumber, C4
::Context
->preference('marcflavour')
1204 return the prices in accordance with the Marc format.
1206 returns 0 if no price found
1207 returns undef if called without a marc record or with
1208 an unrecognized marc format
1213 my ( $record, $marcflavour ) = @_;
1215 carp
'GetMarcPrice called on undefined record';
1222 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
1223 @listtags = ('345', '020');
1225 } elsif ( $marcflavour eq "UNIMARC" ) {
1226 @listtags = ('345', '010');
1232 for my $field ( $record->field(@listtags) ) {
1233 for my $subfield_value ($field->subfield($subfield)){
1235 $subfield_value = MungeMarcPrice
( $subfield_value );
1236 return $subfield_value if ($subfield_value);
1239 return 0; # no price found
1242 =head2 MungeMarcPrice
1244 Return the best guess at what the actual price is from a price field.
1248 sub MungeMarcPrice
{
1250 return unless ( $price =~ m/\d/ ); ## No digits means no price.
1251 # Look for the currency symbol and the normalized code of the active currency, if it's there,
1252 my $active_currency = Koha
::Acquisition
::Currencies
->get_active;
1253 my $symbol = $active_currency->symbol;
1254 my $isocode = $active_currency->isocode;
1255 $isocode = $active_currency->currency unless defined $isocode;
1258 my @matches =($price=~ /
1260 ( # start of capturing parenthesis
1262 (?
:[\p
{Sc
}\p
{L
}\
/.]){1,4} # any character from Currency signs or Letter Unicode categories or slash or dot within 1 to 4 occurrences : call this whole block 'symbol block'
1263 |(?
:\d
+[\p
{P
}\s
]?
){1,4} # or else at least one digit followed or not by a punctuation sign or whitespace, all these within 1 to 4 occurrences : call this whole block 'digits block'
1265 \s?\p
{Sc
}?\s?
# followed or not by a whitespace. \p{Sc}?\s? are for cases like '25$ USD'
1267 (?
:[\p
{Sc
}\p
{L
}\
/.]){1,4} # followed by same block as symbol block
1268 |(?
:\d
+[\p
{P
}\s
]?
){1,4} # or by same block as digits block
1270 \s?\p
{L
}{0,4}\s?
# followed or not by a whitespace. \p{L}{0,4}\s? are for cases like '$9.50 USD'
1271 ) # end of capturing parenthesis
1272 (?
:\p
{P
}|\z
) # followed by a punctuation sign or by the end of the string
1276 foreach ( @matches ) {
1277 $localprice = $_ and last if index($_, $isocode)>=0;
1279 if ( !$localprice ) {
1280 foreach ( @matches ) {
1281 $localprice = $_ and last if $_=~ /(^|[^\p{Sc}\p{L}\/])\Q
$symbol\E
([^\p
{Sc
}\p
{L
}\
/]+\z|\z)/;
1286 if ( $localprice ) {
1287 $price = $localprice;
1289 ## Grab the first number in the string ( can use commas or periods for thousands separator and/or decimal separator )
1290 ( $price ) = $price =~ m/([\d\,\.]+[[\,\.]\d\d]?)/;
1292 # eliminate symbol/isocode, space and any final dot from the string
1293 $price =~ s/[\p{Sc}\p{L}\/ ]|\.$//g
;
1294 # remove comma,dot when used as separators from hundreds
1295 $price =~s/[\,\.](\d{3})/$1/g;
1296 # convert comma to dot to ensure correct display of decimals if existing
1302 =head2 GetMarcQuantity
1304 return the quantity of a book. Used in acquisition only, when importing a file an iso2709 from a bookseller
1305 Warning : this is not really in the marc standard. In Unimarc, Electre (the most widely used bookseller) use the 969$a
1307 returns 0 if no quantity found
1308 returns undef if called without a marc record or with
1309 an unrecognized marc format
1313 sub GetMarcQuantity
{
1314 my ( $record, $marcflavour ) = @_;
1316 carp
'GetMarcQuantity called on undefined record';
1323 if ( $marcflavour eq "MARC21" ) {
1325 } elsif ( $marcflavour eq "UNIMARC" ) {
1326 @listtags = ('969');
1332 for my $field ( $record->field(@listtags) ) {
1333 for my $subfield_value ($field->subfield($subfield)){
1335 if ($subfield_value) {
1336 # in France, the cents separator is the , but sometimes, ppl use a .
1337 # in this case, the price will be x100 when unformatted ! Replace the . by a , to get a proper price calculation
1338 $subfield_value =~ s/\./,/ if C4
::Context
->preference("CurrencyFormat") eq "FR";
1339 return $subfield_value;
1343 return 0; # no price found
1347 =head2 GetAuthorisedValueDesc
1349 my $subfieldvalue =get_authorised_value_desc(
1350 $tag, $subf[$i][0],$subf[$i][1], '', $taglib, $category, $opac);
1352 Retrieve the complete description for a given authorised value.
1354 Now takes $category and $value pair too.
1356 my $auth_value_desc =GetAuthorisedValueDesc(
1357 '','', 'DVD' ,'','','CCODE');
1359 If the optional $opac parameter is set to a true value, displays OPAC
1360 descriptions rather than normal ones when they exist.
1364 sub GetAuthorisedValueDesc
{
1365 my ( $tag, $subfield, $value, $framework, $tagslib, $category, $opac ) = @_;
1369 return $value unless defined $tagslib->{$tag}->{$subfield}->{'authorised_value'};
1372 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
1373 my $branch = Koha
::Libraries
->find($value);
1374 return $branch?
$branch->branchname: q{};
1378 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
1379 my $itemtype = Koha
::ItemTypes
->find( $value );
1380 return $itemtype ?
$itemtype->translated_description : q
||;
1383 #---- "true" authorized value
1384 $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
1387 my $dbh = C4
::Context
->dbh;
1388 if ( $category ne "" ) {
1389 my $sth = $dbh->prepare( "SELECT lib, lib_opac FROM authorised_values WHERE category = ? AND authorised_value = ?" );
1390 $sth->execute( $category, $value );
1391 my $data = $sth->fetchrow_hashref;
1392 return ( $opac && $data->{'lib_opac'} ) ?
$data->{'lib_opac'} : $data->{'lib'};
1394 return $value; # if nothing is found return the original value
1398 =head2 GetMarcControlnumber
1400 $marccontrolnumber = GetMarcControlnumber($record,$marcflavour);
1402 Get the control number / record Identifier from the MARC record and return it.
1406 sub GetMarcControlnumber
{
1407 my ( $record, $marcflavour ) = @_;
1409 carp
'GetMarcControlnumber called on undefined record';
1412 my $controlnumber = "";
1413 # Control number or Record identifier are the same field in MARC21, UNIMARC and NORMARC
1414 # Keep $marcflavour for possible later use
1415 if ($marcflavour eq "MARC21" || $marcflavour eq "UNIMARC" || $marcflavour eq "NORMARC") {
1416 my $controlnumberField = $record->field('001');
1417 if ($controlnumberField) {
1418 $controlnumber = $controlnumberField->data();
1421 return $controlnumber;
1426 $marcisbnsarray = GetMarcISBN( $record, $marcflavour );
1428 Get all ISBNs from the MARC record and returns them in an array.
1429 ISBNs stored in different fields depending on MARC flavour
1434 my ( $record, $marcflavour ) = @_;
1436 carp
'GetMarcISBN called on undefined record';
1440 if ( $marcflavour eq "UNIMARC" ) {
1442 } else { # assume marc21 if not unimarc
1447 foreach my $field ( $record->field($scope) ) {
1448 my $isbn = $field->subfield( 'a' );
1449 if ( $isbn && $isbn ne "" ) {
1450 push @marcisbns, $isbn;
1460 $marcissnsarray = GetMarcISSN( $record, $marcflavour );
1462 Get all valid ISSNs from the MARC record and returns them in an array.
1463 ISSNs are stored in different fields depending on MARC flavour
1468 my ( $record, $marcflavour ) = @_;
1470 carp
'GetMarcISSN called on undefined record';
1474 if ( $marcflavour eq "UNIMARC" ) {
1477 else { # assume MARC21 or NORMARC
1481 foreach my $field ( $record->field($scope) ) {
1482 push @marcissns, $field->subfield( 'a' )
1483 if ( $field->subfield( 'a' ) ne "" );
1490 $marcnotesarray = GetMarcNotes( $record, $marcflavour );
1492 Get all notes from the MARC record and returns them in an array.
1493 The notes are stored in different fields depending on MARC flavour.
1494 MARC21 5XX $u subfields receive special attention as they are URIs.
1499 my ( $record, $marcflavour, $opac ) = @_;
1501 carp
'GetMarcNotes called on undefined record';
1505 my $scope = $marcflavour eq "UNIMARC"?
'3..': '5..';
1508 #MARC21 specs indicate some notes should be private if first indicator 0
1509 my %maybe_private = (
1517 my %blacklist = map { $_ => 1 }
1518 split( /,/, C4
::Context
->preference('NotesBlacklist'));
1519 foreach my $field ( $record->field($scope) ) {
1520 my $tag = $field->tag();
1521 next if $blacklist{ $tag };
1522 next if $opac && $maybe_private{$tag} && !$field->indicator(1);
1523 if( $marcflavour ne 'UNIMARC' && $field->subfield('u') ) {
1524 # Field 5XX$u always contains URI
1525 # Examples: 505u, 506u, 510u, 514u, 520u, 530u, 538u, 540u, 542u, 552u, 555u, 561u, 563u, 583u
1526 # We first push the other subfields, then all $u's separately
1527 # Leave further actions to the template (see e.g. opac-detail)
1529 join '', ( 'a' .. 't', 'v' .. 'z', '0' .. '9' ); # excl 'u'
1530 push @marcnotes, { marcnote
=> $field->as_string($othersub) };
1531 foreach my $sub ( $field->subfield('u') ) {
1532 $sub =~ s/^\s+|\s+$//g; # trim
1533 push @marcnotes, { marcnote
=> $sub };
1536 push @marcnotes, { marcnote
=> $field->as_string() };
1542 =head2 GetMarcSubjects
1544 $marcsubjcts = GetMarcSubjects($record,$marcflavour);
1546 Get all subjects from the MARC record and returns them in an array.
1547 The subjects are stored in different fields depending on MARC flavour
1551 sub GetMarcSubjects
{
1552 my ( $record, $marcflavour ) = @_;
1554 carp
'GetMarcSubjects called on undefined record';
1557 my ( $mintag, $maxtag, $fields_filter );
1558 if ( $marcflavour eq "UNIMARC" ) {
1561 $fields_filter = '6..';
1562 } else { # marc21/normarc
1565 $fields_filter = '6..';
1570 my $subject_limit = C4
::Context
->preference("TraceCompleteSubfields") ?
'su,complete-subfield' : 'su';
1571 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1573 foreach my $field ( $record->field($fields_filter) ) {
1574 next unless ($field->tag() >= $mintag && $field->tag() <= $maxtag);
1576 my @subfields = $field->subfields();
1579 # if there is an authority link, build the links with an= subfield9
1580 my $subfield9 = $field->subfield('9');
1583 my $linkvalue = $subfield9;
1584 $linkvalue =~ s/(\(|\))//g;
1585 @link_loop = ( { limit
=> 'an', 'link' => $linkvalue } );
1586 $authoritylink = $linkvalue
1590 for my $subject_subfield (@subfields) {
1591 next if ( $subject_subfield->[0] eq '9' );
1593 # don't load unimarc subfields 3,4,5
1594 next if ( ( $marcflavour eq "UNIMARC" ) and ( $subject_subfield->[0] =~ /2|3|4|5/ ) );
1595 # don't load MARC21 subfields 2 (FIXME: any more subfields??)
1596 next if ( ( $marcflavour eq "MARC21" ) and ( $subject_subfield->[0] =~ /2/ ) );
1598 my $code = $subject_subfield->[0];
1599 my $value = $subject_subfield->[1];
1600 my $linkvalue = $value;
1601 $linkvalue =~ s/(\(|\))//g;
1602 # if no authority link, build a search query
1603 unless ($subfield9) {
1605 limit
=> $subject_limit,
1606 'link' => $linkvalue,
1607 operator
=> (scalar @link_loop) ?
' and ' : undef
1610 my @this_link_loop = @link_loop;
1612 unless ( $code eq '0' ) {
1613 push @subfields_loop, {
1616 link_loop
=> \
@this_link_loop,
1617 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : ''
1622 push @marcsubjects, {
1623 MARCSUBJECT_SUBFIELDS_LOOP
=> \
@subfields_loop,
1624 authoritylink
=> $authoritylink,
1625 } if $authoritylink || @subfields_loop;
1628 return \
@marcsubjects;
1629 } #end getMARCsubjects
1631 =head2 GetMarcAuthors
1633 authors = GetMarcAuthors($record,$marcflavour);
1635 Get all authors from the MARC record and returns them in an array.
1636 The authors are stored in different fields depending on MARC flavour
1640 sub GetMarcAuthors
{
1641 my ( $record, $marcflavour ) = @_;
1643 carp
'GetMarcAuthors called on undefined record';
1646 my ( $mintag, $maxtag, $fields_filter );
1648 # tagslib useful only for UNIMARC author responsibilities
1650 if ( $marcflavour eq "UNIMARC" ) {
1651 # FIXME : we don't have the framework available, we take the default framework. May be buggy on some setups, will be usually correct.
1652 $tagslib = GetMarcStructure
( 1, '', { unsafe
=> 1 });
1655 $fields_filter = '7..';
1656 } else { # marc21/normarc
1659 $fields_filter = '7..';
1663 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1665 foreach my $field ( $record->field($fields_filter) ) {
1666 next unless $field->tag() >= $mintag && $field->tag() <= $maxtag;
1669 my @subfields = $field->subfields();
1672 # if there is an authority link, build the link with Koha-Auth-Number: subfield9
1673 my $subfield9 = $field->subfield('9');
1675 my $linkvalue = $subfield9;
1676 $linkvalue =~ s/(\(|\))//g;
1677 @link_loop = ( { 'limit' => 'an', 'link' => $linkvalue } );
1682 for my $authors_subfield (@subfields) {
1683 next if ( $authors_subfield->[0] eq '9' );
1685 # unimarc3 contains the $3 of the author for UNIMARC.
1686 # For french academic libraries, it's the "ppn", and it's required for idref webservice
1687 $unimarc3 = $authors_subfield->[1] if $marcflavour eq 'UNIMARC' and $authors_subfield->[0] =~ /3/;
1689 # don't load unimarc subfields 3, 5
1690 next if ( $marcflavour eq 'UNIMARC' and ( $authors_subfield->[0] =~ /3|5/ ) );
1692 my $code = $authors_subfield->[0];
1693 my $value = $authors_subfield->[1];
1694 my $linkvalue = $value;
1695 $linkvalue =~ s/(\(|\))//g;
1696 # UNIMARC author responsibility
1697 if ( $marcflavour eq 'UNIMARC' and $code eq '4' ) {
1698 $value = GetAuthorisedValueDesc
( $field->tag(), $code, $value, '', $tagslib );
1699 $linkvalue = "($value)";
1701 # if no authority link, build a search query
1702 unless ($subfield9) {
1705 'link' => $linkvalue,
1706 operator
=> (scalar @link_loop) ?
' and ' : undef
1709 my @this_link_loop = @link_loop;
1711 unless ( $code eq '0') {
1712 push @subfields_loop, {
1713 tag
=> $field->tag(),
1716 link_loop
=> \
@this_link_loop,
1717 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : ''
1721 push @marcauthors, {
1722 MARCAUTHOR_SUBFIELDS_LOOP
=> \
@subfields_loop,
1723 authoritylink
=> $subfield9,
1724 unimarc3
=> $unimarc3
1727 return \
@marcauthors;
1732 $marcurls = GetMarcUrls($record,$marcflavour);
1734 Returns arrayref of URLs from MARC data, suitable to pass to tmpl loop.
1735 Assumes web resources (not uncommon in MARC21 to omit resource type ind)
1740 my ( $record, $marcflavour ) = @_;
1742 carp
'GetMarcUrls called on undefined record';
1747 for my $field ( $record->field('856') ) {
1749 for my $note ( $field->subfield('z') ) {
1750 push @notes, { note
=> $note };
1752 my @urls = $field->subfield('u');
1753 foreach my $url (@urls) {
1754 $url =~ s/^\s+|\s+$//g; # trim
1756 if ( $marcflavour eq 'MARC21' ) {
1757 my $s3 = $field->subfield('3');
1758 my $link = $field->subfield('y');
1759 unless ( $url =~ /^\w+:/ ) {
1760 if ( $field->indicator(1) eq '7' ) {
1761 $url = $field->subfield('2') . "://" . $url;
1762 } elsif ( $field->indicator(1) eq '1' ) {
1763 $url = 'ftp://' . $url;
1766 # properly, this should be if ind1=4,
1767 # however we will assume http protocol since we're building a link.
1768 $url = 'http://' . $url;
1772 # TODO handle ind 2 (relationship)
1777 $marcurl->{'linktext'} = $link || $s3 || C4
::Context
->preference('URLLinkText') || $url;
1778 $marcurl->{'part'} = $s3 if ($link);
1779 $marcurl->{'toc'} = 1 if ( defined($s3) && $s3 =~ /^[Tt]able/ );
1781 $marcurl->{'linktext'} = $field->subfield('2') || C4
::Context
->preference('URLLinkText') || $url;
1782 $marcurl->{'MARCURL'} = $url;
1784 push @marcurls, $marcurl;
1790 =head2 GetMarcSeries
1792 $marcseriesarray = GetMarcSeries($record,$marcflavour);
1794 Get all series from the MARC record and returns them in an array.
1795 The series are stored in different fields depending on MARC flavour
1800 my ( $record, $marcflavour ) = @_;
1802 carp
'GetMarcSeries called on undefined record';
1806 my ( $mintag, $maxtag, $fields_filter );
1807 if ( $marcflavour eq "UNIMARC" ) {
1810 $fields_filter = '2..';
1811 } else { # marc21/normarc
1814 $fields_filter = '4..';
1818 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1820 foreach my $field ( $record->field($fields_filter) ) {
1821 next unless $field->tag() >= $mintag && $field->tag() <= $maxtag;
1823 my @subfields = $field->subfields();
1826 for my $series_subfield (@subfields) {
1828 # ignore $9, used for authority link
1829 next if ( $series_subfield->[0] eq '9' );
1832 my $code = $series_subfield->[0];
1833 my $value = $series_subfield->[1];
1834 my $linkvalue = $value;
1835 $linkvalue =~ s/(\(|\))//g;
1837 # see if this is an instance of a volume
1838 if ( $code eq 'v' ) {
1843 'link' => $linkvalue,
1844 operator
=> (scalar @link_loop) ?
' and ' : undef
1847 if ($volume_number) {
1848 push @subfields_loop, { volumenum
=> $value };
1850 push @subfields_loop, {
1853 link_loop
=> \
@link_loop,
1854 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : '',
1855 volumenum
=> $volume_number,
1859 push @marcseries, { MARCSERIES_SUBFIELDS_LOOP
=> \
@subfields_loop };
1862 return \
@marcseries;
1863 } #end getMARCseriess
1867 $marchostsarray = GetMarcHosts($record,$marcflavour);
1869 Get all host records (773s MARC21, 461 UNIMARC) from the MARC record and returns them in an array.
1874 my ( $record, $marcflavour ) = @_;
1876 carp
'GetMarcHosts called on undefined record';
1880 my ( $tag,$title_subf,$bibnumber_subf,$itemnumber_subf);
1881 $marcflavour ||="MARC21";
1882 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
1885 $bibnumber_subf ="0";
1886 $itemnumber_subf='9';
1888 elsif ($marcflavour eq "UNIMARC") {
1891 $bibnumber_subf ="0";
1892 $itemnumber_subf='9';
1897 foreach my $field ( $record->field($tag)) {
1901 my $hostbiblionumber = $field->subfield("$bibnumber_subf");
1902 my $hosttitle = $field->subfield($title_subf);
1903 my $hostitemnumber=$field->subfield($itemnumber_subf);
1904 push @fields_loop, { hostbiblionumber
=> $hostbiblionumber, hosttitle
=> $hosttitle, hostitemnumber
=> $hostitemnumber};
1905 push @marchosts, { MARCHOSTS_FIELDS_LOOP
=> \
@fields_loop };
1908 my $marchostsarray = \
@marchosts;
1909 return $marchostsarray;
1912 =head2 UpsertMarcSubfield
1914 my $record = C4::Biblio::UpsertMarcSubfield($MARC::Record, $fieldTag, $subfieldCode, $subfieldContent);
1918 sub UpsertMarcSubfield
{
1919 my ($record, $tag, $code, $content) = @_;
1920 my $f = $record->field($tag);
1923 $f->update( $code => $content );
1926 my $f = MARC
::Field
->new( $tag, '', '', $code => $content);
1927 $record->insert_fields_ordered( $f );
1931 =head2 UpsertMarcControlField
1933 my $record = C4::Biblio::UpsertMarcControlField($MARC::Record, $fieldTag, $content);
1937 sub UpsertMarcControlField
{
1938 my ($record, $tag, $content) = @_;
1939 die "UpsertMarcControlField() \$tag '$tag' is not a control field\n" unless 0+$tag < 10;
1940 my $f = $record->field($tag);
1943 $f->update( $content );
1946 my $f = MARC
::Field
->new($tag, $content);
1947 $record->insert_fields_ordered( $f );
1951 =head2 GetFrameworkCode
1953 $frameworkcode = GetFrameworkCode( $biblionumber )
1957 sub GetFrameworkCode
{
1958 my ($biblionumber) = @_;
1959 my $dbh = C4
::Context
->dbh;
1960 my $sth = $dbh->prepare("SELECT frameworkcode FROM biblio WHERE biblionumber=?");
1961 $sth->execute($biblionumber);
1962 my ($frameworkcode) = $sth->fetchrow;
1963 return $frameworkcode;
1966 =head2 TransformKohaToMarc
1968 $record = TransformKohaToMarc( $hash [, $params ] )
1970 This function builds a (partial) MARC::Record from a hash.
1971 Hash entries can be from biblio, biblioitems or items.
1972 The params hash includes the parameter no_split used in C4::Items.
1974 This function is called in acquisition module, to create a basic catalogue
1975 entry from user entry.
1980 sub TransformKohaToMarc
{
1981 my ( $hash, $params ) = @_;
1982 my $record = MARC
::Record
->new();
1983 SetMarcUnicodeFlag
( $record, C4
::Context
->preference("marcflavour") );
1985 # In the next call we use the Default framework, since it is considered
1986 # authoritative for Koha to Marc mappings.
1987 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # do not change framewok
1989 while ( my ($kohafield, $value) = each %$hash ) {
1990 foreach my $fld ( @
{ $mss->{$kohafield} } ) {
1991 my $tagfield = $fld->{tagfield
};
1992 my $tagsubfield = $fld->{tagsubfield
};
1994 my @values = $params->{no_split
}
1996 : split(/\s?\|\s?/, $value, -1);
1997 foreach my $value ( @values ) {
1998 next if $value eq '';
1999 $tag_hr->{$tagfield} //= [];
2000 push @
{$tag_hr->{$tagfield}}, [($tagsubfield, $value)];
2004 foreach my $tag (sort keys %$tag_hr) {
2005 my @sfl = @
{$tag_hr->{$tag}};
2006 @sfl = sort { $a->[0] cmp $b->[0]; } @sfl;
2007 @sfl = map { @
{$_}; } @sfl;
2008 # Special care for control fields: remove the subfield indication @
2009 # and do not insert indicators.
2010 my @ind = $tag < 10 ?
() : ( " ", " " );
2011 @sfl = grep { $_ ne '@' } @sfl if $tag < 10;
2012 $record->insert_fields_ordered( MARC
::Field
->new($tag, @ind, @sfl) );
2017 =head2 PrepHostMarcField
2019 $hostfield = PrepHostMarcField ( $hostbiblionumber,$hostitemnumber,$marcflavour )
2021 This function returns a host field populated with data from the host record, the field can then be added to an analytical record
2025 sub PrepHostMarcField
{
2026 my ($hostbiblionumber,$hostitemnumber, $marcflavour) = @_;
2027 $marcflavour ||="MARC21";
2029 my $hostrecord = GetMarcBiblio
({ biblionumber
=> $hostbiblionumber });
2030 my $item = Koha
::Items
->find($hostitemnumber);
2033 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
2037 if ($hostrecord->subfield('100','a')){
2038 $mainentry = $hostrecord->subfield('100','a');
2039 } elsif ($hostrecord->subfield('110','a')){
2040 $mainentry = $hostrecord->subfield('110','a');
2042 $mainentry = $hostrecord->subfield('111','a');
2045 # qualification info
2047 if (my $field260 = $hostrecord->field('260')){
2048 $qualinfo = $field260->as_string( 'abc' );
2053 my $ed = $hostrecord->subfield('250','a');
2054 my $barcode = $item->barcode;
2055 my $title = $hostrecord->subfield('245','a');
2057 # record control number, 001 with 003 and prefix
2059 if ($hostrecord->field('001')){
2060 $recctrlno = $hostrecord->field('001')->data();
2061 if ($hostrecord->field('003')){
2062 $recctrlno = '('.$hostrecord->field('003')->data().')'.$recctrlno;
2067 my $issn = $hostrecord->subfield('022','a');
2068 my $isbn = $hostrecord->subfield('020','a');
2071 $hostmarcfield = MARC
::Field
->new(
2073 '0' => $hostbiblionumber,
2074 '9' => $hostitemnumber,
2084 } elsif ($marcflavour eq "UNIMARC") {
2085 $hostmarcfield = MARC
::Field
->new(
2087 '0' => $hostbiblionumber,
2088 't' => $hostrecord->subfield('200','a'),
2089 '9' => $hostitemnumber
2093 return $hostmarcfield;
2096 =head2 TransformHtmlToXml
2098 $xml = TransformHtmlToXml( $tags, $subfields, $values, $indicator,
2099 $ind_tag, $auth_type )
2101 $auth_type contains :
2105 =item - nothing : rebuild a biblio. In UNIMARC the encoding is in 100$a pos 26/27
2107 =item - UNIMARCAUTH : rebuild an authority. In UNIMARC, the encoding is in 100$a pos 13/14
2109 =item - ITEM : rebuild an item : in UNIMARC, 100$a, it's in the biblio ! (otherwise, we would get 2 100 fields !)
2115 sub TransformHtmlToXml
{
2116 my ( $tags, $subfields, $values, $indicator, $ind_tag, $auth_type ) = @_;
2117 # NOTE: The parameter $ind_tag is NOT USED -- BZ 11247
2119 my $xml = MARC
::File
::XML
::header
('UTF-8');
2120 $xml .= "<record>\n";
2121 $auth_type = C4
::Context
->preference('marcflavour') unless $auth_type;
2122 MARC
::File
::XML
->default_record_format($auth_type);
2124 # in UNIMARC, field 100 contains the encoding
2125 # check that there is one, otherwise the
2126 # MARC::Record->new_from_xml will fail (and Koha will die)
2127 my $unimarc_and_100_exist = 0;
2128 $unimarc_and_100_exist = 1 if $auth_type eq 'ITEM'; # if we rebuild an item, no need of a 100 field
2134 for ( my $i = 0 ; $i < @
$tags ; $i++ ) {
2136 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' and @
$tags[$i] eq "100" and @
$subfields[$i] eq "a" ) {
2138 # if we have a 100 field and it's values are not correct, skip them.
2139 # if we don't have any valid 100 field, we will create a default one at the end
2140 my $enc = substr( @
$values[$i], 26, 2 );
2141 if ( $enc eq '01' or $enc eq '50' or $enc eq '03' ) {
2142 $unimarc_and_100_exist = 1;
2147 @
$values[$i] =~ s/&/&/g;
2148 @
$values[$i] =~ s/</</g;
2149 @
$values[$i] =~ s/>/>/g;
2150 @
$values[$i] =~ s/"/"/g;
2151 @
$values[$i] =~ s/'/'/g;
2153 if ( ( @
$tags[$i] ne $prevtag ) ) {
2154 $close_last_tag = 0;
2155 $j++ unless ( @
$tags[$i] eq "" );
2156 my $str = ( $indicator->[$j] // q{} ) . ' '; # extra space prevents substr outside of string warn
2157 my $ind1 = _default_ind_to_space
( substr( $str, 0, 1 ) );
2158 my $ind2 = _default_ind_to_space
( substr( $str, 1, 1 ) );
2160 $xml .= "</datafield>\n";
2161 if ( ( @
$tags[$i] && @
$tags[$i] > 10 )
2162 && ( @
$values[$i] ne "" ) ) {
2163 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2164 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2166 $close_last_tag = 1;
2171 if ( @
$values[$i] ne "" ) {
2174 if ( @
$tags[$i] eq "000" ) {
2175 $xml .= "<leader>@$values[$i]</leader>\n";
2178 # rest of the fixed fields
2179 } elsif ( @
$tags[$i] < 10 ) {
2180 $xml .= "<controlfield tag=\"@$tags[$i]\">@$values[$i]</controlfield>\n";
2183 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2184 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2186 $close_last_tag = 1;
2190 } else { # @$tags[$i] eq $prevtag
2191 if ( @
$values[$i] eq "" ) {
2194 my $str = ( $indicator->[$j] // q{} ) . ' '; # extra space prevents substr outside of string warn
2195 my $ind1 = _default_ind_to_space
( substr( $str, 0, 1 ) );
2196 my $ind2 = _default_ind_to_space
( substr( $str, 1, 1 ) );
2197 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2199 $close_last_tag = 1;
2201 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2204 $prevtag = @
$tags[$i];
2206 $xml .= "</datafield>\n" if $close_last_tag;
2207 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' and !$unimarc_and_100_exist ) {
2209 # warn "SETTING 100 for $auth_type";
2210 my $string = strftime
( "%Y%m%d", localtime(time) );
2212 # set 50 to position 26 is biblios, 13 if authorities
2214 $pos = 13 if $auth_type eq 'UNIMARCAUTH';
2215 $string = sprintf( "%-*s", 35, $string );
2216 substr( $string, $pos, 6, "50" );
2217 $xml .= "<datafield tag=\"100\" ind1=\"\" ind2=\"\">\n";
2218 $xml .= "<subfield code=\"a\">$string</subfield>\n";
2219 $xml .= "</datafield>\n";
2221 $xml .= "</record>\n";
2222 $xml .= MARC
::File
::XML
::footer
();
2226 =head2 _default_ind_to_space
2228 Passed what should be an indicator returns a space
2229 if its undefined or zero length
2233 sub _default_ind_to_space
{
2235 if ( !defined $s || $s eq q{} ) {
2241 =head2 TransformHtmlToMarc
2243 L<$record> = TransformHtmlToMarc(L<$cgi>)
2244 L<$cgi> is the CGI object which contains the values for subfields
2246 'tag_010_indicator1_531951' ,
2247 'tag_010_indicator2_531951' ,
2248 'tag_010_code_a_531951_145735' ,
2249 'tag_010_subfield_a_531951_145735' ,
2250 'tag_200_indicator1_873510' ,
2251 'tag_200_indicator2_873510' ,
2252 'tag_200_code_a_873510_673465' ,
2253 'tag_200_subfield_a_873510_673465' ,
2254 'tag_200_code_b_873510_704318' ,
2255 'tag_200_subfield_b_873510_704318' ,
2256 'tag_200_code_e_873510_280822' ,
2257 'tag_200_subfield_e_873510_280822' ,
2258 'tag_200_code_f_873510_110730' ,
2259 'tag_200_subfield_f_873510_110730' ,
2261 L<$record> is the MARC::Record object.
2265 sub TransformHtmlToMarc
{
2266 my ($cgi, $isbiblio) = @_;
2268 my @params = $cgi->multi_param();
2270 # explicitly turn on the UTF-8 flag for all
2271 # 'tag_' parameters to avoid incorrect character
2272 # conversion later on
2273 my $cgi_params = $cgi->Vars;
2274 foreach my $param_name ( keys %$cgi_params ) {
2275 if ( $param_name =~ /^tag_/ ) {
2276 my $param_value = $cgi_params->{$param_name};
2277 unless ( Encode
::is_utf8
( $param_value ) ) {
2278 $cgi_params->{$param_name} = Encode
::decode
('UTF-8', $param_value );
2283 # creating a new record
2284 my $record = MARC
::Record
->new();
2286 my ($biblionumbertagfield, $biblionumbertagsubfield) = (-1, -1);
2287 ($biblionumbertagfield, $biblionumbertagsubfield) =
2288 &GetMarcFromKohaField
( "biblio.biblionumber", '' ) if $isbiblio;
2289 #FIXME This code assumes that the CGI params will be in the same order as the fields in the template; this is no absolute guarantee!
2290 for (my $i = 0; $params[$i]; $i++ ) { # browse all CGI params
2291 my $param = $params[$i];
2294 # if we are on biblionumber, store it in the MARC::Record (it may not be in the edited fields)
2295 if ( $param eq 'biblionumber' ) {
2296 if ( $biblionumbertagfield < 10 ) {
2297 $newfield = MARC
::Field
->new( $biblionumbertagfield, scalar $cgi->param($param), );
2299 $newfield = MARC
::Field
->new( $biblionumbertagfield, '', '', "$biblionumbertagsubfield" => scalar $cgi->param($param), );
2301 push @fields, $newfield if ($newfield);
2302 } elsif ( $param =~ /^tag_(\d*)_indicator1_/ ) { # new field start when having 'input name="..._indicator1_..."
2305 my $ind1 = _default_ind_to_space
( substr( $cgi->param($param), 0, 1 ) );
2306 my $ind2 = _default_ind_to_space
( substr( $cgi->param( $params[ $i + 1 ] ), 0, 1 ) );
2310 if ( $tag < 10 ) { # no code for theses fields
2311 # in MARC editor, 000 contains the leader.
2312 next if $tag == $biblionumbertagfield;
2313 my $fval= $cgi->param($params[$j+1]);
2314 if ( $tag eq '000' ) {
2315 # Force a fake leader even if not provided to avoid crashing
2316 # during decoding MARC record containing UTF-8 characters
2318 length( $fval ) == 24
2323 # between 001 and 009 (included)
2324 } elsif ( $fval ne '' ) {
2325 $newfield = MARC
::Field
->new( $tag, $fval, );
2328 # > 009, deal with subfields
2330 # browse subfields for this tag (reason for _code_ match)
2331 while(defined $params[$j] && $params[$j] =~ /_code_/) {
2332 last unless defined $params[$j+1];
2334 if $tag == $biblionumbertagfield and
2335 $cgi->param($params[$j]) eq $biblionumbertagsubfield;
2336 #if next param ne subfield, then it was probably empty
2337 #try next param by incrementing j
2338 if($params[$j+1]!~/_subfield_/) {$j++; next; }
2339 my $fkey= $cgi->param($params[$j]);
2340 my $fval= $cgi->param($params[$j+1]);
2341 #check if subfield value not empty and field exists
2342 if($fval ne '' && $newfield) {
2343 $newfield->add_subfields( $fkey => $fval);
2345 elsif($fval ne '') {
2346 $newfield = MARC
::Field
->new( $tag, $ind1, $ind2, $fkey => $fval );
2350 $i= $j-1; #update i for outer loop accordingly
2352 push @fields, $newfield if ($newfield);
2356 $record->append_fields(@fields);
2360 =head2 TransformMarcToKoha
2362 $result = TransformMarcToKoha( $record, undef, $limit )
2364 Extract data from a MARC bib record into a hashref representing
2365 Koha biblio, biblioitems, and items fields.
2367 If passed an undefined record will log the error and return an empty
2372 sub TransformMarcToKoha
{
2373 my ( $record, $frameworkcode, $limit_table ) = @_;
2374 # FIXME Parameter $frameworkcode is obsolete and will be removed
2375 $limit_table //= q{};
2378 if (!defined $record) {
2379 carp
('TransformMarcToKoha called with undefined record');
2383 my %tables = ( biblio
=> 1, biblioitems
=> 1, items
=> 1 );
2384 if( $limit_table eq 'items' ) {
2385 %tables = ( items
=> 1 );
2388 # The next call acknowledges Default as the authoritative framework
2389 # for Koha to MARC mappings.
2390 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # Do not change framework
2391 foreach my $kohafield ( keys %{ $mss } ) {
2392 my ( $table, $column ) = split /[.]/, $kohafield, 2;
2393 next unless $tables{$table};
2394 my $val = TransformMarcToKohaOneField
( $kohafield, $record );
2395 next if !defined $val;
2396 my $key = _disambiguate
( $table, $column );
2397 $result->{$key} = $val;
2402 =head2 _disambiguate
2404 $newkey = _disambiguate($table, $field);
2406 This is a temporary hack to distinguish between the
2407 following sets of columns when using TransformMarcToKoha.
2409 items.cn_source & biblioitems.cn_source
2410 items.cn_sort & biblioitems.cn_sort
2412 Columns that are currently NOT distinguished (FIXME
2413 due to lack of time to fully test) are:
2415 biblio.notes and biblioitems.notes
2420 FIXME - this is necessary because prefixing each column
2421 name with the table name would require changing lots
2422 of code and templates, and exposing more of the DB
2423 structure than is good to the UI templates, particularly
2424 since biblio and bibloitems may well merge in a future
2425 version. In the future, it would also be good to
2426 separate DB access and UI presentation field names
2432 my ( $table, $column ) = @_;
2433 if ( $column eq "cn_sort" or $column eq "cn_source" ) {
2434 return $table . '.' . $column;
2441 =head2 TransformMarcToKohaOneField
2443 $val = TransformMarcToKohaOneField( 'biblio.title', $marc );
2445 Note: The authoritative Default framework is used implicitly.
2449 sub TransformMarcToKohaOneField
{
2450 my ( $kohafield, $marc ) = @_;
2452 my ( @rv, $retval );
2453 my @mss = GetMarcSubfieldStructureFromKohaField
($kohafield);
2454 foreach my $fldhash ( @mss ) {
2455 my $tag = $fldhash->{tagfield
};
2456 my $sub = $fldhash->{tagsubfield
};
2457 foreach my $fld ( $marc->field($tag) ) {
2458 if( $sub eq '@' || $fld->is_control_field ) {
2459 push @rv, $fld->data if $fld->data;
2461 push @rv, grep { $_ } $fld->subfield($sub);
2466 $retval = join ' | ', uniq
(@rv);
2468 # Additional polishing for individual kohafields
2469 if( $kohafield =~ /copyrightdate|publicationyear/ ) {
2470 $retval = _adjust_pubyear
( $retval );
2476 =head2 _adjust_pubyear
2478 Helper routine for TransformMarcToKohaOneField
2482 sub _adjust_pubyear
{
2484 # modify return value to keep only the 1st year found
2485 if( $retval =~ m/c(\d\d\d\d)/ and $1 > 0 ) { # search cYYYY first
2487 } elsif( $retval =~ m/(\d\d\d\d)/ && $1 > 0 ) {
2489 } elsif( $retval =~ m
/
2490 (?
<year
>\d
)[-]?
[.Xx?
]{3}
2491 |(?
<year
>\d
{2})[.Xx?
]{2}
2492 |(?
<year
>\d
{3})[.Xx?
]
2493 |(?
<year
>\d
)[-]{3}\?
2494 |(?
<year
>\d\d
)[-]{2}\?
2495 |(?
<year
>\d
{3})[-]\?
2496 /xms
) { # the form 198-? occurred in Dutch ISBD rules
2497 my $digits = $+{year
};
2498 $retval = $digits * ( 10 ** ( 4 - length($digits) ));
2503 =head2 CountItemsIssued
2505 my $count = CountItemsIssued( $biblionumber );
2509 sub CountItemsIssued
{
2510 my ($biblionumber) = @_;
2511 my $dbh = C4
::Context
->dbh;
2512 my $sth = $dbh->prepare('SELECT COUNT(*) as issuedCount FROM items, issues WHERE items.itemnumber = issues.itemnumber AND items.biblionumber = ?');
2513 $sth->execute($biblionumber);
2514 my $row = $sth->fetchrow_hashref();
2515 return $row->{'issuedCount'};
2520 ModZebra( $biblionumber, $op, $server, $record );
2522 $biblionumber is the biblionumber we want to index
2524 $op is specialUpdate or recordDelete, and is used to know what we want to do
2526 $server is the server that we want to update
2528 $record is the update MARC record if it's available. If it's not supplied
2529 and is needed, it'll be loaded from the database.
2534 ###Accepts a $server variable thus we can use it for biblios authorities or other zebra dbs
2535 my ( $biblionumber, $op, $server, $record ) = @_;
2536 $debug && warn "ModZebra: update requested for: $biblionumber $op $server\n";
2537 if ( C4
::Context
->preference('SearchEngine') eq 'Elasticsearch' ) {
2539 # TODO abstract to a standard API that'll work for whatever
2540 require Koha
::SearchEngine
::Elasticsearch
::Indexer
;
2541 my $indexer = Koha
::SearchEngine
::Elasticsearch
::Indexer
->new(
2543 index => $server eq 'biblioserver'
2544 ?
$Koha::SearchEngine
::BIBLIOS_INDEX
2545 : $Koha::SearchEngine
::AUTHORITIES_INDEX
2548 if ( $op eq 'specialUpdate' ) {
2550 $record = GetMarcBiblio
({
2551 biblionumber
=> $biblionumber,
2552 embed_items
=> 1 });
2554 my $records = [$record];
2555 $indexer->update_index_background( [$biblionumber], [$record] );
2557 elsif ( $op eq 'recordDelete' ) {
2558 $indexer->delete_index_background( [$biblionumber] );
2561 croak
"ModZebra called with unknown operation: $op";
2565 my $dbh = C4
::Context
->dbh;
2567 # true ModZebra commented until indexdata fixes zebraDB crashes (it seems they occur on multiple updates
2569 # replaced by a zebraqueue table, that is filled with ModZebra to run.
2570 # the table is emptied by rebuild_zebra.pl script (using the -z switch)
2571 my $check_sql = "SELECT COUNT(*) FROM zebraqueue
2573 AND biblio_auth_number = ?
2576 my $check_sth = $dbh->prepare_cached($check_sql);
2577 $check_sth->execute( $server, $biblionumber, $op );
2578 my ($count) = $check_sth->fetchrow_array;
2579 $check_sth->finish();
2580 if ( $count == 0 ) {
2581 my $sth = $dbh->prepare("INSERT INTO zebraqueue (biblio_auth_number,server,operation) VALUES(?,?,?)");
2582 $sth->execute( $biblionumber, $server, $op );
2588 =head2 EmbedItemsInMarcBiblio
2590 EmbedItemsInMarcBiblio({
2591 marc_record => $marc,
2592 biblionumber => $biblionumber,
2593 item_numbers => $itemnumbers,
2596 Given a MARC::Record object containing a bib record,
2597 modify it to include the items attached to it as 9XX
2598 per the bib's MARC framework.
2599 if $itemnumbers is defined, only specified itemnumbers are embedded.
2601 If $opac is true, then opac-relevant suppressions are included.
2603 If opac filtering will be done, borcat should be passed to properly
2604 override if necessary.
2608 sub EmbedItemsInMarcBiblio
{
2610 my ($marc, $biblionumber, $itemnumbers, $opac, $borcat);
2611 $marc = $params->{marc_record
};
2613 carp
'EmbedItemsInMarcBiblio: No MARC record passed';
2616 $biblionumber = $params->{biblionumber
};
2617 $itemnumbers = $params->{item_numbers
};
2618 $opac = $params->{opac
};
2619 $borcat = $params->{borcat
} // q{};
2621 $itemnumbers = [] unless defined $itemnumbers;
2623 my $frameworkcode = GetFrameworkCode
($biblionumber);
2624 _strip_item_fields
($marc, $frameworkcode);
2626 # ... and embed the current items
2627 my $dbh = C4
::Context
->dbh;
2628 my $sth = $dbh->prepare("SELECT itemnumber FROM items WHERE biblionumber = ?");
2629 $sth->execute($biblionumber);
2630 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField
( "items.itemnumber" );
2632 my @item_fields; # Array holding the actual MARC data for items to be included.
2633 my @items; # Array holding items which are both in the list (sitenumbers)
2634 # and on this biblionumber
2636 # Flag indicating if there is potential hiding.
2637 my $opachiddenitems = $opac
2638 && ( C4
::Context
->preference('OpacHiddenItems') !~ /^\s*$/ );
2641 while ( my ($itemnumber) = $sth->fetchrow_array ) {
2642 next if @
$itemnumbers and not grep { $_ == $itemnumber } @
$itemnumbers;
2644 if ( $opachiddenitems ) {
2645 $item = Koha
::Items
->find($itemnumber);
2646 $item = $item ?
$item->unblessed : undef;
2648 push @items, { itemnumber
=> $itemnumber, item
=> $item };
2650 my @items2pass = map { $_->{item
} } @items;
2653 ? C4
::Items
::GetHiddenItemnumbers
({
2654 items
=> \
@items2pass,
2655 borcat
=> $borcat })
2657 # Convert to a hash for quick searching
2658 my %hiddenitems = map { $_ => 1 } @hiddenitems;
2659 foreach my $itemnumber ( map { $_->{itemnumber
} } @items ) {
2660 next if $hiddenitems{$itemnumber};
2661 my $item_marc = C4
::Items
::GetMarcItem
( $biblionumber, $itemnumber );
2662 push @item_fields, $item_marc->field($itemtag);
2664 $marc->append_fields(@item_fields);
2667 =head1 INTERNAL FUNCTIONS
2669 =head2 _koha_marc_update_bib_ids
2672 _koha_marc_update_bib_ids($record, $frameworkcode, $biblionumber, $biblioitemnumber);
2674 Internal function to add or update biblionumber and biblioitemnumber to
2679 sub _koha_marc_update_bib_ids
{
2680 my ( $record, $frameworkcode, $biblionumber, $biblioitemnumber ) = @_;
2682 my ( $biblio_tag, $biblio_subfield ) = GetMarcFromKohaField
( "biblio.biblionumber" );
2683 die qq{No biblionumber tag
for framework
"$frameworkcode"} unless $biblio_tag;
2684 my ( $biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField
( "biblioitems.biblioitemnumber" );
2685 die qq{No biblioitemnumber tag
for framework
"$frameworkcode"} unless $biblioitem_tag;
2687 if ( $biblio_tag < 10 ) {
2688 C4
::Biblio
::UpsertMarcControlField
( $record, $biblio_tag, $biblionumber );
2690 C4
::Biblio
::UpsertMarcSubfield
($record, $biblio_tag, $biblio_subfield, $biblionumber);
2692 if ( $biblioitem_tag < 10 ) {
2693 C4
::Biblio
::UpsertMarcControlField
( $record, $biblioitem_tag, $biblioitemnumber );
2695 C4
::Biblio
::UpsertMarcSubfield
($record, $biblioitem_tag, $biblioitem_subfield, $biblioitemnumber);
2699 =head2 _koha_marc_update_biblioitem_cn_sort
2701 _koha_marc_update_biblioitem_cn_sort($marc, $biblioitem, $frameworkcode);
2703 Given a MARC bib record and the biblioitem hash, update the
2704 subfield that contains a copy of the value of biblioitems.cn_sort.
2708 sub _koha_marc_update_biblioitem_cn_sort
{
2710 my $biblioitem = shift;
2711 my $frameworkcode = shift;
2713 my ( $biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField
( "biblioitems.cn_sort" );
2714 return unless $biblioitem_tag;
2716 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2718 if ( my $field = $marc->field($biblioitem_tag) ) {
2719 $field->delete_subfield( code
=> $biblioitem_subfield );
2720 if ( $cn_sort ne '' ) {
2721 $field->add_subfields( $biblioitem_subfield => $cn_sort );
2725 # if we get here, no biblioitem tag is present in the MARC record, so
2726 # we'll create it if $cn_sort is not empty -- this would be
2727 # an odd combination of events, however
2729 $marc->insert_grouped_field( MARC
::Field
->new( $biblioitem_tag, ' ', ' ', $biblioitem_subfield => $cn_sort ) );
2734 =head2 _koha_add_biblio
2736 my ($biblionumber,$error) = _koha_add_biblio($dbh,$biblioitem);
2738 Internal function to add a biblio ($biblio is a hash with the values)
2742 sub _koha_add_biblio
{
2743 my ( $dbh, $biblio, $frameworkcode ) = @_;
2747 # set the series flag
2748 unless (defined $biblio->{'serial'}){
2749 $biblio->{'serial'} = 0;
2750 if ( $biblio->{'seriestitle'} ) { $biblio->{'serial'} = 1 }
2753 my $query = "INSERT INTO biblio
2754 SET frameworkcode = ?,
2769 my $sth = $dbh->prepare($query);
2771 $frameworkcode, $biblio->{'author'}, $biblio->{'title'}, $biblio->{'subtitle'},
2772 $biblio->{'medium'}, $biblio->{'part_number'}, $biblio->{'part_name'}, $biblio->{'unititle'},
2773 $biblio->{'notes'}, $biblio->{'serial'}, $biblio->{'seriestitle'}, $biblio->{'copyrightdate'},
2774 $biblio->{'abstract'}
2777 my $biblionumber = $dbh->{'mysql_insertid'};
2778 if ( $dbh->errstr ) {
2779 $error .= "ERROR in _koha_add_biblio $query" . $dbh->errstr;
2785 #warn "LEAVING _koha_add_biblio: ".$biblionumber."\n";
2786 return ( $biblionumber, $error );
2789 =head2 _koha_modify_biblio
2791 my ($biblionumber,$error) == _koha_modify_biblio($dbh,$biblio,$frameworkcode);
2793 Internal function for updating the biblio table
2797 sub _koha_modify_biblio
{
2798 my ( $dbh, $biblio, $frameworkcode ) = @_;
2803 SET frameworkcode = ?,
2816 WHERE biblionumber = ?
2819 my $sth = $dbh->prepare($query);
2822 $frameworkcode, $biblio->{'author'}, $biblio->{'title'}, $biblio->{'subtitle'},
2823 $biblio->{'medium'}, $biblio->{'part_number'}, $biblio->{'part_name'}, $biblio->{'unititle'},
2824 $biblio->{'notes'}, $biblio->{'serial'}, $biblio->{'seriestitle'}, $biblio->{'copyrightdate'} ?
int($biblio->{'copyrightdate'}) : undef,
2825 $biblio->{'abstract'}, $biblio->{'biblionumber'}
2826 ) if $biblio->{'biblionumber'};
2828 if ( $dbh->errstr || !$biblio->{'biblionumber'} ) {
2829 $error .= "ERROR in _koha_modify_biblio $query" . $dbh->errstr;
2832 return ( $biblio->{'biblionumber'}, $error );
2835 =head2 _koha_modify_biblioitem_nonmarc
2837 my ($biblioitemnumber,$error) = _koha_modify_biblioitem_nonmarc( $dbh, $biblioitem );
2841 sub _koha_modify_biblioitem_nonmarc
{
2842 my ( $dbh, $biblioitem ) = @_;
2845 # re-calculate the cn_sort, it may have changed
2846 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2848 my $query = "UPDATE biblioitems
2849 SET biblionumber = ?,
2855 publicationyear = ?,
2859 collectiontitle = ?,
2861 collectionvolume= ?,
2862 editionstatement= ?,
2863 editionresponsibility = ?,
2879 where biblioitemnumber = ?
2881 my $sth = $dbh->prepare($query);
2883 $biblioitem->{'biblionumber'}, $biblioitem->{'volume'}, $biblioitem->{'number'}, $biblioitem->{'itemtype'},
2884 $biblioitem->{'isbn'}, $biblioitem->{'issn'}, $biblioitem->{'publicationyear'}, $biblioitem->{'publishercode'},
2885 $biblioitem->{'volumedate'}, $biblioitem->{'volumedesc'}, $biblioitem->{'collectiontitle'}, $biblioitem->{'collectionissn'},
2886 $biblioitem->{'collectionvolume'}, $biblioitem->{'editionstatement'}, $biblioitem->{'editionresponsibility'}, $biblioitem->{'illus'},
2887 $biblioitem->{'pages'}, $biblioitem->{'bnotes'}, $biblioitem->{'size'}, $biblioitem->{'place'},
2888 $biblioitem->{'lccn'}, $biblioitem->{'url'}, $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'},
2889 $biblioitem->{'cn_item'}, $biblioitem->{'cn_suffix'}, $cn_sort, $biblioitem->{'totalissues'},
2890 $biblioitem->{'ean'}, $biblioitem->{'agerestriction'}, $biblioitem->{'biblioitemnumber'}
2892 if ( $dbh->errstr ) {
2893 $error .= "ERROR in _koha_modify_biblioitem_nonmarc $query" . $dbh->errstr;
2896 return ( $biblioitem->{'biblioitemnumber'}, $error );
2899 =head2 _koha_add_biblioitem
2901 my ($biblioitemnumber,$error) = _koha_add_biblioitem( $dbh, $biblioitem );
2903 Internal function to add a biblioitem
2907 sub _koha_add_biblioitem
{
2908 my ( $dbh, $biblioitem ) = @_;
2911 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2912 my $query = "INSERT INTO biblioitems SET
2919 publicationyear = ?,
2923 collectiontitle = ?,
2925 collectionvolume= ?,
2926 editionstatement= ?,
2927 editionresponsibility = ?,
2944 my $sth = $dbh->prepare($query);
2946 $biblioitem->{'biblionumber'}, $biblioitem->{'volume'}, $biblioitem->{'number'}, $biblioitem->{'itemtype'},
2947 $biblioitem->{'isbn'}, $biblioitem->{'issn'}, $biblioitem->{'publicationyear'}, $biblioitem->{'publishercode'},
2948 $biblioitem->{'volumedate'}, $biblioitem->{'volumedesc'}, $biblioitem->{'collectiontitle'}, $biblioitem->{'collectionissn'},
2949 $biblioitem->{'collectionvolume'}, $biblioitem->{'editionstatement'}, $biblioitem->{'editionresponsibility'}, $biblioitem->{'illus'},
2950 $biblioitem->{'pages'}, $biblioitem->{'bnotes'}, $biblioitem->{'size'}, $biblioitem->{'place'},
2951 $biblioitem->{'lccn'}, $biblioitem->{'url'}, $biblioitem->{'biblioitems.cn_source'},
2952 $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'}, $biblioitem->{'cn_suffix'}, $cn_sort,
2953 $biblioitem->{'totalissues'}, $biblioitem->{'ean'}, $biblioitem->{'agerestriction'}
2955 my $bibitemnum = $dbh->{'mysql_insertid'};
2957 if ( $dbh->errstr ) {
2958 $error .= "ERROR in _koha_add_biblioitem $query" . $dbh->errstr;
2962 return ( $bibitemnum, $error );
2965 =head2 _koha_delete_biblio
2967 $error = _koha_delete_biblio($dbh,$biblionumber);
2969 Internal sub for deleting from biblio table -- also saves to deletedbiblio
2971 C<$dbh> - the database handle
2973 C<$biblionumber> - the biblionumber of the biblio to be deleted
2977 # FIXME: add error handling
2979 sub _koha_delete_biblio
{
2980 my ( $dbh, $biblionumber ) = @_;
2982 # get all the data for this biblio
2983 my $sth = $dbh->prepare("SELECT * FROM biblio WHERE biblionumber=?");
2984 $sth->execute($biblionumber);
2986 # FIXME There is a transaction in _koha_delete_biblio_metadata
2987 # But actually all the following should be done inside a single transaction
2988 if ( my $data = $sth->fetchrow_hashref ) {
2990 # save the record in deletedbiblio
2991 # find the fields to save
2992 my $query = "INSERT INTO deletedbiblio SET ";
2994 foreach my $temp ( keys %$data ) {
2995 $query .= "$temp = ?,";
2996 push( @bind, $data->{$temp} );
2999 # replace the last , by ",?)"
3001 my $bkup_sth = $dbh->prepare($query);
3002 $bkup_sth->execute(@bind);
3005 _koha_delete_biblio_metadata
( $biblionumber );
3008 my $sth2 = $dbh->prepare("DELETE FROM biblio WHERE biblionumber=?");
3009 $sth2->execute($biblionumber);
3010 # update the timestamp (Bugzilla 7146)
3011 $sth2= $dbh->prepare("UPDATE deletedbiblio SET timestamp=NOW() WHERE biblionumber=?");
3012 $sth2->execute($biblionumber);
3019 =head2 _koha_delete_biblioitems
3021 $error = _koha_delete_biblioitems($dbh,$biblioitemnumber);
3023 Internal sub for deleting from biblioitems table -- also saves to deletedbiblioitems
3025 C<$dbh> - the database handle
3026 C<$biblionumber> - the biblioitemnumber of the biblioitem to be deleted
3030 # FIXME: add error handling
3032 sub _koha_delete_biblioitems
{
3033 my ( $dbh, $biblioitemnumber ) = @_;
3035 # get all the data for this biblioitem
3036 my $sth = $dbh->prepare("SELECT * FROM biblioitems WHERE biblioitemnumber=?");
3037 $sth->execute($biblioitemnumber);
3039 if ( my $data = $sth->fetchrow_hashref ) {
3041 # save the record in deletedbiblioitems
3042 # find the fields to save
3043 my $query = "INSERT INTO deletedbiblioitems SET ";
3045 foreach my $temp ( keys %$data ) {
3046 $query .= "$temp = ?,";
3047 push( @bind, $data->{$temp} );
3050 # replace the last , by ",?)"
3052 my $bkup_sth = $dbh->prepare($query);
3053 $bkup_sth->execute(@bind);
3056 # delete the biblioitem
3057 my $sth2 = $dbh->prepare("DELETE FROM biblioitems WHERE biblioitemnumber=?");
3058 $sth2->execute($biblioitemnumber);
3059 # update the timestamp (Bugzilla 7146)
3060 $sth2= $dbh->prepare("UPDATE deletedbiblioitems SET timestamp=NOW() WHERE biblioitemnumber=?");
3061 $sth2->execute($biblioitemnumber);
3068 =head2 _koha_delete_biblio_metadata
3070 $error = _koha_delete_biblio_metadata($biblionumber);
3072 C<$biblionumber> - the biblionumber of the biblio metadata to be deleted
3076 sub _koha_delete_biblio_metadata
{
3077 my ($biblionumber) = @_;
3079 my $dbh = C4
::Context
->dbh;
3080 my $schema = Koha
::Database
->new->schema;
3084 INSERT INTO deletedbiblio_metadata
(biblionumber
, format
, `schema`, metadata
)
3085 SELECT biblionumber
, format
, `schema`, metadata FROM biblio_metadata WHERE biblionumber
=?
3086 |, undef, $biblionumber );
3087 $dbh->do( q
|DELETE FROM biblio_metadata WHERE biblionumber
=?
|,
3088 undef, $biblionumber );
3093 =head1 UNEXPORTED FUNCTIONS
3095 =head2 ModBiblioMarc
3097 &ModBiblioMarc($newrec,$biblionumber,$frameworkcode);
3099 Add MARC XML data for a biblio to koha
3101 Function exported, but should NOT be used, unless you really know what you're doing
3106 # pass the MARC::Record to this function, and it will create the records in
3108 my ( $record, $biblionumber, $frameworkcode ) = @_;
3110 carp
'ModBiblioMarc passed an undefined record';
3114 # Clone record as it gets modified
3115 $record = $record->clone();
3116 my $dbh = C4
::Context
->dbh;
3117 my @fields = $record->fields();
3118 if ( !$frameworkcode ) {
3119 $frameworkcode = "";
3121 my $sth = $dbh->prepare("UPDATE biblio SET frameworkcode=? WHERE biblionumber=?");
3122 $sth->execute( $frameworkcode, $biblionumber );
3124 my $encoding = C4
::Context
->preference("marcflavour");
3126 # deal with UNIMARC field 100 (encoding) : create it if needed & set encoding to unicode
3127 if ( $encoding eq "UNIMARC" ) {
3128 my $defaultlanguage = C4
::Context
->preference("UNIMARCField100Language");
3129 $defaultlanguage = "fre" if (!$defaultlanguage || length($defaultlanguage) != 3);
3130 my $string = $record->subfield( 100, "a" );
3131 if ( ($string) && ( length( $record->subfield( 100, "a" ) ) == 36 ) ) {
3132 my $f100 = $record->field(100);
3133 $record->delete_field($f100);
3135 $string = POSIX
::strftime
( "%Y%m%d", localtime );
3137 $string = sprintf( "%-*s", 35, $string );
3138 substr ( $string, 22, 3, $defaultlanguage);
3140 substr( $string, 25, 3, "y50" );
3141 unless ( $record->subfield( 100, "a" ) ) {
3142 $record->insert_fields_ordered( MARC
::Field
->new( 100, "", "", "a" => $string ) );
3146 #enhancement 5374: update transaction date (005) for marc21/unimarc
3147 if($encoding =~ /MARC21|UNIMARC/) {
3148 my @a= (localtime) [5,4,3,2,1,0]; $a[0]+=1900; $a[1]++;
3149 # YY MM DD HH MM SS (update year and month)
3150 my $f005= $record->field('005');
3151 $f005->update(sprintf("%4d%02d%02d%02d%02d%04.1f",@a)) if $f005;
3155 biblionumber
=> $biblionumber,
3156 format
=> 'marcxml',
3157 schema
=> C4
::Context
->preference('marcflavour'),
3159 $record->as_usmarc; # Bug 20126/10455 This triggers field length calculation
3161 my $m_rs = Koha
::Biblio
::Metadatas
->find($metadata) //
3162 Koha
::Biblio
::Metadata
->new($metadata);
3164 my $userenv = C4
::Context
->userenv;
3166 my $borrowernumber = $userenv->{number
};
3167 my $borrowername = join ' ', map { $_ // q{} } @
$userenv{qw(firstname surname)};
3168 unless ($m_rs->in_storage) {
3169 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForCreatorId'), $borrowernumber);
3170 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForCreatorName'), $borrowername);
3172 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForModifierId'), $borrowernumber);
3173 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForModifierName'), $borrowername);
3176 $m_rs->metadata( $record->as_xml_record($encoding) );
3179 ModZebra
( $biblionumber, "specialUpdate", "biblioserver" );
3181 return $biblionumber;
3184 =head2 prepare_host_field
3186 $marcfield = prepare_host_field( $hostbiblioitem, $marcflavour );
3187 Generate the host item entry for an analytic child entry
3191 sub prepare_host_field
{
3192 my ( $hostbiblio, $marcflavour ) = @_;
3193 $marcflavour ||= C4
::Context
->preference('marcflavour');
3194 my $host = GetMarcBiblio
({ biblionumber
=> $hostbiblio });
3195 # unfortunately as_string does not 'do the right thing'
3196 # if field returns undef
3200 if ( $marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC' ) {
3201 if ( $field = $host->field('100') || $host->field('110') || $host->field('11') ) {
3202 my $s = $field->as_string('ab');
3207 if ( $field = $host->field('245') ) {
3208 my $s = $field->as_string('a');
3213 if ( $field = $host->field('260') ) {
3214 my $s = $field->as_string('abc');
3219 if ( $field = $host->field('240') ) {
3220 my $s = $field->as_string();
3225 if ( $field = $host->field('022') ) {
3226 my $s = $field->as_string('a');
3231 if ( $field = $host->field('020') ) {
3232 my $s = $field->as_string('a');
3237 if ( $field = $host->field('001') ) {
3238 $sfd{w
} = $field->data(),;
3240 $host_field = MARC
::Field
->new( 773, '0', ' ', %sfd );
3243 elsif ( $marcflavour eq 'UNIMARC' ) {
3245 if ( $field = $host->field('700') || $host->field('710') || $host->field('720') ) {
3246 my $s = $field->as_string('ab');
3252 if ( $field = $host->field('200') ) {
3253 my $s = $field->as_string('a');
3258 #place of publicaton
3259 if ( $field = $host->field('210') ) {
3260 my $s = $field->as_string('a');
3265 #date of publication
3266 if ( $field = $host->field('210') ) {
3267 my $s = $field->as_string('d');
3273 if ( $field = $host->field('205') ) {
3274 my $s = $field->as_string();
3280 if ( $field = $host->field('856') ) {
3281 my $s = $field->as_string('u');
3287 if ( $field = $host->field('011') ) {
3288 my $s = $field->as_string('a');
3294 if ( $field = $host->field('010') ) {
3295 my $s = $field->as_string('a');
3300 if ( $field = $host->field('001') ) {
3301 $sfd{0} = $field->data(),;
3303 $host_field = MARC
::Field
->new( 461, '0', ' ', %sfd );
3310 =head2 UpdateTotalIssues
3312 UpdateTotalIssues($biblionumber, $increase, [$value])
3314 Update the total issue count for a particular bib record.
3318 =item C<$biblionumber> is the biblionumber of the bib to update
3320 =item C<$increase> is the amount to increase (or decrease) the total issues count by
3322 =item C<$value> is the absolute value that total issues count should be set to. If provided, C<$increase> is ignored.
3328 sub UpdateTotalIssues
{
3329 my ($biblionumber, $increase, $value) = @_;
3332 my $record = GetMarcBiblio
({ biblionumber
=> $biblionumber });
3334 carp
"UpdateTotalIssues could not get biblio record";
3337 my $biblio = Koha
::Biblios
->find( $biblionumber );
3339 carp
"UpdateTotalIssues could not get datas of biblio";
3342 my $biblioitem = $biblio->biblioitem;
3343 my ($totalissuestag, $totalissuessubfield) = GetMarcFromKohaField
( 'biblioitems.totalissues' );
3344 unless ($totalissuestag) {
3345 return 1; # There is nothing to do
3348 if (defined $value) {
3349 $totalissues = $value;
3351 $totalissues = $biblioitem->totalissues + $increase;
3354 my $field = $record->field($totalissuestag);
3355 if (defined $field) {
3356 $field->update( $totalissuessubfield => $totalissues );
3358 $field = MARC
::Field
->new($totalissuestag, '0', '0',
3359 $totalissuessubfield => $totalissues);
3360 $record->insert_grouped_field($field);
3363 return ModBiblio
($record, $biblionumber, $biblio->frameworkcode);
3368 &RemoveAllNsb($record);
3370 Removes all nsb/nse chars from a record
3377 carp
'RemoveAllNsb called with undefined record';
3381 SetUTF8Flag
($record);
3383 foreach my $field ($record->fields()) {
3384 if ($field->is_control_field()) {
3385 $field->update(nsb_clean
($field->data()));
3387 my @subfields = $field->subfields();
3389 foreach my $subfield (@subfields) {
3390 push @new_subfields, $subfield->[0] => nsb_clean
($subfield->[1]);
3392 if (scalar(@new_subfields) > 0) {
3395 $new_field = MARC
::Field
->new(
3397 $field->indicator(1),
3398 $field->indicator(2),
3403 warn "error in RemoveAllNsb : $@";
3405 $field->replace_with($new_field);
3417 =head2 _after_biblio_action_hooks
3419 Helper method that takes care of calling all plugin hooks
3423 sub _after_biblio_action_hooks
{
3426 my $biblio_id = $args->{biblio_id
};
3427 my $action = $args->{action
};
3429 if ( C4
::Context
->preference('UseKohaPlugins') && C4
::Context
->config("enable_plugins") ) {
3431 my @plugins = Koha
::Plugins
->new->GetPlugins({
3432 method
=> 'after_biblio_action',
3437 my $biblio = Koha
::Biblios
->find( $biblio_id );
3439 foreach my $plugin ( @plugins ) {
3441 $plugin->after_biblio_action({ action
=> $action, biblio
=> $biblio, biblio_id
=> $biblio_id });
3455 Koha Development Team <http://koha-community.org/>
3457 Paul POULAIN paul.poulain@free.fr
3459 Joshua Ferraro jmf@liblime.com