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);
49 GetAuthorisedValueDesc
51 IsMarcStructureInternal
53 GetMarcSubfieldStructureFromKohaField
65 LinkBibHeadingsToAuthorities
73 # those functions are exported but should not be used
74 # they are useful in a few circumstances, so they are exported,
75 # but don't use them unless you are a core developer ;-)
84 use Encode
qw( decode is_utf8 );
85 use List
::MoreUtils
qw( uniq );
87 use MARC
::File
::USMARC
;
89 use POSIX
qw(strftime);
90 use Module
::Load
::Conditional
qw(can_load);
93 use C4
::Log
; # logaction
102 use Koha
::Authority
::Types
;
103 use Koha
::Acquisition
::Currencies
;
104 use Koha
::Biblio
::Metadatas
;
108 use Koha
::SearchEngine
;
110 use Koha
::Util
::MARC
;
112 use vars
qw($debug $cgi_debug);
117 C4::Biblio - cataloging management functions
121 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:
125 =item 1. in the biblio,biblioitems,items, etc tables, which are limited to a one-to-one mapping to underlying MARC data
127 =item 2. as raw MARC in the Zebra index and storage engine
129 =item 3. as MARC XML in biblio_metadata.metadata
133 In the 3.0 version of Koha, the authoritative record-level information is in biblio_metadata.metadata
135 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.
139 =item 1. Compared with MySQL, Zebra is slow to update an index for small data changes -- especially for proc-intensive operations like circulation
141 =item 2. Zebra's index has been known to crash and a backup of the data is necessary to rebuild it in such cases
145 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:
149 =item 1. Add*/Mod*/Del*/ - high-level external functions suitable for being called from external scripts to manage the collection
151 =item 2. _koha_* - low-level internal functions for managing the koha tables
153 =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.
155 =item 4. Zebra functions used to update the Zebra index
157 =item 5. internal helper functions such as char_decode, checkitems, etc. Some of these probably belong in Koha.pm
161 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 :
165 =item 1. save datas in biblio and biblioitems table, that gives us a biblionumber and a biblioitemnumber
167 =item 2. add the biblionumber and biblioitemnumber into the MARC records
169 =item 3. save the marc record
173 =head1 EXPORTED FUNCTIONS
177 ($biblionumber,$biblioitemnumber) = AddBiblio($record,$frameworkcode);
179 Exported function (core API) for adding a new biblio to koha.
181 The first argument is a C<MARC::Record> object containing the
182 bib to add, while the second argument is the desired MARC
185 This function also accepts a third, optional argument: a hashref
186 to additional options. The only defined option is C<defer_marc_save>,
187 which if present and mapped to a true value, causes C<AddBiblio>
188 to omit the call to save the MARC in C<biblio_metadata.metadata>
189 This option is provided B<only>
190 for the use of scripts such as C<bulkmarcimport.pl> that may need
191 to do some manipulation of the MARC record for item parsing before
192 saving it and which cannot afford the performance hit of saving
193 the MARC record twice. Consequently, do not use that option
194 unless you can guarantee that C<ModBiblioMarc> will be called.
200 my $frameworkcode = shift;
201 my $options = @_ ? shift : undef;
202 my $defer_marc_save = 0;
204 carp('AddBiblio called with undefined record');
207 if ( defined $options and exists $options->{'defer_marc_save'} and $options->{'defer_marc_save'} ) {
208 $defer_marc_save = 1;
211 if (C4::Context->preference('BiblioAddsAuthorities')) {
212 BiblioAutoLink( $record, $frameworkcode );
215 my ( $biblionumber, $biblioitemnumber, $error );
216 my $dbh = C4::Context->dbh;
218 # transform the data into koha-table style data
219 SetUTF8Flag($record);
220 my $olddata = TransformMarcToKoha( $record, $frameworkcode );
221 ( $biblionumber, $error ) = _koha_add_biblio( $dbh, $olddata, $frameworkcode );
222 $olddata->{'biblionumber'} = $biblionumber;
223 ( $biblioitemnumber, $error ) = _koha_add_biblioitem( $dbh, $olddata );
225 _koha_marc_update_bib_ids( $record, $frameworkcode, $biblionumber, $biblioitemnumber );
227 # update MARC subfield that stores biblioitems.cn_sort
228 _koha_marc_update_biblioitem_cn_sort( $record, $olddata, $frameworkcode );
231 ModBiblioMarc( $record, $biblionumber, $frameworkcode ) unless $defer_marc_save;
233 # update OAI-PMH sets
234 if(C4::Context->preference("OAI-PMH:AutoUpdateSets")) {
235 C4::OAI::Sets::UpdateOAISetsBiblio($biblionumber, $record);
238 _after_biblio_action_hooks({ action => 'create', biblio_id => $biblionumber });
240 logaction( "CATALOGUING", "ADD", $biblionumber, "biblio" ) if C4::Context->preference("CataloguingLog");
241 return ( $biblionumber, $biblioitemnumber );
246 ModBiblio( $record,$biblionumber,$frameworkcode, $disable_autolink);
248 Replace an existing bib record identified by C<$biblionumber>
249 with one supplied by the MARC::Record object C<$record>. The embedded
250 item, biblioitem, and biblionumber fields from the previous
251 version of the bib record replace any such fields of those tags that
252 are present in C<$record>. Consequently, ModBiblio() is not
253 to be used to try to modify item records.
255 C<$frameworkcode> specifies the MARC framework to use
256 when storing the modified bib record; among other things,
257 this controls how MARC fields get mapped to display columns
258 in the C<biblio> and C<biblioitems> tables, as well as
259 which fields are used to store embedded item, biblioitem,
260 and biblionumber data for indexing.
262 Unless C<$disable_autolink> is passed ModBiblio will relink record headings
263 to authorities based on settings in the system preferences. This flag allows
264 us to not relink records when the authority linker is saving modifications.
266 Returns 1 on success 0 on failure
271 my ( $record, $biblionumber, $frameworkcode, $disable_autolink ) = @_;
273 carp 'No record passed to ModBiblio';
277 if ( C4::Context->preference("CataloguingLog") ) {
278 my $newrecord = GetMarcBiblio({ biblionumber => $biblionumber });
279 logaction( "CATALOGUING", "MODIFY", $biblionumber, "biblio BEFORE=>" . $newrecord->as_formatted );
282 if ( !$disable_autolink && C4::Context->preference('BiblioAddsAuthorities') ) {
283 BiblioAutoLink( $record, $frameworkcode );
286 # Cleaning up invalid fields must be done early or SetUTF8Flag is liable to
287 # throw an exception which probably won't be handled.
288 foreach my $field ($record->fields()) {
289 if (! $field->is_control_field()) {
290 if (scalar($field->subfields()) == 0 || (scalar($field->subfields()) == 1 && $field->subfield('9'))) {
291 $record->delete_field($field);
296 SetUTF8Flag($record);
297 my $dbh = C4::Context->dbh;
299 $frameworkcode = "" if !$frameworkcode || $frameworkcode eq "Default"; # XXX
301 _strip_item_fields($record, $frameworkcode);
303 # update biblionumber and biblioitemnumber in MARC
304 # FIXME - this is assuming a 1 to 1 relationship between
305 # biblios and biblioitems
306 my $sth = $dbh->prepare("select biblioitemnumber from biblioitems where biblionumber=?");
307 $sth->execute($biblionumber);
308 my ($biblioitemnumber) = $sth->fetchrow;
310 _koha_marc_update_bib_ids( $record, $frameworkcode, $biblionumber, $biblioitemnumber );
312 # load the koha-table data object
313 my $oldbiblio = TransformMarcToKoha( $record, $frameworkcode );
315 # update MARC subfield that stores biblioitems.cn_sort
316 _koha_marc_update_biblioitem_cn_sort( $record, $oldbiblio, $frameworkcode );
318 # update the MARC record (that now contains biblio and items) with the new record data
319 &ModBiblioMarc( $record, $biblionumber, $frameworkcode );
321 # modify the other koha tables
322 _koha_modify_biblio( $dbh, $oldbiblio, $frameworkcode );
323 _koha_modify_biblioitem_nonmarc( $dbh, $oldbiblio );
325 _after_biblio_action_hooks({ action => 'modify', biblio_id => $biblionumber });
327 # update OAI-PMH sets
328 if(C4::Context->preference("OAI-PMH:AutoUpdateSets")) {
329 C4::OAI::Sets::UpdateOAISetsBiblio($biblionumber, $record);
335 =head2 _strip_item_fields
337 _strip_item_fields($record, $frameworkcode)
339 Utility routine to remove item tags from a
344 sub _strip_item_fields {
346 my $frameworkcode = shift;
347 # get the items before and append them to the biblio before updating the record, atm we just have the biblio
348 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField( "items.itemnumber" );
350 # delete any item fields from incoming record to avoid
351 # duplication or incorrect data - use AddItem() or ModItem()
353 foreach my $field ( $record->field($itemtag) ) {
354 $record->delete_field($field);
360 my $error = &DelBiblio($biblionumber);
362 Exported function (core API) for deleting a biblio in koha.
363 Deletes biblio record from Zebra and Koha tables (biblio & biblioitems)
364 Also backs it up to deleted* tables.
365 Checks to make sure that the biblio has no items attached.
367 C<$error> : undef unless an error occurs
372 my ($biblionumber) = @_;
374 my $biblio = Koha::Biblios->find( $biblionumber );
375 return unless $biblio; # Should we throw an exception instead?
377 my $dbh = C4::Context->dbh;
378 my $error; # for error handling
380 # First make sure this biblio has no items attached
381 my $sth = $dbh->prepare("SELECT itemnumber FROM items WHERE biblionumber=?");
382 $sth->execute($biblionumber);
383 if ( my $itemnumber = $sth->fetchrow ) {
385 # Fix this to use a status the template can understand
386 $error .= "This Biblio has items attached, please delete them first before deleting this biblio ";
389 return $error if $error;
391 # We delete attached subscriptions
393 my $subscriptions = C4::Serials::GetFullSubscriptionsFromBiblionumber($biblionumber);
394 foreach my $subscription (@$subscriptions) {
395 C4::Serials::DelSubscription( $subscription->{subscriptionid} );
398 # We delete any existing holds
399 my $holds = $biblio->holds;
400 while ( my $hold = $holds->next ) {
404 # Delete in Zebra. Be careful NOT to move this line after _koha_delete_biblio
405 # for at least 2 reasons :
406 # - if something goes wrong, the biblio may be deleted from Koha but not from zebra
407 # 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)
408 ModZebra( $biblionumber, "recordDelete", "biblioserver" );
410 # delete biblioitems and items from Koha tables and save in deletedbiblioitems,deleteditems
411 $sth = $dbh->prepare("SELECT biblioitemnumber FROM biblioitems WHERE biblionumber=?");
412 $sth->execute($biblionumber);
413 while ( my $biblioitemnumber = $sth->fetchrow ) {
415 # delete this biblioitem
416 $error = _koha_delete_biblioitems( $dbh, $biblioitemnumber );
417 return $error if $error;
421 # delete biblio from Koha tables and save in deletedbiblio
422 # must do this *after* _koha_delete_biblioitems, otherwise
423 # delete cascade will prevent deletedbiblioitems rows
424 # from being generated by _koha_delete_biblioitems
425 $error = _koha_delete_biblio( $dbh, $biblionumber );
427 _after_biblio_action_hooks({ action => 'delete', biblio_id => $biblionumber });
429 logaction( "CATALOGUING", "DELETE", $biblionumber, "biblio" ) if C4::Context->preference("CataloguingLog");
435 =head2 BiblioAutoLink
437 my $headings_linked = BiblioAutoLink($record, $frameworkcode)
439 Automatically links headings in a bib record to authorities.
441 Returns the number of headings changed
447 my $frameworkcode = shift;
449 carp('Undefined record passed to BiblioAutoLink');
452 my ( $num_headings_changed, %results );
455 "C4::Linker::" . ( C4::Context->preference("LinkerModule") || 'Default' );
456 unless ( can_load( modules => { $linker_module => undef } ) ) {
457 $linker_module = 'C4::Linker::Default';
458 unless ( can_load( modules => { $linker_module => undef } ) ) {
463 my $linker = $linker_module->new(
464 { 'options' => C4::Context->preference("LinkerOptions") } );
465 my ( $headings_changed, undef ) =
466 LinkBibHeadingsToAuthorities( $linker, $record, $frameworkcode, C4::Context->preference("CatalogModuleRelink") || '' );
467 # By default we probably don't want to relink things when cataloging
468 return $headings_changed;
471 =head2 LinkBibHeadingsToAuthorities
473 my $num_headings_changed, %results = LinkBibHeadingsToAuthorities($linker, $marc, $frameworkcode, [$allowrelink]);
475 Links bib headings to authority records by checking
476 each authority-controlled field in the C<MARC::Record>
477 object C<$marc>, looking for a matching authority record,
478 and setting the linking subfield $9 to the ID of that
481 If $allowrelink is false, existing authids will never be
482 replaced, regardless of the values of LinkerKeepStale and
485 Returns the number of heading links changed in the
490 sub LinkBibHeadingsToAuthorities {
493 my $frameworkcode = shift;
494 my $allowrelink = shift;
497 carp 'LinkBibHeadingsToAuthorities called on undefined bib record';
501 require C4::AuthoritiesMarc;
503 $allowrelink = 1 unless defined $allowrelink;
504 my $num_headings_changed = 0;
505 foreach my $field ( $bib->fields() ) {
506 my $heading = C4::Heading->new_from_bib_field( $field, $frameworkcode );
507 next unless defined $heading;
510 my $current_link = $field->subfield('9');
512 if ( defined $current_link && (!$allowrelink || !C4::Context->preference('LinkerRelink')) )
514 $results{'linked'}->{ $heading->display_form() }++;
518 my ( $authid, $fuzzy ) = $linker->get_link($heading);
520 $results{ $fuzzy ? 'fuzzy' : 'linked' }
521 ->{ $heading->display_form() }++;
522 next if defined $current_link and $current_link == $authid;
524 $field->delete_subfield( code => '9' ) if defined $current_link;
525 $field->add_subfields( '9', $authid );
526 $num_headings_changed++;
529 if ( defined $current_link
530 && (!$allowrelink || C4::Context->preference('LinkerKeepStale')) )
532 $results{'fuzzy'}->{ $heading->display_form() }++;
534 elsif ( C4::Context->preference('AutoCreateAuthorities') ) {
535 if ( _check_valid_auth_link( $current_link, $field ) ) {
536 $results{'linked'}->{ $heading->display_form() }++;
539 my $authority_type = Koha::Authority::Types->find( $heading->auth_type() );
540 my $marcrecordauth = MARC::Record->new();
541 if ( C4::Context->preference('marcflavour') eq 'MARC21' ) {
542 $marcrecordauth->leader(' nz a22 o 4500');
543 SetMarcUnicodeFlag( $marcrecordauth, 'MARC21' );
545 $field->delete_subfield( code => '9' )
546 if defined $current_link;
548 MARC::Field->new( $authority_type->auth_tag_to_report,
549 '', '', "a" => "" . $field->subfield('a') );
551 $authfield->add_subfields( $_->[0] => $_->[1] )
552 if ( $_->[0] =~ /[A-z]/ && $_->[0] ne "a"
553 && C4::Heading::valid_bib_heading_subfield(
554 $authority_type->auth_tag_to_report, $_->[0] )
556 } $field->subfields();
557 $marcrecordauth->insert_fields_ordered($authfield);
559 # bug 2317: ensure new authority knows it's using UTF-8; currently
560 # only need to do this for MARC21, as MARC::Record->as_xml_record() handles
561 # automatically for UNIMARC (by not transcoding)
562 # FIXME: AddAuthority() instead should simply explicitly require that the MARC::Record
563 # use UTF-8, but as of 2008-08-05, did not want to introduce that kind
564 # of change to a core API just before the 3.0 release.
566 if ( C4::Context->preference('marcflavour') eq 'MARC21' ) {
567 my $userenv = C4::Context->userenv;
569 if ( $userenv && $userenv->{'branch'} ) {
570 $library = Koha::Libraries->find( $userenv->{'branch'} );
572 $marcrecordauth->insert_fields_ordered(
575 'a' => "Machine generated authority record."
579 $bib->author() . ", "
580 . $bib->title_proper() . ", "
581 . $bib->publication_date() . " ";
582 $cite =~ s/^[\s\,]*//;
583 $cite =~ s/[\s\,]*$//;
586 . ( $library ? $library->get_effective_marcorgcode : C4::Context->preference('MARCOrgCode') ) . ")"
587 . $bib->subfield( '999', 'c' ) . ": "
589 $marcrecordauth->insert_fields_ordered(
590 MARC::Field->new( '670', '', '', 'a' => $cite ) );
593 # warn "AUTH RECORD ADDED : ".$marcrecordauth->as_formatted;
596 C4::AuthoritiesMarc::AddAuthority( $marcrecordauth, '',
597 $heading->auth_type() );
598 $field->add_subfields( '9', $authid );
599 $num_headings_changed++;
600 $linker->update_cache($heading, $authid);
601 $results{'added'}->{ $heading->display_form() }++;
604 elsif ( defined $current_link ) {
605 if ( _check_valid_auth_link( $current_link, $field ) ) {
606 $results{'linked'}->{ $heading->display_form() }++;
609 $field->delete_subfield( code => '9' );
610 $num_headings_changed++;
611 $results{'unlinked'}->{ $heading->display_form() }++;
615 $results{'unlinked'}->{ $heading->display_form() }++;
620 return $num_headings_changed, \%results;
623 =head2 _check_valid_auth_link
625 if ( _check_valid_auth_link($authid, $field) ) {
629 Check whether the specified heading-auth link is valid without reference
630 to Zebra. Ideally this code would be in C4::Heading, but that won't be
631 possible until we have de-cycled C4::AuthoritiesMarc, so this is the
636 sub _check_valid_auth_link {
637 my ( $authid, $field ) = @_;
638 require C4::AuthoritiesMarc;
640 my $authorized_heading =
641 C4::AuthoritiesMarc::GetAuthorizedHeading( { 'authid' => $authid } ) || '';
642 return ($field->as_string('abcdefghijklmnopqrstuvwxyz') eq $authorized_heading);
645 =head2 GetRecordValue
647 my $values = GetRecordValue($field, $record, $frameworkcode);
649 Get MARC fields from a keyword defined in fieldmapping table.
654 my ( $field, $record, $frameworkcode ) = @_;
657 carp 'GetRecordValue called with undefined record';
660 my $dbh = C4::Context->dbh;
662 my $sth = $dbh->prepare('SELECT fieldcode, subfieldcode FROM fieldmapping WHERE frameworkcode = ? AND field = ?');
663 $sth->execute( $frameworkcode, $field );
667 while ( my $row = $sth->fetchrow_hashref ) {
668 foreach my $field ( $record->field( $row->{fieldcode} ) ) {
669 if ( ( $row->{subfieldcode} ne "" && $field->subfield( $row->{subfieldcode} ) ) ) {
670 foreach my $subfield ( $field->subfield( $row->{subfieldcode} ) ) {
671 push @result, { 'subfield' => $subfield };
674 } elsif ( $row->{subfieldcode} eq "" ) {
675 push @result, { 'subfield' => $field->as_string() };
685 $data = &GetBiblioData($biblionumber);
687 Returns information about the book with the given biblionumber.
688 C<&GetBiblioData> returns a reference-to-hash. The keys are the fields in
689 the C<biblio> and C<biblioitems> tables in the
692 In addition, C<$data-E<gt>{subject}> is the list of the book's
693 subjects, separated by C<" , "> (space, comma, space).
694 If there are multiple biblioitems with the given biblionumber, only
695 the first one is considered.
701 my $dbh = C4::Context->dbh;
703 my $query = " SELECT * , biblioitems.notes AS bnotes, itemtypes.notforloan as bi_notforloan, biblio.notes
705 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
706 LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype
707 WHERE biblio.biblionumber = ?";
709 my $sth = $dbh->prepare($query);
710 $sth->execute($bibnum);
712 $data = $sth->fetchrow_hashref;
716 } # sub GetBiblioData
720 $isbd = &GetISBDView({
721 'record' => $marc_record,
722 'template' => $interface, # opac/intranet
723 'framework' => $framework,
726 Return the ISBD view which can be included in opac and intranet
733 # Expecting record WITH items.
734 my $record = $params->{record};
735 return unless defined $record;
737 my $template = $params->{template} // q{};
738 my $sysprefname = $template eq 'opac' ?
'opacisbd' : 'isbd';
739 my $framework = $params->{framework
};
740 my $itemtype = $framework;
741 my ( $holdingbrtagf, $holdingbrtagsubf ) = &GetMarcFromKohaField
( "items.holdingbranch" );
742 my $tagslib = GetMarcStructure
( 1, $itemtype, { unsafe
=> 1 } );
744 my $ISBD = C4
::Context
->preference($sysprefname);
749 foreach my $isbdfield ( split( /#/, $bloc ) ) {
751 # $isbdfield= /(.?.?.?)/;
752 $isbdfield =~ /(\d\d\d)([^\|])?\|(.*)\|(.*)\|(.*)/;
753 my $fieldvalue = $1 || 0;
754 my $subfvalue = $2 || "";
756 my $analysestring = $4;
759 # warn "==> $1 / $2 / $3 / $4";
760 # my $fieldvalue=substr($isbdfield,0,3);
761 if ( $fieldvalue > 0 ) {
762 my $hasputtextbefore = 0;
763 my @fieldslist = $record->field($fieldvalue);
764 @fieldslist = sort { $a->subfield($holdingbrtagsubf) cmp $b->subfield($holdingbrtagsubf) } @fieldslist if ( $fieldvalue eq $holdingbrtagf );
766 # warn "ERROR IN ISBD DEFINITION at : $isbdfield" unless $fieldvalue;
767 # warn "FV : $fieldvalue";
768 if ( $subfvalue ne "" ) {
769 # OPAC hidden subfield
771 if ( ( $template eq 'opac' )
772 && ( $tagslib->{$fieldvalue}->{$subfvalue}->{'hidden'} || 0 ) > 0 );
773 foreach my $field (@fieldslist) {
774 foreach my $subfield ( $field->subfield($subfvalue) ) {
775 my $calculated = $analysestring;
776 my $tag = $field->tag();
779 my $subfieldvalue = GetAuthorisedValueDesc
( $tag, $subfvalue, $subfield, '', $tagslib );
780 my $tagsubf = $tag . $subfvalue;
781 $calculated =~ s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
782 if ( $template eq "opac" ) { $calculated =~ s
#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g; }
784 # field builded, store the result
785 if ( $calculated && !$hasputtextbefore ) { # put textbefore if not done
786 $blocres .= $textbefore;
787 $hasputtextbefore = 1;
790 # remove punctuation at start
791 $calculated =~ s/^( |;|:|\.|-)*//g;
792 $blocres .= $calculated;
797 $blocres .= $textafter if $hasputtextbefore;
799 foreach my $field (@fieldslist) {
800 my $calculated = $analysestring;
801 my $tag = $field->tag();
804 my @subf = $field->subfields;
805 for my $i ( 0 .. $#subf ) {
806 my $valuecode = $subf[$i][1];
807 my $subfieldcode = $subf[$i][0];
808 # OPAC hidden subfield
810 if ( ( $template eq 'opac' )
811 && ( $tagslib->{$fieldvalue}->{$subfieldcode}->{'hidden'} || 0 ) > 0 );
812 my $subfieldvalue = GetAuthorisedValueDesc
( $tag, $subf[$i][0], $subf[$i][1], '', $tagslib );
813 my $tagsubf = $tag . $subfieldcode;
815 $calculated =~ s
/ # replace all {{}} codes by the value code.
816 \
{\
{$tagsubf\
}\
} # catch the {{actualcode}}
818 $valuecode # replace by the value code
821 $calculated =~ s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
822 if ( $template eq "opac" ) { $calculated =~ s
#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g; }
825 # field builded, store the result
826 if ( $calculated && !$hasputtextbefore ) { # put textbefore if not done
827 $blocres .= $textbefore;
828 $hasputtextbefore = 1;
831 # remove punctuation at start
832 $calculated =~ s/^( |;|:|\.|-)*//g;
833 $blocres .= $calculated;
836 $blocres .= $textafter if $hasputtextbefore;
839 $blocres .= $isbdfield;
844 $res =~ s/\{(.*?)\}//g;
846 $res =~ s/\n/<br\/>/g
;
854 =head1 FUNCTIONS FOR HANDLING MARC MANAGEMENT
856 =head2 IsMarcStructureInternal
858 my $tagslib = C4::Biblio::GetMarcStructure();
859 for my $tag ( sort keys %$tagslib ) {
861 for my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
862 next if IsMarcStructureInternal($tagslib->{$tag}{$subfield});
867 GetMarcStructure creates keys (lib, tab, mandatory, repeatable) for a display purpose.
868 These different values should not be processed as valid subfields.
872 sub IsMarcStructureInternal
{
873 my ( $subfield ) = @_;
874 return ref $subfield ?
0 : 1;
877 =head2 GetMarcStructure
879 $res = GetMarcStructure($forlibrarian, $frameworkcode, [ $params ]);
881 Returns a reference to a big hash of hash, with the Marc structure for the given frameworkcode
882 $forlibrarian :if set to 1, the MARC descriptions are the librarians ones, otherwise it's the public (OPAC) ones
883 $frameworkcode : the framework code to read
884 $params allows you to pass { unsafe => 1 } for better performance.
886 Note: If you call GetMarcStructure with unsafe => 1, do not modify or
887 even autovivify its contents. It is a cached/shared data structure. Your
888 changes c/would be passed around in subsequent calls.
892 sub GetMarcStructure
{
893 my ( $forlibrarian, $frameworkcode, $params ) = @_;
894 $frameworkcode = "" unless $frameworkcode;
896 $forlibrarian = $forlibrarian ?
1 : 0;
897 my $unsafe = ($params && $params->{unsafe
})?
1: 0;
898 my $cache = Koha
::Caches
->get_instance();
899 my $cache_key = "MarcStructure-$forlibrarian-$frameworkcode";
900 my $cached = $cache->get_from_cache($cache_key, { unsafe
=> $unsafe });
901 return $cached if $cached;
903 my $dbh = C4
::Context
->dbh;
904 my $sth = $dbh->prepare(
905 "SELECT tagfield,liblibrarian,libopac,mandatory,repeatable,ind1_defaultvalue,ind2_defaultvalue
906 FROM marc_tag_structure
907 WHERE frameworkcode=?
910 $sth->execute($frameworkcode);
911 my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable, $ind1_defaultvalue, $ind2_defaultvalue );
913 while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable, $ind1_defaultvalue, $ind2_defaultvalue ) = $sth->fetchrow ) {
914 $res->{$tag}->{lib
} = ( $forlibrarian or !$libopac ) ?
$liblibrarian : $libopac;
915 $res->{$tag}->{tab
} = "";
916 $res->{$tag}->{mandatory
} = $mandatory;
917 $res->{$tag}->{repeatable
} = $repeatable;
918 $res->{$tag}->{ind1_defaultvalue
} = $ind1_defaultvalue;
919 $res->{$tag}->{ind2_defaultvalue
} = $ind2_defaultvalue;
922 $sth = $dbh->prepare(
923 "SELECT tagfield,tagsubfield,liblibrarian,libopac,tab,mandatory,repeatable,authorised_value,authtypecode,value_builder,kohafield,seealso,hidden,isurl,link,defaultvalue,maxlength
924 FROM marc_subfield_structure
925 WHERE frameworkcode=?
926 ORDER BY tagfield,tagsubfield
930 $sth->execute($frameworkcode);
933 my $authorised_value;
945 ( $tag, $subfield, $liblibrarian, $libopac, $tab, $mandatory, $repeatable, $authorised_value,
946 $authtypecode, $value_builder, $kohafield, $seealso, $hidden, $isurl, $link, $defaultvalue,
951 $res->{$tag}->{$subfield}->{lib
} = ( $forlibrarian or !$libopac ) ?
$liblibrarian : $libopac;
952 $res->{$tag}->{$subfield}->{tab
} = $tab;
953 $res->{$tag}->{$subfield}->{mandatory
} = $mandatory;
954 $res->{$tag}->{$subfield}->{repeatable
} = $repeatable;
955 $res->{$tag}->{$subfield}->{authorised_value
} = $authorised_value;
956 $res->{$tag}->{$subfield}->{authtypecode
} = $authtypecode;
957 $res->{$tag}->{$subfield}->{value_builder
} = $value_builder;
958 $res->{$tag}->{$subfield}->{kohafield
} = $kohafield;
959 $res->{$tag}->{$subfield}->{seealso
} = $seealso;
960 $res->{$tag}->{$subfield}->{hidden
} = $hidden;
961 $res->{$tag}->{$subfield}->{isurl
} = $isurl;
962 $res->{$tag}->{$subfield}->{'link'} = $link;
963 $res->{$tag}->{$subfield}->{defaultvalue
} = $defaultvalue;
964 $res->{$tag}->{$subfield}->{maxlength
} = $maxlength;
967 $cache->set_in_cache($cache_key, $res);
971 =head2 GetUsedMarcStructure
973 The same function as GetMarcStructure except it just takes field
974 in tab 0-9. (used field)
976 my $results = GetUsedMarcStructure($frameworkcode);
978 C<$results> is a ref to an array which each case contains a ref
979 to a hash which each keys is the columns from marc_subfield_structure
981 C<$frameworkcode> is the framework code.
985 sub GetUsedMarcStructure
{
986 my $frameworkcode = shift || '';
989 FROM marc_subfield_structure
991 AND frameworkcode = ?
992 ORDER BY tagfield, tagsubfield
994 my $sth = C4
::Context
->dbh->prepare($query);
995 $sth->execute($frameworkcode);
996 return $sth->fetchall_arrayref( {} );
1001 =head2 GetMarcSubfieldStructure
1003 my $structure = GetMarcSubfieldStructure($frameworkcode, [$params]);
1005 Returns a reference to hash representing MARC subfield structure
1006 for framework with framework code C<$frameworkcode>, C<$params> is
1007 optional and may contain additional options.
1011 =item C<$frameworkcode>
1017 An optional hash reference with additional options.
1018 The following options are supported:
1024 Pass { unsafe => 1 } do disable cached object cloning,
1025 and instead get a shared reference, resulting in better
1026 performance (but care must be taken so that retured object
1029 Note: If you call GetMarcSubfieldStructure with unsafe => 1, do not modify or
1030 even autovivify its contents. It is a cached/shared data structure. Your
1031 changes would be passed around in subsequent calls.
1039 sub GetMarcSubfieldStructure
{
1040 my ( $frameworkcode, $params ) = @_;
1042 $frameworkcode //= '';
1044 my $cache = Koha
::Caches
->get_instance();
1045 my $cache_key = "MarcSubfieldStructure-$frameworkcode";
1046 my $cached = $cache->get_from_cache($cache_key, { unsafe
=> ($params && $params->{unsafe
}) });
1047 return $cached if $cached;
1049 my $dbh = C4
::Context
->dbh;
1050 # We moved to selectall_arrayref since selectall_hashref does not
1051 # keep duplicate mappings on kohafield (like place in 260 vs 264)
1052 my $subfield_aref = $dbh->selectall_arrayref( q
|
1054 FROM marc_subfield_structure
1055 WHERE frameworkcode
= ?
1057 ORDER BY frameworkcode
,tagfield
,tagsubfield
1058 |, { Slice
=> {} }, $frameworkcode );
1059 # Now map the output to a hash structure
1060 my $subfield_structure = {};
1061 foreach my $row ( @
$subfield_aref ) {
1062 push @
{ $subfield_structure->{ $row->{kohafield
} }}, $row;
1064 $cache->set_in_cache( $cache_key, $subfield_structure );
1065 return $subfield_structure;
1068 =head2 GetMarcFromKohaField
1070 ( $field,$subfield ) = GetMarcFromKohaField( $kohafield );
1071 @fields = GetMarcFromKohaField( $kohafield );
1072 $field = GetMarcFromKohaField( $kohafield );
1074 Returns the MARC fields & subfields mapped to $kohafield.
1075 Since the Default framework is considered as authoritative for such
1076 mappings, the former frameworkcode parameter is obsoleted.
1078 In list context all mappings are returned; there can be multiple
1079 mappings. Note that in the above example you could miss a second
1080 mappings in the first call.
1081 In scalar context only the field tag of the first mapping is returned.
1085 sub GetMarcFromKohaField
{
1086 my ( $kohafield ) = @_;
1087 return unless $kohafield;
1088 # The next call uses the Default framework since it is AUTHORITATIVE
1089 # for all Koha to MARC mappings.
1090 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # Do not change framework
1092 foreach( @
{ $mss->{$kohafield} } ) {
1093 push @retval, $_->{tagfield
}, $_->{tagsubfield
};
1095 return wantarray ?
@retval : ( @retval ?
$retval[0] : undef );
1098 =head2 GetMarcSubfieldStructureFromKohaField
1100 my $str = GetMarcSubfieldStructureFromKohaField( $kohafield );
1102 Returns marc subfield structure information for $kohafield.
1103 The Default framework is used, since it is authoritative for kohafield
1105 In list context returns a list of all hashrefs, since there may be
1106 multiple mappings. In scalar context the first hashref is returned.
1110 sub GetMarcSubfieldStructureFromKohaField
{
1111 my ( $kohafield ) = @_;
1113 return unless $kohafield;
1115 # The next call uses the Default framework since it is AUTHORITATIVE
1116 # for all Koha to MARC mappings.
1117 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # Do not change framework
1118 return unless $mss->{$kohafield};
1119 return wantarray ? @
{$mss->{$kohafield}} : $mss->{$kohafield}->[0];
1122 =head2 GetMarcBiblio
1124 my $record = GetMarcBiblio({
1125 biblionumber => $biblionumber,
1126 embed_items => $embeditems,
1128 borcat => $patron_category });
1130 Returns MARC::Record representing a biblio record, or C<undef> if the
1131 biblionumber doesn't exist.
1133 Both embed_items and opac are optional.
1134 If embed_items is passed and is 1, items are embedded.
1135 If opac is passed and is 1, the record is filtered as needed.
1139 =item C<$biblionumber>
1143 =item C<$embeditems>
1145 set to true to include item information.
1149 set to true to make the result suited for OPAC view. This causes things like
1150 OpacHiddenItems to be applied.
1154 If the OpacHiddenItemsExceptions system preference is set, this patron category
1155 can be used to make visible OPAC items which would be normally hidden.
1156 It only makes sense in combination both embed_items and opac values true.
1165 if (not defined $params) {
1166 carp
'GetMarcBiblio called without parameters';
1170 my $biblionumber = $params->{biblionumber
};
1171 my $embeditems = $params->{embed_items
} || 0;
1172 my $opac = $params->{opac
} || 0;
1173 my $borcat = $params->{borcat
} // q{};
1175 if (not defined $biblionumber) {
1176 carp
'GetMarcBiblio called with undefined biblionumber';
1180 my $dbh = C4
::Context
->dbh;
1181 my $sth = $dbh->prepare("SELECT biblioitemnumber FROM biblioitems WHERE biblionumber=? ");
1182 $sth->execute($biblionumber);
1183 my $row = $sth->fetchrow_hashref;
1184 my $biblioitemnumber = $row->{'biblioitemnumber'};
1185 my $marcxml = GetXmlBiblio
( $biblionumber );
1186 $marcxml = StripNonXmlChars
( $marcxml );
1187 my $frameworkcode = GetFrameworkCode
($biblionumber);
1188 MARC
::File
::XML
->default_record_format( C4
::Context
->preference('marcflavour') );
1189 my $record = MARC
::Record
->new();
1193 MARC
::Record
::new_from_xml
( $marcxml, "utf8",
1194 C4
::Context
->preference('marcflavour') );
1196 if ($@
) { warn " problem with :$biblionumber : $@ \n$marcxml"; }
1197 return unless $record;
1199 C4
::Biblio
::_koha_marc_update_bib_ids
( $record, $frameworkcode, $biblionumber,
1200 $biblioitemnumber );
1201 C4
::Biblio
::EmbedItemsInMarcBiblio
({
1202 marc_record
=> $record,
1203 biblionumber
=> $biblionumber,
1205 borcat
=> $borcat })
1217 my $marcxml = GetXmlBiblio($biblionumber);
1219 Returns biblio_metadata.metadata/marcxml of the biblionumber passed in parameter.
1220 The XML should only contain biblio information (item information is no longer stored in marcxml field)
1225 my ($biblionumber) = @_;
1226 my $dbh = C4
::Context
->dbh;
1227 return unless $biblionumber;
1228 my ($marcxml) = $dbh->selectrow_array(
1231 FROM biblio_metadata
1232 WHERE biblionumber
=?
1233 AND format
='marcxml'
1235 |, undef, $biblionumber, C4
::Context
->preference('marcflavour')
1242 return the prices in accordance with the Marc format.
1244 returns 0 if no price found
1245 returns undef if called without a marc record or with
1246 an unrecognized marc format
1251 my ( $record, $marcflavour ) = @_;
1253 carp
'GetMarcPrice called on undefined record';
1260 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
1261 @listtags = ('345', '020');
1263 } elsif ( $marcflavour eq "UNIMARC" ) {
1264 @listtags = ('345', '010');
1270 for my $field ( $record->field(@listtags) ) {
1271 for my $subfield_value ($field->subfield($subfield)){
1273 $subfield_value = MungeMarcPrice
( $subfield_value );
1274 return $subfield_value if ($subfield_value);
1277 return 0; # no price found
1280 =head2 MungeMarcPrice
1282 Return the best guess at what the actual price is from a price field.
1286 sub MungeMarcPrice
{
1288 return unless ( $price =~ m/\d/ ); ## No digits means no price.
1289 # Look for the currency symbol and the normalized code of the active currency, if it's there,
1290 my $active_currency = Koha
::Acquisition
::Currencies
->get_active;
1291 my $symbol = $active_currency->symbol;
1292 my $isocode = $active_currency->isocode;
1293 $isocode = $active_currency->currency unless defined $isocode;
1296 my @matches =($price=~ /
1298 ( # start of capturing parenthesis
1300 (?
:[\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'
1301 |(?
:\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'
1303 \s?\p
{Sc
}?\s?
# followed or not by a whitespace. \p{Sc}?\s? are for cases like '25$ USD'
1305 (?
:[\p
{Sc
}\p
{L
}\
/.]){1,4} # followed by same block as symbol block
1306 |(?
:\d
+[\p
{P
}\s
]?
){1,4} # or by same block as digits block
1308 \s?\p
{L
}{0,4}\s?
# followed or not by a whitespace. \p{L}{0,4}\s? are for cases like '$9.50 USD'
1309 ) # end of capturing parenthesis
1310 (?
:\p
{P
}|\z
) # followed by a punctuation sign or by the end of the string
1314 foreach ( @matches ) {
1315 $localprice = $_ and last if index($_, $isocode)>=0;
1317 if ( !$localprice ) {
1318 foreach ( @matches ) {
1319 $localprice = $_ and last if $_=~ /(^|[^\p{Sc}\p{L}\/])\Q
$symbol\E
([^\p
{Sc
}\p
{L
}\
/]+\z|\z)/;
1324 if ( $localprice ) {
1325 $price = $localprice;
1327 ## Grab the first number in the string ( can use commas or periods for thousands separator and/or decimal separator )
1328 ( $price ) = $price =~ m/([\d\,\.]+[[\,\.]\d\d]?)/;
1330 # eliminate symbol/isocode, space and any final dot from the string
1331 $price =~ s/[\p{Sc}\p{L}\/ ]|\.$//g
;
1332 # remove comma,dot when used as separators from hundreds
1333 $price =~s/[\,\.](\d{3})/$1/g;
1334 # convert comma to dot to ensure correct display of decimals if existing
1340 =head2 GetMarcQuantity
1342 return the quantity of a book. Used in acquisition only, when importing a file an iso2709 from a bookseller
1343 Warning : this is not really in the marc standard. In Unimarc, Electre (the most widely used bookseller) use the 969$a
1345 returns 0 if no quantity found
1346 returns undef if called without a marc record or with
1347 an unrecognized marc format
1351 sub GetMarcQuantity
{
1352 my ( $record, $marcflavour ) = @_;
1354 carp
'GetMarcQuantity called on undefined record';
1361 if ( $marcflavour eq "MARC21" ) {
1363 } elsif ( $marcflavour eq "UNIMARC" ) {
1364 @listtags = ('969');
1370 for my $field ( $record->field(@listtags) ) {
1371 for my $subfield_value ($field->subfield($subfield)){
1373 if ($subfield_value) {
1374 # in France, the cents separator is the , but sometimes, ppl use a .
1375 # in this case, the price will be x100 when unformatted ! Replace the . by a , to get a proper price calculation
1376 $subfield_value =~ s/\./,/ if C4
::Context
->preference("CurrencyFormat") eq "FR";
1377 return $subfield_value;
1381 return 0; # no price found
1385 =head2 GetAuthorisedValueDesc
1387 my $subfieldvalue =get_authorised_value_desc(
1388 $tag, $subf[$i][0],$subf[$i][1], '', $taglib, $category, $opac);
1390 Retrieve the complete description for a given authorised value.
1392 Now takes $category and $value pair too.
1394 my $auth_value_desc =GetAuthorisedValueDesc(
1395 '','', 'DVD' ,'','','CCODE');
1397 If the optional $opac parameter is set to a true value, displays OPAC
1398 descriptions rather than normal ones when they exist.
1402 sub GetAuthorisedValueDesc
{
1403 my ( $tag, $subfield, $value, $framework, $tagslib, $category, $opac ) = @_;
1407 return $value unless defined $tagslib->{$tag}->{$subfield}->{'authorised_value'};
1410 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
1411 my $branch = Koha
::Libraries
->find($value);
1412 return $branch?
$branch->branchname: q{};
1416 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
1417 my $itemtype = Koha
::ItemTypes
->find( $value );
1418 return $itemtype ?
$itemtype->translated_description : q
||;
1421 #---- "true" authorized value
1422 $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
1425 my $dbh = C4
::Context
->dbh;
1426 if ( $category ne "" ) {
1427 my $sth = $dbh->prepare( "SELECT lib, lib_opac FROM authorised_values WHERE category = ? AND authorised_value = ?" );
1428 $sth->execute( $category, $value );
1429 my $data = $sth->fetchrow_hashref;
1430 return ( $opac && $data->{'lib_opac'} ) ?
$data->{'lib_opac'} : $data->{'lib'};
1432 return $value; # if nothing is found return the original value
1436 =head2 GetMarcControlnumber
1438 $marccontrolnumber = GetMarcControlnumber($record,$marcflavour);
1440 Get the control number / record Identifier from the MARC record and return it.
1444 sub GetMarcControlnumber
{
1445 my ( $record, $marcflavour ) = @_;
1447 carp
'GetMarcControlnumber called on undefined record';
1450 my $controlnumber = "";
1451 # Control number or Record identifier are the same field in MARC21, UNIMARC and NORMARC
1452 # Keep $marcflavour for possible later use
1453 if ($marcflavour eq "MARC21" || $marcflavour eq "UNIMARC" || $marcflavour eq "NORMARC") {
1454 my $controlnumberField = $record->field('001');
1455 if ($controlnumberField) {
1456 $controlnumber = $controlnumberField->data();
1459 return $controlnumber;
1464 $marcisbnsarray = GetMarcISBN( $record, $marcflavour );
1466 Get all ISBNs from the MARC record and returns them in an array.
1467 ISBNs stored in different fields depending on MARC flavour
1472 my ( $record, $marcflavour ) = @_;
1474 carp
'GetMarcISBN called on undefined record';
1478 if ( $marcflavour eq "UNIMARC" ) {
1480 } else { # assume marc21 if not unimarc
1485 foreach my $field ( $record->field($scope) ) {
1486 my $isbn = $field->subfield( 'a' );
1487 if ( $isbn && $isbn ne "" ) {
1488 push @marcisbns, $isbn;
1498 $marcissnsarray = GetMarcISSN( $record, $marcflavour );
1500 Get all valid ISSNs from the MARC record and returns them in an array.
1501 ISSNs are stored in different fields depending on MARC flavour
1506 my ( $record, $marcflavour ) = @_;
1508 carp
'GetMarcISSN called on undefined record';
1512 if ( $marcflavour eq "UNIMARC" ) {
1515 else { # assume MARC21 or NORMARC
1519 foreach my $field ( $record->field($scope) ) {
1520 push @marcissns, $field->subfield( 'a' )
1521 if ( $field->subfield( 'a' ) ne "" );
1528 $marcnotesarray = GetMarcNotes( $record, $marcflavour );
1530 Get all notes from the MARC record and returns them in an array.
1531 The notes are stored in different fields depending on MARC flavour.
1532 MARC21 5XX $u subfields receive special attention as they are URIs.
1537 my ( $record, $marcflavour ) = @_;
1539 carp
'GetMarcNotes called on undefined record';
1543 my $scope = $marcflavour eq "UNIMARC"?
'3..': '5..';
1545 my %blacklist = map { $_ => 1 }
1546 split( /,/, C4
::Context
->preference('NotesBlacklist'));
1547 foreach my $field ( $record->field($scope) ) {
1548 my $tag = $field->tag();
1549 next if $blacklist{ $tag };
1550 if( $marcflavour ne 'UNIMARC' && $field->subfield('u') ) {
1551 # Field 5XX$u always contains URI
1552 # Examples: 505u, 506u, 510u, 514u, 520u, 530u, 538u, 540u, 542u, 552u, 555u, 561u, 563u, 583u
1553 # We first push the other subfields, then all $u's separately
1554 # Leave further actions to the template (see e.g. opac-detail)
1556 join '', ( 'a' .. 't', 'v' .. 'z', '0' .. '9' ); # excl 'u'
1557 push @marcnotes, { marcnote
=> $field->as_string($othersub) };
1558 foreach my $sub ( $field->subfield('u') ) {
1559 $sub =~ s/^\s+|\s+$//g; # trim
1560 push @marcnotes, { marcnote
=> $sub };
1563 push @marcnotes, { marcnote
=> $field->as_string() };
1569 =head2 GetMarcSubjects
1571 $marcsubjcts = GetMarcSubjects($record,$marcflavour);
1573 Get all subjects from the MARC record and returns them in an array.
1574 The subjects are stored in different fields depending on MARC flavour
1578 sub GetMarcSubjects
{
1579 my ( $record, $marcflavour ) = @_;
1581 carp
'GetMarcSubjects called on undefined record';
1584 my ( $mintag, $maxtag, $fields_filter );
1585 if ( $marcflavour eq "UNIMARC" ) {
1588 $fields_filter = '6..';
1589 } else { # marc21/normarc
1592 $fields_filter = '6..';
1597 my $subject_limit = C4
::Context
->preference("TraceCompleteSubfields") ?
'su,complete-subfield' : 'su';
1598 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1600 foreach my $field ( $record->field($fields_filter) ) {
1601 next unless ($field->tag() >= $mintag && $field->tag() <= $maxtag);
1603 my @subfields = $field->subfields();
1606 # if there is an authority link, build the links with an= subfield9
1607 my $subfield9 = $field->subfield('9');
1610 my $linkvalue = $subfield9;
1611 $linkvalue =~ s/(\(|\))//g;
1612 @link_loop = ( { limit
=> 'an', 'link' => $linkvalue } );
1613 $authoritylink = $linkvalue
1617 for my $subject_subfield (@subfields) {
1618 next if ( $subject_subfield->[0] eq '9' );
1620 # don't load unimarc subfields 3,4,5
1621 next if ( ( $marcflavour eq "UNIMARC" ) and ( $subject_subfield->[0] =~ /2|3|4|5/ ) );
1622 # don't load MARC21 subfields 2 (FIXME: any more subfields??)
1623 next if ( ( $marcflavour eq "MARC21" ) and ( $subject_subfield->[0] =~ /2/ ) );
1625 my $code = $subject_subfield->[0];
1626 my $value = $subject_subfield->[1];
1627 my $linkvalue = $value;
1628 $linkvalue =~ s/(\(|\))//g;
1629 # if no authority link, build a search query
1630 unless ($subfield9) {
1632 limit
=> $subject_limit,
1633 'link' => $linkvalue,
1634 operator
=> (scalar @link_loop) ?
' and ' : undef
1637 my @this_link_loop = @link_loop;
1639 unless ( $code eq '0' ) {
1640 push @subfields_loop, {
1643 link_loop
=> \
@this_link_loop,
1644 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : ''
1649 push @marcsubjects, {
1650 MARCSUBJECT_SUBFIELDS_LOOP
=> \
@subfields_loop,
1651 authoritylink
=> $authoritylink,
1652 } if $authoritylink || @subfields_loop;
1655 return \
@marcsubjects;
1656 } #end getMARCsubjects
1658 =head2 GetMarcAuthors
1660 authors = GetMarcAuthors($record,$marcflavour);
1662 Get all authors from the MARC record and returns them in an array.
1663 The authors are stored in different fields depending on MARC flavour
1667 sub GetMarcAuthors
{
1668 my ( $record, $marcflavour ) = @_;
1670 carp
'GetMarcAuthors called on undefined record';
1673 my ( $mintag, $maxtag, $fields_filter );
1675 # tagslib useful only for UNIMARC author responsibilities
1677 if ( $marcflavour eq "UNIMARC" ) {
1678 # FIXME : we don't have the framework available, we take the default framework. May be buggy on some setups, will be usually correct.
1679 $tagslib = GetMarcStructure
( 1, '', { unsafe
=> 1 });
1682 $fields_filter = '7..';
1683 } else { # marc21/normarc
1686 $fields_filter = '7..';
1690 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1692 foreach my $field ( $record->field($fields_filter) ) {
1693 next unless $field->tag() >= $mintag && $field->tag() <= $maxtag;
1696 my @subfields = $field->subfields();
1699 # if there is an authority link, build the link with Koha-Auth-Number: subfield9
1700 my $subfield9 = $field->subfield('9');
1702 my $linkvalue = $subfield9;
1703 $linkvalue =~ s/(\(|\))//g;
1704 @link_loop = ( { 'limit' => 'an', 'link' => $linkvalue } );
1709 for my $authors_subfield (@subfields) {
1710 next if ( $authors_subfield->[0] eq '9' );
1712 # unimarc3 contains the $3 of the author for UNIMARC.
1713 # For french academic libraries, it's the "ppn", and it's required for idref webservice
1714 $unimarc3 = $authors_subfield->[1] if $marcflavour eq 'UNIMARC' and $authors_subfield->[0] =~ /3/;
1716 # don't load unimarc subfields 3, 5
1717 next if ( $marcflavour eq 'UNIMARC' and ( $authors_subfield->[0] =~ /3|5/ ) );
1719 my $code = $authors_subfield->[0];
1720 my $value = $authors_subfield->[1];
1721 my $linkvalue = $value;
1722 $linkvalue =~ s/(\(|\))//g;
1723 # UNIMARC author responsibility
1724 if ( $marcflavour eq 'UNIMARC' and $code eq '4' ) {
1725 $value = GetAuthorisedValueDesc
( $field->tag(), $code, $value, '', $tagslib );
1726 $linkvalue = "($value)";
1728 # if no authority link, build a search query
1729 unless ($subfield9) {
1732 'link' => $linkvalue,
1733 operator
=> (scalar @link_loop) ?
' and ' : undef
1736 my @this_link_loop = @link_loop;
1738 unless ( $code eq '0') {
1739 push @subfields_loop, {
1740 tag
=> $field->tag(),
1743 link_loop
=> \
@this_link_loop,
1744 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : ''
1748 push @marcauthors, {
1749 MARCAUTHOR_SUBFIELDS_LOOP
=> \
@subfields_loop,
1750 authoritylink
=> $subfield9,
1751 unimarc3
=> $unimarc3
1754 return \
@marcauthors;
1759 $marcurls = GetMarcUrls($record,$marcflavour);
1761 Returns arrayref of URLs from MARC data, suitable to pass to tmpl loop.
1762 Assumes web resources (not uncommon in MARC21 to omit resource type ind)
1767 my ( $record, $marcflavour ) = @_;
1769 carp
'GetMarcUrls called on undefined record';
1774 for my $field ( $record->field('856') ) {
1776 for my $note ( $field->subfield('z') ) {
1777 push @notes, { note
=> $note };
1779 my @urls = $field->subfield('u');
1780 foreach my $url (@urls) {
1781 $url =~ s/^\s+|\s+$//g; # trim
1783 if ( $marcflavour eq 'MARC21' ) {
1784 my $s3 = $field->subfield('3');
1785 my $link = $field->subfield('y');
1786 unless ( $url =~ /^\w+:/ ) {
1787 if ( $field->indicator(1) eq '7' ) {
1788 $url = $field->subfield('2') . "://" . $url;
1789 } elsif ( $field->indicator(1) eq '1' ) {
1790 $url = 'ftp://' . $url;
1793 # properly, this should be if ind1=4,
1794 # however we will assume http protocol since we're building a link.
1795 $url = 'http://' . $url;
1799 # TODO handle ind 2 (relationship)
1804 $marcurl->{'linktext'} = $link || $s3 || C4
::Context
->preference('URLLinkText') || $url;
1805 $marcurl->{'part'} = $s3 if ($link);
1806 $marcurl->{'toc'} = 1 if ( defined($s3) && $s3 =~ /^[Tt]able/ );
1808 $marcurl->{'linktext'} = $field->subfield('2') || C4
::Context
->preference('URLLinkText') || $url;
1809 $marcurl->{'MARCURL'} = $url;
1811 push @marcurls, $marcurl;
1817 =head2 GetMarcSeries
1819 $marcseriesarray = GetMarcSeries($record,$marcflavour);
1821 Get all series from the MARC record and returns them in an array.
1822 The series are stored in different fields depending on MARC flavour
1827 my ( $record, $marcflavour ) = @_;
1829 carp
'GetMarcSeries called on undefined record';
1833 my ( $mintag, $maxtag, $fields_filter );
1834 if ( $marcflavour eq "UNIMARC" ) {
1837 $fields_filter = '2..';
1838 } else { # marc21/normarc
1841 $fields_filter = '4..';
1845 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1847 foreach my $field ( $record->field($fields_filter) ) {
1848 next unless $field->tag() >= $mintag && $field->tag() <= $maxtag;
1850 my @subfields = $field->subfields();
1853 for my $series_subfield (@subfields) {
1855 # ignore $9, used for authority link
1856 next if ( $series_subfield->[0] eq '9' );
1859 my $code = $series_subfield->[0];
1860 my $value = $series_subfield->[1];
1861 my $linkvalue = $value;
1862 $linkvalue =~ s/(\(|\))//g;
1864 # see if this is an instance of a volume
1865 if ( $code eq 'v' ) {
1870 'link' => $linkvalue,
1871 operator
=> (scalar @link_loop) ?
' and ' : undef
1874 if ($volume_number) {
1875 push @subfields_loop, { volumenum
=> $value };
1877 push @subfields_loop, {
1880 link_loop
=> \
@link_loop,
1881 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : '',
1882 volumenum
=> $volume_number,
1886 push @marcseries, { MARCSERIES_SUBFIELDS_LOOP
=> \
@subfields_loop };
1889 return \
@marcseries;
1890 } #end getMARCseriess
1894 $marchostsarray = GetMarcHosts($record,$marcflavour);
1896 Get all host records (773s MARC21, 461 UNIMARC) from the MARC record and returns them in an array.
1901 my ( $record, $marcflavour ) = @_;
1903 carp
'GetMarcHosts called on undefined record';
1907 my ( $tag,$title_subf,$bibnumber_subf,$itemnumber_subf);
1908 $marcflavour ||="MARC21";
1909 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
1912 $bibnumber_subf ="0";
1913 $itemnumber_subf='9';
1915 elsif ($marcflavour eq "UNIMARC") {
1918 $bibnumber_subf ="0";
1919 $itemnumber_subf='9';
1924 foreach my $field ( $record->field($tag)) {
1928 my $hostbiblionumber = $field->subfield("$bibnumber_subf");
1929 my $hosttitle = $field->subfield($title_subf);
1930 my $hostitemnumber=$field->subfield($itemnumber_subf);
1931 push @fields_loop, { hostbiblionumber
=> $hostbiblionumber, hosttitle
=> $hosttitle, hostitemnumber
=> $hostitemnumber};
1932 push @marchosts, { MARCHOSTS_FIELDS_LOOP
=> \
@fields_loop };
1935 my $marchostsarray = \
@marchosts;
1936 return $marchostsarray;
1939 =head2 UpsertMarcSubfield
1941 my $record = C4::Biblio::UpsertMarcSubfield($MARC::Record, $fieldTag, $subfieldCode, $subfieldContent);
1945 sub UpsertMarcSubfield
{
1946 my ($record, $tag, $code, $content) = @_;
1947 my $f = $record->field($tag);
1950 $f->update( $code => $content );
1953 my $f = MARC
::Field
->new( $tag, '', '', $code => $content);
1954 $record->insert_fields_ordered( $f );
1958 =head2 UpsertMarcControlField
1960 my $record = C4::Biblio::UpsertMarcControlField($MARC::Record, $fieldTag, $content);
1964 sub UpsertMarcControlField
{
1965 my ($record, $tag, $content) = @_;
1966 die "UpsertMarcControlField() \$tag '$tag' is not a control field\n" unless 0+$tag < 10;
1967 my $f = $record->field($tag);
1970 $f->update( $content );
1973 my $f = MARC
::Field
->new($tag, $content);
1974 $record->insert_fields_ordered( $f );
1978 =head2 GetFrameworkCode
1980 $frameworkcode = GetFrameworkCode( $biblionumber )
1984 sub GetFrameworkCode
{
1985 my ($biblionumber) = @_;
1986 my $dbh = C4
::Context
->dbh;
1987 my $sth = $dbh->prepare("SELECT frameworkcode FROM biblio WHERE biblionumber=?");
1988 $sth->execute($biblionumber);
1989 my ($frameworkcode) = $sth->fetchrow;
1990 return $frameworkcode;
1993 =head2 TransformKohaToMarc
1995 $record = TransformKohaToMarc( $hash [, $params ] )
1997 This function builds a (partial) MARC::Record from a hash.
1998 Hash entries can be from biblio, biblioitems or items.
1999 The params hash includes the parameter no_split used in C4::Items.
2001 This function is called in acquisition module, to create a basic catalogue
2002 entry from user entry.
2007 sub TransformKohaToMarc
{
2008 my ( $hash, $params ) = @_;
2009 my $record = MARC
::Record
->new();
2010 SetMarcUnicodeFlag
( $record, C4
::Context
->preference("marcflavour") );
2012 # In the next call we use the Default framework, since it is considered
2013 # authoritative for Koha to Marc mappings.
2014 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # do not change framewok
2016 while ( my ($kohafield, $value) = each %$hash ) {
2017 foreach my $fld ( @
{ $mss->{$kohafield} } ) {
2018 my $tagfield = $fld->{tagfield
};
2019 my $tagsubfield = $fld->{tagsubfield
};
2021 my @values = $params->{no_split
}
2023 : split(/\s?\|\s?/, $value, -1);
2024 foreach my $value ( @values ) {
2025 next if $value eq '';
2026 $tag_hr->{$tagfield} //= [];
2027 push @
{$tag_hr->{$tagfield}}, [($tagsubfield, $value)];
2031 foreach my $tag (sort keys %$tag_hr) {
2032 my @sfl = @
{$tag_hr->{$tag}};
2033 @sfl = sort { $a->[0] cmp $b->[0]; } @sfl;
2034 @sfl = map { @
{$_}; } @sfl;
2035 # Special care for control fields: remove the subfield indication @
2036 # and do not insert indicators.
2037 my @ind = $tag < 10 ?
() : ( " ", " " );
2038 @sfl = grep { $_ ne '@' } @sfl if $tag < 10;
2039 $record->insert_fields_ordered( MARC
::Field
->new($tag, @ind, @sfl) );
2044 =head2 PrepHostMarcField
2046 $hostfield = PrepHostMarcField ( $hostbiblionumber,$hostitemnumber,$marcflavour )
2048 This function returns a host field populated with data from the host record, the field can then be added to an analytical record
2052 sub PrepHostMarcField
{
2053 my ($hostbiblionumber,$hostitemnumber, $marcflavour) = @_;
2054 $marcflavour ||="MARC21";
2056 my $hostrecord = GetMarcBiblio
({ biblionumber
=> $hostbiblionumber });
2057 my $item = Koha
::Items
->find($hostitemnumber);
2060 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
2064 if ($hostrecord->subfield('100','a')){
2065 $mainentry = $hostrecord->subfield('100','a');
2066 } elsif ($hostrecord->subfield('110','a')){
2067 $mainentry = $hostrecord->subfield('110','a');
2069 $mainentry = $hostrecord->subfield('111','a');
2072 # qualification info
2074 if (my $field260 = $hostrecord->field('260')){
2075 $qualinfo = $field260->as_string( 'abc' );
2080 my $ed = $hostrecord->subfield('250','a');
2081 my $barcode = $item->barcode;
2082 my $title = $hostrecord->subfield('245','a');
2084 # record control number, 001 with 003 and prefix
2086 if ($hostrecord->field('001')){
2087 $recctrlno = $hostrecord->field('001')->data();
2088 if ($hostrecord->field('003')){
2089 $recctrlno = '('.$hostrecord->field('003')->data().')'.$recctrlno;
2094 my $issn = $hostrecord->subfield('022','a');
2095 my $isbn = $hostrecord->subfield('020','a');
2098 $hostmarcfield = MARC
::Field
->new(
2100 '0' => $hostbiblionumber,
2101 '9' => $hostitemnumber,
2111 } elsif ($marcflavour eq "UNIMARC") {
2112 $hostmarcfield = MARC
::Field
->new(
2114 '0' => $hostbiblionumber,
2115 't' => $hostrecord->subfield('200','a'),
2116 '9' => $hostitemnumber
2120 return $hostmarcfield;
2123 =head2 TransformHtmlToXml
2125 $xml = TransformHtmlToXml( $tags, $subfields, $values, $indicator,
2126 $ind_tag, $auth_type )
2128 $auth_type contains :
2132 =item - nothing : rebuild a biblio. In UNIMARC the encoding is in 100$a pos 26/27
2134 =item - UNIMARCAUTH : rebuild an authority. In UNIMARC, the encoding is in 100$a pos 13/14
2136 =item - ITEM : rebuild an item : in UNIMARC, 100$a, it's in the biblio ! (otherwise, we would get 2 100 fields !)
2142 sub TransformHtmlToXml
{
2143 my ( $tags, $subfields, $values, $indicator, $ind_tag, $auth_type ) = @_;
2144 # NOTE: The parameter $ind_tag is NOT USED -- BZ 11247
2146 my $xml = MARC
::File
::XML
::header
('UTF-8');
2147 $xml .= "<record>\n";
2148 $auth_type = C4
::Context
->preference('marcflavour') unless $auth_type;
2149 MARC
::File
::XML
->default_record_format($auth_type);
2151 # in UNIMARC, field 100 contains the encoding
2152 # check that there is one, otherwise the
2153 # MARC::Record->new_from_xml will fail (and Koha will die)
2154 my $unimarc_and_100_exist = 0;
2155 $unimarc_and_100_exist = 1 if $auth_type eq 'ITEM'; # if we rebuild an item, no need of a 100 field
2161 for ( my $i = 0 ; $i < @
$tags ; $i++ ) {
2163 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' and @
$tags[$i] eq "100" and @
$subfields[$i] eq "a" ) {
2165 # if we have a 100 field and it's values are not correct, skip them.
2166 # if we don't have any valid 100 field, we will create a default one at the end
2167 my $enc = substr( @
$values[$i], 26, 2 );
2168 if ( $enc eq '01' or $enc eq '50' or $enc eq '03' ) {
2169 $unimarc_and_100_exist = 1;
2174 @
$values[$i] =~ s/&/&/g;
2175 @
$values[$i] =~ s/</</g;
2176 @
$values[$i] =~ s/>/>/g;
2177 @
$values[$i] =~ s/"/"/g;
2178 @
$values[$i] =~ s/'/'/g;
2180 if ( ( @
$tags[$i] ne $prevtag ) ) {
2181 $close_last_tag = 0;
2182 $j++ unless ( @
$tags[$i] eq "" );
2183 my $str = ( $indicator->[$j] // q{} ) . ' '; # extra space prevents substr outside of string warn
2184 my $ind1 = _default_ind_to_space
( substr( $str, 0, 1 ) );
2185 my $ind2 = _default_ind_to_space
( substr( $str, 1, 1 ) );
2187 $xml .= "</datafield>\n";
2188 if ( ( @
$tags[$i] && @
$tags[$i] > 10 )
2189 && ( @
$values[$i] ne "" ) ) {
2190 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2191 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2193 $close_last_tag = 1;
2198 if ( @
$values[$i] ne "" ) {
2201 if ( @
$tags[$i] eq "000" ) {
2202 $xml .= "<leader>@$values[$i]</leader>\n";
2205 # rest of the fixed fields
2206 } elsif ( @
$tags[$i] < 10 ) {
2207 $xml .= "<controlfield tag=\"@$tags[$i]\">@$values[$i]</controlfield>\n";
2210 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2211 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2213 $close_last_tag = 1;
2217 } else { # @$tags[$i] eq $prevtag
2218 if ( @
$values[$i] eq "" ) {
2221 my $str = ( $indicator->[$j] // q{} ) . ' '; # extra space prevents substr outside of string warn
2222 my $ind1 = _default_ind_to_space
( substr( $str, 0, 1 ) );
2223 my $ind2 = _default_ind_to_space
( substr( $str, 1, 1 ) );
2224 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2226 $close_last_tag = 1;
2228 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2231 $prevtag = @
$tags[$i];
2233 $xml .= "</datafield>\n" if $close_last_tag;
2234 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' and !$unimarc_and_100_exist ) {
2236 # warn "SETTING 100 for $auth_type";
2237 my $string = strftime
( "%Y%m%d", localtime(time) );
2239 # set 50 to position 26 is biblios, 13 if authorities
2241 $pos = 13 if $auth_type eq 'UNIMARCAUTH';
2242 $string = sprintf( "%-*s", 35, $string );
2243 substr( $string, $pos, 6, "50" );
2244 $xml .= "<datafield tag=\"100\" ind1=\"\" ind2=\"\">\n";
2245 $xml .= "<subfield code=\"a\">$string</subfield>\n";
2246 $xml .= "</datafield>\n";
2248 $xml .= "</record>\n";
2249 $xml .= MARC
::File
::XML
::footer
();
2253 =head2 _default_ind_to_space
2255 Passed what should be an indicator returns a space
2256 if its undefined or zero length
2260 sub _default_ind_to_space
{
2262 if ( !defined $s || $s eq q{} ) {
2268 =head2 TransformHtmlToMarc
2270 L<$record> = TransformHtmlToMarc(L<$cgi>)
2271 L<$cgi> is the CGI object which contains the values for subfields
2273 'tag_010_indicator1_531951' ,
2274 'tag_010_indicator2_531951' ,
2275 'tag_010_code_a_531951_145735' ,
2276 'tag_010_subfield_a_531951_145735' ,
2277 'tag_200_indicator1_873510' ,
2278 'tag_200_indicator2_873510' ,
2279 'tag_200_code_a_873510_673465' ,
2280 'tag_200_subfield_a_873510_673465' ,
2281 'tag_200_code_b_873510_704318' ,
2282 'tag_200_subfield_b_873510_704318' ,
2283 'tag_200_code_e_873510_280822' ,
2284 'tag_200_subfield_e_873510_280822' ,
2285 'tag_200_code_f_873510_110730' ,
2286 'tag_200_subfield_f_873510_110730' ,
2288 L<$record> is the MARC::Record object.
2292 sub TransformHtmlToMarc
{
2293 my ($cgi, $isbiblio) = @_;
2295 my @params = $cgi->multi_param();
2297 # explicitly turn on the UTF-8 flag for all
2298 # 'tag_' parameters to avoid incorrect character
2299 # conversion later on
2300 my $cgi_params = $cgi->Vars;
2301 foreach my $param_name ( keys %$cgi_params ) {
2302 if ( $param_name =~ /^tag_/ ) {
2303 my $param_value = $cgi_params->{$param_name};
2304 unless ( Encode
::is_utf8
( $param_value ) ) {
2305 $cgi_params->{$param_name} = Encode
::decode
('UTF-8', $param_value );
2310 # creating a new record
2311 my $record = MARC
::Record
->new();
2313 my ($biblionumbertagfield, $biblionumbertagsubfield) = (-1, -1);
2314 ($biblionumbertagfield, $biblionumbertagsubfield) =
2315 &GetMarcFromKohaField
( "biblio.biblionumber", '' ) if $isbiblio;
2316 #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!
2317 for (my $i = 0; $params[$i]; $i++ ) { # browse all CGI params
2318 my $param = $params[$i];
2321 # if we are on biblionumber, store it in the MARC::Record (it may not be in the edited fields)
2322 if ( $param eq 'biblionumber' ) {
2323 if ( $biblionumbertagfield < 10 ) {
2324 $newfield = MARC
::Field
->new( $biblionumbertagfield, scalar $cgi->param($param), );
2326 $newfield = MARC
::Field
->new( $biblionumbertagfield, '', '', "$biblionumbertagsubfield" => scalar $cgi->param($param), );
2328 push @fields, $newfield if ($newfield);
2329 } elsif ( $param =~ /^tag_(\d*)_indicator1_/ ) { # new field start when having 'input name="..._indicator1_..."
2332 my $ind1 = _default_ind_to_space
( substr( $cgi->param($param), 0, 1 ) );
2333 my $ind2 = _default_ind_to_space
( substr( $cgi->param( $params[ $i + 1 ] ), 0, 1 ) );
2337 if ( $tag < 10 ) { # no code for theses fields
2338 # in MARC editor, 000 contains the leader.
2339 next if $tag == $biblionumbertagfield;
2340 my $fval= $cgi->param($params[$j+1]);
2341 if ( $tag eq '000' ) {
2342 # Force a fake leader even if not provided to avoid crashing
2343 # during decoding MARC record containing UTF-8 characters
2345 length( $fval ) == 24
2350 # between 001 and 009 (included)
2351 } elsif ( $fval ne '' ) {
2352 $newfield = MARC
::Field
->new( $tag, $fval, );
2355 # > 009, deal with subfields
2357 # browse subfields for this tag (reason for _code_ match)
2358 while(defined $params[$j] && $params[$j] =~ /_code_/) {
2359 last unless defined $params[$j+1];
2361 if $tag == $biblionumbertagfield and
2362 $cgi->param($params[$j]) eq $biblionumbertagsubfield;
2363 #if next param ne subfield, then it was probably empty
2364 #try next param by incrementing j
2365 if($params[$j+1]!~/_subfield_/) {$j++; next; }
2366 my $fkey= $cgi->param($params[$j]);
2367 my $fval= $cgi->param($params[$j+1]);
2368 #check if subfield value not empty and field exists
2369 if($fval ne '' && $newfield) {
2370 $newfield->add_subfields( $fkey => $fval);
2372 elsif($fval ne '') {
2373 $newfield = MARC
::Field
->new( $tag, $ind1, $ind2, $fkey => $fval );
2377 $i= $j-1; #update i for outer loop accordingly
2379 push @fields, $newfield if ($newfield);
2383 $record->append_fields(@fields);
2387 =head2 TransformMarcToKoha
2389 $result = TransformMarcToKoha( $record, undef, $limit )
2391 Extract data from a MARC bib record into a hashref representing
2392 Koha biblio, biblioitems, and items fields.
2394 If passed an undefined record will log the error and return an empty
2399 sub TransformMarcToKoha
{
2400 my ( $record, $frameworkcode, $limit_table ) = @_;
2401 # FIXME Parameter $frameworkcode is obsolete and will be removed
2402 $limit_table //= q{};
2405 if (!defined $record) {
2406 carp
('TransformMarcToKoha called with undefined record');
2410 my %tables = ( biblio
=> 1, biblioitems
=> 1, items
=> 1 );
2411 if( $limit_table eq 'items' ) {
2412 %tables = ( items
=> 1 );
2415 # The next call acknowledges Default as the authoritative framework
2416 # for Koha to MARC mappings.
2417 my $mss = GetMarcSubfieldStructure
( '', { unsafe
=> 1 } ); # Do not change framework
2418 foreach my $kohafield ( keys %{ $mss } ) {
2419 my ( $table, $column ) = split /[.]/, $kohafield, 2;
2420 next unless $tables{$table};
2421 my $val = TransformMarcToKohaOneField
( $kohafield, $record );
2422 next if !defined $val;
2423 my $key = _disambiguate
( $table, $column );
2424 $result->{$key} = $val;
2429 =head2 _disambiguate
2431 $newkey = _disambiguate($table, $field);
2433 This is a temporary hack to distinguish between the
2434 following sets of columns when using TransformMarcToKoha.
2436 items.cn_source & biblioitems.cn_source
2437 items.cn_sort & biblioitems.cn_sort
2439 Columns that are currently NOT distinguished (FIXME
2440 due to lack of time to fully test) are:
2442 biblio.notes and biblioitems.notes
2447 FIXME - this is necessary because prefixing each column
2448 name with the table name would require changing lots
2449 of code and templates, and exposing more of the DB
2450 structure than is good to the UI templates, particularly
2451 since biblio and bibloitems may well merge in a future
2452 version. In the future, it would also be good to
2453 separate DB access and UI presentation field names
2459 my ( $table, $column ) = @_;
2460 if ( $column eq "cn_sort" or $column eq "cn_source" ) {
2461 return $table . '.' . $column;
2468 =head2 TransformMarcToKohaOneField
2470 $val = TransformMarcToKohaOneField( 'biblio.title', $marc );
2472 Note: The authoritative Default framework is used implicitly.
2476 sub TransformMarcToKohaOneField
{
2477 my ( $kohafield, $marc ) = @_;
2479 my ( @rv, $retval );
2480 my @mss = GetMarcSubfieldStructureFromKohaField
($kohafield);
2481 foreach my $fldhash ( @mss ) {
2482 my $tag = $fldhash->{tagfield
};
2483 my $sub = $fldhash->{tagsubfield
};
2484 foreach my $fld ( $marc->field($tag) ) {
2485 if( $sub eq '@' || $fld->is_control_field ) {
2486 push @rv, $fld->data if $fld->data;
2488 push @rv, grep { $_ } $fld->subfield($sub);
2493 $retval = join ' | ', uniq
(@rv);
2495 # Additional polishing for individual kohafields
2496 if( $kohafield =~ /copyrightdate|publicationyear/ ) {
2497 $retval = _adjust_pubyear
( $retval );
2503 =head2 _adjust_pubyear
2505 Helper routine for TransformMarcToKohaOneField
2509 sub _adjust_pubyear
{
2511 # modify return value to keep only the 1st year found
2512 if( $retval =~ m/c(\d\d\d\d)/ and $1 > 0 ) { # search cYYYY first
2514 } elsif( $retval =~ m/(\d\d\d\d)/ && $1 > 0 ) {
2516 } elsif( $retval =~ m
/
2517 (?
<year
>\d
)[-]?
[.Xx?
]{3}
2518 |(?
<year
>\d
{2})[.Xx?
]{2}
2519 |(?
<year
>\d
{3})[.Xx?
]
2520 |(?
<year
>\d
)[-]{3}\?
2521 |(?
<year
>\d\d
)[-]{2}\?
2522 |(?
<year
>\d
{3})[-]\?
2523 /xms
) { # the form 198-? occurred in Dutch ISBD rules
2524 my $digits = $+{year
};
2525 $retval = $digits * ( 10 ** ( 4 - length($digits) ));
2530 =head2 CountItemsIssued
2532 my $count = CountItemsIssued( $biblionumber );
2536 sub CountItemsIssued
{
2537 my ($biblionumber) = @_;
2538 my $dbh = C4
::Context
->dbh;
2539 my $sth = $dbh->prepare('SELECT COUNT(*) as issuedCount FROM items, issues WHERE items.itemnumber = issues.itemnumber AND items.biblionumber = ?');
2540 $sth->execute($biblionumber);
2541 my $row = $sth->fetchrow_hashref();
2542 return $row->{'issuedCount'};
2547 ModZebra( $biblionumber, $op, $server, $record );
2549 $biblionumber is the biblionumber we want to index
2551 $op is specialUpdate or recordDelete, and is used to know what we want to do
2553 $server is the server that we want to update
2555 $record is the update MARC record if it's available. If it's not supplied
2556 and is needed, it'll be loaded from the database.
2561 ###Accepts a $server variable thus we can use it for biblios authorities or other zebra dbs
2562 my ( $biblionumber, $op, $server, $record ) = @_;
2563 $debug && warn "ModZebra: update requested for: $biblionumber $op $server\n";
2564 if ( C4
::Context
->preference('SearchEngine') eq 'Elasticsearch' ) {
2566 # TODO abstract to a standard API that'll work for whatever
2567 require Koha
::SearchEngine
::Elasticsearch
::Indexer
;
2568 my $indexer = Koha
::SearchEngine
::Elasticsearch
::Indexer
->new(
2570 index => $server eq 'biblioserver'
2571 ?
$Koha::SearchEngine
::BIBLIOS_INDEX
2572 : $Koha::SearchEngine
::AUTHORITIES_INDEX
2575 if ( $op eq 'specialUpdate' ) {
2577 $record = GetMarcBiblio
({
2578 biblionumber
=> $biblionumber,
2579 embed_items
=> 1 });
2581 my $records = [$record];
2582 $indexer->update_index_background( [$biblionumber], [$record] );
2584 elsif ( $op eq 'recordDelete' ) {
2585 $indexer->delete_index_background( [$biblionumber] );
2588 croak
"ModZebra called with unknown operation: $op";
2592 my $dbh = C4
::Context
->dbh;
2594 # true ModZebra commented until indexdata fixes zebraDB crashes (it seems they occur on multiple updates
2596 # replaced by a zebraqueue table, that is filled with ModZebra to run.
2597 # the table is emptied by rebuild_zebra.pl script (using the -z switch)
2598 my $check_sql = "SELECT COUNT(*) FROM zebraqueue
2600 AND biblio_auth_number = ?
2603 my $check_sth = $dbh->prepare_cached($check_sql);
2604 $check_sth->execute( $server, $biblionumber, $op );
2605 my ($count) = $check_sth->fetchrow_array;
2606 $check_sth->finish();
2607 if ( $count == 0 ) {
2608 my $sth = $dbh->prepare("INSERT INTO zebraqueue (biblio_auth_number,server,operation) VALUES(?,?,?)");
2609 $sth->execute( $biblionumber, $server, $op );
2615 =head2 EmbedItemsInMarcBiblio
2617 EmbedItemsInMarcBiblio({
2618 marc_record => $marc,
2619 biblionumber => $biblionumber,
2620 item_numbers => $itemnumbers,
2623 Given a MARC::Record object containing a bib record,
2624 modify it to include the items attached to it as 9XX
2625 per the bib's MARC framework.
2626 if $itemnumbers is defined, only specified itemnumbers are embedded.
2628 If $opac is true, then opac-relevant suppressions are included.
2630 If opac filtering will be done, borcat should be passed to properly
2631 override if necessary.
2635 sub EmbedItemsInMarcBiblio
{
2637 my ($marc, $biblionumber, $itemnumbers, $opac, $borcat);
2638 $marc = $params->{marc_record
};
2640 carp
'EmbedItemsInMarcBiblio: No MARC record passed';
2643 $biblionumber = $params->{biblionumber
};
2644 $itemnumbers = $params->{item_numbers
};
2645 $opac = $params->{opac
};
2646 $borcat = $params->{borcat
} // q{};
2648 $itemnumbers = [] unless defined $itemnumbers;
2650 my $frameworkcode = GetFrameworkCode
($biblionumber);
2651 _strip_item_fields
($marc, $frameworkcode);
2653 # ... and embed the current items
2654 my $dbh = C4
::Context
->dbh;
2655 my $sth = $dbh->prepare("SELECT itemnumber FROM items WHERE biblionumber = ?");
2656 $sth->execute($biblionumber);
2657 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField
( "items.itemnumber" );
2659 my @item_fields; # Array holding the actual MARC data for items to be included.
2660 my @items; # Array holding items which are both in the list (sitenumbers)
2661 # and on this biblionumber
2663 # Flag indicating if there is potential hiding.
2664 my $opachiddenitems = $opac
2665 && ( C4
::Context
->preference('OpacHiddenItems') !~ /^\s*$/ );
2668 while ( my ($itemnumber) = $sth->fetchrow_array ) {
2669 next if @
$itemnumbers and not grep { $_ == $itemnumber } @
$itemnumbers;
2671 if ( $opachiddenitems ) {
2672 $item = Koha
::Items
->find($itemnumber);
2673 $item = $item ?
$item->unblessed : undef;
2675 push @items, { itemnumber
=> $itemnumber, item
=> $item };
2677 my @items2pass = map { $_->{item
} } @items;
2680 ? C4
::Items
::GetHiddenItemnumbers
({
2681 items
=> \
@items2pass,
2682 borcat
=> $borcat })
2684 # Convert to a hash for quick searching
2685 my %hiddenitems = map { $_ => 1 } @hiddenitems;
2686 foreach my $itemnumber ( map { $_->{itemnumber
} } @items ) {
2687 next if $hiddenitems{$itemnumber};
2688 my $item_marc = C4
::Items
::GetMarcItem
( $biblionumber, $itemnumber );
2689 push @item_fields, $item_marc->field($itemtag);
2691 $marc->append_fields(@item_fields);
2694 =head1 INTERNAL FUNCTIONS
2696 =head2 _koha_marc_update_bib_ids
2699 _koha_marc_update_bib_ids($record, $frameworkcode, $biblionumber, $biblioitemnumber);
2701 Internal function to add or update biblionumber and biblioitemnumber to
2706 sub _koha_marc_update_bib_ids
{
2707 my ( $record, $frameworkcode, $biblionumber, $biblioitemnumber ) = @_;
2709 my ( $biblio_tag, $biblio_subfield ) = GetMarcFromKohaField
( "biblio.biblionumber" );
2710 die qq{No biblionumber tag
for framework
"$frameworkcode"} unless $biblio_tag;
2711 my ( $biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField
( "biblioitems.biblioitemnumber" );
2712 die qq{No biblioitemnumber tag
for framework
"$frameworkcode"} unless $biblioitem_tag;
2714 if ( $biblio_tag < 10 ) {
2715 C4
::Biblio
::UpsertMarcControlField
( $record, $biblio_tag, $biblionumber );
2717 C4
::Biblio
::UpsertMarcSubfield
($record, $biblio_tag, $biblio_subfield, $biblionumber);
2719 if ( $biblioitem_tag < 10 ) {
2720 C4
::Biblio
::UpsertMarcControlField
( $record, $biblioitem_tag, $biblioitemnumber );
2722 C4
::Biblio
::UpsertMarcSubfield
($record, $biblioitem_tag, $biblioitem_subfield, $biblioitemnumber);
2726 =head2 _koha_marc_update_biblioitem_cn_sort
2728 _koha_marc_update_biblioitem_cn_sort($marc, $biblioitem, $frameworkcode);
2730 Given a MARC bib record and the biblioitem hash, update the
2731 subfield that contains a copy of the value of biblioitems.cn_sort.
2735 sub _koha_marc_update_biblioitem_cn_sort
{
2737 my $biblioitem = shift;
2738 my $frameworkcode = shift;
2740 my ( $biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField
( "biblioitems.cn_sort" );
2741 return unless $biblioitem_tag;
2743 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2745 if ( my $field = $marc->field($biblioitem_tag) ) {
2746 $field->delete_subfield( code
=> $biblioitem_subfield );
2747 if ( $cn_sort ne '' ) {
2748 $field->add_subfields( $biblioitem_subfield => $cn_sort );
2752 # if we get here, no biblioitem tag is present in the MARC record, so
2753 # we'll create it if $cn_sort is not empty -- this would be
2754 # an odd combination of events, however
2756 $marc->insert_grouped_field( MARC
::Field
->new( $biblioitem_tag, ' ', ' ', $biblioitem_subfield => $cn_sort ) );
2761 =head2 _koha_add_biblio
2763 my ($biblionumber,$error) = _koha_add_biblio($dbh,$biblioitem);
2765 Internal function to add a biblio ($biblio is a hash with the values)
2769 sub _koha_add_biblio
{
2770 my ( $dbh, $biblio, $frameworkcode ) = @_;
2774 # set the series flag
2775 unless (defined $biblio->{'serial'}){
2776 $biblio->{'serial'} = 0;
2777 if ( $biblio->{'seriestitle'} ) { $biblio->{'serial'} = 1 }
2780 my $query = "INSERT INTO biblio
2781 SET frameworkcode = ?,
2792 my $sth = $dbh->prepare($query);
2794 $frameworkcode, $biblio->{'author'}, $biblio->{'title'}, $biblio->{'unititle'}, $biblio->{'notes'},
2795 $biblio->{'serial'}, $biblio->{'seriestitle'}, $biblio->{'copyrightdate'}, $biblio->{'abstract'}
2798 my $biblionumber = $dbh->{'mysql_insertid'};
2799 if ( $dbh->errstr ) {
2800 $error .= "ERROR in _koha_add_biblio $query" . $dbh->errstr;
2806 #warn "LEAVING _koha_add_biblio: ".$biblionumber."\n";
2807 return ( $biblionumber, $error );
2810 =head2 _koha_modify_biblio
2812 my ($biblionumber,$error) == _koha_modify_biblio($dbh,$biblio,$frameworkcode);
2814 Internal function for updating the biblio table
2818 sub _koha_modify_biblio
{
2819 my ( $dbh, $biblio, $frameworkcode ) = @_;
2824 SET frameworkcode = ?,
2833 WHERE biblionumber = ?
2836 my $sth = $dbh->prepare($query);
2839 $frameworkcode, $biblio->{'author'}, $biblio->{'title'}, $biblio->{'unititle'}, $biblio->{'notes'},
2840 $biblio->{'serial'}, $biblio->{'seriestitle'}, $biblio->{'copyrightdate'} ?
int($biblio->{'copyrightdate'}) : undef, $biblio->{'abstract'}, $biblio->{'biblionumber'}
2841 ) if $biblio->{'biblionumber'};
2843 if ( $dbh->errstr || !$biblio->{'biblionumber'} ) {
2844 $error .= "ERROR in _koha_modify_biblio $query" . $dbh->errstr;
2847 return ( $biblio->{'biblionumber'}, $error );
2850 =head2 _koha_modify_biblioitem_nonmarc
2852 my ($biblioitemnumber,$error) = _koha_modify_biblioitem_nonmarc( $dbh, $biblioitem );
2856 sub _koha_modify_biblioitem_nonmarc
{
2857 my ( $dbh, $biblioitem ) = @_;
2860 # re-calculate the cn_sort, it may have changed
2861 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2863 my $query = "UPDATE biblioitems
2864 SET biblionumber = ?,
2870 publicationyear = ?,
2874 collectiontitle = ?,
2876 collectionvolume= ?,
2877 editionstatement= ?,
2878 editionresponsibility = ?,
2894 where biblioitemnumber = ?
2896 my $sth = $dbh->prepare($query);
2898 $biblioitem->{'biblionumber'}, $biblioitem->{'volume'}, $biblioitem->{'number'}, $biblioitem->{'itemtype'},
2899 $biblioitem->{'isbn'}, $biblioitem->{'issn'}, $biblioitem->{'publicationyear'}, $biblioitem->{'publishercode'},
2900 $biblioitem->{'volumedate'}, $biblioitem->{'volumedesc'}, $biblioitem->{'collectiontitle'}, $biblioitem->{'collectionissn'},
2901 $biblioitem->{'collectionvolume'}, $biblioitem->{'editionstatement'}, $biblioitem->{'editionresponsibility'}, $biblioitem->{'illus'},
2902 $biblioitem->{'pages'}, $biblioitem->{'bnotes'}, $biblioitem->{'size'}, $biblioitem->{'place'},
2903 $biblioitem->{'lccn'}, $biblioitem->{'url'}, $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'},
2904 $biblioitem->{'cn_item'}, $biblioitem->{'cn_suffix'}, $cn_sort, $biblioitem->{'totalissues'},
2905 $biblioitem->{'ean'}, $biblioitem->{'agerestriction'}, $biblioitem->{'biblioitemnumber'}
2907 if ( $dbh->errstr ) {
2908 $error .= "ERROR in _koha_modify_biblioitem_nonmarc $query" . $dbh->errstr;
2911 return ( $biblioitem->{'biblioitemnumber'}, $error );
2914 =head2 _koha_add_biblioitem
2916 my ($biblioitemnumber,$error) = _koha_add_biblioitem( $dbh, $biblioitem );
2918 Internal function to add a biblioitem
2922 sub _koha_add_biblioitem
{
2923 my ( $dbh, $biblioitem ) = @_;
2926 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
2927 my $query = "INSERT INTO biblioitems SET
2934 publicationyear = ?,
2938 collectiontitle = ?,
2940 collectionvolume= ?,
2941 editionstatement= ?,
2942 editionresponsibility = ?,
2959 my $sth = $dbh->prepare($query);
2961 $biblioitem->{'biblionumber'}, $biblioitem->{'volume'}, $biblioitem->{'number'}, $biblioitem->{'itemtype'},
2962 $biblioitem->{'isbn'}, $biblioitem->{'issn'}, $biblioitem->{'publicationyear'}, $biblioitem->{'publishercode'},
2963 $biblioitem->{'volumedate'}, $biblioitem->{'volumedesc'}, $biblioitem->{'collectiontitle'}, $biblioitem->{'collectionissn'},
2964 $biblioitem->{'collectionvolume'}, $biblioitem->{'editionstatement'}, $biblioitem->{'editionresponsibility'}, $biblioitem->{'illus'},
2965 $biblioitem->{'pages'}, $biblioitem->{'bnotes'}, $biblioitem->{'size'}, $biblioitem->{'place'},
2966 $biblioitem->{'lccn'}, $biblioitem->{'url'}, $biblioitem->{'biblioitems.cn_source'},
2967 $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'}, $biblioitem->{'cn_suffix'}, $cn_sort,
2968 $biblioitem->{'totalissues'}, $biblioitem->{'ean'}, $biblioitem->{'agerestriction'}
2970 my $bibitemnum = $dbh->{'mysql_insertid'};
2972 if ( $dbh->errstr ) {
2973 $error .= "ERROR in _koha_add_biblioitem $query" . $dbh->errstr;
2977 return ( $bibitemnum, $error );
2980 =head2 _koha_delete_biblio
2982 $error = _koha_delete_biblio($dbh,$biblionumber);
2984 Internal sub for deleting from biblio table -- also saves to deletedbiblio
2986 C<$dbh> - the database handle
2988 C<$biblionumber> - the biblionumber of the biblio to be deleted
2992 # FIXME: add error handling
2994 sub _koha_delete_biblio
{
2995 my ( $dbh, $biblionumber ) = @_;
2997 # get all the data for this biblio
2998 my $sth = $dbh->prepare("SELECT * FROM biblio WHERE biblionumber=?");
2999 $sth->execute($biblionumber);
3001 # FIXME There is a transaction in _koha_delete_biblio_metadata
3002 # But actually all the following should be done inside a single transaction
3003 if ( my $data = $sth->fetchrow_hashref ) {
3005 # save the record in deletedbiblio
3006 # find the fields to save
3007 my $query = "INSERT INTO deletedbiblio SET ";
3009 foreach my $temp ( keys %$data ) {
3010 $query .= "$temp = ?,";
3011 push( @bind, $data->{$temp} );
3014 # replace the last , by ",?)"
3016 my $bkup_sth = $dbh->prepare($query);
3017 $bkup_sth->execute(@bind);
3020 _koha_delete_biblio_metadata
( $biblionumber );
3023 my $sth2 = $dbh->prepare("DELETE FROM biblio WHERE biblionumber=?");
3024 $sth2->execute($biblionumber);
3025 # update the timestamp (Bugzilla 7146)
3026 $sth2= $dbh->prepare("UPDATE deletedbiblio SET timestamp=NOW() WHERE biblionumber=?");
3027 $sth2->execute($biblionumber);
3034 =head2 _koha_delete_biblioitems
3036 $error = _koha_delete_biblioitems($dbh,$biblioitemnumber);
3038 Internal sub for deleting from biblioitems table -- also saves to deletedbiblioitems
3040 C<$dbh> - the database handle
3041 C<$biblionumber> - the biblioitemnumber of the biblioitem to be deleted
3045 # FIXME: add error handling
3047 sub _koha_delete_biblioitems
{
3048 my ( $dbh, $biblioitemnumber ) = @_;
3050 # get all the data for this biblioitem
3051 my $sth = $dbh->prepare("SELECT * FROM biblioitems WHERE biblioitemnumber=?");
3052 $sth->execute($biblioitemnumber);
3054 if ( my $data = $sth->fetchrow_hashref ) {
3056 # save the record in deletedbiblioitems
3057 # find the fields to save
3058 my $query = "INSERT INTO deletedbiblioitems SET ";
3060 foreach my $temp ( keys %$data ) {
3061 $query .= "$temp = ?,";
3062 push( @bind, $data->{$temp} );
3065 # replace the last , by ",?)"
3067 my $bkup_sth = $dbh->prepare($query);
3068 $bkup_sth->execute(@bind);
3071 # delete the biblioitem
3072 my $sth2 = $dbh->prepare("DELETE FROM biblioitems WHERE biblioitemnumber=?");
3073 $sth2->execute($biblioitemnumber);
3074 # update the timestamp (Bugzilla 7146)
3075 $sth2= $dbh->prepare("UPDATE deletedbiblioitems SET timestamp=NOW() WHERE biblioitemnumber=?");
3076 $sth2->execute($biblioitemnumber);
3083 =head2 _koha_delete_biblio_metadata
3085 $error = _koha_delete_biblio_metadata($biblionumber);
3087 C<$biblionumber> - the biblionumber of the biblio metadata to be deleted
3091 sub _koha_delete_biblio_metadata
{
3092 my ($biblionumber) = @_;
3094 my $dbh = C4
::Context
->dbh;
3095 my $schema = Koha
::Database
->new->schema;
3099 INSERT INTO deletedbiblio_metadata
(biblionumber
, format
, `schema`, metadata
)
3100 SELECT biblionumber
, format
, `schema`, metadata FROM biblio_metadata WHERE biblionumber
=?
3101 |, undef, $biblionumber );
3102 $dbh->do( q
|DELETE FROM biblio_metadata WHERE biblionumber
=?
|,
3103 undef, $biblionumber );
3108 =head1 UNEXPORTED FUNCTIONS
3110 =head2 ModBiblioMarc
3112 &ModBiblioMarc($newrec,$biblionumber,$frameworkcode);
3114 Add MARC XML data for a biblio to koha
3116 Function exported, but should NOT be used, unless you really know what you're doing
3121 # pass the MARC::Record to this function, and it will create the records in
3123 my ( $record, $biblionumber, $frameworkcode ) = @_;
3125 carp
'ModBiblioMarc passed an undefined record';
3129 # Clone record as it gets modified
3130 $record = $record->clone();
3131 my $dbh = C4
::Context
->dbh;
3132 my @fields = $record->fields();
3133 if ( !$frameworkcode ) {
3134 $frameworkcode = "";
3136 my $sth = $dbh->prepare("UPDATE biblio SET frameworkcode=? WHERE biblionumber=?");
3137 $sth->execute( $frameworkcode, $biblionumber );
3139 my $encoding = C4
::Context
->preference("marcflavour");
3141 # deal with UNIMARC field 100 (encoding) : create it if needed & set encoding to unicode
3142 if ( $encoding eq "UNIMARC" ) {
3143 my $defaultlanguage = C4
::Context
->preference("UNIMARCField100Language");
3144 $defaultlanguage = "fre" if (!$defaultlanguage || length($defaultlanguage) != 3);
3145 my $string = $record->subfield( 100, "a" );
3146 if ( ($string) && ( length( $record->subfield( 100, "a" ) ) == 36 ) ) {
3147 my $f100 = $record->field(100);
3148 $record->delete_field($f100);
3150 $string = POSIX
::strftime
( "%Y%m%d", localtime );
3152 $string = sprintf( "%-*s", 35, $string );
3153 substr ( $string, 22, 3, $defaultlanguage);
3155 substr( $string, 25, 3, "y50" );
3156 unless ( $record->subfield( 100, "a" ) ) {
3157 $record->insert_fields_ordered( MARC
::Field
->new( 100, "", "", "a" => $string ) );
3161 #enhancement 5374: update transaction date (005) for marc21/unimarc
3162 if($encoding =~ /MARC21|UNIMARC/) {
3163 my @a= (localtime) [5,4,3,2,1,0]; $a[0]+=1900; $a[1]++;
3164 # YY MM DD HH MM SS (update year and month)
3165 my $f005= $record->field('005');
3166 $f005->update(sprintf("%4d%02d%02d%02d%02d%04.1f",@a)) if $f005;
3170 biblionumber
=> $biblionumber,
3171 format
=> 'marcxml',
3172 schema
=> C4
::Context
->preference('marcflavour'),
3174 $record->as_usmarc; # Bug 20126/10455 This triggers field length calculation
3176 my $m_rs = Koha
::Biblio
::Metadatas
->find($metadata) //
3177 Koha
::Biblio
::Metadata
->new($metadata);
3179 my $userenv = C4
::Context
->userenv;
3181 my $borrowernumber = $userenv->{number
};
3182 my $borrowername = join ' ', map { $_ // q{} } @
$userenv{qw(firstname surname)};
3183 unless ($m_rs->in_storage) {
3184 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForCreatorId'), $borrowernumber);
3185 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForCreatorName'), $borrowername);
3187 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForModifierId'), $borrowernumber);
3188 Koha
::Util
::MARC
::set_marc_field
($record, C4
::Context
->preference('MarcFieldForModifierName'), $borrowername);
3191 $m_rs->metadata( $record->as_xml_record($encoding) );
3194 ModZebra
( $biblionumber, "specialUpdate", "biblioserver" );
3196 return $biblionumber;
3199 =head2 CountBiblioInOrders
3201 $count = &CountBiblioInOrders( $biblionumber);
3203 This function return count of biblios in orders with $biblionumber
3207 sub CountBiblioInOrders
{
3208 my ($biblionumber) = @_;
3209 my $dbh = C4
::Context
->dbh;
3210 my $query = "SELECT count(*)
3212 WHERE biblionumber=? AND (datecancellationprinted IS NULL OR datecancellationprinted='0000-00-00')";
3213 my $sth = $dbh->prepare($query);
3214 $sth->execute($biblionumber);
3215 my $count = $sth->fetchrow;
3219 =head2 prepare_host_field
3221 $marcfield = prepare_host_field( $hostbiblioitem, $marcflavour );
3222 Generate the host item entry for an analytic child entry
3226 sub prepare_host_field
{
3227 my ( $hostbiblio, $marcflavour ) = @_;
3228 $marcflavour ||= C4
::Context
->preference('marcflavour');
3229 my $host = GetMarcBiblio
({ biblionumber
=> $hostbiblio });
3230 # unfortunately as_string does not 'do the right thing'
3231 # if field returns undef
3235 if ( $marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC' ) {
3236 if ( $field = $host->field('100') || $host->field('110') || $host->field('11') ) {
3237 my $s = $field->as_string('ab');
3242 if ( $field = $host->field('245') ) {
3243 my $s = $field->as_string('a');
3248 if ( $field = $host->field('260') ) {
3249 my $s = $field->as_string('abc');
3254 if ( $field = $host->field('240') ) {
3255 my $s = $field->as_string();
3260 if ( $field = $host->field('022') ) {
3261 my $s = $field->as_string('a');
3266 if ( $field = $host->field('020') ) {
3267 my $s = $field->as_string('a');
3272 if ( $field = $host->field('001') ) {
3273 $sfd{w
} = $field->data(),;
3275 $host_field = MARC
::Field
->new( 773, '0', ' ', %sfd );
3278 elsif ( $marcflavour eq 'UNIMARC' ) {
3280 if ( $field = $host->field('700') || $host->field('710') || $host->field('720') ) {
3281 my $s = $field->as_string('ab');
3287 if ( $field = $host->field('200') ) {
3288 my $s = $field->as_string('a');
3293 #place of publicaton
3294 if ( $field = $host->field('210') ) {
3295 my $s = $field->as_string('a');
3300 #date of publication
3301 if ( $field = $host->field('210') ) {
3302 my $s = $field->as_string('d');
3308 if ( $field = $host->field('205') ) {
3309 my $s = $field->as_string();
3315 if ( $field = $host->field('856') ) {
3316 my $s = $field->as_string('u');
3322 if ( $field = $host->field('011') ) {
3323 my $s = $field->as_string('a');
3329 if ( $field = $host->field('010') ) {
3330 my $s = $field->as_string('a');
3335 if ( $field = $host->field('001') ) {
3336 $sfd{0} = $field->data(),;
3338 $host_field = MARC
::Field
->new( 461, '0', ' ', %sfd );
3345 =head2 UpdateTotalIssues
3347 UpdateTotalIssues($biblionumber, $increase, [$value])
3349 Update the total issue count for a particular bib record.
3353 =item C<$biblionumber> is the biblionumber of the bib to update
3355 =item C<$increase> is the amount to increase (or decrease) the total issues count by
3357 =item C<$value> is the absolute value that total issues count should be set to. If provided, C<$increase> is ignored.
3363 sub UpdateTotalIssues
{
3364 my ($biblionumber, $increase, $value) = @_;
3367 my $record = GetMarcBiblio
({ biblionumber
=> $biblionumber });
3369 carp
"UpdateTotalIssues could not get biblio record";
3372 my $biblio = Koha
::Biblios
->find( $biblionumber );
3374 carp
"UpdateTotalIssues could not get datas of biblio";
3377 my $biblioitem = $biblio->biblioitem;
3378 my ($totalissuestag, $totalissuessubfield) = GetMarcFromKohaField
( 'biblioitems.totalissues' );
3379 unless ($totalissuestag) {
3380 return 1; # There is nothing to do
3383 if (defined $value) {
3384 $totalissues = $value;
3386 $totalissues = $biblioitem->totalissues + $increase;
3389 my $field = $record->field($totalissuestag);
3390 if (defined $field) {
3391 $field->update( $totalissuessubfield => $totalissues );
3393 $field = MARC
::Field
->new($totalissuestag, '0', '0',
3394 $totalissuessubfield => $totalissues);
3395 $record->insert_grouped_field($field);
3398 return ModBiblio
($record, $biblionumber, $biblio->frameworkcode);
3403 &RemoveAllNsb($record);
3405 Removes all nsb/nse chars from a record
3412 carp
'RemoveAllNsb called with undefined record';
3416 SetUTF8Flag
($record);
3418 foreach my $field ($record->fields()) {
3419 if ($field->is_control_field()) {
3420 $field->update(nsb_clean
($field->data()));
3422 my @subfields = $field->subfields();
3424 foreach my $subfield (@subfields) {
3425 push @new_subfields, $subfield->[0] => nsb_clean
($subfield->[1]);
3427 if (scalar(@new_subfields) > 0) {
3430 $new_field = MARC
::Field
->new(
3432 $field->indicator(1),
3433 $field->indicator(2),
3438 warn "error in RemoveAllNsb : $@";
3440 $field->replace_with($new_field);
3452 =head2 _after_biblio_action_hooks
3454 Helper method that takes care of calling all plugin hooks
3458 sub _after_biblio_action_hooks
{
3461 my $biblio_id = $args->{biblio_id
};
3462 my $action = $args->{action
};
3464 if ( C4
::Context
->preference('UseKohaPlugins') && C4
::Context
->config("enable_plugins") ) {
3466 my @plugins = Koha
::Plugins
->new->GetPlugins({
3467 method
=> 'after_biblio_action',
3472 my $biblio = Koha
::Biblios
->find( $biblio_id );
3474 foreach my $plugin ( @plugins ) {
3476 $plugin->after_biblio_action({ action
=> $action, biblio
=> $biblio, biblio_id
=> $biblio_id });
3490 Koha Development Team <http://koha-community.org/>
3492 Paul POULAIN paul.poulain@free.fr
3494 Joshua Ferraro jmf@liblime.com