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
64 LinkBibHeadingsToAuthorities
72 # those functions are exported but should not be used
73 # they are useful in a few circumstances, so they are exported,
74 # but don't use them unless you are a core developer ;-)
83 use Encode
qw( decode is_utf8 );
84 use List
::MoreUtils
qw( uniq );
86 use MARC
::File
::USMARC
;
88 use POSIX
qw(strftime);
89 use Module
::Load
::Conditional
qw(can_load);
92 use C4
::Log
; # logaction
101 use Koha
::Authority
::Types
;
102 use Koha
::Acquisition
::Currencies
;
103 use Koha
::Biblio
::Metadatas
;
107 use Koha
::SearchEngine
;
109 use Koha
::Util
::MARC
;
111 use vars
qw($debug $cgi_debug);
116 C4::Biblio - cataloging management functions
120 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:
124 =item 1. in the biblio,biblioitems,items, etc tables, which are limited to a one-to-one mapping to underlying MARC data
126 =item 2. as raw MARC in the Zebra index and storage engine
128 =item 3. as MARC XML in biblio_metadata.metadata
132 In the 3.0 version of Koha, the authoritative record-level information is in biblio_metadata.metadata
134 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.
138 =item 1. Compared with MySQL, Zebra is slow to update an index for small data changes -- especially for proc-intensive operations like circulation
140 =item 2. Zebra's index has been known to crash and a backup of the data is necessary to rebuild it in such cases
144 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:
148 =item 1. Add*/Mod*/Del*/ - high-level external functions suitable for being called from external scripts to manage the collection
150 =item 2. _koha_* - low-level internal functions for managing the koha tables
152 =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.
154 =item 4. Zebra functions used to update the Zebra index
156 =item 5. internal helper functions such as char_decode, checkitems, etc. Some of these probably belong in Koha.pm
160 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 :
164 =item 1. save datas in biblio and biblioitems table, that gives us a biblionumber and a biblioitemnumber
166 =item 2. add the biblionumber and biblioitemnumber into the MARC records
168 =item 3. save the marc record
172 =head1 EXPORTED FUNCTIONS
176 ($biblionumber,$biblioitemnumber) = AddBiblio($record,$frameworkcode);
178 Exported function (core API) for adding a new biblio to koha.
180 The first argument is a C<MARC::Record> object containing the
181 bib to add, while the second argument is the desired MARC
184 This function also accepts a third, optional argument: a hashref
185 to additional options. The only defined option is C<defer_marc_save>,
186 which if present and mapped to a true value, causes C<AddBiblio>
187 to omit the call to save the MARC in C<biblio_metadata.metadata>
188 This option is provided B<only>
189 for the use of scripts such as C<bulkmarcimport.pl> that may need
190 to do some manipulation of the MARC record for item parsing before
191 saving it and which cannot afford the performance hit of saving
192 the MARC record twice. Consequently, do not use that option
193 unless you can guarantee that C<ModBiblioMarc> will be called.
199 my $frameworkcode = shift;
200 my $options = @_ ? shift : undef;
201 my $defer_marc_save = 0;
203 carp('AddBiblio called with undefined record');
206 if ( defined $options and exists $options->{'defer_marc_save'} and $options->{'defer_marc_save'} ) {
207 $defer_marc_save = 1;
210 if (C4::Context->preference('BiblioAddsAuthorities')) {
211 BiblioAutoLink( $record, $frameworkcode );
214 my ( $biblionumber, $biblioitemnumber, $error );
215 my $dbh = C4::Context->dbh;
217 # transform the data into koha-table style data
218 SetUTF8Flag($record);
219 my $olddata = TransformMarcToKoha( $record, $frameworkcode );
220 ( $biblionumber, $error ) = _koha_add_biblio( $dbh, $olddata, $frameworkcode );
221 $olddata->{'biblionumber'} = $biblionumber;
222 ( $biblioitemnumber, $error ) = _koha_add_biblioitem( $dbh, $olddata );
224 _koha_marc_update_bib_ids( $record, $frameworkcode, $biblionumber, $biblioitemnumber );
226 # update MARC subfield that stores biblioitems.cn_sort
227 _koha_marc_update_biblioitem_cn_sort( $record, $olddata, $frameworkcode );
230 ModBiblioMarc( $record, $biblionumber, $frameworkcode ) unless $defer_marc_save;
232 # update OAI-PMH sets
233 if(C4::Context->preference("OAI-PMH:AutoUpdateSets")) {
234 C4::OAI::Sets::UpdateOAISetsBiblio($biblionumber, $record);
237 _after_biblio_action_hooks({ action => 'create', biblio_id => $biblionumber });
239 logaction( "CATALOGUING", "ADD", $biblionumber, "biblio" ) if C4::Context->preference("CataloguingLog");
240 return ( $biblionumber, $biblioitemnumber );
245 ModBiblio( $record,$biblionumber,$frameworkcode, $disable_autolink);
247 Replace an existing bib record identified by C<$biblionumber>
248 with one supplied by the MARC::Record object C<$record>. The embedded
249 item, biblioitem, and biblionumber fields from the previous
250 version of the bib record replace any such fields of those tags that
251 are present in C<$record>. Consequently, ModBiblio() is not
252 to be used to try to modify item records.
254 C<$frameworkcode> specifies the MARC framework to use
255 when storing the modified bib record; among other things,
256 this controls how MARC fields get mapped to display columns
257 in the C<biblio> and C<biblioitems> tables, as well as
258 which fields are used to store embedded item, biblioitem,
259 and biblionumber data for indexing.
261 Unless C<$disable_autolink> is passed ModBiblio will relink record headings
262 to authorities based on settings in the system preferences. This flag allows
263 us to not relink records when the authority linker is saving modifications.
265 Returns 1 on success 0 on failure
270 my ( $record, $biblionumber, $frameworkcode, $disable_autolink ) = @_;
272 carp 'No record passed to ModBiblio';
276 if ( C4::Context->preference("CataloguingLog") ) {
277 my $newrecord = GetMarcBiblio({ biblionumber => $biblionumber });
278 logaction( "CATALOGUING", "MODIFY", $biblionumber, "biblio BEFORE=>" . $newrecord->as_formatted );
281 if ( !$disable_autolink && C4::Context->preference('BiblioAddsAuthorities') ) {
282 BiblioAutoLink( $record, $frameworkcode );
285 # Cleaning up invalid fields must be done early or SetUTF8Flag is liable to
286 # throw an exception which probably won't be handled.
287 foreach my $field ($record->fields()) {
288 if (! $field->is_control_field()) {
289 if (scalar($field->subfields()) == 0 || (scalar($field->subfields()) == 1 && $field->subfield('9'))) {
290 $record->delete_field($field);
295 SetUTF8Flag($record);
296 my $dbh = C4::Context->dbh;
298 $frameworkcode = "" if !$frameworkcode || $frameworkcode eq "Default"; # XXX
300 _strip_item_fields($record, $frameworkcode);
302 # update biblionumber and biblioitemnumber in MARC
303 # FIXME - this is assuming a 1 to 1 relationship between
304 # biblios and biblioitems
305 my $sth = $dbh->prepare("select biblioitemnumber from biblioitems where biblionumber=?");
306 $sth->execute($biblionumber);
307 my ($biblioitemnumber) = $sth->fetchrow;
309 _koha_marc_update_bib_ids( $record, $frameworkcode, $biblionumber, $biblioitemnumber );
311 # load the koha-table data object
312 my $oldbiblio = TransformMarcToKoha( $record, $frameworkcode );
314 # update MARC subfield that stores biblioitems.cn_sort
315 _koha_marc_update_biblioitem_cn_sort( $record, $oldbiblio, $frameworkcode );
317 # update the MARC record (that now contains biblio and items) with the new record data
318 &ModBiblioMarc( $record, $biblionumber, $frameworkcode );
320 # modify the other koha tables
321 _koha_modify_biblio( $dbh, $oldbiblio, $frameworkcode );
322 _koha_modify_biblioitem_nonmarc( $dbh, $oldbiblio );
324 _after_biblio_action_hooks({ action => 'modify', biblio_id => $biblionumber });
326 # update OAI-PMH sets
327 if(C4::Context->preference("OAI-PMH:AutoUpdateSets")) {
328 C4::OAI::Sets::UpdateOAISetsBiblio($biblionumber, $record);
334 =head2 _strip_item_fields
336 _strip_item_fields($record, $frameworkcode)
338 Utility routine to remove item tags from a
343 sub _strip_item_fields {
345 my $frameworkcode = shift;
346 # get the items before and append them to the biblio before updating the record, atm we just have the biblio
347 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField( "items.itemnumber" );
349 # delete any item fields from incoming record to avoid
350 # duplication or incorrect data - use AddItem() or ModItem()
352 foreach my $field ( $record->field($itemtag) ) {
353 $record->delete_field($field);
359 my $error = &DelBiblio($biblionumber);
361 Exported function (core API) for deleting a biblio in koha.
362 Deletes biblio record from Zebra and Koha tables (biblio & biblioitems)
363 Also backs it up to deleted* tables.
364 Checks to make sure that the biblio has no items attached.
366 C<$error> : undef unless an error occurs
371 my ($biblionumber) = @_;
373 my $biblio = Koha::Biblios->find( $biblionumber );
374 return unless $biblio; # Should we throw an exception instead?
376 my $dbh = C4::Context->dbh;
377 my $error; # for error handling
379 # First make sure this biblio has no items attached
380 my $sth = $dbh->prepare("SELECT itemnumber FROM items WHERE biblionumber=?");
381 $sth->execute($biblionumber);
382 if ( my $itemnumber = $sth->fetchrow ) {
384 # Fix this to use a status the template can understand
385 $error .= "This Biblio has items attached, please delete them first before deleting this biblio ";
388 return $error if $error;
390 # We delete attached subscriptions
392 my $subscriptions = C4::Serials::GetFullSubscriptionsFromBiblionumber($biblionumber);
393 foreach my $subscription (@$subscriptions) {
394 C4::Serials::DelSubscription( $subscription->{subscriptionid} );
397 # We delete any existing holds
398 my $holds = $biblio->holds;
399 while ( my $hold = $holds->next ) {
403 # Delete in Zebra. Be careful NOT to move this line after _koha_delete_biblio
404 # for at least 2 reasons :
405 # - if something goes wrong, the biblio may be deleted from Koha but not from zebra
406 # 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)
407 ModZebra( $biblionumber, "recordDelete", "biblioserver" );
409 # delete biblioitems and items from Koha tables and save in deletedbiblioitems,deleteditems
410 $sth = $dbh->prepare("SELECT biblioitemnumber FROM biblioitems WHERE biblionumber=?");
411 $sth->execute($biblionumber);
412 while ( my $biblioitemnumber = $sth->fetchrow ) {
414 # delete this biblioitem
415 $error = _koha_delete_biblioitems( $dbh, $biblioitemnumber );
416 return $error if $error;
420 # delete biblio from Koha tables and save in deletedbiblio
421 # must do this *after* _koha_delete_biblioitems, otherwise
422 # delete cascade will prevent deletedbiblioitems rows
423 # from being generated by _koha_delete_biblioitems
424 $error = _koha_delete_biblio( $dbh, $biblionumber );
426 _after_biblio_action_hooks({ action => 'delete', biblio_id => $biblionumber });
428 logaction( "CATALOGUING", "DELETE", $biblionumber, "biblio" ) if C4::Context->preference("CataloguingLog");
434 =head2 BiblioAutoLink
436 my $headings_linked = BiblioAutoLink($record, $frameworkcode)
438 Automatically links headings in a bib record to authorities.
440 Returns the number of headings changed
446 my $frameworkcode = shift;
448 carp('Undefined record passed to BiblioAutoLink');
451 my ( $num_headings_changed, %results );
454 "C4::Linker::" . ( C4::Context->preference("LinkerModule") || 'Default' );
455 unless ( can_load( modules => { $linker_module => undef } ) ) {
456 $linker_module = 'C4::Linker::Default';
457 unless ( can_load( modules => { $linker_module => undef } ) ) {
462 my $linker = $linker_module->new(
463 { 'options' => C4::Context->preference("LinkerOptions") } );
464 my ( $headings_changed, undef ) =
465 LinkBibHeadingsToAuthorities( $linker, $record, $frameworkcode, C4::Context->preference("CatalogModuleRelink") || '' );
466 # By default we probably don't want to relink things when cataloging
467 return $headings_changed;
470 =head2 LinkBibHeadingsToAuthorities
472 my $num_headings_changed, %results = LinkBibHeadingsToAuthorities($linker, $marc, $frameworkcode, [$allowrelink]);
474 Links bib headings to authority records by checking
475 each authority-controlled field in the C<MARC::Record>
476 object C<$marc>, looking for a matching authority record,
477 and setting the linking subfield $9 to the ID of that
480 If $allowrelink is false, existing authids will never be
481 replaced, regardless of the values of LinkerKeepStale and
484 Returns the number of heading links changed in the
489 sub LinkBibHeadingsToAuthorities {
492 my $frameworkcode = shift;
493 my $allowrelink = shift;
496 carp 'LinkBibHeadingsToAuthorities called on undefined bib record';
500 require C4::AuthoritiesMarc;
502 $allowrelink = 1 unless defined $allowrelink;
503 my $num_headings_changed = 0;
504 foreach my $field ( $bib->fields() ) {
505 my $heading = C4::Heading->new_from_bib_field( $field, $frameworkcode );
506 next unless defined $heading;
509 my $current_link = $field->subfield('9');
511 if ( defined $current_link && (!$allowrelink || !C4::Context->preference('LinkerRelink')) )
513 $results{'linked'}->{ $heading->display_form() }++;
517 my ( $authid, $fuzzy ) = $linker->get_link($heading);
519 $results{ $fuzzy ? 'fuzzy' : 'linked' }
520 ->{ $heading->display_form() }++;
521 next if defined $current_link and $current_link == $authid;
523 $field->delete_subfield( code => '9' ) if defined $current_link;
524 $field->add_subfields( '9', $authid );
525 $num_headings_changed++;
528 if ( defined $current_link
529 && (!$allowrelink || C4::Context->preference('LinkerKeepStale')) )
531 $results{'fuzzy'}->{ $heading->display_form() }++;
533 elsif ( C4::Context->preference('AutoCreateAuthorities') ) {
534 if ( _check_valid_auth_link( $current_link, $field ) ) {
535 $results{'linked'}->{ $heading->display_form() }++;
538 my $authority_type = Koha::Authority::Types->find( $heading->auth_type() );
539 my $marcrecordauth = MARC::Record->new();
540 if ( C4::Context->preference('marcflavour') eq 'MARC21' ) {
541 $marcrecordauth->leader(' nz a22 o 4500');
542 SetMarcUnicodeFlag( $marcrecordauth, 'MARC21' );
544 $field->delete_subfield( code => '9' )
545 if defined $current_link;
547 MARC::Field->new( $authority_type->auth_tag_to_report,
548 '', '', "a" => "" . $field->subfield('a') );
550 $authfield->add_subfields( $_->[0] => $_->[1] )
551 if ( $_->[0] =~ /[A-z]/ && $_->[0] ne "a"
552 && C4::Heading::valid_bib_heading_subfield(
553 $authority_type->auth_tag_to_report, $_->[0] )
555 } $field->subfields();
556 $marcrecordauth->insert_fields_ordered($authfield);
558 # bug 2317: ensure new authority knows it's using UTF-8; currently
559 # only need to do this for MARC21, as MARC::Record->as_xml_record() handles
560 # automatically for UNIMARC (by not transcoding)
561 # FIXME: AddAuthority() instead should simply explicitly require that the MARC::Record
562 # use UTF-8, but as of 2008-08-05, did not want to introduce that kind
563 # of change to a core API just before the 3.0 release.
565 if ( C4::Context->preference('marcflavour') eq 'MARC21' ) {
566 my $userenv = C4::Context->userenv;
568 if ( $userenv && $userenv->{'branch'} ) {
569 $library = Koha::Libraries->find( $userenv->{'branch'} );
571 $marcrecordauth->insert_fields_ordered(
574 'a' => "Machine generated authority record."
578 $bib->author() . ", "
579 . $bib->title_proper() . ", "
580 . $bib->publication_date() . " ";
581 $cite =~ s/^[\s\,]*//;
582 $cite =~ s/[\s\,]*$//;
585 . ( $library ? $library->get_effective_marcorgcode : C4::Context->preference('MARCOrgCode') ) . ")"
586 . $bib->subfield( '999', 'c' ) . ": "
588 $marcrecordauth->insert_fields_ordered(
589 MARC::Field->new( '670', '', '', 'a' => $cite ) );
592 # warn "AUTH RECORD ADDED : ".$marcrecordauth->as_formatted;
595 C4::AuthoritiesMarc::AddAuthority( $marcrecordauth, '',
596 $heading->auth_type() );
597 $field->add_subfields( '9', $authid );
598 $num_headings_changed++;
599 $linker->update_cache($heading, $authid);
600 $results{'added'}->{ $heading->display_form() }++;
603 elsif ( defined $current_link ) {
604 if ( _check_valid_auth_link( $current_link, $field ) ) {
605 $results{'linked'}->{ $heading->display_form() }++;
608 $field->delete_subfield( code => '9' );
609 $num_headings_changed++;
610 $results{'unlinked'}->{ $heading->display_form() }++;
614 $results{'unlinked'}->{ $heading->display_form() }++;
619 return $num_headings_changed, \%results;
622 =head2 _check_valid_auth_link
624 if ( _check_valid_auth_link($authid, $field) ) {
628 Check whether the specified heading-auth link is valid without reference
629 to Zebra. Ideally this code would be in C4::Heading, but that won't be
630 possible until we have de-cycled C4::AuthoritiesMarc, so this is the
635 sub _check_valid_auth_link {
636 my ( $authid, $field ) = @_;
637 require C4::AuthoritiesMarc;
639 my $authorized_heading =
640 C4::AuthoritiesMarc::GetAuthorizedHeading( { 'authid' => $authid } ) || '';
641 return ($field->as_string('abcdefghijklmnopqrstuvwxyz') eq $authorized_heading);
646 $data = &GetBiblioData($biblionumber);
648 Returns information about the book with the given biblionumber.
649 C<&GetBiblioData> returns a reference-to-hash. The keys are the fields in
650 the C<biblio> and C<biblioitems> tables in the
653 In addition, C<$data-E<gt>{subject}> is the list of the book's
654 subjects, separated by C<" , "> (space, comma, space).
655 If there are multiple biblioitems with the given biblionumber, only
656 the first one is considered.
662 my $dbh = C4::Context->dbh;
664 my $query = " SELECT * , biblioitems.notes AS bnotes, itemtypes.notforloan as bi_notforloan, biblio.notes
666 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
667 LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype
668 WHERE biblio.biblionumber = ?";
670 my $sth = $dbh->prepare($query);
671 $sth->execute($bibnum);
673 $data = $sth->fetchrow_hashref;
677 } # sub GetBiblioData
681 $isbd = &GetISBDView({
682 'record' => $marc_record,
683 'template' => $interface, # opac/intranet
684 'framework' => $framework,
687 Return the ISBD view which can be included in opac and intranet
694 # Expecting record WITH items.
695 my $record = $params->{record};
696 return unless defined $record;
698 my $template = $params->{template} // q{};
699 my $sysprefname = $template eq 'opac' ?
'opacisbd' : 'isbd';
700 my $framework = $params->{framework
};
701 my $itemtype = $framework;
702 my ( $holdingbrtagf, $holdingbrtagsubf ) = &GetMarcFromKohaField
( "items.holdingbranch" );
703 my $tagslib = GetMarcStructure
( 1, $itemtype, { unsafe
=> 1 } );
705 my $ISBD = C4
::Context
->preference($sysprefname);
710 foreach my $isbdfield ( split( /#/, $bloc ) ) {
712 # $isbdfield= /(.?.?.?)/;
713 $isbdfield =~ /(\d\d\d)([^\|])?\|(.*)\|(.*)\|(.*)/;
714 my $fieldvalue = $1 || 0;
715 my $subfvalue = $2 || "";
717 my $analysestring = $4;
720 # warn "==> $1 / $2 / $3 / $4";
721 # my $fieldvalue=substr($isbdfield,0,3);
722 if ( $fieldvalue > 0 ) {
723 my $hasputtextbefore = 0;
724 my @fieldslist = $record->field($fieldvalue);
725 @fieldslist = sort { $a->subfield($holdingbrtagsubf) cmp $b->subfield($holdingbrtagsubf) } @fieldslist if ( $fieldvalue eq $holdingbrtagf );
727 # warn "ERROR IN ISBD DEFINITION at : $isbdfield" unless $fieldvalue;
728 # warn "FV : $fieldvalue";
729 if ( $subfvalue ne "" ) {
730 # OPAC hidden subfield
732 if ( ( $template eq 'opac' )
733 && ( $tagslib->{$fieldvalue}->{$subfvalue}->{'hidden'} || 0 ) > 0 );
734 foreach my $field (@fieldslist) {
735 foreach my $subfield ( $field->subfield($subfvalue) ) {
736 my $calculated = $analysestring;
737 my $tag = $field->tag();
740 my $subfieldvalue = GetAuthorisedValueDesc
( $tag, $subfvalue, $subfield, '', $tagslib );
741 my $tagsubf = $tag . $subfvalue;
742 $calculated =~ s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
743 if ( $template eq "opac" ) { $calculated =~ s
#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g; }
745 # field builded, store the result
746 if ( $calculated && !$hasputtextbefore ) { # put textbefore if not done
747 $blocres .= $textbefore;
748 $hasputtextbefore = 1;
751 # remove punctuation at start
752 $calculated =~ s/^( |;|:|\.|-)*//g;
753 $blocres .= $calculated;
758 $blocres .= $textafter if $hasputtextbefore;
760 foreach my $field (@fieldslist) {
761 my $calculated = $analysestring;
762 my $tag = $field->tag();
765 my @subf = $field->subfields;
766 for my $i ( 0 .. $#subf ) {
767 my $valuecode = $subf[$i][1];
768 my $subfieldcode = $subf[$i][0];
769 # OPAC hidden subfield
771 if ( ( $template eq 'opac' )
772 && ( $tagslib->{$fieldvalue}->{$subfieldcode}->{'hidden'} || 0 ) > 0 );
773 my $subfieldvalue = GetAuthorisedValueDesc
( $tag, $subf[$i][0], $subf[$i][1], '', $tagslib );
774 my $tagsubf = $tag . $subfieldcode;
776 $calculated =~ s
/ # replace all {{}} codes by the value code.
777 \
{\
{$tagsubf\
}\
} # catch the {{actualcode}}
779 $valuecode # replace by the value code
782 $calculated =~ s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
783 if ( $template eq "opac" ) { $calculated =~ s
#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g; }
786 # field builded, store the result
787 if ( $calculated && !$hasputtextbefore ) { # put textbefore if not done
788 $blocres .= $textbefore;
789 $hasputtextbefore = 1;
792 # remove punctuation at start
793 $calculated =~ s/^( |;|:|\.|-)*//g;
794 $blocres .= $calculated;
797 $blocres .= $textafter if $hasputtextbefore;
800 $blocres .= $isbdfield;
805 $res =~ s/\{(.*?)\}//g;
807 $res =~ s/\n/<br\/>/g
;
815 =head1 FUNCTIONS FOR HANDLING MARC MANAGEMENT
817 =head2 IsMarcStructureInternal
819 my $tagslib = C4::Biblio::GetMarcStructure();
820 for my $tag ( sort keys %$tagslib ) {
822 for my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
823 next if IsMarcStructureInternal($tagslib->{$tag}{$subfield});
828 GetMarcStructure creates keys (lib, tab, mandatory, repeatable) for a display purpose.
829 These different values should not be processed as valid subfields.
833 sub IsMarcStructureInternal
{
834 my ( $subfield ) = @_;
835 return ref $subfield ?
0 : 1;
838 =head2 GetMarcStructure
840 $res = GetMarcStructure($forlibrarian, $frameworkcode, [ $params ]);
842 Returns a reference to a big hash of hash, with the Marc structure for the given frameworkcode
843 $forlibrarian :if set to 1, the MARC descriptions are the librarians ones, otherwise it's the public (OPAC) ones
844 $frameworkcode : the framework code to read
845 $params allows you to pass { unsafe => 1 } for better performance.
847 Note: If you call GetMarcStructure with unsafe => 1, do not modify or
848 even autovivify its contents. It is a cached/shared data structure. Your
849 changes c/would be passed around in subsequent calls.
853 sub GetMarcStructure
{
854 my ( $forlibrarian, $frameworkcode, $params ) = @_;
855 $frameworkcode = "" unless $frameworkcode;
857 $forlibrarian = $forlibrarian ?
1 : 0;
858 my $unsafe = ($params && $params->{unsafe
})?
1: 0;
859 my $cache = Koha
::Caches
->get_instance();
860 my $cache_key = "MarcStructure-$forlibrarian-$frameworkcode";
861 my $cached = $cache->get_from_cache($cache_key, { unsafe
=> $unsafe });
862 return $cached if $cached;
864 my $dbh = C4
::Context
->dbh;
865 my $sth = $dbh->prepare(
866 "SELECT tagfield,liblibrarian,libopac,mandatory,repeatable,ind1_defaultvalue,ind2_defaultvalue
867 FROM marc_tag_structure
868 WHERE frameworkcode=?
871 $sth->execute($frameworkcode);
872 my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable, $ind1_defaultvalue, $ind2_defaultvalue );
874 while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable, $ind1_defaultvalue, $ind2_defaultvalue ) = $sth->fetchrow ) {
875 $res->{$tag}->{lib
} = ( $forlibrarian or !$libopac ) ?
$liblibrarian : $libopac;
876 $res->{$tag}->{tab
} = "";
877 $res->{$tag}->{mandatory
} = $mandatory;
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
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,
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}->{repeatable
} = $repeatable;
916 $res->{$tag}->{$subfield}->{authorised_value
} = $authorised_value;
917 $res->{$tag}->{$subfield}->{authtypecode
} = $authtypecode;
918 $res->{$tag}->{$subfield}->{value_builder
} = $value_builder;
919 $res->{$tag}->{$subfield}->{kohafield
} = $kohafield;
920 $res->{$tag}->{$subfield}->{seealso
} = $seealso;
921 $res->{$tag}->{$subfield}->{hidden
} = $hidden;
922 $res->{$tag}->{$subfield}->{isurl
} = $isurl;
923 $res->{$tag}->{$subfield}->{'link'} = $link;
924 $res->{$tag}->{$subfield}->{defaultvalue
} = $defaultvalue;
925 $res->{$tag}->{$subfield}->{maxlength
} = $maxlength;
928 $cache->set_in_cache($cache_key, $res);
932 =head2 GetUsedMarcStructure
934 The same function as GetMarcStructure except it just takes field
935 in tab 0-9. (used field)
937 my $results = GetUsedMarcStructure($frameworkcode);
939 C<$results> is a ref to an array which each case contains a ref
940 to a hash which each keys is the columns from marc_subfield_structure
942 C<$frameworkcode> is the framework code.
946 sub GetUsedMarcStructure
{
947 my $frameworkcode = shift || '';
950 FROM marc_subfield_structure
952 AND frameworkcode = ?
953 ORDER BY tagfield, tagsubfield
955 my $sth = C4
::Context
->dbh->prepare($query);
956 $sth->execute($frameworkcode);
957 return $sth->fetchall_arrayref( {} );
962 =head2 GetMarcSubfieldStructure
964 my $structure = GetMarcSubfieldStructure($frameworkcode, [$params]);
966 Returns a reference to hash representing MARC subfield structure
967 for framework with framework code C<$frameworkcode>, C<$params> is
968 optional and may contain additional options.
972 =item C<$frameworkcode>
978 An optional hash reference with additional options.
979 The following options are supported:
985 Pass { unsafe => 1 } do disable cached object cloning,
986 and instead get a shared reference, resulting in better
987 performance (but care must be taken so that retured object
990 Note: If you call GetMarcSubfieldStructure with unsafe => 1, do not modify or
991 even autovivify its contents. It is a cached/shared data structure. Your
992 changes would be passed around in subsequent calls.
1000 sub GetMarcSubfieldStructure
{
1001 my ( $frameworkcode, $params ) = @_;
1003 $frameworkcode //= '';
1005 my $cache = Koha
::Caches
->get_instance();
1006 my $cache_key = "MarcSubfieldStructure-$frameworkcode";
1007 my $cached = $cache->get_from_cache($cache_key, { unsafe
=> ($params && $params->{unsafe
}) });
1008 return $cached if $cached;
1010 my $dbh = C4
::Context
->dbh;
1011 # We moved to selectall_arrayref since selectall_hashref does not
1012 # keep duplicate mappings on kohafield (like place in 260 vs 264)
1013 my $subfield_aref = $dbh->selectall_arrayref( q
|
1015 FROM marc_subfield_structure
1016 WHERE frameworkcode
= ?
1018 ORDER BY frameworkcode
,tagfield
,tagsubfield
1019 |, { Slice
=> {} }, $frameworkcode );
1020 # Now map the output to a hash structure
1021 my $subfield_structure = {};
1022 foreach my $row ( @
$subfield_aref ) {
1023 push @
{ $subfield_structure->{ $row->{kohafield
} }}, $row;
1025 $cache->set_in_cache( $cache_key, $subfield_structure );
1026 return $subfield_structure;
1029 =head2 GetMarcFromKohaField
1031 ( $field,$subfield ) = GetMarcFromKohaField( $kohafield );
1032 @fields = GetMarcFromKohaField( $kohafield );
1033 $field = GetMarcFromKohaField( $kohafield );
1035 Returns the MARC fields & subfields mapped to $kohafield.
1036 Since the Default framework is considered as authoritative for such
1037 mappings, the former frameworkcode parameter is obsoleted.
1039 In list context all mappings are returned; there can be multiple
1040 mappings. Note that in the above example you could miss a second
1041 mappings in the first call.
1042 In scalar context only the field tag of the first mapping is returned.
1046 sub GetMarcFromKohaField
{
1047 my ( $kohafield ) = @_;
1048 return unless $kohafield;
1049 # The next call uses the Default framework since it is AUTHORITATIVE
1050 # for all Koha to MARC mappings.
1051 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # Do not change framework
1053 foreach( @
{ $mss->{$kohafield} } ) {
1054 push @retval, $_->{tagfield
}, $_->{tagsubfield
};
1056 return wantarray ?
@retval : ( @retval ?
$retval[0] : undef );
1059 =head2 GetMarcSubfieldStructureFromKohaField
1061 my $str = GetMarcSubfieldStructureFromKohaField( $kohafield );
1063 Returns marc subfield structure information for $kohafield.
1064 The Default framework is used, since it is authoritative for kohafield
1066 In list context returns a list of all hashrefs, since there may be
1067 multiple mappings. In scalar context the first hashref is returned.
1071 sub GetMarcSubfieldStructureFromKohaField
{
1072 my ( $kohafield ) = @_;
1074 return unless $kohafield;
1076 # The next call uses the Default framework since it is AUTHORITATIVE
1077 # for all Koha to MARC mappings.
1078 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # Do not change framework
1079 return unless $mss->{$kohafield};
1080 return wantarray ? @
{$mss->{$kohafield}} : $mss->{$kohafield}->[0];
1083 =head2 GetMarcBiblio
1085 my $record = GetMarcBiblio({
1086 biblionumber => $biblionumber,
1087 embed_items => $embeditems,
1089 borcat => $patron_category });
1091 Returns MARC::Record representing a biblio record, or C<undef> if the
1092 biblionumber doesn't exist.
1094 Both embed_items and opac are optional.
1095 If embed_items is passed and is 1, items are embedded.
1096 If opac is passed and is 1, the record is filtered as needed.
1100 =item C<$biblionumber>
1104 =item C<$embeditems>
1106 set to true to include item information.
1110 set to true to make the result suited for OPAC view. This causes things like
1111 OpacHiddenItems to be applied.
1115 If the OpacHiddenItemsExceptions system preference is set, this patron category
1116 can be used to make visible OPAC items which would be normally hidden.
1117 It only makes sense in combination both embed_items and opac values true.
1126 if (not defined $params) {
1127 carp
'GetMarcBiblio called without parameters';
1131 my $biblionumber = $params->{biblionumber
};
1132 my $embeditems = $params->{embed_items
} || 0;
1133 my $opac = $params->{opac
} || 0;
1134 my $borcat = $params->{borcat
} // q{};
1136 if (not defined $biblionumber) {
1137 carp
'GetMarcBiblio called with undefined biblionumber';
1141 my $dbh = C4
::Context
->dbh;
1142 my $sth = $dbh->prepare("SELECT biblioitemnumber FROM biblioitems WHERE biblionumber=? ");
1143 $sth->execute($biblionumber);
1144 my $row = $sth->fetchrow_hashref;
1145 my $biblioitemnumber = $row->{'biblioitemnumber'};
1146 my $marcxml = GetXmlBiblio
( $biblionumber );
1147 $marcxml = StripNonXmlChars
( $marcxml );
1148 my $frameworkcode = GetFrameworkCode
($biblionumber);
1149 MARC
::File
::XML
->default_record_format( C4
::Context
->preference('marcflavour') );
1150 my $record = MARC
::Record
->new();
1154 MARC
::Record
::new_from_xml
( $marcxml, "utf8",
1155 C4
::Context
->preference('marcflavour') );
1157 if ($@
) { warn " problem with :$biblionumber : $@ \n$marcxml"; }
1158 return unless $record;
1160 C4
::Biblio
::_koha_marc_update_bib_ids
( $record, $frameworkcode, $biblionumber,
1161 $biblioitemnumber );
1162 C4
::Biblio
::EmbedItemsInMarcBiblio
({
1163 marc_record
=> $record,
1164 biblionumber
=> $biblionumber,
1166 borcat
=> $borcat })
1178 my $marcxml = GetXmlBiblio($biblionumber);
1180 Returns biblio_metadata.metadata/marcxml of the biblionumber passed in parameter.
1181 The XML should only contain biblio information (item information is no longer stored in marcxml field)
1186 my ($biblionumber) = @_;
1187 my $dbh = C4
::Context
->dbh;
1188 return unless $biblionumber;
1189 my ($marcxml) = $dbh->selectrow_array(
1192 FROM biblio_metadata
1193 WHERE biblionumber
=?
1194 AND format
='marcxml'
1196 |, undef, $biblionumber, C4
::Context
->preference('marcflavour')
1203 return the prices in accordance with the Marc format.
1205 returns 0 if no price found
1206 returns undef if called without a marc record or with
1207 an unrecognized marc format
1212 my ( $record, $marcflavour ) = @_;
1214 carp
'GetMarcPrice called on undefined record';
1221 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
1222 @listtags = ('345', '020');
1224 } elsif ( $marcflavour eq "UNIMARC" ) {
1225 @listtags = ('345', '010');
1231 for my $field ( $record->field(@listtags) ) {
1232 for my $subfield_value ($field->subfield($subfield)){
1234 $subfield_value = MungeMarcPrice
( $subfield_value );
1235 return $subfield_value if ($subfield_value);
1238 return 0; # no price found
1241 =head2 MungeMarcPrice
1243 Return the best guess at what the actual price is from a price field.
1247 sub MungeMarcPrice
{
1249 return unless ( $price =~ m/\d/ ); ## No digits means no price.
1250 # Look for the currency symbol and the normalized code of the active currency, if it's there,
1251 my $active_currency = Koha
::Acquisition
::Currencies
->get_active;
1252 my $symbol = $active_currency->symbol;
1253 my $isocode = $active_currency->isocode;
1254 $isocode = $active_currency->currency unless defined $isocode;
1257 my @matches =($price=~ /
1259 ( # start of capturing parenthesis
1261 (?
:[\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'
1262 |(?
:\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'
1264 \s?\p
{Sc
}?\s?
# followed or not by a whitespace. \p{Sc}?\s? are for cases like '25$ USD'
1266 (?
:[\p
{Sc
}\p
{L
}\
/.]){1,4} # followed by same block as symbol block
1267 |(?
:\d
+[\p
{P
}\s
]?
){1,4} # or by same block as digits block
1269 \s?\p
{L
}{0,4}\s?
# followed or not by a whitespace. \p{L}{0,4}\s? are for cases like '$9.50 USD'
1270 ) # end of capturing parenthesis
1271 (?
:\p
{P
}|\z
) # followed by a punctuation sign or by the end of the string
1275 foreach ( @matches ) {
1276 $localprice = $_ and last if index($_, $isocode)>=0;
1278 if ( !$localprice ) {
1279 foreach ( @matches ) {
1280 $localprice = $_ and last if $_=~ /(^|[^\p{Sc}\p{L}\/])\Q
$symbol\E
([^\p
{Sc
}\p
{L
}\
/]+\z|\z)/;
1285 if ( $localprice ) {
1286 $price = $localprice;
1288 ## Grab the first number in the string ( can use commas or periods for thousands separator and/or decimal separator )
1289 ( $price ) = $price =~ m/([\d\,\.]+[[\,\.]\d\d]?)/;
1291 # eliminate symbol/isocode, space and any final dot from the string
1292 $price =~ s/[\p{Sc}\p{L}\/ ]|\.$//g
;
1293 # remove comma,dot when used as separators from hundreds
1294 $price =~s/[\,\.](\d{3})/$1/g;
1295 # convert comma to dot to ensure correct display of decimals if existing
1301 =head2 GetMarcQuantity
1303 return the quantity of a book. Used in acquisition only, when importing a file an iso2709 from a bookseller
1304 Warning : this is not really in the marc standard. In Unimarc, Electre (the most widely used bookseller) use the 969$a
1306 returns 0 if no quantity found
1307 returns undef if called without a marc record or with
1308 an unrecognized marc format
1312 sub GetMarcQuantity
{
1313 my ( $record, $marcflavour ) = @_;
1315 carp
'GetMarcQuantity called on undefined record';
1322 if ( $marcflavour eq "MARC21" ) {
1324 } elsif ( $marcflavour eq "UNIMARC" ) {
1325 @listtags = ('969');
1331 for my $field ( $record->field(@listtags) ) {
1332 for my $subfield_value ($field->subfield($subfield)){
1334 if ($subfield_value) {
1335 # in France, the cents separator is the , but sometimes, ppl use a .
1336 # in this case, the price will be x100 when unformatted ! Replace the . by a , to get a proper price calculation
1337 $subfield_value =~ s/\./,/ if C4
::Context
->preference("CurrencyFormat") eq "FR";
1338 return $subfield_value;
1342 return 0; # no price found
1346 =head2 GetAuthorisedValueDesc
1348 my $subfieldvalue =get_authorised_value_desc(
1349 $tag, $subf[$i][0],$subf[$i][1], '', $taglib, $category, $opac);
1351 Retrieve the complete description for a given authorised value.
1353 Now takes $category and $value pair too.
1355 my $auth_value_desc =GetAuthorisedValueDesc(
1356 '','', 'DVD' ,'','','CCODE');
1358 If the optional $opac parameter is set to a true value, displays OPAC
1359 descriptions rather than normal ones when they exist.
1363 sub GetAuthorisedValueDesc
{
1364 my ( $tag, $subfield, $value, $framework, $tagslib, $category, $opac ) = @_;
1368 return $value unless defined $tagslib->{$tag}->{$subfield}->{'authorised_value'};
1371 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
1372 my $branch = Koha
::Libraries
->find($value);
1373 return $branch?
$branch->branchname: q{};
1377 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
1378 my $itemtype = Koha
::ItemTypes
->find( $value );
1379 return $itemtype ?
$itemtype->translated_description : q
||;
1382 #---- "true" authorized value
1383 $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
1386 my $dbh = C4
::Context
->dbh;
1387 if ( $category ne "" ) {
1388 my $sth = $dbh->prepare( "SELECT lib, lib_opac FROM authorised_values WHERE category = ? AND authorised_value = ?" );
1389 $sth->execute( $category, $value );
1390 my $data = $sth->fetchrow_hashref;
1391 return ( $opac && $data->{'lib_opac'} ) ?
$data->{'lib_opac'} : $data->{'lib'};
1393 return $value; # if nothing is found return the original value
1397 =head2 GetMarcControlnumber
1399 $marccontrolnumber = GetMarcControlnumber($record,$marcflavour);
1401 Get the control number / record Identifier from the MARC record and return it.
1405 sub GetMarcControlnumber
{
1406 my ( $record, $marcflavour ) = @_;
1408 carp
'GetMarcControlnumber called on undefined record';
1411 my $controlnumber = "";
1412 # Control number or Record identifier are the same field in MARC21, UNIMARC and NORMARC
1413 # Keep $marcflavour for possible later use
1414 if ($marcflavour eq "MARC21" || $marcflavour eq "UNIMARC" || $marcflavour eq "NORMARC") {
1415 my $controlnumberField = $record->field('001');
1416 if ($controlnumberField) {
1417 $controlnumber = $controlnumberField->data();
1420 return $controlnumber;
1425 $marcisbnsarray = GetMarcISBN( $record, $marcflavour );
1427 Get all ISBNs from the MARC record and returns them in an array.
1428 ISBNs stored in different fields depending on MARC flavour
1433 my ( $record, $marcflavour ) = @_;
1435 carp
'GetMarcISBN called on undefined record';
1439 if ( $marcflavour eq "UNIMARC" ) {
1441 } else { # assume marc21 if not unimarc
1446 foreach my $field ( $record->field($scope) ) {
1447 my $isbn = $field->subfield( 'a' );
1448 if ( $isbn && $isbn ne "" ) {
1449 push @marcisbns, $isbn;
1459 $marcissnsarray = GetMarcISSN( $record, $marcflavour );
1461 Get all valid ISSNs from the MARC record and returns them in an array.
1462 ISSNs are stored in different fields depending on MARC flavour
1467 my ( $record, $marcflavour ) = @_;
1469 carp
'GetMarcISSN called on undefined record';
1473 if ( $marcflavour eq "UNIMARC" ) {
1476 else { # assume MARC21 or NORMARC
1480 foreach my $field ( $record->field($scope) ) {
1481 push @marcissns, $field->subfield( 'a' )
1482 if ( $field->subfield( 'a' ) ne "" );
1489 $marcnotesarray = GetMarcNotes( $record, $marcflavour );
1491 Get all notes from the MARC record and returns them in an array.
1492 The notes are stored in different fields depending on MARC flavour.
1493 MARC21 5XX $u subfields receive special attention as they are URIs.
1498 my ( $record, $marcflavour, $opac ) = @_;
1500 carp
'GetMarcNotes called on undefined record';
1504 my $scope = $marcflavour eq "UNIMARC"?
'3..': '5..';
1507 #MARC21 specs indicate some notes should be private if first indicator 0
1508 my %maybe_private = (
1516 my %blacklist = map { $_ => 1 }
1517 split( /,/, C4
::Context
->preference('NotesBlacklist'));
1518 foreach my $field ( $record->field($scope) ) {
1519 my $tag = $field->tag();
1520 next if $blacklist{ $tag };
1521 next if $opac && $maybe_private{$tag} && !$field->indicator(1);
1522 if( $marcflavour ne 'UNIMARC' && $field->subfield('u') ) {
1523 # Field 5XX$u always contains URI
1524 # Examples: 505u, 506u, 510u, 514u, 520u, 530u, 538u, 540u, 542u, 552u, 555u, 561u, 563u, 583u
1525 # We first push the other subfields, then all $u's separately
1526 # Leave further actions to the template (see e.g. opac-detail)
1528 join '', ( 'a' .. 't', 'v' .. 'z', '0' .. '9' ); # excl 'u'
1529 push @marcnotes, { marcnote
=> $field->as_string($othersub) };
1530 foreach my $sub ( $field->subfield('u') ) {
1531 $sub =~ s/^\s+|\s+$//g; # trim
1532 push @marcnotes, { marcnote
=> $sub };
1535 push @marcnotes, { marcnote
=> $field->as_string() };
1541 =head2 GetMarcSubjects
1543 $marcsubjcts = GetMarcSubjects($record,$marcflavour);
1545 Get all subjects from the MARC record and returns them in an array.
1546 The subjects are stored in different fields depending on MARC flavour
1550 sub GetMarcSubjects
{
1551 my ( $record, $marcflavour ) = @_;
1553 carp
'GetMarcSubjects called on undefined record';
1556 my ( $mintag, $maxtag, $fields_filter );
1557 if ( $marcflavour eq "UNIMARC" ) {
1560 $fields_filter = '6..';
1561 } else { # marc21/normarc
1564 $fields_filter = '6..';
1569 my $subject_limit = C4
::Context
->preference("TraceCompleteSubfields") ?
'su,complete-subfield' : 'su';
1570 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1572 foreach my $field ( $record->field($fields_filter) ) {
1573 next unless ($field->tag() >= $mintag && $field->tag() <= $maxtag);
1575 my @subfields = $field->subfields();
1578 # if there is an authority link, build the links with an= subfield9
1579 my $subfield9 = $field->subfield('9');
1582 my $linkvalue = $subfield9;
1583 $linkvalue =~ s/(\(|\))//g;
1584 @link_loop = ( { limit
=> 'an', 'link' => $linkvalue } );
1585 $authoritylink = $linkvalue
1589 for my $subject_subfield (@subfields) {
1590 next if ( $subject_subfield->[0] eq '9' );
1592 # don't load unimarc subfields 3,4,5
1593 next if ( ( $marcflavour eq "UNIMARC" ) and ( $subject_subfield->[0] =~ /2|3|4|5/ ) );
1594 # don't load MARC21 subfields 2 (FIXME: any more subfields??)
1595 next if ( ( $marcflavour eq "MARC21" ) and ( $subject_subfield->[0] =~ /2/ ) );
1597 my $code = $subject_subfield->[0];
1598 my $value = $subject_subfield->[1];
1599 my $linkvalue = $value;
1600 $linkvalue =~ s/(\(|\))//g;
1601 # if no authority link, build a search query
1602 unless ($subfield9) {
1604 limit
=> $subject_limit,
1605 'link' => $linkvalue,
1606 operator
=> (scalar @link_loop) ?
' and ' : undef
1609 my @this_link_loop = @link_loop;
1611 unless ( $code eq '0' ) {
1612 push @subfields_loop, {
1615 link_loop
=> \
@this_link_loop,
1616 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : ''
1621 push @marcsubjects, {
1622 MARCSUBJECT_SUBFIELDS_LOOP
=> \
@subfields_loop,
1623 authoritylink
=> $authoritylink,
1624 } if $authoritylink || @subfields_loop;
1627 return \
@marcsubjects;
1628 } #end getMARCsubjects
1630 =head2 GetMarcAuthors
1632 authors = GetMarcAuthors($record,$marcflavour);
1634 Get all authors from the MARC record and returns them in an array.
1635 The authors are stored in different fields depending on MARC flavour
1639 sub GetMarcAuthors
{
1640 my ( $record, $marcflavour ) = @_;
1642 carp
'GetMarcAuthors called on undefined record';
1645 my ( $mintag, $maxtag, $fields_filter );
1647 # tagslib useful only for UNIMARC author responsibilities
1649 if ( $marcflavour eq "UNIMARC" ) {
1650 # FIXME : we don't have the framework available, we take the default framework. May be buggy on some setups, will be usually correct.
1651 $tagslib = GetMarcStructure
( 1, '', { unsafe
=> 1 });
1654 $fields_filter = '7..';
1655 } else { # marc21/normarc
1658 $fields_filter = '7..';
1662 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1664 foreach my $field ( $record->field($fields_filter) ) {
1665 next unless $field->tag() >= $mintag && $field->tag() <= $maxtag;
1668 my @subfields = $field->subfields();
1671 # if there is an authority link, build the link with Koha-Auth-Number: subfield9
1672 my $subfield9 = $field->subfield('9');
1674 my $linkvalue = $subfield9;
1675 $linkvalue =~ s/(\(|\))//g;
1676 @link_loop = ( { 'limit' => 'an', 'link' => $linkvalue } );
1681 for my $authors_subfield (@subfields) {
1682 next if ( $authors_subfield->[0] eq '9' );
1684 # unimarc3 contains the $3 of the author for UNIMARC.
1685 # For french academic libraries, it's the "ppn", and it's required for idref webservice
1686 $unimarc3 = $authors_subfield->[1] if $marcflavour eq 'UNIMARC' and $authors_subfield->[0] =~ /3/;
1688 # don't load unimarc subfields 3, 5
1689 next if ( $marcflavour eq 'UNIMARC' and ( $authors_subfield->[0] =~ /3|5/ ) );
1691 my $code = $authors_subfield->[0];
1692 my $value = $authors_subfield->[1];
1693 my $linkvalue = $value;
1694 $linkvalue =~ s/(\(|\))//g;
1695 # UNIMARC author responsibility
1696 if ( $marcflavour eq 'UNIMARC' and $code eq '4' ) {
1697 $value = GetAuthorisedValueDesc
( $field->tag(), $code, $value, '', $tagslib );
1698 $linkvalue = "($value)";
1700 # if no authority link, build a search query
1701 unless ($subfield9) {
1704 'link' => $linkvalue,
1705 operator
=> (scalar @link_loop) ?
' and ' : undef
1708 my @this_link_loop = @link_loop;
1710 unless ( $code eq '0') {
1711 push @subfields_loop, {
1712 tag
=> $field->tag(),
1715 link_loop
=> \
@this_link_loop,
1716 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : ''
1720 push @marcauthors, {
1721 MARCAUTHOR_SUBFIELDS_LOOP
=> \
@subfields_loop,
1722 authoritylink
=> $subfield9,
1723 unimarc3
=> $unimarc3
1726 return \
@marcauthors;
1731 $marcurls = GetMarcUrls($record,$marcflavour);
1733 Returns arrayref of URLs from MARC data, suitable to pass to tmpl loop.
1734 Assumes web resources (not uncommon in MARC21 to omit resource type ind)
1739 my ( $record, $marcflavour ) = @_;
1741 carp
'GetMarcUrls called on undefined record';
1746 for my $field ( $record->field('856') ) {
1748 for my $note ( $field->subfield('z') ) {
1749 push @notes, { note
=> $note };
1751 my @urls = $field->subfield('u');
1752 foreach my $url (@urls) {
1753 $url =~ s/^\s+|\s+$//g; # trim
1755 if ( $marcflavour eq 'MARC21' ) {
1756 my $s3 = $field->subfield('3');
1757 my $link = $field->subfield('y');
1758 unless ( $url =~ /^\w+:/ ) {
1759 if ( $field->indicator(1) eq '7' ) {
1760 $url = $field->subfield('2') . "://" . $url;
1761 } elsif ( $field->indicator(1) eq '1' ) {
1762 $url = 'ftp://' . $url;
1765 # properly, this should be if ind1=4,
1766 # however we will assume http protocol since we're building a link.
1767 $url = 'http://' . $url;
1771 # TODO handle ind 2 (relationship)
1776 $marcurl->{'linktext'} = $link || $s3 || C4
::Context
->preference('URLLinkText') || $url;
1777 $marcurl->{'part'} = $s3 if ($link);
1778 $marcurl->{'toc'} = 1 if ( defined($s3) && $s3 =~ /^[Tt]able/ );
1780 $marcurl->{'linktext'} = $field->subfield('2') || C4
::Context
->preference('URLLinkText') || $url;
1781 $marcurl->{'MARCURL'} = $url;
1783 push @marcurls, $marcurl;
1789 =head2 GetMarcSeries
1791 $marcseriesarray = GetMarcSeries($record,$marcflavour);
1793 Get all series from the MARC record and returns them in an array.
1794 The series are stored in different fields depending on MARC flavour
1799 my ( $record, $marcflavour ) = @_;
1801 carp
'GetMarcSeries called on undefined record';
1805 my ( $mintag, $maxtag, $fields_filter );
1806 if ( $marcflavour eq "UNIMARC" ) {
1809 $fields_filter = '2..';
1810 } else { # marc21/normarc
1813 $fields_filter = '4..';
1817 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1819 foreach my $field ( $record->field($fields_filter) ) {
1820 next unless $field->tag() >= $mintag && $field->tag() <= $maxtag;
1822 my @subfields = $field->subfields();
1825 for my $series_subfield (@subfields) {
1827 # ignore $9, used for authority link
1828 next if ( $series_subfield->[0] eq '9' );
1831 my $code = $series_subfield->[0];
1832 my $value = $series_subfield->[1];
1833 my $linkvalue = $value;
1834 $linkvalue =~ s/(\(|\))//g;
1836 # see if this is an instance of a volume
1837 if ( $code eq 'v' ) {
1842 'link' => $linkvalue,
1843 operator
=> (scalar @link_loop) ?
' and ' : undef
1846 if ($volume_number) {
1847 push @subfields_loop, { volumenum
=> $value };
1849 push @subfields_loop, {
1852 link_loop
=> \
@link_loop,
1853 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : '',
1854 volumenum
=> $volume_number,
1858 push @marcseries, { MARCSERIES_SUBFIELDS_LOOP
=> \
@subfields_loop };
1861 return \
@marcseries;
1862 } #end getMARCseriess
1866 $marchostsarray = GetMarcHosts($record,$marcflavour);
1868 Get all host records (773s MARC21, 461 UNIMARC) from the MARC record and returns them in an array.
1873 my ( $record, $marcflavour ) = @_;
1875 carp
'GetMarcHosts called on undefined record';
1879 my ( $tag,$title_subf,$bibnumber_subf,$itemnumber_subf);
1880 $marcflavour ||="MARC21";
1881 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
1884 $bibnumber_subf ="0";
1885 $itemnumber_subf='9';
1887 elsif ($marcflavour eq "UNIMARC") {
1890 $bibnumber_subf ="0";
1891 $itemnumber_subf='9';
1896 foreach my $field ( $record->field($tag)) {
1900 my $hostbiblionumber = $field->subfield("$bibnumber_subf");
1901 my $hosttitle = $field->subfield($title_subf);
1902 my $hostitemnumber=$field->subfield($itemnumber_subf);
1903 push @fields_loop, { hostbiblionumber
=> $hostbiblionumber, hosttitle
=> $hosttitle, hostitemnumber
=> $hostitemnumber};
1904 push @marchosts, { MARCHOSTS_FIELDS_LOOP
=> \
@fields_loop };
1907 my $marchostsarray = \
@marchosts;
1908 return $marchostsarray;
1911 =head2 UpsertMarcSubfield
1913 my $record = C4::Biblio::UpsertMarcSubfield($MARC::Record, $fieldTag, $subfieldCode, $subfieldContent);
1917 sub UpsertMarcSubfield
{
1918 my ($record, $tag, $code, $content) = @_;
1919 my $f = $record->field($tag);
1922 $f->update( $code => $content );
1925 my $f = MARC
::Field
->new( $tag, '', '', $code => $content);
1926 $record->insert_fields_ordered( $f );
1930 =head2 UpsertMarcControlField
1932 my $record = C4::Biblio::UpsertMarcControlField($MARC::Record, $fieldTag, $content);
1936 sub UpsertMarcControlField
{
1937 my ($record, $tag, $content) = @_;
1938 die "UpsertMarcControlField() \$tag '$tag' is not a control field\n" unless 0+$tag < 10;
1939 my $f = $record->field($tag);
1942 $f->update( $content );
1945 my $f = MARC
::Field
->new($tag, $content);
1946 $record->insert_fields_ordered( $f );
1950 =head2 GetFrameworkCode
1952 $frameworkcode = GetFrameworkCode( $biblionumber )
1956 sub GetFrameworkCode
{
1957 my ($biblionumber) = @_;
1958 my $dbh = C4
::Context
->dbh;
1959 my $sth = $dbh->prepare("SELECT frameworkcode FROM biblio WHERE biblionumber=?");
1960 $sth->execute($biblionumber);
1961 my ($frameworkcode) = $sth->fetchrow;
1962 return $frameworkcode;
1965 =head2 TransformKohaToMarc
1967 $record = TransformKohaToMarc( $hash [, $params ] )
1969 This function builds a (partial) MARC::Record from a hash.
1970 Hash entries can be from biblio, biblioitems or items.
1971 The params hash includes the parameter no_split used in C4::Items.
1973 This function is called in acquisition module, to create a basic catalogue
1974 entry from user entry.
1979 sub TransformKohaToMarc
{
1980 my ( $hash, $params ) = @_;
1981 my $record = MARC
::Record
->new();
1982 SetMarcUnicodeFlag
( $record, C4
::Context
->preference("marcflavour") );
1984 # In the next call we use the Default framework, since it is considered
1985 # authoritative for Koha to Marc mappings.
1986 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # do not change framewok
1988 while ( my ($kohafield, $value) = each %$hash ) {
1989 foreach my $fld ( @
{ $mss->{$kohafield} } ) {
1990 my $tagfield = $fld->{tagfield
};
1991 my $tagsubfield = $fld->{tagsubfield
};
1993 my @values = $params->{no_split
}
1995 : split(/\s?\|\s?/, $value, -1);
1996 foreach my $value ( @values ) {
1997 next if $value eq '';
1998 $tag_hr->{$tagfield} //= [];
1999 push @
{$tag_hr->{$tagfield}}, [($tagsubfield, $value)];
2003 foreach my $tag (sort keys %$tag_hr) {
2004 my @sfl = @
{$tag_hr->{$tag}};
2005 @sfl = sort { $a->[0] cmp $b->[0]; } @sfl;
2006 @sfl = map { @
{$_}; } @sfl;
2007 # Special care for control fields: remove the subfield indication @
2008 # and do not insert indicators.
2009 my @ind = $tag < 10 ?
() : ( " ", " " );
2010 @sfl = grep { $_ ne '@' } @sfl if $tag < 10;
2011 $record->insert_fields_ordered( MARC
::Field
->new($tag, @ind, @sfl) );
2016 =head2 PrepHostMarcField
2018 $hostfield = PrepHostMarcField ( $hostbiblionumber,$hostitemnumber,$marcflavour )
2020 This function returns a host field populated with data from the host record, the field can then be added to an analytical record
2024 sub PrepHostMarcField
{
2025 my ($hostbiblionumber,$hostitemnumber, $marcflavour) = @_;
2026 $marcflavour ||="MARC21";
2028 my $hostrecord = GetMarcBiblio
({ biblionumber
=> $hostbiblionumber });
2029 my $item = Koha
::Items
->find($hostitemnumber);
2032 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
2036 if ($hostrecord->subfield('100','a')){
2037 $mainentry = $hostrecord->subfield('100','a');
2038 } elsif ($hostrecord->subfield('110','a')){
2039 $mainentry = $hostrecord->subfield('110','a');
2041 $mainentry = $hostrecord->subfield('111','a');
2044 # qualification info
2046 if (my $field260 = $hostrecord->field('260')){
2047 $qualinfo = $field260->as_string( 'abc' );
2052 my $ed = $hostrecord->subfield('250','a');
2053 my $barcode = $item->barcode;
2054 my $title = $hostrecord->subfield('245','a');
2056 # record control number, 001 with 003 and prefix
2058 if ($hostrecord->field('001')){
2059 $recctrlno = $hostrecord->field('001')->data();
2060 if ($hostrecord->field('003')){
2061 $recctrlno = '('.$hostrecord->field('003')->data().')'.$recctrlno;
2066 my $issn = $hostrecord->subfield('022','a');
2067 my $isbn = $hostrecord->subfield('020','a');
2070 $hostmarcfield = MARC
::Field
->new(
2072 '0' => $hostbiblionumber,
2073 '9' => $hostitemnumber,
2083 } elsif ($marcflavour eq "UNIMARC") {
2084 $hostmarcfield = MARC
::Field
->new(
2086 '0' => $hostbiblionumber,
2087 't' => $hostrecord->subfield('200','a'),
2088 '9' => $hostitemnumber
2092 return $hostmarcfield;
2095 =head2 TransformHtmlToXml
2097 $xml = TransformHtmlToXml( $tags, $subfields, $values, $indicator,
2098 $ind_tag, $auth_type )
2100 $auth_type contains :
2104 =item - nothing : rebuild a biblio. In UNIMARC the encoding is in 100$a pos 26/27
2106 =item - UNIMARCAUTH : rebuild an authority. In UNIMARC, the encoding is in 100$a pos 13/14
2108 =item - ITEM : rebuild an item : in UNIMARC, 100$a, it's in the biblio ! (otherwise, we would get 2 100 fields !)
2114 sub TransformHtmlToXml
{
2115 my ( $tags, $subfields, $values, $indicator, $ind_tag, $auth_type ) = @_;
2116 # NOTE: The parameter $ind_tag is NOT USED -- BZ 11247
2118 my $xml = MARC
::File
::XML
::header
('UTF-8');
2119 $xml .= "<record>\n";
2120 $auth_type = C4
::Context
->preference('marcflavour') unless $auth_type;
2121 MARC
::File
::XML
->default_record_format($auth_type);
2123 # in UNIMARC, field 100 contains the encoding
2124 # check that there is one, otherwise the
2125 # MARC::Record->new_from_xml will fail (and Koha will die)
2126 my $unimarc_and_100_exist = 0;
2127 $unimarc_and_100_exist = 1 if $auth_type eq 'ITEM'; # if we rebuild an item, no need of a 100 field
2133 for ( my $i = 0 ; $i < @
$tags ; $i++ ) {
2135 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' and @
$tags[$i] eq "100" and @
$subfields[$i] eq "a" ) {
2137 # if we have a 100 field and it's values are not correct, skip them.
2138 # if we don't have any valid 100 field, we will create a default one at the end
2139 my $enc = substr( @
$values[$i], 26, 2 );
2140 if ( $enc eq '01' or $enc eq '50' or $enc eq '03' ) {
2141 $unimarc_and_100_exist = 1;
2146 @
$values[$i] =~ s/&/&/g;
2147 @
$values[$i] =~ s/</</g;
2148 @
$values[$i] =~ s/>/>/g;
2149 @
$values[$i] =~ s/"/"/g;
2150 @
$values[$i] =~ s/'/'/g;
2152 if ( ( @
$tags[$i] ne $prevtag ) ) {
2153 $close_last_tag = 0;
2154 $j++ unless ( @
$tags[$i] eq "" );
2155 my $str = ( $indicator->[$j] // q{} ) . ' '; # extra space prevents substr outside of string warn
2156 my $ind1 = _default_ind_to_space
( substr( $str, 0, 1 ) );
2157 my $ind2 = _default_ind_to_space
( substr( $str, 1, 1 ) );
2159 $xml .= "</datafield>\n";
2160 if ( ( @
$tags[$i] && @
$tags[$i] > 10 )
2161 && ( @
$values[$i] ne "" ) ) {
2162 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2163 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2165 $close_last_tag = 1;
2170 if ( @
$values[$i] ne "" ) {
2173 if ( @
$tags[$i] eq "000" ) {
2174 $xml .= "<leader>@$values[$i]</leader>\n";
2177 # rest of the fixed fields
2178 } elsif ( @
$tags[$i] < 10 ) {
2179 $xml .= "<controlfield tag=\"@$tags[$i]\">@$values[$i]</controlfield>\n";
2182 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2183 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2185 $close_last_tag = 1;
2189 } else { # @$tags[$i] eq $prevtag
2190 if ( @
$values[$i] eq "" ) {
2193 my $str = ( $indicator->[$j] // q{} ) . ' '; # extra space prevents substr outside of string warn
2194 my $ind1 = _default_ind_to_space
( substr( $str, 0, 1 ) );
2195 my $ind2 = _default_ind_to_space
( substr( $str, 1, 1 ) );
2196 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2198 $close_last_tag = 1;
2200 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2203 $prevtag = @
$tags[$i];
2205 $xml .= "</datafield>\n" if $close_last_tag;
2206 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' and !$unimarc_and_100_exist ) {
2208 # warn "SETTING 100 for $auth_type";
2209 my $string = strftime
( "%Y%m%d", localtime(time) );
2211 # set 50 to position 26 is biblios, 13 if authorities
2213 $pos = 13 if $auth_type eq 'UNIMARCAUTH';
2214 $string = sprintf( "%-*s", 35, $string );
2215 substr( $string, $pos, 6, "50" );
2216 $xml .= "<datafield tag=\"100\" ind1=\"\" ind2=\"\">\n";
2217 $xml .= "<subfield code=\"a\">$string</subfield>\n";
2218 $xml .= "</datafield>\n";
2220 $xml .= "</record>\n";
2221 $xml .= MARC
::File
::XML
::footer
();
2225 =head2 _default_ind_to_space
2227 Passed what should be an indicator returns a space
2228 if its undefined or zero length
2232 sub _default_ind_to_space
{
2234 if ( !defined $s || $s eq q{} ) {
2240 =head2 TransformHtmlToMarc
2242 L<$record> = TransformHtmlToMarc(L<$cgi>)
2243 L<$cgi> is the CGI object which contains the values for subfields
2245 'tag_010_indicator1_531951' ,
2246 'tag_010_indicator2_531951' ,
2247 'tag_010_code_a_531951_145735' ,
2248 'tag_010_subfield_a_531951_145735' ,
2249 'tag_200_indicator1_873510' ,
2250 'tag_200_indicator2_873510' ,
2251 'tag_200_code_a_873510_673465' ,
2252 'tag_200_subfield_a_873510_673465' ,
2253 'tag_200_code_b_873510_704318' ,
2254 'tag_200_subfield_b_873510_704318' ,
2255 'tag_200_code_e_873510_280822' ,
2256 'tag_200_subfield_e_873510_280822' ,
2257 'tag_200_code_f_873510_110730' ,
2258 'tag_200_subfield_f_873510_110730' ,
2260 L<$record> is the MARC::Record object.
2264 sub TransformHtmlToMarc
{
2265 my ($cgi, $isbiblio) = @_;
2267 my @params = $cgi->multi_param();
2269 # explicitly turn on the UTF-8 flag for all
2270 # 'tag_' parameters to avoid incorrect character
2271 # conversion later on
2272 my $cgi_params = $cgi->Vars;
2273 foreach my $param_name ( keys %$cgi_params ) {
2274 if ( $param_name =~ /^tag_/ ) {
2275 my $param_value = $cgi_params->{$param_name};
2276 unless ( Encode
::is_utf8
( $param_value ) ) {
2277 $cgi_params->{$param_name} = Encode
::decode
('UTF-8', $param_value );
2282 # creating a new record
2283 my $record = MARC
::Record
->new();
2285 my ($biblionumbertagfield, $biblionumbertagsubfield) = (-1, -1);
2286 ($biblionumbertagfield, $biblionumbertagsubfield) =
2287 &GetMarcFromKohaField
( "biblio.biblionumber", '' ) if $isbiblio;
2288 #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!
2289 for (my $i = 0; $params[$i]; $i++ ) { # browse all CGI params
2290 my $param = $params[$i];
2293 # if we are on biblionumber, store it in the MARC::Record (it may not be in the edited fields)
2294 if ( $param eq 'biblionumber' ) {
2295 if ( $biblionumbertagfield < 10 ) {
2296 $newfield = MARC
::Field
->new( $biblionumbertagfield, scalar $cgi->param($param), );
2298 $newfield = MARC
::Field
->new( $biblionumbertagfield, '', '', "$biblionumbertagsubfield" => scalar $cgi->param($param), );
2300 push @fields, $newfield if ($newfield);
2301 } elsif ( $param =~ /^tag_(\d*)_indicator1_/ ) { # new field start when having 'input name="..._indicator1_..."
2304 my $ind1 = _default_ind_to_space
( substr( $cgi->param($param), 0, 1 ) );
2305 my $ind2 = _default_ind_to_space
( substr( $cgi->param( $params[ $i + 1 ] ), 0, 1 ) );
2309 if ( $tag < 10 ) { # no code for theses fields
2310 # in MARC editor, 000 contains the leader.
2311 next if $tag == $biblionumbertagfield;
2312 my $fval= $cgi->param($params[$j+1]);
2313 if ( $tag eq '000' ) {
2314 # Force a fake leader even if not provided to avoid crashing
2315 # during decoding MARC record containing UTF-8 characters
2317 length( $fval ) == 24
2322 # between 001 and 009 (included)
2323 } elsif ( $fval ne '' ) {
2324 $newfield = MARC
::Field
->new( $tag, $fval, );
2327 # > 009, deal with subfields
2329 # browse subfields for this tag (reason for _code_ match)
2330 while(defined $params[$j] && $params[$j] =~ /_code_/) {
2331 last unless defined $params[$j+1];
2333 if $tag == $biblionumbertagfield and
2334 $cgi->param($params[$j]) eq $biblionumbertagsubfield;
2335 #if next param ne subfield, then it was probably empty
2336 #try next param by incrementing j
2337 if($params[$j+1]!~/_subfield_/) {$j++; next; }
2338 my $fkey= $cgi->param($params[$j]);
2339 my $fval= $cgi->param($params[$j+1]);
2340 #check if subfield value not empty and field exists
2341 if($fval ne '' && $newfield) {
2342 $newfield->add_subfields( $fkey => $fval);
2344 elsif($fval ne '') {
2345 $newfield = MARC
::Field
->new( $tag, $ind1, $ind2, $fkey => $fval );
2349 $i= $j-1; #update i for outer loop accordingly
2351 push @fields, $newfield if ($newfield);
2355 $record->append_fields(@fields);
2359 =head2 TransformMarcToKoha
2361 $result = TransformMarcToKoha( $record, undef, $limit )
2363 Extract data from a MARC bib record into a hashref representing
2364 Koha biblio, biblioitems, and items fields.
2366 If passed an undefined record will log the error and return an empty
2371 sub TransformMarcToKoha
{
2372 my ( $record, $frameworkcode, $limit_table ) = @_;
2373 # FIXME Parameter $frameworkcode is obsolete and will be removed
2374 $limit_table //= q{};
2377 if (!defined $record) {
2378 carp
('TransformMarcToKoha called with undefined record');
2382 my %tables = ( biblio
=> 1, biblioitems
=> 1, items
=> 1 );
2383 if( $limit_table eq 'items' ) {
2384 %tables = ( items
=> 1 );
2387 # The next call acknowledges Default as the authoritative framework
2388 # for Koha to MARC mappings.
2389 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # Do not change framework
2390 foreach my $kohafield ( keys %{ $mss } ) {
2391 my ( $table, $column ) = split /[.]/, $kohafield, 2;
2392 next unless $tables{$table};
2393 my $val = TransformMarcToKohaOneField
( $kohafield, $record );
2394 next if !defined $val;
2395 my $key = _disambiguate
( $table, $column );
2396 $result->{$key} = $val;
2401 =head2 _disambiguate
2403 $newkey = _disambiguate($table, $field);
2405 This is a temporary hack to distinguish between the
2406 following sets of columns when using TransformMarcToKoha.
2408 items.cn_source & biblioitems.cn_source
2409 items.cn_sort & biblioitems.cn_sort
2411 Columns that are currently NOT distinguished (FIXME
2412 due to lack of time to fully test) are:
2414 biblio.notes and biblioitems.notes
2419 FIXME - this is necessary because prefixing each column
2420 name with the table name would require changing lots
2421 of code and templates, and exposing more of the DB
2422 structure than is good to the UI templates, particularly
2423 since biblio and bibloitems may well merge in a future
2424 version. In the future, it would also be good to
2425 separate DB access and UI presentation field names
2431 my ( $table, $column ) = @_;
2432 if ( $column eq "cn_sort" or $column eq "cn_source" ) {
2433 return $table . '.' . $column;
2440 =head2 TransformMarcToKohaOneField
2442 $val = TransformMarcToKohaOneField( 'biblio.title', $marc );
2444 Note: The authoritative Default framework is used implicitly.
2448 sub TransformMarcToKohaOneField
{
2449 my ( $kohafield, $marc ) = @_;
2451 my ( @rv, $retval );
2452 my @mss = GetMarcSubfieldStructureFromKohaField
($kohafield);
2453 foreach my $fldhash ( @mss ) {
2454 my $tag = $fldhash->{tagfield
};
2455 my $sub = $fldhash->{tagsubfield
};
2456 foreach my $fld ( $marc->field($tag) ) {
2457 if( $sub eq '@' || $fld->is_control_field ) {
2458 push @rv, $fld->data if $fld->data;
2460 push @rv, grep { $_ } $fld->subfield($sub);
2465 $retval = join ' | ', uniq
(@rv);
2467 # Additional polishing for individual kohafields
2468 if( $kohafield =~ /copyrightdate|publicationyear/ ) {
2469 $retval = _adjust_pubyear
( $retval );
2475 =head2 _adjust_pubyear
2477 Helper routine for TransformMarcToKohaOneField
2481 sub _adjust_pubyear
{
2483 # modify return value to keep only the 1st year found
2484 if( $retval =~ m/c(\d\d\d\d)/ and $1 > 0 ) { # search cYYYY first
2486 } elsif( $retval =~ m/(\d\d\d\d)/ && $1 > 0 ) {
2488 } elsif( $retval =~ m
/
2489 (?
<year
>\d
)[-]?
[.Xx?
]{3}
2490 |(?
<year
>\d
{2})[.Xx?
]{2}
2491 |(?
<year
>\d
{3})[.Xx?
]
2492 |(?
<year
>\d
)[-]{3}\?
2493 |(?
<year
>\d\d
)[-]{2}\?
2494 |(?
<year
>\d
{3})[-]\?
2495 /xms
) { # the form 198-? occurred in Dutch ISBD rules
2496 my $digits = $+{year
};
2497 $retval = $digits * ( 10 ** ( 4 - length($digits) ));
2502 =head2 CountItemsIssued
2504 my $count = CountItemsIssued( $biblionumber );
2508 sub CountItemsIssued
{
2509 my ($biblionumber) = @_;
2510 my $dbh = C4
::Context
->dbh;
2511 my $sth = $dbh->prepare('SELECT COUNT(*) as issuedCount FROM items, issues WHERE items.itemnumber = issues.itemnumber AND items.biblionumber = ?');
2512 $sth->execute($biblionumber);
2513 my $row = $sth->fetchrow_hashref();
2514 return $row->{'issuedCount'};
2519 ModZebra( $biblionumber, $op, $server, $record );
2521 $biblionumber is the biblionumber we want to index
2523 $op is specialUpdate or recordDelete, and is used to know what we want to do
2525 $server is the server that we want to update
2527 $record is the update MARC record if it's available. If it's not supplied
2528 and is needed, it'll be loaded from the database.
2533 ###Accepts a $server variable thus we can use it for biblios authorities or other zebra dbs
2534 my ( $biblionumber, $op, $server, $record ) = @_;
2535 $debug && warn "ModZebra: update requested for: $biblionumber $op $server\n";
2536 if ( C4
::Context
->preference('SearchEngine') eq 'Elasticsearch' ) {
2538 # TODO abstract to a standard API that'll work for whatever
2539 require Koha
::SearchEngine
::Elasticsearch
::Indexer
;
2540 my $indexer = Koha
::SearchEngine
::Elasticsearch
::Indexer
->new(
2542 index => $server eq 'biblioserver'
2543 ?
$Koha::SearchEngine
::BIBLIOS_INDEX
2544 : $Koha::SearchEngine
::AUTHORITIES_INDEX
2547 if ( $op eq 'specialUpdate' ) {
2549 $record = GetMarcBiblio
({
2550 biblionumber
=> $biblionumber,
2551 embed_items
=> 1 });
2553 my $records = [$record];
2554 $indexer->update_index_background( [$biblionumber], [$record] );
2556 elsif ( $op eq 'recordDelete' ) {
2557 $indexer->delete_index_background( [$biblionumber] );
2560 croak
"ModZebra called with unknown operation: $op";
2564 my $dbh = C4
::Context
->dbh;
2566 # true ModZebra commented until indexdata fixes zebraDB crashes (it seems they occur on multiple updates
2568 # replaced by a zebraqueue table, that is filled with ModZebra to run.
2569 # the table is emptied by rebuild_zebra.pl script (using the -z switch)
2570 my $check_sql = "SELECT COUNT(*) FROM zebraqueue
2572 AND biblio_auth_number = ?
2575 my $check_sth = $dbh->prepare_cached($check_sql);
2576 $check_sth->execute( $server, $biblionumber, $op );
2577 my ($count) = $check_sth->fetchrow_array;
2578 $check_sth->finish();
2579 if ( $count == 0 ) {
2580 my $sth = $dbh->prepare("INSERT INTO zebraqueue (biblio_auth_number,server,operation) VALUES(?,?,?)");
2581 $sth->execute( $biblionumber, $server, $op );
2587 =head2 EmbedItemsInMarcBiblio
2589 EmbedItemsInMarcBiblio({
2590 marc_record => $marc,
2591 biblionumber => $biblionumber,
2592 item_numbers => $itemnumbers,
2595 Given a MARC::Record object containing a bib record,
2596 modify it to include the items attached to it as 9XX
2597 per the bib's MARC framework.
2598 if $itemnumbers is defined, only specified itemnumbers are embedded.
2600 If $opac is true, then opac-relevant suppressions are included.
2602 If opac filtering will be done, borcat should be passed to properly
2603 override if necessary.
2607 sub EmbedItemsInMarcBiblio
{
2609 my ($marc, $biblionumber, $itemnumbers, $opac, $borcat);
2610 $marc = $params->{marc_record
};
2612 carp
'EmbedItemsInMarcBiblio: No MARC record passed';
2615 $biblionumber = $params->{biblionumber
};
2616 $itemnumbers = $params->{item_numbers
};
2617 $opac = $params->{opac
};
2618 $borcat = $params->{borcat
} // q{};
2620 $itemnumbers = [] unless defined $itemnumbers;
2622 my $frameworkcode = GetFrameworkCode
($biblionumber);
2623 _strip_item_fields
($marc, $frameworkcode);
2625 # ... and embed the current items
2626 my $dbh = C4
::Context
->dbh;
2627 my $sth = $dbh->prepare("SELECT itemnumber FROM items WHERE biblionumber = ?");
2628 $sth->execute($biblionumber);
2629 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField
( "items.itemnumber" );
2631 my @item_fields; # Array holding the actual MARC data for items to be included.
2632 my @items; # Array holding items which are both in the list (sitenumbers)
2633 # and on this biblionumber
2635 # Flag indicating if there is potential hiding.
2636 my $opachiddenitems = $opac
2637 && ( C4
::Context
->preference('OpacHiddenItems') !~ /^\s*$/ );
2640 while ( my ($itemnumber) = $sth->fetchrow_array ) {
2641 next if @
$itemnumbers and not grep { $_ == $itemnumber } @
$itemnumbers;
2643 if ( $opachiddenitems ) {
2644 $item = Koha
::Items
->find($itemnumber);
2645 $item = $item ?
$item->unblessed : undef;
2647 push @items, { itemnumber
=> $itemnumber, item
=> $item };
2649 my @items2pass = map { $_->{item
} } @items;
2652 ? C4
::Items
::GetHiddenItemnumbers
({
2653 items
=> \
@items2pass,
2654 borcat
=> $borcat })
2656 # Convert to a hash for quick searching
2657 my %hiddenitems = map { $_ => 1 } @hiddenitems;
2658 foreach my $itemnumber ( map { $_->{itemnumber
} } @items ) {
2659 next if $hiddenitems{$itemnumber};
2660 my $item_marc = C4
::Items
::GetMarcItem
( $biblionumber, $itemnumber );
2661 push @item_fields, $item_marc->field($itemtag);
2663 $marc->append_fields(@item_fields);
2666 =head1 INTERNAL FUNCTIONS
2668 =head2 _koha_marc_update_bib_ids
2671 _koha_marc_update_bib_ids($record, $frameworkcode, $biblionumber, $biblioitemnumber);
2673 Internal function to add or update biblionumber and biblioitemnumber to
2678 sub _koha_marc_update_bib_ids
{
2679 my ( $record, $frameworkcode, $biblionumber, $biblioitemnumber ) = @_;
2681 my ( $biblio_tag, $biblio_subfield ) = GetMarcFromKohaField
( "biblio.biblionumber" );
2682 die qq{No biblionumber tag
for framework
"$frameworkcode"} unless $biblio_tag;
2683 my ( $biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField
( "biblioitems.biblioitemnumber" );
2684 die qq{No biblioitemnumber tag
for framework
"$frameworkcode"} unless $biblioitem_tag;
2686 if ( $biblio_tag < 10 ) {
2687 C4
::Biblio
::UpsertMarcControlField
( $record, $biblio_tag, $biblionumber );
2689 C4
::Biblio
::UpsertMarcSubfield
($record, $biblio_tag, $biblio_subfield, $biblionumber);
2691 if ( $biblioitem_tag < 10 ) {
2692 C4
::Biblio
::UpsertMarcControlField
( $record, $biblioitem_tag, $biblioitemnumber );
2694 C4
::Biblio
::UpsertMarcSubfield
($record, $biblioitem_tag, $biblioitem_subfield, $biblioitemnumber);
2698 =head2 _koha_marc_update_biblioitem_cn_sort
2700 _koha_marc_update_biblioitem_cn_sort($marc, $biblioitem, $frameworkcode);
2702 Given a MARC bib record and the biblioitem hash, update the
2703 subfield that contains a copy of the value of biblioitems.cn_sort.
2707 sub _koha_marc_update_biblioitem_cn_sort
{
2709 my $biblioitem = shift;
2710 my $frameworkcode = shift;
2712 my ( $biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField
( "biblioitems.cn_sort" );
2713 return unless $biblioitem_tag;
2715 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2717 if ( my $field = $marc->field($biblioitem_tag) ) {
2718 $field->delete_subfield( code
=> $biblioitem_subfield );
2719 if ( $cn_sort ne '' ) {
2720 $field->add_subfields( $biblioitem_subfield => $cn_sort );
2724 # if we get here, no biblioitem tag is present in the MARC record, so
2725 # we'll create it if $cn_sort is not empty -- this would be
2726 # an odd combination of events, however
2728 $marc->insert_grouped_field( MARC
::Field
->new( $biblioitem_tag, ' ', ' ', $biblioitem_subfield => $cn_sort ) );
2733 =head2 _koha_add_biblio
2735 my ($biblionumber,$error) = _koha_add_biblio($dbh,$biblioitem);
2737 Internal function to add a biblio ($biblio is a hash with the values)
2741 sub _koha_add_biblio
{
2742 my ( $dbh, $biblio, $frameworkcode ) = @_;
2746 # set the series flag
2747 unless (defined $biblio->{'serial'}){
2748 $biblio->{'serial'} = 0;
2749 if ( $biblio->{'seriestitle'} ) { $biblio->{'serial'} = 1 }
2752 my $query = "INSERT INTO biblio
2753 SET frameworkcode = ?,
2768 my $sth = $dbh->prepare($query);
2770 $frameworkcode, $biblio->{'author'}, $biblio->{'title'}, $biblio->{'subtitle'},
2771 $biblio->{'medium'}, $biblio->{'part_number'}, $biblio->{'part_name'}, $biblio->{'unititle'},
2772 $biblio->{'notes'}, $biblio->{'serial'}, $biblio->{'seriestitle'}, $biblio->{'copyrightdate'},
2773 $biblio->{'abstract'}
2776 my $biblionumber = $dbh->{'mysql_insertid'};
2777 if ( $dbh->errstr ) {
2778 $error .= "ERROR in _koha_add_biblio $query" . $dbh->errstr;
2784 #warn "LEAVING _koha_add_biblio: ".$biblionumber."\n";
2785 return ( $biblionumber, $error );
2788 =head2 _koha_modify_biblio
2790 my ($biblionumber,$error) == _koha_modify_biblio($dbh,$biblio,$frameworkcode);
2792 Internal function for updating the biblio table
2796 sub _koha_modify_biblio
{
2797 my ( $dbh, $biblio, $frameworkcode ) = @_;
2802 SET frameworkcode = ?,
2815 WHERE biblionumber = ?
2818 my $sth = $dbh->prepare($query);
2821 $frameworkcode, $biblio->{'author'}, $biblio->{'title'}, $biblio->{'subtitle'},
2822 $biblio->{'medium'}, $biblio->{'part_number'}, $biblio->{'part_name'}, $biblio->{'unititle'},
2823 $biblio->{'notes'}, $biblio->{'serial'}, $biblio->{'seriestitle'}, $biblio->{'copyrightdate'} ?
int($biblio->{'copyrightdate'}) : undef,
2824 $biblio->{'abstract'}, $biblio->{'biblionumber'}
2825 ) if $biblio->{'biblionumber'};
2827 if ( $dbh->errstr || !$biblio->{'biblionumber'} ) {
2828 $error .= "ERROR in _koha_modify_biblio $query" . $dbh->errstr;
2831 return ( $biblio->{'biblionumber'}, $error );
2834 =head2 _koha_modify_biblioitem_nonmarc
2836 my ($biblioitemnumber,$error) = _koha_modify_biblioitem_nonmarc( $dbh, $biblioitem );
2840 sub _koha_modify_biblioitem_nonmarc
{
2841 my ( $dbh, $biblioitem ) = @_;
2844 # re-calculate the cn_sort, it may have changed
2845 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2847 my $query = "UPDATE biblioitems
2848 SET biblionumber = ?,
2854 publicationyear = ?,
2858 collectiontitle = ?,
2860 collectionvolume= ?,
2861 editionstatement= ?,
2862 editionresponsibility = ?,
2878 where biblioitemnumber = ?
2880 my $sth = $dbh->prepare($query);
2882 $biblioitem->{'biblionumber'}, $biblioitem->{'volume'}, $biblioitem->{'number'}, $biblioitem->{'itemtype'},
2883 $biblioitem->{'isbn'}, $biblioitem->{'issn'}, $biblioitem->{'publicationyear'}, $biblioitem->{'publishercode'},
2884 $biblioitem->{'volumedate'}, $biblioitem->{'volumedesc'}, $biblioitem->{'collectiontitle'}, $biblioitem->{'collectionissn'},
2885 $biblioitem->{'collectionvolume'}, $biblioitem->{'editionstatement'}, $biblioitem->{'editionresponsibility'}, $biblioitem->{'illus'},
2886 $biblioitem->{'pages'}, $biblioitem->{'bnotes'}, $biblioitem->{'size'}, $biblioitem->{'place'},
2887 $biblioitem->{'lccn'}, $biblioitem->{'url'}, $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'},
2888 $biblioitem->{'cn_item'}, $biblioitem->{'cn_suffix'}, $cn_sort, $biblioitem->{'totalissues'},
2889 $biblioitem->{'ean'}, $biblioitem->{'agerestriction'}, $biblioitem->{'biblioitemnumber'}
2891 if ( $dbh->errstr ) {
2892 $error .= "ERROR in _koha_modify_biblioitem_nonmarc $query" . $dbh->errstr;
2895 return ( $biblioitem->{'biblioitemnumber'}, $error );
2898 =head2 _koha_add_biblioitem
2900 my ($biblioitemnumber,$error) = _koha_add_biblioitem( $dbh, $biblioitem );
2902 Internal function to add a biblioitem
2906 sub _koha_add_biblioitem
{
2907 my ( $dbh, $biblioitem ) = @_;
2910 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2911 my $query = "INSERT INTO biblioitems SET
2918 publicationyear = ?,
2922 collectiontitle = ?,
2924 collectionvolume= ?,
2925 editionstatement= ?,
2926 editionresponsibility = ?,
2943 my $sth = $dbh->prepare($query);
2945 $biblioitem->{'biblionumber'}, $biblioitem->{'volume'}, $biblioitem->{'number'}, $biblioitem->{'itemtype'},
2946 $biblioitem->{'isbn'}, $biblioitem->{'issn'}, $biblioitem->{'publicationyear'}, $biblioitem->{'publishercode'},
2947 $biblioitem->{'volumedate'}, $biblioitem->{'volumedesc'}, $biblioitem->{'collectiontitle'}, $biblioitem->{'collectionissn'},
2948 $biblioitem->{'collectionvolume'}, $biblioitem->{'editionstatement'}, $biblioitem->{'editionresponsibility'}, $biblioitem->{'illus'},
2949 $biblioitem->{'pages'}, $biblioitem->{'bnotes'}, $biblioitem->{'size'}, $biblioitem->{'place'},
2950 $biblioitem->{'lccn'}, $biblioitem->{'url'}, $biblioitem->{'biblioitems.cn_source'},
2951 $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'}, $biblioitem->{'cn_suffix'}, $cn_sort,
2952 $biblioitem->{'totalissues'}, $biblioitem->{'ean'}, $biblioitem->{'agerestriction'}
2954 my $bibitemnum = $dbh->{'mysql_insertid'};
2956 if ( $dbh->errstr ) {
2957 $error .= "ERROR in _koha_add_biblioitem $query" . $dbh->errstr;
2961 return ( $bibitemnum, $error );
2964 =head2 _koha_delete_biblio
2966 $error = _koha_delete_biblio($dbh,$biblionumber);
2968 Internal sub for deleting from biblio table -- also saves to deletedbiblio
2970 C<$dbh> - the database handle
2972 C<$biblionumber> - the biblionumber of the biblio to be deleted
2976 # FIXME: add error handling
2978 sub _koha_delete_biblio
{
2979 my ( $dbh, $biblionumber ) = @_;
2981 # get all the data for this biblio
2982 my $sth = $dbh->prepare("SELECT * FROM biblio WHERE biblionumber=?");
2983 $sth->execute($biblionumber);
2985 # FIXME There is a transaction in _koha_delete_biblio_metadata
2986 # But actually all the following should be done inside a single transaction
2987 if ( my $data = $sth->fetchrow_hashref ) {
2989 # save the record in deletedbiblio
2990 # find the fields to save
2991 my $query = "INSERT INTO deletedbiblio SET ";
2993 foreach my $temp ( keys %$data ) {
2994 $query .= "$temp = ?,";
2995 push( @bind, $data->{$temp} );
2998 # replace the last , by ",?)"
3000 my $bkup_sth = $dbh->prepare($query);
3001 $bkup_sth->execute(@bind);
3004 _koha_delete_biblio_metadata
( $biblionumber );
3007 my $sth2 = $dbh->prepare("DELETE FROM biblio WHERE biblionumber=?");
3008 $sth2->execute($biblionumber);
3009 # update the timestamp (Bugzilla 7146)
3010 $sth2= $dbh->prepare("UPDATE deletedbiblio SET timestamp=NOW() WHERE biblionumber=?");
3011 $sth2->execute($biblionumber);
3018 =head2 _koha_delete_biblioitems
3020 $error = _koha_delete_biblioitems($dbh,$biblioitemnumber);
3022 Internal sub for deleting from biblioitems table -- also saves to deletedbiblioitems
3024 C<$dbh> - the database handle
3025 C<$biblionumber> - the biblioitemnumber of the biblioitem to be deleted
3029 # FIXME: add error handling
3031 sub _koha_delete_biblioitems
{
3032 my ( $dbh, $biblioitemnumber ) = @_;
3034 # get all the data for this biblioitem
3035 my $sth = $dbh->prepare("SELECT * FROM biblioitems WHERE biblioitemnumber=?");
3036 $sth->execute($biblioitemnumber);
3038 if ( my $data = $sth->fetchrow_hashref ) {
3040 # save the record in deletedbiblioitems
3041 # find the fields to save
3042 my $query = "INSERT INTO deletedbiblioitems SET ";
3044 foreach my $temp ( keys %$data ) {
3045 $query .= "$temp = ?,";
3046 push( @bind, $data->{$temp} );
3049 # replace the last , by ",?)"
3051 my $bkup_sth = $dbh->prepare($query);
3052 $bkup_sth->execute(@bind);
3055 # delete the biblioitem
3056 my $sth2 = $dbh->prepare("DELETE FROM biblioitems WHERE biblioitemnumber=?");
3057 $sth2->execute($biblioitemnumber);
3058 # update the timestamp (Bugzilla 7146)
3059 $sth2= $dbh->prepare("UPDATE deletedbiblioitems SET timestamp=NOW() WHERE biblioitemnumber=?");
3060 $sth2->execute($biblioitemnumber);
3067 =head2 _koha_delete_biblio_metadata
3069 $error = _koha_delete_biblio_metadata($biblionumber);
3071 C<$biblionumber> - the biblionumber of the biblio metadata to be deleted
3075 sub _koha_delete_biblio_metadata
{
3076 my ($biblionumber) = @_;
3078 my $dbh = C4
::Context
->dbh;
3079 my $schema = Koha
::Database
->new->schema;
3083 INSERT INTO deletedbiblio_metadata
(biblionumber
, format
, `schema`, metadata
)
3084 SELECT biblionumber
, format
, `schema`, metadata FROM biblio_metadata WHERE biblionumber
=?
3085 |, undef, $biblionumber );
3086 $dbh->do( q
|DELETE FROM biblio_metadata WHERE biblionumber
=?
|,
3087 undef, $biblionumber );
3092 =head1 UNEXPORTED FUNCTIONS
3094 =head2 ModBiblioMarc
3096 &ModBiblioMarc($newrec,$biblionumber,$frameworkcode);
3098 Add MARC XML data for a biblio to koha
3100 Function exported, but should NOT be used, unless you really know what you're doing
3105 # pass the MARC::Record to this function, and it will create the records in
3107 my ( $record, $biblionumber, $frameworkcode ) = @_;
3109 carp
'ModBiblioMarc passed an undefined record';
3113 # Clone record as it gets modified
3114 $record = $record->clone();
3115 my $dbh = C4
::Context
->dbh;
3116 my @fields = $record->fields();
3117 if ( !$frameworkcode ) {
3118 $frameworkcode = "";
3120 my $sth = $dbh->prepare("UPDATE biblio SET frameworkcode=? WHERE biblionumber=?");
3121 $sth->execute( $frameworkcode, $biblionumber );
3123 my $encoding = C4
::Context
->preference("marcflavour");
3125 # deal with UNIMARC field 100 (encoding) : create it if needed & set encoding to unicode
3126 if ( $encoding eq "UNIMARC" ) {
3127 my $defaultlanguage = C4
::Context
->preference("UNIMARCField100Language");
3128 $defaultlanguage = "fre" if (!$defaultlanguage || length($defaultlanguage) != 3);
3129 my $string = $record->subfield( 100, "a" );
3130 if ( ($string) && ( length( $record->subfield( 100, "a" ) ) == 36 ) ) {
3131 my $f100 = $record->field(100);
3132 $record->delete_field($f100);
3134 $string = POSIX
::strftime
( "%Y%m%d", localtime );
3136 $string = sprintf( "%-*s", 35, $string );
3137 substr ( $string, 22, 3, $defaultlanguage);
3139 substr( $string, 25, 3, "y50" );
3140 unless ( $record->subfield( 100, "a" ) ) {
3141 $record->insert_fields_ordered( MARC
::Field
->new( 100, "", "", "a" => $string ) );
3145 #enhancement 5374: update transaction date (005) for marc21/unimarc
3146 if($encoding =~ /MARC21|UNIMARC/) {
3147 my @a= (localtime) [5,4,3,2,1,0]; $a[0]+=1900; $a[1]++;
3148 # YY MM DD HH MM SS (update year and month)
3149 my $f005= $record->field('005');
3150 $f005->update(sprintf("%4d%02d%02d%02d%02d%04.1f",@a)) if $f005;
3154 biblionumber
=> $biblionumber,
3155 format
=> 'marcxml',
3156 schema
=> C4
::Context
->preference('marcflavour'),
3158 $record->as_usmarc; # Bug 20126/10455 This triggers field length calculation
3160 my $m_rs = Koha
::Biblio
::Metadatas
->find($metadata) //
3161 Koha
::Biblio
::Metadata
->new($metadata);
3163 my $userenv = C4
::Context
->userenv;
3165 my $borrowernumber = $userenv->{number
};
3166 my $borrowername = join ' ', map { $_ // q{} } @
$userenv{qw(firstname surname)};
3167 unless ($m_rs->in_storage) {
3168 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForCreatorId'), $borrowernumber);
3169 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForCreatorName'), $borrowername);
3171 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForModifierId'), $borrowernumber);
3172 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForModifierName'), $borrowername);
3175 $m_rs->metadata( $record->as_xml_record($encoding) );
3178 ModZebra
( $biblionumber, "specialUpdate", "biblioserver" );
3180 return $biblionumber;
3183 =head2 CountBiblioInOrders
3185 $count = &CountBiblioInOrders( $biblionumber);
3187 This function return count of biblios in orders with $biblionumber
3191 sub CountBiblioInOrders
{
3192 my ($biblionumber) = @_;
3193 my $dbh = C4
::Context
->dbh;
3194 my $query = "SELECT count(*)
3196 WHERE biblionumber=? AND datecancellationprinted IS NULL";
3197 my $sth = $dbh->prepare($query);
3198 $sth->execute($biblionumber);
3199 my $count = $sth->fetchrow;
3203 =head2 prepare_host_field
3205 $marcfield = prepare_host_field( $hostbiblioitem, $marcflavour );
3206 Generate the host item entry for an analytic child entry
3210 sub prepare_host_field
{
3211 my ( $hostbiblio, $marcflavour ) = @_;
3212 $marcflavour ||= C4
::Context
->preference('marcflavour');
3213 my $host = GetMarcBiblio
({ biblionumber
=> $hostbiblio });
3214 # unfortunately as_string does not 'do the right thing'
3215 # if field returns undef
3219 if ( $marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC' ) {
3220 if ( $field = $host->field('100') || $host->field('110') || $host->field('11') ) {
3221 my $s = $field->as_string('ab');
3226 if ( $field = $host->field('245') ) {
3227 my $s = $field->as_string('a');
3232 if ( $field = $host->field('260') ) {
3233 my $s = $field->as_string('abc');
3238 if ( $field = $host->field('240') ) {
3239 my $s = $field->as_string();
3244 if ( $field = $host->field('022') ) {
3245 my $s = $field->as_string('a');
3250 if ( $field = $host->field('020') ) {
3251 my $s = $field->as_string('a');
3256 if ( $field = $host->field('001') ) {
3257 $sfd{w
} = $field->data(),;
3259 $host_field = MARC
::Field
->new( 773, '0', ' ', %sfd );
3262 elsif ( $marcflavour eq 'UNIMARC' ) {
3264 if ( $field = $host->field('700') || $host->field('710') || $host->field('720') ) {
3265 my $s = $field->as_string('ab');
3271 if ( $field = $host->field('200') ) {
3272 my $s = $field->as_string('a');
3277 #place of publicaton
3278 if ( $field = $host->field('210') ) {
3279 my $s = $field->as_string('a');
3284 #date of publication
3285 if ( $field = $host->field('210') ) {
3286 my $s = $field->as_string('d');
3292 if ( $field = $host->field('205') ) {
3293 my $s = $field->as_string();
3299 if ( $field = $host->field('856') ) {
3300 my $s = $field->as_string('u');
3306 if ( $field = $host->field('011') ) {
3307 my $s = $field->as_string('a');
3313 if ( $field = $host->field('010') ) {
3314 my $s = $field->as_string('a');
3319 if ( $field = $host->field('001') ) {
3320 $sfd{0} = $field->data(),;
3322 $host_field = MARC
::Field
->new( 461, '0', ' ', %sfd );
3329 =head2 UpdateTotalIssues
3331 UpdateTotalIssues($biblionumber, $increase, [$value])
3333 Update the total issue count for a particular bib record.
3337 =item C<$biblionumber> is the biblionumber of the bib to update
3339 =item C<$increase> is the amount to increase (or decrease) the total issues count by
3341 =item C<$value> is the absolute value that total issues count should be set to. If provided, C<$increase> is ignored.
3347 sub UpdateTotalIssues
{
3348 my ($biblionumber, $increase, $value) = @_;
3351 my $record = GetMarcBiblio
({ biblionumber
=> $biblionumber });
3353 carp
"UpdateTotalIssues could not get biblio record";
3356 my $biblio = Koha
::Biblios
->find( $biblionumber );
3358 carp
"UpdateTotalIssues could not get datas of biblio";
3361 my $biblioitem = $biblio->biblioitem;
3362 my ($totalissuestag, $totalissuessubfield) = GetMarcFromKohaField
( 'biblioitems.totalissues' );
3363 unless ($totalissuestag) {
3364 return 1; # There is nothing to do
3367 if (defined $value) {
3368 $totalissues = $value;
3370 $totalissues = $biblioitem->totalissues + $increase;
3373 my $field = $record->field($totalissuestag);
3374 if (defined $field) {
3375 $field->update( $totalissuessubfield => $totalissues );
3377 $field = MARC
::Field
->new($totalissuestag, '0', '0',
3378 $totalissuessubfield => $totalissues);
3379 $record->insert_grouped_field($field);
3382 return ModBiblio
($record, $biblionumber, $biblio->frameworkcode);
3387 &RemoveAllNsb($record);
3389 Removes all nsb/nse chars from a record
3396 carp
'RemoveAllNsb called with undefined record';
3400 SetUTF8Flag
($record);
3402 foreach my $field ($record->fields()) {
3403 if ($field->is_control_field()) {
3404 $field->update(nsb_clean
($field->data()));
3406 my @subfields = $field->subfields();
3408 foreach my $subfield (@subfields) {
3409 push @new_subfields, $subfield->[0] => nsb_clean
($subfield->[1]);
3411 if (scalar(@new_subfields) > 0) {
3414 $new_field = MARC
::Field
->new(
3416 $field->indicator(1),
3417 $field->indicator(2),
3422 warn "error in RemoveAllNsb : $@";
3424 $field->replace_with($new_field);
3436 =head2 _after_biblio_action_hooks
3438 Helper method that takes care of calling all plugin hooks
3442 sub _after_biblio_action_hooks
{
3445 my $biblio_id = $args->{biblio_id
};
3446 my $action = $args->{action
};
3448 if ( C4
::Context
->preference('UseKohaPlugins') && C4
::Context
->config("enable_plugins") ) {
3450 my @plugins = Koha
::Plugins
->new->GetPlugins({
3451 method
=> 'after_biblio_action',
3456 my $biblio = Koha
::Biblios
->find( $biblio_id );
3458 foreach my $plugin ( @plugins ) {
3460 $plugin->after_biblio_action({ action
=> $action, biblio
=> $biblio, biblio_id
=> $biblio_id });
3474 Koha Development Team <http://koha-community.org/>
3476 Paul POULAIN paul.poulain@free.fr
3478 Joshua Ferraro jmf@liblime.com