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>.
25 use Encode
qw( decode is_utf8 );
27 use MARC
::File
::USMARC
;
29 use POSIX
qw(strftime);
30 use Module
::Load
::Conditional
qw(can_load);
33 use C4
::Log
; # logaction
42 use Koha
::Authority
::Types
;
43 use Koha
::Acquisition
::Currencies
;
44 use Koha
::SearchEngine
;
47 use vars
qw(@ISA @EXPORT);
48 use vars qw($debug $cgi_debug);
53 @ISA = qw( Exporter );
68 GetBiblioItemByBiblioNumber
69 GetBiblioFromItemNumber
70 GetBiblionumberFromItemnumber
95 &GetAuthorisedValueDesc
97 &IsMarcStructureInternal
99 &GetMarcSubfieldStructureFromKohaField
109 # To modify something
118 # To delete something
123 # To link headings in a bib record
124 # to authority records.
127 &LinkBibHeadingsToAuthorities
131 # those functions are exported but should not be used
132 # they are useful in a few circumstances, so they are exported,
133 # but don't use them unless you are a core developer ;-)
149 C4::Biblio - cataloging management functions
153 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:
157 =item 1. in the biblio,biblioitems,items, etc tables, which are limited to a one-to-one mapping to underlying MARC data
159 =item 2. as raw MARC in the Zebra index and storage engine
161 =item 3. as MARC XML in biblioitems.marcxml
165 In the 3.0 version of Koha, the authoritative record-level information is in biblioitems.marcxml
167 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.
171 =item 1. Compared with MySQL, Zebra is slow to update an index for small data changes -- especially for proc-intensive operations like circulation
173 =item 2. Zebra's index has been known to crash and a backup of the data is necessary to rebuild it in such cases
177 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:
181 =item 1. Add*/Mod*/Del*/ - high-level external functions suitable for being called from external scripts to manage the collection
183 =item 2. _koha_* - low-level internal functions for managing the koha tables
185 =item 3. Marc management function : as the MARC record is stored in biblioitems.marcxml, 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.
187 =item 4. Zebra functions used to update the Zebra index
189 =item 5. internal helper functions such as char_decode, checkitems, etc. Some of these probably belong in Koha.pm
193 The MARC record (in biblioitems.marcxml) 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 :
197 =item 1. save datas in biblio and biblioitems table, that gives us a biblionumber and a biblioitemnumber
199 =item 2. add the biblionumber and biblioitemnumber into the MARC records
201 =item 3. save the marc record
205 When dealing with items, we must :
209 =item 1. save the item in items table, that gives us an itemnumber
211 =item 2. add the itemnumber to the item MARC field
213 =item 3. overwrite the MARC record (with the added item) into biblioitems.marcxml
215 When modifying a biblio or an item, the behaviour is quite similar.
219 =head1 EXPORTED FUNCTIONS
223 ($biblionumber,$biblioitemnumber) = AddBiblio($record,$frameworkcode);
225 Exported function (core API) for adding a new biblio to koha.
227 The first argument is a C<MARC::Record> object containing the
228 bib to add, while the second argument is the desired MARC
231 This function also accepts a third, optional argument: a hashref
232 to additional options. The only defined option is C<defer_marc_save>,
233 which if present and mapped to a true value, causes C<AddBiblio>
234 to omit the call to save the MARC in C<bibilioitems.marcxml>
235 This option is provided B<only>
236 for the use of scripts such as C<bulkmarcimport.pl> that may need
237 to do some manipulation of the MARC record for item parsing before
238 saving it and which cannot afford the performance hit of saving
239 the MARC record twice. Consequently, do not use that option
240 unless you can guarantee that C<ModBiblioMarc> will be called.
246 my $frameworkcode = shift;
247 my $options = @_ ?
shift : undef;
248 my $defer_marc_save = 0;
250 carp
('AddBiblio called with undefined record');
253 if ( defined $options and exists $options->{'defer_marc_save'} and $options->{'defer_marc_save'} ) {
254 $defer_marc_save = 1;
257 my ( $biblionumber, $biblioitemnumber, $error );
258 my $dbh = C4
::Context
->dbh;
260 # transform the data into koha-table style data
261 SetUTF8Flag
($record);
262 my $olddata = TransformMarcToKoha
( $record, $frameworkcode );
263 ( $biblionumber, $error ) = _koha_add_biblio
( $dbh, $olddata, $frameworkcode );
264 $olddata->{'biblionumber'} = $biblionumber;
265 ( $biblioitemnumber, $error ) = _koha_add_biblioitem
( $dbh, $olddata );
267 _koha_marc_update_bib_ids
( $record, $frameworkcode, $biblionumber, $biblioitemnumber );
269 # update MARC subfield that stores biblioitems.cn_sort
270 _koha_marc_update_biblioitem_cn_sort
( $record, $olddata, $frameworkcode );
273 ModBiblioMarc
( $record, $biblionumber, $frameworkcode ) unless $defer_marc_save;
275 # update OAI-PMH sets
276 if(C4
::Context
->preference("OAI-PMH:AutoUpdateSets")) {
277 C4
::OAI
::Sets
::UpdateOAISetsBiblio
($biblionumber, $record);
280 logaction
( "CATALOGUING", "ADD", $biblionumber, "biblio" ) if C4
::Context
->preference("CataloguingLog");
281 return ( $biblionumber, $biblioitemnumber );
286 ModBiblio( $record,$biblionumber,$frameworkcode);
288 Replace an existing bib record identified by C<$biblionumber>
289 with one supplied by the MARC::Record object C<$record>. The embedded
290 item, biblioitem, and biblionumber fields from the previous
291 version of the bib record replace any such fields of those tags that
292 are present in C<$record>. Consequently, ModBiblio() is not
293 to be used to try to modify item records.
295 C<$frameworkcode> specifies the MARC framework to use
296 when storing the modified bib record; among other things,
297 this controls how MARC fields get mapped to display columns
298 in the C<biblio> and C<biblioitems> tables, as well as
299 which fields are used to store embedded item, biblioitem,
300 and biblionumber data for indexing.
302 Returns 1 on success 0 on failure
307 my ( $record, $biblionumber, $frameworkcode ) = @_;
309 carp
'No record passed to ModBiblio';
313 if ( C4
::Context
->preference("CataloguingLog") ) {
314 my $newrecord = GetMarcBiblio
($biblionumber);
315 logaction
( "CATALOGUING", "MODIFY", $biblionumber, "biblio BEFORE=>" . $newrecord->as_formatted );
318 # Cleaning up invalid fields must be done early or SetUTF8Flag is liable to
319 # throw an exception which probably won't be handled.
320 foreach my $field ($record->fields()) {
321 if (! $field->is_control_field()) {
322 if (scalar($field->subfields()) == 0 || (scalar($field->subfields()) == 1 && $field->subfield('9'))) {
323 $record->delete_field($field);
328 SetUTF8Flag
($record);
329 my $dbh = C4
::Context
->dbh;
331 $frameworkcode = "" if !$frameworkcode || $frameworkcode eq "Default"; # XXX
333 _strip_item_fields
($record, $frameworkcode);
335 # update biblionumber and biblioitemnumber in MARC
336 # FIXME - this is assuming a 1 to 1 relationship between
337 # biblios and biblioitems
338 my $sth = $dbh->prepare("select biblioitemnumber from biblioitems where biblionumber=?");
339 $sth->execute($biblionumber);
340 my ($biblioitemnumber) = $sth->fetchrow;
342 _koha_marc_update_bib_ids
( $record, $frameworkcode, $biblionumber, $biblioitemnumber );
344 # load the koha-table data object
345 my $oldbiblio = TransformMarcToKoha
( $record, $frameworkcode );
347 # update MARC subfield that stores biblioitems.cn_sort
348 _koha_marc_update_biblioitem_cn_sort
( $record, $oldbiblio, $frameworkcode );
350 # update the MARC record (that now contains biblio and items) with the new record data
351 &ModBiblioMarc
( $record, $biblionumber, $frameworkcode );
353 # modify the other koha tables
354 _koha_modify_biblio
( $dbh, $oldbiblio, $frameworkcode );
355 _koha_modify_biblioitem_nonmarc
( $dbh, $oldbiblio );
357 # update OAI-PMH sets
358 if(C4
::Context
->preference("OAI-PMH:AutoUpdateSets")) {
359 C4
::OAI
::Sets
::UpdateOAISetsBiblio
($biblionumber, $record);
365 =head2 _strip_item_fields
367 _strip_item_fields($record, $frameworkcode)
369 Utility routine to remove item tags from a
374 sub _strip_item_fields
{
376 my $frameworkcode = shift;
377 # get the items before and append them to the biblio before updating the record, atm we just have the biblio
378 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField
( "items.itemnumber", $frameworkcode );
380 # delete any item fields from incoming record to avoid
381 # duplication or incorrect data - use AddItem() or ModItem()
383 foreach my $field ( $record->field($itemtag) ) {
384 $record->delete_field($field);
388 =head2 ModBiblioframework
390 ModBiblioframework($biblionumber,$frameworkcode);
392 Exported function to modify a biblio framework
396 sub ModBiblioframework
{
397 my ( $biblionumber, $frameworkcode ) = @_;
398 my $dbh = C4
::Context
->dbh;
399 my $sth = $dbh->prepare( "UPDATE biblio SET frameworkcode=? WHERE biblionumber=?" );
400 $sth->execute( $frameworkcode, $biblionumber );
406 my $error = &DelBiblio($biblionumber);
408 Exported function (core API) for deleting a biblio in koha.
409 Deletes biblio record from Zebra and Koha tables (biblio & biblioitems)
410 Also backs it up to deleted* tables.
411 Checks to make sure that the biblio has no items attached.
413 C<$error> : undef unless an error occurs
418 my ($biblionumber) = @_;
419 my $dbh = C4
::Context
->dbh;
420 my $error; # for error handling
422 # First make sure this biblio has no items attached
423 my $sth = $dbh->prepare("SELECT itemnumber FROM items WHERE biblionumber=?");
424 $sth->execute($biblionumber);
425 if ( my $itemnumber = $sth->fetchrow ) {
427 # Fix this to use a status the template can understand
428 $error .= "This Biblio has items attached, please delete them first before deleting this biblio ";
431 return $error if $error;
433 # We delete attached subscriptions
435 my $subscriptions = C4
::Serials
::GetFullSubscriptionsFromBiblionumber
($biblionumber);
436 foreach my $subscription (@
$subscriptions) {
437 C4
::Serials
::DelSubscription
( $subscription->{subscriptionid
} );
440 # We delete any existing holds
441 require C4
::Reserves
;
442 my $reserves = C4
::Reserves
::GetReservesFromBiblionumber
({ biblionumber
=> $biblionumber });
443 foreach my $res ( @
$reserves ) {
444 C4
::Reserves
::CancelReserve
({ reserve_id
=> $res->{'reserve_id'} });
447 # Delete in Zebra. Be careful NOT to move this line after _koha_delete_biblio
448 # for at least 2 reasons :
449 # - if something goes wrong, the biblio may be deleted from Koha but not from zebra
450 # 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)
451 ModZebra
( $biblionumber, "recordDelete", "biblioserver" );
453 # delete biblioitems and items from Koha tables and save in deletedbiblioitems,deleteditems
454 $sth = $dbh->prepare("SELECT biblioitemnumber FROM biblioitems WHERE biblionumber=?");
455 $sth->execute($biblionumber);
456 while ( my $biblioitemnumber = $sth->fetchrow ) {
458 # delete this biblioitem
459 $error = _koha_delete_biblioitems
( $dbh, $biblioitemnumber );
460 return $error if $error;
463 # delete biblio from Koha tables and save in deletedbiblio
464 # must do this *after* _koha_delete_biblioitems, otherwise
465 # delete cascade will prevent deletedbiblioitems rows
466 # from being generated by _koha_delete_biblioitems
467 $error = _koha_delete_biblio
( $dbh, $biblionumber );
469 logaction
( "CATALOGUING", "DELETE", $biblionumber, "biblio" ) if C4
::Context
->preference("CataloguingLog");
475 =head2 BiblioAutoLink
477 my $headings_linked = BiblioAutoLink($record, $frameworkcode)
479 Automatically links headings in a bib record to authorities.
481 Returns the number of headings changed
487 my $frameworkcode = shift;
489 carp
('Undefined record passed to BiblioAutoLink');
492 my ( $num_headings_changed, %results );
495 "C4::Linker::" . ( C4
::Context
->preference("LinkerModule") || 'Default' );
496 unless ( can_load
( modules
=> { $linker_module => undef } ) ) {
497 $linker_module = 'C4::Linker::Default';
498 unless ( can_load
( modules
=> { $linker_module => undef } ) ) {
503 my $linker = $linker_module->new(
504 { 'options' => C4
::Context
->preference("LinkerOptions") } );
505 my ( $headings_changed, undef ) =
506 LinkBibHeadingsToAuthorities
( $linker, $record, $frameworkcode, C4
::Context
->preference("CatalogModuleRelink") || '' );
507 # By default we probably don't want to relink things when cataloging
508 return $headings_changed;
511 =head2 LinkBibHeadingsToAuthorities
513 my $num_headings_changed, %results = LinkBibHeadingsToAuthorities($linker, $marc, $frameworkcode, [$allowrelink]);
515 Links bib headings to authority records by checking
516 each authority-controlled field in the C<MARC::Record>
517 object C<$marc>, looking for a matching authority record,
518 and setting the linking subfield $9 to the ID of that
521 If $allowrelink is false, existing authids will never be
522 replaced, regardless of the values of LinkerKeepStale and
525 Returns the number of heading links changed in the
530 sub LinkBibHeadingsToAuthorities
{
533 my $frameworkcode = shift;
534 my $allowrelink = shift;
537 carp
'LinkBibHeadingsToAuthorities called on undefined bib record';
541 require C4
::AuthoritiesMarc
;
543 $allowrelink = 1 unless defined $allowrelink;
544 my $num_headings_changed = 0;
545 foreach my $field ( $bib->fields() ) {
546 my $heading = C4
::Heading
->new_from_bib_field( $field, $frameworkcode );
547 next unless defined $heading;
550 my $current_link = $field->subfield('9');
552 if ( defined $current_link && (!$allowrelink || !C4
::Context
->preference('LinkerRelink')) )
554 $results{'linked'}->{ $heading->display_form() }++;
558 my ( $authid, $fuzzy ) = $linker->get_link($heading);
560 $results{ $fuzzy ?
'fuzzy' : 'linked' }
561 ->{ $heading->display_form() }++;
562 next if defined $current_link and $current_link == $authid;
564 $field->delete_subfield( code
=> '9' ) if defined $current_link;
565 $field->add_subfields( '9', $authid );
566 $num_headings_changed++;
569 if ( defined $current_link
570 && (!$allowrelink || C4
::Context
->preference('LinkerKeepStale')) )
572 $results{'fuzzy'}->{ $heading->display_form() }++;
574 elsif ( C4
::Context
->preference('AutoCreateAuthorities') ) {
575 if ( _check_valid_auth_link
( $current_link, $field ) ) {
576 $results{'linked'}->{ $heading->display_form() }++;
579 my $authority_type = Koha
::Authority
::Types
->find( $heading->auth_type() );
580 my $marcrecordauth = MARC
::Record
->new();
581 if ( C4
::Context
->preference('marcflavour') eq 'MARC21' ) {
582 $marcrecordauth->leader(' nz a22 o 4500');
583 SetMarcUnicodeFlag
( $marcrecordauth, 'MARC21' );
585 $field->delete_subfield( code
=> '9' )
586 if defined $current_link;
588 MARC
::Field
->new( $authority_type->auth_tag_to_report,
589 '', '', "a" => "" . $field->subfield('a') );
591 $authfield->add_subfields( $_->[0] => $_->[1] )
592 if ( $_->[0] =~ /[A-z]/ && $_->[0] ne "a" )
593 } $field->subfields();
594 $marcrecordauth->insert_fields_ordered($authfield);
596 # bug 2317: ensure new authority knows it's using UTF-8; currently
597 # only need to do this for MARC21, as MARC::Record->as_xml_record() handles
598 # automatically for UNIMARC (by not transcoding)
599 # FIXME: AddAuthority() instead should simply explicitly require that the MARC::Record
600 # use UTF-8, but as of 2008-08-05, did not want to introduce that kind
601 # of change to a core API just before the 3.0 release.
603 if ( C4
::Context
->preference('marcflavour') eq 'MARC21' ) {
604 $marcrecordauth->insert_fields_ordered(
607 'a' => "Machine generated authority record."
611 $bib->author() . ", "
612 . $bib->title_proper() . ", "
613 . $bib->publication_date() . " ";
614 $cite =~ s/^[\s\,]*//;
615 $cite =~ s/[\s\,]*$//;
618 . C4
::Context
->preference('MARCOrgCode') . ")"
619 . $bib->subfield( '999', 'c' ) . ": "
621 $marcrecordauth->insert_fields_ordered(
622 MARC
::Field
->new( '670', '', '', 'a' => $cite ) );
625 # warn "AUTH RECORD ADDED : ".$marcrecordauth->as_formatted;
628 C4
::AuthoritiesMarc
::AddAuthority
( $marcrecordauth, '',
629 $heading->auth_type() );
630 $field->add_subfields( '9', $authid );
631 $num_headings_changed++;
632 $linker->update_cache($heading, $authid);
633 $results{'added'}->{ $heading->display_form() }++;
636 elsif ( defined $current_link ) {
637 if ( _check_valid_auth_link
( $current_link, $field ) ) {
638 $results{'linked'}->{ $heading->display_form() }++;
641 $field->delete_subfield( code
=> '9' );
642 $num_headings_changed++;
643 $results{'unlinked'}->{ $heading->display_form() }++;
647 $results{'unlinked'}->{ $heading->display_form() }++;
652 return $num_headings_changed, \
%results;
655 =head2 _check_valid_auth_link
657 if ( _check_valid_auth_link($authid, $field) ) {
661 Check whether the specified heading-auth link is valid without reference
662 to Zebra. Ideally this code would be in C4::Heading, but that won't be
663 possible until we have de-cycled C4::AuthoritiesMarc, so this is the
668 sub _check_valid_auth_link
{
669 my ( $authid, $field ) = @_;
671 require C4
::AuthoritiesMarc
;
673 my $authorized_heading =
674 C4
::AuthoritiesMarc
::GetAuthorizedHeading
( { 'authid' => $authid } ) || '';
676 return ($field->as_string('abcdefghijklmnopqrstuvwxyz') eq $authorized_heading);
679 =head2 GetRecordValue
681 my $values = GetRecordValue($field, $record, $frameworkcode);
683 Get MARC fields from a keyword defined in fieldmapping table.
688 my ( $field, $record, $frameworkcode ) = @_;
691 carp
'GetRecordValue called with undefined record';
694 my $dbh = C4
::Context
->dbh;
696 my $sth = $dbh->prepare('SELECT fieldcode, subfieldcode FROM fieldmapping WHERE frameworkcode = ? AND field = ?');
697 $sth->execute( $frameworkcode, $field );
701 while ( my $row = $sth->fetchrow_hashref ) {
702 foreach my $field ( $record->field( $row->{fieldcode
} ) ) {
703 if ( ( $row->{subfieldcode
} ne "" && $field->subfield( $row->{subfieldcode
} ) ) ) {
704 foreach my $subfield ( $field->subfield( $row->{subfieldcode
} ) ) {
705 push @result, { 'subfield' => $subfield };
708 } elsif ( $row->{subfieldcode
} eq "" ) {
709 push @result, { 'subfield' => $field->as_string() };
717 =head2 SetFieldMapping
719 SetFieldMapping($framework, $field, $fieldcode, $subfieldcode);
721 Set a Field to MARC mapping value, if it already exists we don't add a new one.
725 sub SetFieldMapping
{
726 my ( $framework, $field, $fieldcode, $subfieldcode ) = @_;
727 my $dbh = C4
::Context
->dbh;
729 my $sth = $dbh->prepare('SELECT * FROM fieldmapping WHERE fieldcode = ? AND subfieldcode = ? AND frameworkcode = ? AND field = ?');
730 $sth->execute( $fieldcode, $subfieldcode, $framework, $field );
731 if ( not $sth->fetchrow_hashref ) {
733 $sth = $dbh->prepare('INSERT INTO fieldmapping (fieldcode, subfieldcode, frameworkcode, field) VALUES(?,?,?,?)');
735 $sth->execute( $fieldcode, $subfieldcode, $framework, $field );
739 =head2 DeleteFieldMapping
741 DeleteFieldMapping($id);
743 Delete a field mapping from an $id.
747 sub DeleteFieldMapping
{
749 my $dbh = C4
::Context
->dbh;
751 my $sth = $dbh->prepare('DELETE FROM fieldmapping WHERE id = ?');
755 =head2 GetFieldMapping
757 GetFieldMapping($frameworkcode);
759 Get all field mappings for a specified frameworkcode
763 sub GetFieldMapping
{
764 my ($framework) = @_;
765 my $dbh = C4
::Context
->dbh;
767 my $sth = $dbh->prepare('SELECT * FROM fieldmapping where frameworkcode = ?');
768 $sth->execute($framework);
771 while ( my $row = $sth->fetchrow_hashref ) {
779 $data = &GetBiblioData($biblionumber);
781 Returns information about the book with the given biblionumber.
782 C<&GetBiblioData> returns a reference-to-hash. The keys are the fields in
783 the C<biblio> and C<biblioitems> tables in the
786 In addition, C<$data-E<gt>{subject}> is the list of the book's
787 subjects, separated by C<" , "> (space, comma, space).
788 If there are multiple biblioitems with the given biblionumber, only
789 the first one is considered.
795 my $dbh = C4
::Context
->dbh;
797 my $query = " SELECT * , biblioitems.notes AS bnotes, itemtypes.notforloan as bi_notforloan, biblio.notes
799 LEFT JOIN biblioitems ON biblio.biblionumber = biblioitems.biblionumber
800 LEFT JOIN itemtypes ON biblioitems.itemtype = itemtypes.itemtype
801 WHERE biblio.biblionumber = ?";
803 my $sth = $dbh->prepare($query);
804 $sth->execute($bibnum);
806 $data = $sth->fetchrow_hashref;
810 } # sub GetBiblioData
812 =head2 &GetBiblioItemData
814 $itemdata = &GetBiblioItemData($biblioitemnumber);
816 Looks up the biblioitem with the given biblioitemnumber. Returns a
817 reference-to-hash. The keys are the fields from the C<biblio>,
818 C<biblioitems>, and C<itemtypes> tables in the Koha database, except
819 that C<biblioitems.notes> is given as C<$itemdata-E<gt>{bnotes}>.
824 sub GetBiblioItemData
{
825 my ($biblioitemnumber) = @_;
826 my $dbh = C4
::Context
->dbh;
827 my $query = "SELECT *,biblioitems.notes AS bnotes
828 FROM biblio LEFT JOIN biblioitems on biblio.biblionumber=biblioitems.biblionumber ";
829 unless ( C4
::Context
->preference('item-level_itypes') ) {
830 $query .= "LEFT JOIN itemtypes on biblioitems.itemtype=itemtypes.itemtype ";
832 $query .= " WHERE biblioitemnumber = ? ";
833 my $sth = $dbh->prepare($query);
835 $sth->execute($biblioitemnumber);
836 $data = $sth->fetchrow_hashref;
839 } # sub &GetBiblioItemData
841 =head2 GetBiblioItemByBiblioNumber
843 NOTE : This function has been copy/paste from C4/Biblio.pm from head before zebra integration.
847 sub GetBiblioItemByBiblioNumber
{
848 my ($biblionumber) = @_;
849 my $dbh = C4
::Context
->dbh;
850 my $sth = $dbh->prepare("Select * FROM biblioitems WHERE biblionumber = ?");
854 $sth->execute($biblionumber);
856 while ( my $data = $sth->fetchrow_hashref ) {
857 push @results, $data;
864 =head2 GetBiblionumberFromItemnumber
869 sub GetBiblionumberFromItemnumber
{
870 my ($itemnumber) = @_;
871 my $dbh = C4
::Context
->dbh;
872 my $sth = $dbh->prepare("Select biblionumber FROM items WHERE itemnumber = ?");
874 $sth->execute($itemnumber);
875 my ($result) = $sth->fetchrow;
879 =head2 GetBiblioFromItemNumber
881 $item = &GetBiblioFromItemNumber($itemnumber,$barcode);
883 Looks up the item with the given itemnumber. if undef, try the barcode.
885 C<&itemnodata> returns a reference-to-hash whose keys are the fields
886 from the C<biblio>, C<biblioitems>, and C<items> tables in the Koha
892 sub GetBiblioFromItemNumber
{
893 my ( $itemnumber, $barcode ) = @_;
894 my $dbh = C4
::Context
->dbh;
897 $sth = $dbh->prepare(
899 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
900 LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber
901 WHERE items.itemnumber = ?"
903 $sth->execute($itemnumber);
905 $sth = $dbh->prepare(
907 LEFT JOIN biblio ON biblio.biblionumber = items.biblionumber
908 LEFT JOIN biblioitems ON biblioitems.biblioitemnumber = items.biblioitemnumber
909 WHERE items.barcode = ?"
911 $sth->execute($barcode);
913 my $data = $sth->fetchrow_hashref;
920 $isbd = &GetISBDView({
921 'record' => $marc_record,
922 'template' => $interface, # opac/intranet
923 'framework' => $framework,
926 Return the ISBD view which can be included in opac and intranet
933 # Expecting record WITH items.
934 my $record = $params->{record
};
935 return unless defined $record;
937 my $template = $params->{template
} // q{};
938 my $sysprefname = $template eq 'opac' ?
'opacisbd' : 'isbd';
939 my $framework = $params->{framework
};
940 my $itemtype = $framework;
941 my ( $holdingbrtagf, $holdingbrtagsubf ) = &GetMarcFromKohaField
( "items.holdingbranch", $itemtype );
942 my $tagslib = &GetMarcStructure
( 1, $itemtype, { unsafe
=> 1 } );
944 my $ISBD = C4
::Context
->preference($sysprefname);
949 foreach my $isbdfield ( split( /#/, $bloc ) ) {
951 # $isbdfield= /(.?.?.?)/;
952 $isbdfield =~ /(\d\d\d)([^\|])?\|(.*)\|(.*)\|(.*)/;
953 my $fieldvalue = $1 || 0;
954 my $subfvalue = $2 || "";
956 my $analysestring = $4;
959 # warn "==> $1 / $2 / $3 / $4";
960 # my $fieldvalue=substr($isbdfield,0,3);
961 if ( $fieldvalue > 0 ) {
962 my $hasputtextbefore = 0;
963 my @fieldslist = $record->field($fieldvalue);
964 @fieldslist = sort { $a->subfield($holdingbrtagsubf) cmp $b->subfield($holdingbrtagsubf) } @fieldslist if ( $fieldvalue eq $holdingbrtagf );
966 # warn "ERROR IN ISBD DEFINITION at : $isbdfield" unless $fieldvalue;
967 # warn "FV : $fieldvalue";
968 if ( $subfvalue ne "" ) {
969 # OPAC hidden subfield
971 if ( ( $template eq 'opac' )
972 && ( $tagslib->{$fieldvalue}->{$subfvalue}->{'hidden'} || 0 ) > 0 );
973 foreach my $field (@fieldslist) {
974 foreach my $subfield ( $field->subfield($subfvalue) ) {
975 my $calculated = $analysestring;
976 my $tag = $field->tag();
979 my $subfieldvalue = GetAuthorisedValueDesc
( $tag, $subfvalue, $subfield, '', $tagslib );
980 my $tagsubf = $tag . $subfvalue;
981 $calculated =~ s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
982 if ( $template eq "opac" ) { $calculated =~ s
#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g; }
984 # field builded, store the result
985 if ( $calculated && !$hasputtextbefore ) { # put textbefore if not done
986 $blocres .= $textbefore;
987 $hasputtextbefore = 1;
990 # remove punctuation at start
991 $calculated =~ s/^( |;|:|\.|-)*//g;
992 $blocres .= $calculated;
997 $blocres .= $textafter if $hasputtextbefore;
999 foreach my $field (@fieldslist) {
1000 my $calculated = $analysestring;
1001 my $tag = $field->tag();
1004 my @subf = $field->subfields;
1005 for my $i ( 0 .. $#subf ) {
1006 my $valuecode = $subf[$i][1];
1007 my $subfieldcode = $subf[$i][0];
1008 # OPAC hidden subfield
1010 if ( ( $template eq 'opac' )
1011 && ( $tagslib->{$fieldvalue}->{$subfieldcode}->{'hidden'} || 0 ) > 0 );
1012 my $subfieldvalue = GetAuthorisedValueDesc
( $tag, $subf[$i][0], $subf[$i][1], '', $tagslib );
1013 my $tagsubf = $tag . $subfieldcode;
1015 $calculated =~ s
/ # replace all {{}} codes by the value code.
1016 \
{\
{$tagsubf\
}\
} # catch the {{actualcode}}
1018 $valuecode # replace by the value code
1021 $calculated =~ s/\{(.?.?.?.?)$tagsubf(.*?)\}/$1$subfieldvalue$2\{$1$tagsubf$2\}/g;
1022 if ( $template eq "opac" ) { $calculated =~ s
#/cgi-bin/koha/[^/]+/([^.]*.pl\?.*)$#opac-$1#g; }
1025 # field builded, store the result
1026 if ( $calculated && !$hasputtextbefore ) { # put textbefore if not done
1027 $blocres .= $textbefore;
1028 $hasputtextbefore = 1;
1031 # remove punctuation at start
1032 $calculated =~ s/^( |;|:|\.|-)*//g;
1033 $blocres .= $calculated;
1036 $blocres .= $textafter if $hasputtextbefore;
1039 $blocres .= $isbdfield;
1044 $res =~ s/\{(.*?)\}//g;
1046 $res =~ s/\n/<br\/>/g
;
1056 my $biblio = &GetBiblio($biblionumber);
1061 my ($biblionumber) = @_;
1062 my $dbh = C4
::Context
->dbh;
1063 my $sth = $dbh->prepare("SELECT * FROM biblio WHERE biblionumber = ?");
1066 $sth->execute($biblionumber);
1067 if ( my $data = $sth->fetchrow_hashref ) {
1073 =head2 GetBiblioItemInfosOf
1075 GetBiblioItemInfosOf(@biblioitemnumbers);
1079 sub GetBiblioItemInfosOf
{
1080 my @biblioitemnumbers = @_;
1082 my $biblioitemnumber_values = @biblioitemnumbers ?
join( ',', @biblioitemnumbers ) : "''";
1085 SELECT biblioitemnumber,
1089 WHERE biblioitemnumber IN ($biblioitemnumber_values)
1091 return get_infos_of
( $query, 'biblioitemnumber' );
1094 =head1 FUNCTIONS FOR HANDLING MARC MANAGEMENT
1096 =head2 IsMarcStructureInternal
1098 my $tagslib = C4::Biblio::GetMarcStructure();
1099 for my $tag ( sort keys %$tagslib ) {
1101 for my $subfield ( sort keys %{ $tagslib->{$tag} } ) {
1102 next if IsMarcStructureInternal($tagslib->{$tag}{$subfield});
1107 GetMarcStructure creates keys (lib, tab, mandatory, repeatable) for a display purpose.
1108 These different values should not be processed as valid subfields.
1112 sub IsMarcStructureInternal
{
1113 my ( $subfield ) = @_;
1114 return ref $subfield ?
0 : 1;
1117 =head2 GetMarcStructure
1119 $res = GetMarcStructure($forlibrarian, $frameworkcode, [ $params ]);
1121 Returns a reference to a big hash of hash, with the Marc structure for the given frameworkcode
1122 $forlibrarian :if set to 1, the MARC descriptions are the librarians ones, otherwise it's the public (OPAC) ones
1123 $frameworkcode : the framework code to read
1124 $params allows you to pass { unsafe => 1 } for better performance.
1126 Note: If you call GetMarcStructure with unsafe => 1, do not modify or
1127 even autovivify its contents. It is a cached/shared data structure. Your
1128 changes c/would be passed around in subsequent calls.
1132 sub GetMarcStructure
{
1133 my ( $forlibrarian, $frameworkcode, $params ) = @_;
1134 $frameworkcode = "" unless $frameworkcode;
1136 $forlibrarian = $forlibrarian ?
1 : 0;
1137 my $unsafe = ($params && $params->{unsafe
})?
1: 0;
1138 my $cache = Koha
::Caches
->get_instance();
1139 my $cache_key = "MarcStructure-$forlibrarian-$frameworkcode";
1140 my $cached = $cache->get_from_cache($cache_key, { unsafe
=> $unsafe });
1141 return $cached if $cached;
1143 my $dbh = C4
::Context
->dbh;
1144 my $sth = $dbh->prepare(
1145 "SELECT tagfield,liblibrarian,libopac,mandatory,repeatable
1146 FROM marc_tag_structure
1147 WHERE frameworkcode=?
1150 $sth->execute($frameworkcode);
1151 my ( $liblibrarian, $libopac, $tag, $res, $tab, $mandatory, $repeatable );
1153 while ( ( $tag, $liblibrarian, $libopac, $mandatory, $repeatable ) = $sth->fetchrow ) {
1154 $res->{$tag}->{lib
} = ( $forlibrarian or !$libopac ) ?
$liblibrarian : $libopac;
1155 $res->{$tag}->{tab
} = "";
1156 $res->{$tag}->{mandatory
} = $mandatory;
1157 $res->{$tag}->{repeatable
} = $repeatable;
1160 $sth = $dbh->prepare(
1161 "SELECT tagfield,tagsubfield,liblibrarian,libopac,tab,mandatory,repeatable,authorised_value,authtypecode,value_builder,kohafield,seealso,hidden,isurl,link,defaultvalue,maxlength
1162 FROM marc_subfield_structure
1163 WHERE frameworkcode=?
1164 ORDER BY tagfield,tagsubfield
1168 $sth->execute($frameworkcode);
1171 my $authorised_value;
1183 ( $tag, $subfield, $liblibrarian, $libopac, $tab, $mandatory, $repeatable, $authorised_value,
1184 $authtypecode, $value_builder, $kohafield, $seealso, $hidden, $isurl, $link, $defaultvalue,
1189 $res->{$tag}->{$subfield}->{lib
} = ( $forlibrarian or !$libopac ) ?
$liblibrarian : $libopac;
1190 $res->{$tag}->{$subfield}->{tab
} = $tab;
1191 $res->{$tag}->{$subfield}->{mandatory
} = $mandatory;
1192 $res->{$tag}->{$subfield}->{repeatable
} = $repeatable;
1193 $res->{$tag}->{$subfield}->{authorised_value
} = $authorised_value;
1194 $res->{$tag}->{$subfield}->{authtypecode
} = $authtypecode;
1195 $res->{$tag}->{$subfield}->{value_builder
} = $value_builder;
1196 $res->{$tag}->{$subfield}->{kohafield
} = $kohafield;
1197 $res->{$tag}->{$subfield}->{seealso
} = $seealso;
1198 $res->{$tag}->{$subfield}->{hidden
} = $hidden;
1199 $res->{$tag}->{$subfield}->{isurl
} = $isurl;
1200 $res->{$tag}->{$subfield}->{'link'} = $link;
1201 $res->{$tag}->{$subfield}->{defaultvalue
} = $defaultvalue;
1202 $res->{$tag}->{$subfield}->{maxlength
} = $maxlength;
1205 $cache->set_in_cache($cache_key, $res);
1209 =head2 GetUsedMarcStructure
1211 The same function as GetMarcStructure except it just takes field
1212 in tab 0-9. (used field)
1214 my $results = GetUsedMarcStructure($frameworkcode);
1216 C<$results> is a ref to an array which each case containts a ref
1217 to a hash which each keys is the columns from marc_subfield_structure
1219 C<$frameworkcode> is the framework code.
1223 sub GetUsedMarcStructure
{
1224 my $frameworkcode = shift || '';
1227 FROM marc_subfield_structure
1229 AND frameworkcode = ?
1230 ORDER BY tagfield, tagsubfield
1232 my $sth = C4
::Context
->dbh->prepare($query);
1233 $sth->execute($frameworkcode);
1234 return $sth->fetchall_arrayref( {} );
1237 =head2 GetMarcSubfieldStructure
1241 sub GetMarcSubfieldStructure
{
1242 my ( $frameworkcode ) = @_;
1244 $frameworkcode //= '';
1246 my $cache = Koha
::Caches
->get_instance();
1247 my $cache_key = "MarcSubfieldStructure-$frameworkcode";
1248 my $cached = $cache->get_from_cache($cache_key);
1249 return $cached if $cached;
1251 my $dbh = C4
::Context
->dbh;
1252 my $subfield_structure = $dbh->selectall_hashref( q
|
1254 FROM marc_subfield_structure
1255 WHERE frameworkcode
= ?
1257 |, 'kohafield', {}, $frameworkcode );
1259 $cache->set_in_cache( $cache_key, $subfield_structure );
1260 return $subfield_structure;
1263 =head2 GetMarcFromKohaField
1265 ($MARCfield,$MARCsubfield)=GetMarcFromKohaField($kohafield,$frameworkcode);
1267 Returns the MARC fields & subfields mapped to the koha field
1268 for the given frameworkcode or default framework if $frameworkcode is missing
1272 sub GetMarcFromKohaField
{
1273 my ( $kohafield, $frameworkcode ) = @_;
1274 return (0, undef) unless $kohafield;
1275 my $mss = GetMarcSubfieldStructure
( $frameworkcode );
1276 return ( $mss->{$kohafield}{tagfield
}, $mss->{$kohafield}{tagsubfield
} );
1279 =head2 GetMarcSubfieldStructureFromKohaField
1281 my $subfield_structure = &GetMarcSubfieldStructureFromKohaField($kohafield, $frameworkcode);
1283 Returns a hashref where keys are marc_subfield_structure column names for the
1284 row where kohafield=$kohafield for the given framework code.
1286 $frameworkcode is optional. If not given, then the default framework is used.
1290 sub GetMarcSubfieldStructureFromKohaField
{
1291 my ( $kohafield, $frameworkcode ) = @_;
1293 return unless $kohafield;
1295 my $mss = GetMarcSubfieldStructure
( $frameworkcode );
1296 return exists $mss->{$kohafield}
1297 ?
$mss->{$kohafield}
1301 =head2 GetMarcBiblio
1303 my $record = GetMarcBiblio($biblionumber, [$embeditems], [$opac]);
1305 Returns MARC::Record representing a biblio record, or C<undef> if the
1306 biblionumber doesn't exist.
1310 =item C<$biblionumber>
1314 =item C<$embeditems>
1316 set to true to include item information.
1320 set to true to make the result suited for OPAC view. This causes things like
1321 OpacHiddenItems to be applied.
1328 my $biblionumber = shift;
1329 my $embeditems = shift || 0;
1330 my $opac = shift || 0;
1332 if (not defined $biblionumber) {
1333 carp
'GetMarcBiblio called with undefined biblionumber';
1337 my $dbh = C4
::Context
->dbh;
1338 my $sth = $dbh->prepare("SELECT biblioitemnumber, marcxml FROM biblioitems WHERE biblionumber=? ");
1339 $sth->execute($biblionumber);
1340 my $row = $sth->fetchrow_hashref;
1341 my $biblioitemnumber = $row->{'biblioitemnumber'};
1342 my $marcxml = StripNonXmlChars
( $row->{'marcxml'} );
1343 my $frameworkcode = GetFrameworkCode
($biblionumber);
1344 MARC
::File
::XML
->default_record_format( C4
::Context
->preference('marcflavour') );
1345 my $record = MARC
::Record
->new();
1349 MARC
::Record
::new_from_xml
( $marcxml, "utf8",
1350 C4
::Context
->preference('marcflavour') );
1352 if ($@
) { warn " problem with :$biblionumber : $@ \n$marcxml"; }
1353 return unless $record;
1355 C4
::Biblio
::_koha_marc_update_bib_ids
( $record, $frameworkcode, $biblionumber,
1356 $biblioitemnumber );
1357 C4
::Biblio
::EmbedItemsInMarcBiblio
( $record, $biblionumber, undef, $opac )
1369 my $marcxml = GetXmlBiblio($biblionumber);
1371 Returns biblioitems.marcxml of the biblionumber passed in parameter.
1372 The XML should only contain biblio information (item information is no longer stored in marcxml field)
1377 my ($biblionumber) = @_;
1378 my $dbh = C4
::Context
->dbh;
1379 my $sth = $dbh->prepare("SELECT marcxml FROM biblioitems WHERE biblionumber=? ");
1380 $sth->execute($biblionumber);
1381 my ($marcxml) = $sth->fetchrow;
1385 =head2 GetCOinSBiblio
1387 my $coins = GetCOinSBiblio($record);
1389 Returns the COinS (a span) which can be included in a biblio record
1393 sub GetCOinSBiblio
{
1396 # get the coin format
1398 carp
'GetCOinSBiblio called with undefined record';
1401 my $pos7 = substr $record->leader(), 7, 1;
1402 my $pos6 = substr $record->leader(), 6, 1;
1405 my ( $aulast, $aufirst ) = ( '', '' );
1414 my $titletype = 'b';
1416 # For the purposes of generating COinS metadata, LDR/06-07 can be
1417 # considered the same for UNIMARC and MARC21
1422 'b' => 'manuscript',
1424 'd' => 'manuscript',
1428 'i' => 'audioRecording',
1429 'j' => 'audioRecording',
1432 'm' => 'computerProgram',
1437 'a' => 'journalArticle',
1441 $genre = $fmts6->{$pos6} ?
$fmts6->{$pos6} : 'book';
1443 if ( $genre eq 'book' ) {
1444 $genre = $fmts7->{$pos7} if $fmts7->{$pos7};
1447 ##### We must transform mtx to a valable mtx and document type ####
1448 if ( $genre eq 'book' ) {
1450 } elsif ( $genre eq 'journal' ) {
1453 } elsif ( $genre eq 'journalArticle' ) {
1461 $genre = ( $mtx eq 'dc' ) ?
"&rft.type=$genre" : "&rft.genre=$genre";
1463 if ( C4
::Context
->preference("marcflavour") eq "UNIMARC" ) {
1466 $aulast = $record->subfield( '700', 'a' ) || '';
1467 $aufirst = $record->subfield( '700', 'b' ) || '';
1468 $oauthors = "&rft.au=$aufirst $aulast";
1471 if ( $record->field('200') ) {
1472 for my $au ( $record->field('200')->subfield('g') ) {
1473 $oauthors .= "&rft.au=$au";
1478 ?
"&rft.title=" . $record->subfield( '200', 'a' )
1479 : "&rft.title=" . $record->subfield( '200', 'a' ) . "&rft.btitle=" . $record->subfield( '200', 'a' );
1480 $pubyear = $record->subfield( '210', 'd' ) || '';
1481 $publisher = $record->subfield( '210', 'c' ) || '';
1482 $isbn = $record->subfield( '010', 'a' ) || '';
1483 $issn = $record->subfield( '011', 'a' ) || '';
1486 # MARC21 need some improve
1489 if ( $record->field('100') ) {
1490 $oauthors .= "&rft.au=" . $record->subfield( '100', 'a' );
1494 if ( $record->field('700') ) {
1495 for my $au ( $record->field('700')->subfield('a') ) {
1496 $oauthors .= "&rft.au=$au";
1499 $title = "&rft." . $titletype . "title=" . $record->subfield( '245', 'a' );
1500 $subtitle = $record->subfield( '245', 'b' ) || '';
1501 $title .= $subtitle;
1502 if ($titletype eq 'a') {
1503 $pubyear = $record->field('008') || '';
1504 $pubyear = substr($pubyear->data(), 7, 4) if $pubyear;
1505 $isbn = $record->subfield( '773', 'z' ) || '';
1506 $issn = $record->subfield( '773', 'x' ) || '';
1507 if ($mtx eq 'journal') {
1508 $title .= "&rft.title=" . (($record->subfield( '773', 't' ) || $record->subfield( '773', 'a')));
1510 $title .= "&rft.btitle=" . (($record->subfield( '773', 't' ) || $record->subfield( '773', 'a')) || '');
1512 foreach my $rel ($record->subfield( '773', 'g' )) {
1519 $pubyear = $record->subfield( '260', 'c' ) || '';
1520 $publisher = $record->subfield( '260', 'b' ) || '';
1521 $isbn = $record->subfield( '020', 'a' ) || '';
1522 $issn = $record->subfield( '022', 'a' ) || '';
1527 "ctx_ver=Z39.88-2004&rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3A$mtx$genre$title&rft.isbn=$isbn&rft.issn=$issn&rft.aulast=$aulast&rft.aufirst=$aufirst$oauthors&rft.pub=$publisher&rft.date=$pubyear&rft.pages=$pages";
1528 $coins_value =~ s/(\ |&[^a])/\+/g;
1529 $coins_value =~ s/\"/\"\;/g;
1531 #<!-- TMPL_VAR NAME="ocoins_format" -->&rft.au=<!-- TMPL_VAR NAME="author" -->&rft.btitle=<!-- TMPL_VAR NAME="title" -->&rft.date=<!-- TMPL_VAR NAME="publicationyear" -->&rft.pages=<!-- TMPL_VAR NAME="pages" -->&rft.isbn=<!-- TMPL_VAR NAME=amazonisbn -->&rft.aucorp=&rft.place=<!-- TMPL_VAR NAME="place" -->&rft.pub=<!-- TMPL_VAR NAME="publishercode" -->&rft.edition=<!-- TMPL_VAR NAME="edition" -->&rft.series=<!-- TMPL_VAR NAME="series" -->&rft.genre="
1533 return $coins_value;
1539 return the prices in accordance with the Marc format.
1541 returns 0 if no price found
1542 returns undef if called without a marc record or with
1543 an unrecognized marc format
1548 my ( $record, $marcflavour ) = @_;
1550 carp
'GetMarcPrice called on undefined record';
1557 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
1558 @listtags = ('345', '020');
1560 } elsif ( $marcflavour eq "UNIMARC" ) {
1561 @listtags = ('345', '010');
1567 for my $field ( $record->field(@listtags) ) {
1568 for my $subfield_value ($field->subfield($subfield)){
1570 $subfield_value = MungeMarcPrice
( $subfield_value );
1571 return $subfield_value if ($subfield_value);
1574 return 0; # no price found
1577 =head2 MungeMarcPrice
1579 Return the best guess at what the actual price is from a price field.
1582 sub MungeMarcPrice
{
1584 return unless ( $price =~ m/\d/ ); ## No digits means no price.
1585 # Look for the currency symbol and the normalized code of the active currency, if it's there,
1586 my $active_currency = Koha
::Acquisition
::Currencies
->get_active;
1587 my $symbol = $active_currency->symbol;
1588 my $isocode = $active_currency->isocode;
1589 $isocode = $active_currency->currency unless defined $isocode;
1592 my @matches =($price=~ /
1594 ( # start of capturing parenthesis
1596 (?
:[\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'
1597 |(?
:\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'
1599 \s?\p
{Sc
}?\s?
# followed or not by a whitespace. \p{Sc}?\s? are for cases like '25$ USD'
1601 (?
:[\p
{Sc
}\p
{L
}\
/.]){1,4} # followed by same block as symbol block
1602 |(?
:\d
+[\p
{P
}\s
]?
){1,4} # or by same block as digits block
1604 \s?\p
{L
}{0,4}\s?
# followed or not by a whitespace. \p{L}{0,4}\s? are for cases like '$9.50 USD'
1605 ) # end of capturing parenthesis
1606 (?
:\p
{P
}|\z
) # followed by a punctuation sign or by the end of the string
1610 foreach ( @matches ) {
1611 $localprice = $_ and last if index($_, $isocode)>=0;
1613 if ( !$localprice ) {
1614 foreach ( @matches ) {
1615 $localprice = $_ and last if $_=~ /(^|[^\p{Sc}\p{L}\/])\Q
$symbol\E
([^\p
{Sc
}\p
{L
}\
/]+\z|\z)/;
1620 if ( $localprice ) {
1621 $price = $localprice;
1623 ## Grab the first number in the string ( can use commas or periods for thousands separator and/or decimal separator )
1624 ( $price ) = $price =~ m/([\d\,\.]+[[\,\.]\d\d]?)/;
1626 # eliminate symbol/isocode, space and any final dot from the string
1627 $price =~ s/[\p{Sc}\p{L}\/ ]|\.$//g
;
1628 # remove comma,dot when used as separators from hundreds
1629 $price =~s/[\,\.](\d{3})/$1/g;
1630 # convert comma to dot to ensure correct display of decimals if existing
1636 =head2 GetMarcQuantity
1638 return the quantity of a book. Used in acquisition only, when importing a file an iso2709 from a bookseller
1639 Warning : this is not really in the marc standard. In Unimarc, Electre (the most widely used bookseller) use the 969$a
1641 returns 0 if no quantity found
1642 returns undef if called without a marc record or with
1643 an unrecognized marc format
1647 sub GetMarcQuantity
{
1648 my ( $record, $marcflavour ) = @_;
1650 carp
'GetMarcQuantity called on undefined record';
1657 if ( $marcflavour eq "MARC21" ) {
1659 } elsif ( $marcflavour eq "UNIMARC" ) {
1660 @listtags = ('969');
1666 for my $field ( $record->field(@listtags) ) {
1667 for my $subfield_value ($field->subfield($subfield)){
1669 if ($subfield_value) {
1670 # in France, the cents separator is the , but sometimes, ppl use a .
1671 # in this case, the price will be x100 when unformatted ! Replace the . by a , to get a proper price calculation
1672 $subfield_value =~ s/\./,/ if C4
::Context
->preference("CurrencyFormat") eq "FR";
1673 return $subfield_value;
1677 return 0; # no price found
1681 =head2 GetAuthorisedValueDesc
1683 my $subfieldvalue =get_authorised_value_desc(
1684 $tag, $subf[$i][0],$subf[$i][1], '', $taglib, $category, $opac);
1686 Retrieve the complete description for a given authorised value.
1688 Now takes $category and $value pair too.
1690 my $auth_value_desc =GetAuthorisedValueDesc(
1691 '','', 'DVD' ,'','','CCODE');
1693 If the optional $opac parameter is set to a true value, displays OPAC
1694 descriptions rather than normal ones when they exist.
1698 sub GetAuthorisedValueDesc
{
1699 my ( $tag, $subfield, $value, $framework, $tagslib, $category, $opac ) = @_;
1703 return $value unless defined $tagslib->{$tag}->{$subfield}->{'authorised_value'};
1706 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "branches" ) {
1707 return Koha
::Libraries
->find($value)->branchname;
1711 if ( $tagslib->{$tag}->{$subfield}->{'authorised_value'} eq "itemtypes" ) {
1712 return getitemtypeinfo
($value)->{translated_description
};
1715 #---- "true" authorized value
1716 $category = $tagslib->{$tag}->{$subfield}->{'authorised_value'};
1719 my $dbh = C4
::Context
->dbh;
1720 if ( $category ne "" ) {
1721 my $sth = $dbh->prepare( "SELECT lib, lib_opac FROM authorised_values WHERE category = ? AND authorised_value = ?" );
1722 $sth->execute( $category, $value );
1723 my $data = $sth->fetchrow_hashref;
1724 return ( $opac && $data->{'lib_opac'} ) ?
$data->{'lib_opac'} : $data->{'lib'};
1726 return $value; # if nothing is found return the original value
1730 =head2 GetMarcControlnumber
1732 $marccontrolnumber = GetMarcControlnumber($record,$marcflavour);
1734 Get the control number / record Identifier from the MARC record and return it.
1738 sub GetMarcControlnumber
{
1739 my ( $record, $marcflavour ) = @_;
1741 carp
'GetMarcControlnumber called on undefined record';
1744 my $controlnumber = "";
1745 # Control number or Record identifier are the same field in MARC21, UNIMARC and NORMARC
1746 # Keep $marcflavour for possible later use
1747 if ($marcflavour eq "MARC21" || $marcflavour eq "UNIMARC" || $marcflavour eq "NORMARC") {
1748 my $controlnumberField = $record->field('001');
1749 if ($controlnumberField) {
1750 $controlnumber = $controlnumberField->data();
1753 return $controlnumber;
1758 $marcisbnsarray = GetMarcISBN( $record, $marcflavour );
1760 Get all ISBNs from the MARC record and returns them in an array.
1761 ISBNs stored in different fields depending on MARC flavour
1766 my ( $record, $marcflavour ) = @_;
1768 carp
'GetMarcISBN called on undefined record';
1772 if ( $marcflavour eq "UNIMARC" ) {
1774 } else { # assume marc21 if not unimarc
1779 foreach my $field ( $record->field($scope) ) {
1780 my $isbn = $field->subfield( 'a' );
1781 if ( $isbn ne "" ) {
1782 push @marcisbns, $isbn;
1792 $marcissnsarray = GetMarcISSN( $record, $marcflavour );
1794 Get all valid ISSNs from the MARC record and returns them in an array.
1795 ISSNs are stored in different fields depending on MARC flavour
1800 my ( $record, $marcflavour ) = @_;
1802 carp
'GetMarcISSN called on undefined record';
1806 if ( $marcflavour eq "UNIMARC" ) {
1809 else { # assume MARC21 or NORMARC
1813 foreach my $field ( $record->field($scope) ) {
1814 push @marcissns, $field->subfield( 'a' )
1815 if ( $field->subfield( 'a' ) ne "" );
1822 $marcnotesarray = GetMarcNotes( $record, $marcflavour );
1824 Get all notes from the MARC record and returns them in an array.
1825 The notes are stored in different fields depending on MARC flavour.
1826 MARC21 field 555 gets special attention for the $u subfields.
1831 my ( $record, $marcflavour ) = @_;
1833 carp
'GetMarcNotes called on undefined record';
1837 my $scope = $marcflavour eq "UNIMARC"?
'3..': '5..';
1839 my %blacklist = map { $_ => 1 }
1840 split( /,/, C4
::Context
->preference('NotesBlacklist'));
1841 foreach my $field ( $record->field($scope) ) {
1842 my $tag = $field->tag();
1843 next if $blacklist{ $tag };
1844 if( $marcflavour ne 'UNIMARC' && $tag =~ /555/ ) {
1845 # Field 555$u contains URLs
1846 # We first push the regular subfields and all $u's separately
1847 # Leave further actions to the template
1848 push @marcnotes, { marcnote
=> $field->as_string('abcd') };
1849 foreach my $sub ( $field->subfield('u') ) {
1850 push @marcnotes, { marcnote
=> $sub };
1853 push @marcnotes, { marcnote
=> $field->as_string() };
1859 =head2 GetMarcSubjects
1861 $marcsubjcts = GetMarcSubjects($record,$marcflavour);
1863 Get all subjects from the MARC record and returns them in an array.
1864 The subjects are stored in different fields depending on MARC flavour
1868 sub GetMarcSubjects
{
1869 my ( $record, $marcflavour ) = @_;
1871 carp
'GetMarcSubjects called on undefined record';
1874 my ( $mintag, $maxtag, $fields_filter );
1875 if ( $marcflavour eq "UNIMARC" ) {
1878 $fields_filter = '6..';
1879 } else { # marc21/normarc
1882 $fields_filter = '6..';
1887 my $subject_limit = C4
::Context
->preference("TraceCompleteSubfields") ?
'su,complete-subfield' : 'su';
1888 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1890 foreach my $field ( $record->field($fields_filter) ) {
1891 next unless ($field->tag() >= $mintag && $field->tag() <= $maxtag);
1893 my @subfields = $field->subfields();
1896 # if there is an authority link, build the links with an= subfield9
1897 my $subfield9 = $field->subfield('9');
1900 my $linkvalue = $subfield9;
1901 $linkvalue =~ s/(\(|\))//g;
1902 @link_loop = ( { limit
=> 'an', 'link' => $linkvalue } );
1903 $authoritylink = $linkvalue
1907 for my $subject_subfield (@subfields) {
1908 next if ( $subject_subfield->[0] eq '9' );
1910 # don't load unimarc subfields 3,4,5
1911 next if ( ( $marcflavour eq "UNIMARC" ) and ( $subject_subfield->[0] =~ /2|3|4|5/ ) );
1912 # don't load MARC21 subfields 2 (FIXME: any more subfields??)
1913 next if ( ( $marcflavour eq "MARC21" ) and ( $subject_subfield->[0] =~ /2/ ) );
1915 my $code = $subject_subfield->[0];
1916 my $value = $subject_subfield->[1];
1917 my $linkvalue = $value;
1918 $linkvalue =~ s/(\(|\))//g;
1919 # if no authority link, build a search query
1920 unless ($subfield9) {
1922 limit
=> $subject_limit,
1923 'link' => $linkvalue,
1924 operator
=> (scalar @link_loop) ?
' and ' : undef
1927 my @this_link_loop = @link_loop;
1929 unless ( $code eq '0' ) {
1930 push @subfields_loop, {
1933 link_loop
=> \
@this_link_loop,
1934 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : ''
1939 push @marcsubjects, {
1940 MARCSUBJECT_SUBFIELDS_LOOP
=> \
@subfields_loop,
1941 authoritylink
=> $authoritylink,
1942 } if $authoritylink || @subfields_loop;
1945 return \
@marcsubjects;
1946 } #end getMARCsubjects
1948 =head2 GetMarcAuthors
1950 authors = GetMarcAuthors($record,$marcflavour);
1952 Get all authors from the MARC record and returns them in an array.
1953 The authors are stored in different fields depending on MARC flavour
1957 sub GetMarcAuthors
{
1958 my ( $record, $marcflavour ) = @_;
1960 carp
'GetMarcAuthors called on undefined record';
1963 my ( $mintag, $maxtag, $fields_filter );
1965 # tagslib useful only for UNIMARC author responsibilities
1967 if ( $marcflavour eq "UNIMARC" ) {
1968 # FIXME : we don't have the framework available, we take the default framework. May be buggy on some setups, will be usually correct.
1969 $tagslib = GetMarcStructure
( 1, '', { unsafe
=> 1 });
1972 $fields_filter = '7..';
1973 } else { # marc21/normarc
1976 $fields_filter = '7..';
1980 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
1982 foreach my $field ( $record->field($fields_filter) ) {
1983 next unless $field->tag() >= $mintag && $field->tag() <= $maxtag;
1986 my @subfields = $field->subfields();
1989 # if there is an authority link, build the link with Koha-Auth-Number: subfield9
1990 my $subfield9 = $field->subfield('9');
1992 my $linkvalue = $subfield9;
1993 $linkvalue =~ s/(\(|\))//g;
1994 @link_loop = ( { 'limit' => 'an', 'link' => $linkvalue } );
1999 for my $authors_subfield (@subfields) {
2000 next if ( $authors_subfield->[0] eq '9' );
2002 # unimarc3 contains the $3 of the author for UNIMARC.
2003 # For french academic libraries, it's the "ppn", and it's required for idref webservice
2004 $unimarc3 = $authors_subfield->[1] if $marcflavour eq 'UNIMARC' and $authors_subfield->[0] =~ /3/;
2006 # don't load unimarc subfields 3, 5
2007 next if ( $marcflavour eq 'UNIMARC' and ( $authors_subfield->[0] =~ /3|5/ ) );
2009 my $code = $authors_subfield->[0];
2010 my $value = $authors_subfield->[1];
2011 my $linkvalue = $value;
2012 $linkvalue =~ s/(\(|\))//g;
2013 # UNIMARC author responsibility
2014 if ( $marcflavour eq 'UNIMARC' and $code eq '4' ) {
2015 $value = GetAuthorisedValueDesc
( $field->tag(), $code, $value, '', $tagslib );
2016 $linkvalue = "($value)";
2018 # if no authority link, build a search query
2019 unless ($subfield9) {
2022 'link' => $linkvalue,
2023 operator
=> (scalar @link_loop) ?
' and ' : undef
2026 my @this_link_loop = @link_loop;
2028 unless ( $code eq '0') {
2029 push @subfields_loop, {
2030 tag
=> $field->tag(),
2033 link_loop
=> \
@this_link_loop,
2034 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : ''
2038 push @marcauthors, {
2039 MARCAUTHOR_SUBFIELDS_LOOP
=> \
@subfields_loop,
2040 authoritylink
=> $subfield9,
2041 unimarc3
=> $unimarc3
2044 return \
@marcauthors;
2049 $marcurls = GetMarcUrls($record,$marcflavour);
2051 Returns arrayref of URLs from MARC data, suitable to pass to tmpl loop.
2052 Assumes web resources (not uncommon in MARC21 to omit resource type ind)
2057 my ( $record, $marcflavour ) = @_;
2059 carp
'GetMarcUrls called on undefined record';
2064 for my $field ( $record->field('856') ) {
2066 for my $note ( $field->subfield('z') ) {
2067 push @notes, { note
=> $note };
2069 my @urls = $field->subfield('u');
2070 foreach my $url (@urls) {
2072 if ( $marcflavour eq 'MARC21' ) {
2073 my $s3 = $field->subfield('3');
2074 my $link = $field->subfield('y');
2075 unless ( $url =~ /^\w+:/ ) {
2076 if ( $field->indicator(1) eq '7' ) {
2077 $url = $field->subfield('2') . "://" . $url;
2078 } elsif ( $field->indicator(1) eq '1' ) {
2079 $url = 'ftp://' . $url;
2082 # properly, this should be if ind1=4,
2083 # however we will assume http protocol since we're building a link.
2084 $url = 'http://' . $url;
2088 # TODO handle ind 2 (relationship)
2093 $marcurl->{'linktext'} = $link || $s3 || C4
::Context
->preference('URLLinkText') || $url;
2094 $marcurl->{'part'} = $s3 if ($link);
2095 $marcurl->{'toc'} = 1 if ( defined($s3) && $s3 =~ /^[Tt]able/ );
2097 $marcurl->{'linktext'} = $field->subfield('2') || C4
::Context
->preference('URLLinkText') || $url;
2098 $marcurl->{'MARCURL'} = $url;
2100 push @marcurls, $marcurl;
2106 =head2 GetMarcSeries
2108 $marcseriesarray = GetMarcSeries($record,$marcflavour);
2110 Get all series from the MARC record and returns them in an array.
2111 The series are stored in different fields depending on MARC flavour
2116 my ( $record, $marcflavour ) = @_;
2118 carp
'GetMarcSeries called on undefined record';
2122 my ( $mintag, $maxtag, $fields_filter );
2123 if ( $marcflavour eq "UNIMARC" ) {
2126 $fields_filter = '2..';
2127 } else { # marc21/normarc
2130 $fields_filter = '4..';
2134 my $AuthoritySeparator = C4
::Context
->preference('AuthoritySeparator');
2136 foreach my $field ( $record->field($fields_filter) ) {
2137 next unless $field->tag() >= $mintag && $field->tag() <= $maxtag;
2139 my @subfields = $field->subfields();
2142 for my $series_subfield (@subfields) {
2144 # ignore $9, used for authority link
2145 next if ( $series_subfield->[0] eq '9' );
2148 my $code = $series_subfield->[0];
2149 my $value = $series_subfield->[1];
2150 my $linkvalue = $value;
2151 $linkvalue =~ s/(\(|\))//g;
2153 # see if this is an instance of a volume
2154 if ( $code eq 'v' ) {
2159 'link' => $linkvalue,
2160 operator
=> (scalar @link_loop) ?
' and ' : undef
2163 if ($volume_number) {
2164 push @subfields_loop, { volumenum
=> $value };
2166 push @subfields_loop, {
2169 link_loop
=> \
@link_loop,
2170 separator
=> (scalar @subfields_loop) ?
$AuthoritySeparator : '',
2171 volumenum
=> $volume_number,
2175 push @marcseries, { MARCSERIES_SUBFIELDS_LOOP
=> \
@subfields_loop };
2178 return \
@marcseries;
2179 } #end getMARCseriess
2183 $marchostsarray = GetMarcHosts($record,$marcflavour);
2185 Get all host records (773s MARC21, 461 UNIMARC) from the MARC record and returns them in an array.
2190 my ( $record, $marcflavour ) = @_;
2192 carp
'GetMarcHosts called on undefined record';
2196 my ( $tag,$title_subf,$bibnumber_subf,$itemnumber_subf);
2197 $marcflavour ||="MARC21";
2198 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
2201 $bibnumber_subf ="0";
2202 $itemnumber_subf='9';
2204 elsif ($marcflavour eq "UNIMARC") {
2207 $bibnumber_subf ="0";
2208 $itemnumber_subf='9';
2213 foreach my $field ( $record->field($tag)) {
2217 my $hostbiblionumber = $field->subfield("$bibnumber_subf");
2218 my $hosttitle = $field->subfield($title_subf);
2219 my $hostitemnumber=$field->subfield($itemnumber_subf);
2220 push @fields_loop, { hostbiblionumber
=> $hostbiblionumber, hosttitle
=> $hosttitle, hostitemnumber
=> $hostitemnumber};
2221 push @marchosts, { MARCHOSTS_FIELDS_LOOP
=> \
@fields_loop };
2224 my $marchostsarray = \
@marchosts;
2225 return $marchostsarray;
2228 =head2 UpsertMarcSubfield
2230 my $record = C4::Biblio::UpsertMarcSubfield($MARC::Record, $fieldTag, $subfieldCode, $subfieldContent);
2234 sub UpsertMarcSubfield
{
2235 my ($record, $tag, $code, $content) = @_;
2236 my $f = $record->field($tag);
2239 $f->update( $code => $content );
2242 my $f = MARC
::Field
->new( $tag, '', '', $code => $content);
2243 $record->insert_fields_ordered( $f );
2247 =head2 UpsertMarcControlField
2249 my $record = C4::Biblio::UpsertMarcControlField($MARC::Record, $fieldTag, $content);
2253 sub UpsertMarcControlField
{
2254 my ($record, $tag, $content) = @_;
2255 die "UpsertMarcControlField() \$tag '$tag' is not a control field\n" unless 0+$tag < 10;
2256 my $f = $record->field($tag);
2259 $f->update( $content );
2262 my $f = MARC
::Field
->new($tag, $content);
2263 $record->insert_fields_ordered( $f );
2267 =head2 GetFrameworkCode
2269 $frameworkcode = GetFrameworkCode( $biblionumber )
2273 sub GetFrameworkCode
{
2274 my ($biblionumber) = @_;
2275 my $dbh = C4
::Context
->dbh;
2276 my $sth = $dbh->prepare("SELECT frameworkcode FROM biblio WHERE biblionumber=?");
2277 $sth->execute($biblionumber);
2278 my ($frameworkcode) = $sth->fetchrow;
2279 return $frameworkcode;
2282 =head2 TransformKohaToMarc
2284 $record = TransformKohaToMarc( $hash )
2286 This function builds partial MARC::Record from a hash
2287 Hash entries can be from biblio or biblioitems.
2289 This function is called in acquisition module, to create a basic catalogue
2290 entry from user entry
2295 sub TransformKohaToMarc
{
2297 my $record = MARC
::Record
->new();
2298 SetMarcUnicodeFlag
( $record, C4
::Context
->preference("marcflavour") );
2299 # FIXME Do not we want to get the marc subfield structure for the biblio framework?
2300 my $mss = GetMarcSubfieldStructure
();
2302 while ( my ($kohafield, $value) = each %$hash ) {
2303 next unless exists $mss->{$kohafield};
2304 next unless $mss->{$kohafield};
2305 my $tagfield = $mss->{$kohafield}{tagfield
} . '';
2306 my $tagsubfield = $mss->{$kohafield}{tagsubfield
};
2307 foreach my $value ( split(/\s?\|\s?/, $value, -1) ) {
2308 next if $value eq '';
2309 $tag_hr->{$tagfield} //= [];
2310 push @
{$tag_hr->{$tagfield}}, [($tagsubfield, $value)];
2313 foreach my $tag (sort keys %$tag_hr) {
2314 my @sfl = @
{$tag_hr->{$tag}};
2315 @sfl = sort { $a->[0] cmp $b->[0]; } @sfl;
2316 @sfl = map { @
{$_}; } @sfl;
2317 $record->insert_fields_ordered(
2318 MARC
::Field
->new($tag, " ", " ", @sfl)
2324 =head2 PrepHostMarcField
2326 $hostfield = PrepHostMarcField ( $hostbiblionumber,$hostitemnumber,$marcflavour )
2328 This function returns a host field populated with data from the host record, the field can then be added to an analytical record
2332 sub PrepHostMarcField
{
2333 my ($hostbiblionumber,$hostitemnumber, $marcflavour) = @_;
2334 $marcflavour ||="MARC21";
2337 my $hostrecord = GetMarcBiblio
($hostbiblionumber);
2338 my $item = C4
::Items
::GetItem
($hostitemnumber);
2341 if ( $marcflavour eq "MARC21" || $marcflavour eq "NORMARC" ) {
2345 if ($hostrecord->subfield('100','a')){
2346 $mainentry = $hostrecord->subfield('100','a');
2347 } elsif ($hostrecord->subfield('110','a')){
2348 $mainentry = $hostrecord->subfield('110','a');
2350 $mainentry = $hostrecord->subfield('111','a');
2353 # qualification info
2355 if (my $field260 = $hostrecord->field('260')){
2356 $qualinfo = $field260->as_string( 'abc' );
2361 my $ed = $hostrecord->subfield('250','a');
2362 my $barcode = $item->{'barcode'};
2363 my $title = $hostrecord->subfield('245','a');
2365 # record control number, 001 with 003 and prefix
2367 if ($hostrecord->field('001')){
2368 $recctrlno = $hostrecord->field('001')->data();
2369 if ($hostrecord->field('003')){
2370 $recctrlno = '('.$hostrecord->field('003')->data().')'.$recctrlno;
2375 my $issn = $hostrecord->subfield('022','a');
2376 my $isbn = $hostrecord->subfield('020','a');
2379 $hostmarcfield = MARC
::Field
->new(
2381 '0' => $hostbiblionumber,
2382 '9' => $hostitemnumber,
2392 } elsif ($marcflavour eq "UNIMARC") {
2393 $hostmarcfield = MARC
::Field
->new(
2395 '0' => $hostbiblionumber,
2396 't' => $hostrecord->subfield('200','a'),
2397 '9' => $hostitemnumber
2401 return $hostmarcfield;
2404 =head2 TransformHtmlToXml
2406 $xml = TransformHtmlToXml( $tags, $subfields, $values, $indicator,
2407 $ind_tag, $auth_type )
2409 $auth_type contains :
2413 =item - nothing : rebuild a biblio. In UNIMARC the encoding is in 100$a pos 26/27
2415 =item - UNIMARCAUTH : rebuild an authority. In UNIMARC, the encoding is in 100$a pos 13/14
2417 =item - ITEM : rebuild an item : in UNIMARC, 100$a, it's in the biblio ! (otherwise, we would get 2 100 fields !)
2423 sub TransformHtmlToXml
{
2424 my ( $tags, $subfields, $values, $indicator, $ind_tag, $auth_type ) = @_;
2425 # NOTE: The parameter $ind_tag is NOT USED -- BZ 11247
2427 my $xml = MARC
::File
::XML
::header
('UTF-8');
2428 $xml .= "<record>\n";
2429 $auth_type = C4
::Context
->preference('marcflavour') unless $auth_type;
2430 MARC
::File
::XML
->default_record_format($auth_type);
2432 # in UNIMARC, field 100 contains the encoding
2433 # check that there is one, otherwise the
2434 # MARC::Record->new_from_xml will fail (and Koha will die)
2435 my $unimarc_and_100_exist = 0;
2436 $unimarc_and_100_exist = 1 if $auth_type eq 'ITEM'; # if we rebuild an item, no need of a 100 field
2441 for ( my $i = 0 ; $i < @
$tags ; $i++ ) {
2443 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' and @
$tags[$i] eq "100" and @
$subfields[$i] eq "a" ) {
2445 # if we have a 100 field and it's values are not correct, skip them.
2446 # if we don't have any valid 100 field, we will create a default one at the end
2447 my $enc = substr( @
$values[$i], 26, 2 );
2448 if ( $enc eq '01' or $enc eq '50' or $enc eq '03' ) {
2449 $unimarc_and_100_exist = 1;
2454 @
$values[$i] =~ s/&/&/g;
2455 @
$values[$i] =~ s/</</g;
2456 @
$values[$i] =~ s/>/>/g;
2457 @
$values[$i] =~ s/"/"/g;
2458 @
$values[$i] =~ s/'/'/g;
2460 if ( ( @
$tags[$i] ne $prevtag ) ) {
2461 $j++ unless ( @
$tags[$i] eq "" );
2462 my $indicator1 = eval { substr( @
$indicator[$j], 0, 1 ) };
2463 my $indicator2 = eval { substr( @
$indicator[$j], 1, 1 ) };
2464 my $ind1 = _default_ind_to_space
($indicator1);
2466 if ( @
$indicator[$j] ) {
2467 $ind2 = _default_ind_to_space
($indicator2);
2469 warn "Indicator in @$tags[$i] is empty";
2473 $xml .= "</datafield>\n";
2474 if ( ( @
$tags[$i] && @
$tags[$i] > 10 )
2475 && ( @
$values[$i] ne "" ) ) {
2476 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2477 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2483 if ( @
$values[$i] ne "" ) {
2486 if ( @
$tags[$i] eq "000" ) {
2487 $xml .= "<leader>@$values[$i]</leader>\n";
2490 # rest of the fixed fields
2491 } elsif ( @
$tags[$i] < 10 ) {
2492 $xml .= "<controlfield tag=\"@$tags[$i]\">@$values[$i]</controlfield>\n";
2495 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2496 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2501 } else { # @$tags[$i] eq $prevtag
2502 my $indicator1 = eval { substr( @
$indicator[$j], 0, 1 ) };
2503 my $indicator2 = eval { substr( @
$indicator[$j], 1, 1 ) };
2504 my $ind1 = _default_ind_to_space
($indicator1);
2506 if ( @
$indicator[$j] ) {
2507 $ind2 = _default_ind_to_space
($indicator2);
2509 warn "Indicator in @$tags[$i] is empty";
2512 if ( @
$values[$i] eq "" ) {
2515 $xml .= "<datafield tag=\"@$tags[$i]\" ind1=\"$ind1\" ind2=\"$ind2\">\n";
2518 $xml .= "<subfield code=\"@$subfields[$i]\">@$values[$i]</subfield>\n";
2521 $prevtag = @
$tags[$i];
2523 $xml .= "</datafield>\n" if $xml =~ m
/<datafield
/;
2524 if ( C4
::Context
->preference('marcflavour') eq 'UNIMARC' and !$unimarc_and_100_exist ) {
2526 # warn "SETTING 100 for $auth_type";
2527 my $string = strftime
( "%Y%m%d", localtime(time) );
2529 # set 50 to position 26 is biblios, 13 if authorities
2531 $pos = 13 if $auth_type eq 'UNIMARCAUTH';
2532 $string = sprintf( "%-*s", 35, $string );
2533 substr( $string, $pos, 6, "50" );
2534 $xml .= "<datafield tag=\"100\" ind1=\"\" ind2=\"\">\n";
2535 $xml .= "<subfield code=\"a\">$string</subfield>\n";
2536 $xml .= "</datafield>\n";
2538 $xml .= "</record>\n";
2539 $xml .= MARC
::File
::XML
::footer
();
2543 =head2 _default_ind_to_space
2545 Passed what should be an indicator returns a space
2546 if its undefined or zero length
2550 sub _default_ind_to_space
{
2552 if ( !defined $s || $s eq q{} ) {
2558 =head2 TransformHtmlToMarc
2560 L<$record> = TransformHtmlToMarc(L<$cgi>)
2561 L<$cgi> is the CGI object which containts the values for subfields
2563 'tag_010_indicator1_531951' ,
2564 'tag_010_indicator2_531951' ,
2565 'tag_010_code_a_531951_145735' ,
2566 'tag_010_subfield_a_531951_145735' ,
2567 'tag_200_indicator1_873510' ,
2568 'tag_200_indicator2_873510' ,
2569 'tag_200_code_a_873510_673465' ,
2570 'tag_200_subfield_a_873510_673465' ,
2571 'tag_200_code_b_873510_704318' ,
2572 'tag_200_subfield_b_873510_704318' ,
2573 'tag_200_code_e_873510_280822' ,
2574 'tag_200_subfield_e_873510_280822' ,
2575 'tag_200_code_f_873510_110730' ,
2576 'tag_200_subfield_f_873510_110730' ,
2578 L<$record> is the MARC::Record object.
2582 sub TransformHtmlToMarc
{
2583 my ($cgi, $isbiblio) = @_;
2585 my @params = $cgi->multi_param();
2587 # explicitly turn on the UTF-8 flag for all
2588 # 'tag_' parameters to avoid incorrect character
2589 # conversion later on
2590 my $cgi_params = $cgi->Vars;
2591 foreach my $param_name ( keys %$cgi_params ) {
2592 if ( $param_name =~ /^tag_/ ) {
2593 my $param_value = $cgi_params->{$param_name};
2594 unless ( Encode
::is_utf8
( $param_value ) ) {
2595 $cgi_params->{$param_name} = Encode
::decode
('UTF-8', $param_value );
2600 # creating a new record
2601 my $record = MARC
::Record
->new();
2603 my ($biblionumbertagfield, $biblionumbertagsubfield) = (-1, -1);
2604 ($biblionumbertagfield, $biblionumbertagsubfield) =
2605 &GetMarcFromKohaField
( "biblio.biblionumber", '' ) if $isbiblio;
2606 #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!
2607 for (my $i = 0; $params[$i]; $i++ ) { # browse all CGI params
2608 my $param = $params[$i];
2611 # if we are on biblionumber, store it in the MARC::Record (it may not be in the edited fields)
2612 if ( $param eq 'biblionumber' ) {
2613 if ( $biblionumbertagfield < 10 ) {
2614 $newfield = MARC
::Field
->new( $biblionumbertagfield, scalar $cgi->param($param), );
2616 $newfield = MARC
::Field
->new( $biblionumbertagfield, '', '', "$biblionumbertagsubfield" => scalar $cgi->param($param), );
2618 push @fields, $newfield if ($newfield);
2619 } elsif ( $param =~ /^tag_(\d*)_indicator1_/ ) { # new field start when having 'input name="..._indicator1_..."
2622 my $ind1 = _default_ind_to_space
( substr( $cgi->param($param), 0, 1 ) );
2623 my $ind2 = _default_ind_to_space
( substr( $cgi->param( $params[ $i + 1 ] ), 0, 1 ) );
2627 if ( $tag < 10 ) { # no code for theses fields
2628 # in MARC editor, 000 contains the leader.
2629 next if $tag == $biblionumbertagfield;
2630 my $fval= $cgi->param($params[$j+1]);
2631 if ( $tag eq '000' ) {
2632 # Force a fake leader even if not provided to avoid crashing
2633 # during decoding MARC record containing UTF-8 characters
2635 length( $fval ) == 24
2640 # between 001 and 009 (included)
2641 } elsif ( $fval ne '' ) {
2642 $newfield = MARC
::Field
->new( $tag, $fval, );
2645 # > 009, deal with subfields
2647 # browse subfields for this tag (reason for _code_ match)
2648 while(defined $params[$j] && $params[$j] =~ /_code_/) {
2649 last unless defined $params[$j+1];
2651 if $tag == $biblionumbertagfield and
2652 $cgi->param($params[$j]) eq $biblionumbertagsubfield;
2653 #if next param ne subfield, then it was probably empty
2654 #try next param by incrementing j
2655 if($params[$j+1]!~/_subfield_/) {$j++; next; }
2656 my $fkey= $cgi->param($params[$j]);
2657 my $fval= $cgi->param($params[$j+1]);
2658 #check if subfield value not empty and field exists
2659 if($fval ne '' && $newfield) {
2660 $newfield->add_subfields( $fkey => $fval);
2662 elsif($fval ne '') {
2663 $newfield = MARC
::Field
->new( $tag, $ind1, $ind2, $fkey => $fval );
2667 $i= $j-1; #update i for outer loop accordingly
2669 push @fields, $newfield if ($newfield);
2673 $record->append_fields(@fields);
2677 =head2 TransformMarcToKoha
2679 $result = TransformMarcToKoha( $record, $frameworkcode )
2681 Extract data from a MARC bib record into a hashref representing
2682 Koha biblio, biblioitems, and items fields.
2684 If passed an undefined record will log the error and return an empty
2689 sub TransformMarcToKoha
{
2690 my ( $record, $frameworkcode, $limit_table ) = @_;
2693 if (!defined $record) {
2694 carp
('TransformMarcToKoha called with undefined record');
2697 $limit_table = $limit_table || 0;
2698 $frameworkcode = '' unless defined $frameworkcode;
2700 my $inverted_field_map = _get_inverted_marc_field_map
($frameworkcode);
2703 if ( defined $limit_table && $limit_table eq 'items' ) {
2704 $tables{'items'} = 1;
2706 $tables{'items'} = 1;
2707 $tables{'biblio'} = 1;
2708 $tables{'biblioitems'} = 1;
2711 # traverse through record
2712 MARCFIELD
: foreach my $field ( $record->fields() ) {
2713 my $tag = $field->tag();
2714 next MARCFIELD
unless exists $inverted_field_map->{$tag};
2715 if ( $field->is_control_field() ) {
2716 my $kohafields = $inverted_field_map->{$tag}->{list
};
2717 ENTRY
: foreach my $entry ( @
{$kohafields} ) {
2718 my ( $subfield, $table, $column ) = @
{$entry};
2719 next ENTRY
unless exists $tables{$table};
2720 my $key = _disambiguate
( $table, $column );
2721 if ( $result->{$key} ) {
2722 unless ( ( $key eq "biblionumber" or $key eq "biblioitemnumber" ) and ( $field->data() eq "" ) ) {
2723 $result->{$key} .= " | " . $field->data();
2726 $result->{$key} = $field->data();
2731 # deal with subfields
2732 MARCSUBFIELD
: foreach my $sf ( $field->subfields() ) {
2733 my $code = $sf->[0];
2734 next MARCSUBFIELD
unless exists $inverted_field_map->{$tag}->{sfs
}->{$code};
2735 my $value = $sf->[1];
2736 SFENTRY
: foreach my $entry ( @
{ $inverted_field_map->{$tag}->{sfs
}->{$code} } ) {
2737 my ( $table, $column ) = @
{$entry};
2738 next SFENTRY
unless exists $tables{$table};
2739 my $key = _disambiguate
( $table, $column );
2740 if ( $result->{$key} ) {
2741 unless ( ( $key eq "biblionumber" or $key eq "biblioitemnumber" ) and ( $value eq "" ) ) {
2742 $result->{$key} .= " | " . $value;
2745 $result->{$key} = $value;
2752 # modify copyrightdate to keep only the 1st year found
2753 if ( exists $result->{'copyrightdate'} ) {
2754 my $temp = $result->{'copyrightdate'};
2755 $temp =~ m/c(\d\d\d\d)/;
2756 if ( $temp =~ m/c(\d\d\d\d)/ and $1 > 0 ) { # search cYYYY first
2757 $result->{'copyrightdate'} = $1;
2758 } else { # if no cYYYY, get the 1st date.
2759 $temp =~ m/(\d\d\d\d)/;
2760 $result->{'copyrightdate'} = $1;
2764 # modify publicationyear to keep only the 1st year found
2765 if ( exists $result->{'publicationyear'} ) {
2766 my $temp = $result->{'publicationyear'};
2767 if ( $temp =~ m/c(\d\d\d\d)/ and $1 > 0 ) { # search cYYYY first
2768 $result->{'publicationyear'} = $1;
2769 } else { # if no cYYYY, get the 1st date.
2770 $temp =~ m/(\d\d\d\d)/;
2771 $result->{'publicationyear'} = $1;
2778 sub _get_inverted_marc_field_map
{
2779 my ( $frameworkcode ) = @_;
2781 my $mss = GetMarcSubfieldStructure
( $frameworkcode );
2783 foreach my $kohafield ( keys %{ $mss } ) {
2784 next unless exists $mss->{$kohafield}; # not all columns are mapped to MARC tag & subfield
2785 my $tag = $mss->{$kohafield}{tagfield
};
2786 my $subfield = $mss->{$kohafield}{tagsubfield
};
2787 my ( $table, $column ) = split /[.]/, $kohafield, 2;
2788 push @
{ $field_map->{$tag}->{list
} }, [ $subfield, $table, $column ];
2789 push @
{ $field_map->{$tag}->{sfs
}->{$subfield} }, [ $table, $column ];
2794 =head2 _disambiguate
2796 $newkey = _disambiguate($table, $field);
2798 This is a temporary hack to distinguish between the
2799 following sets of columns when using TransformMarcToKoha.
2801 items.cn_source & biblioitems.cn_source
2802 items.cn_sort & biblioitems.cn_sort
2804 Columns that are currently NOT distinguished (FIXME
2805 due to lack of time to fully test) are:
2807 biblio.notes and biblioitems.notes
2812 FIXME - this is necessary because prefixing each column
2813 name with the table name would require changing lots
2814 of code and templates, and exposing more of the DB
2815 structure than is good to the UI templates, particularly
2816 since biblio and bibloitems may well merge in a future
2817 version. In the future, it would also be good to
2818 separate DB access and UI presentation field names
2823 sub CountItemsIssued
{
2824 my ($biblionumber) = @_;
2825 my $dbh = C4
::Context
->dbh;
2826 my $sth = $dbh->prepare('SELECT COUNT(*) as issuedCount FROM items, issues WHERE items.itemnumber = issues.itemnumber AND items.biblionumber = ?');
2827 $sth->execute($biblionumber);
2828 my $row = $sth->fetchrow_hashref();
2829 return $row->{'issuedCount'};
2833 my ( $table, $column ) = @_;
2834 if ( $column eq "cn_sort" or $column eq "cn_source" ) {
2835 return $table . '.' . $column;
2842 =head2 get_koha_field_from_marc
2844 $result->{_disambiguate($table, $field)} =
2845 get_koha_field_from_marc($table,$field,$record,$frameworkcode);
2847 Internal function to map data from the MARC record to a specific non-MARC field.
2848 FIXME: this is meant to replace TransformMarcToKohaOneField after more testing.
2852 sub get_koha_field_from_marc
{
2853 my ( $koha_table, $koha_column, $record, $frameworkcode ) = @_;
2854 my ( $tagfield, $subfield ) = GetMarcFromKohaField
( $koha_table . '.' . $koha_column, $frameworkcode );
2856 foreach my $field ( $record->field($tagfield) ) {
2857 if ( $field->tag() < 10 ) {
2859 $kohafield .= " | " . $field->data();
2861 $kohafield = $field->data();
2864 if ( $field->subfields ) {
2865 my @subfields = $field->subfields();
2866 foreach my $subfieldcount ( 0 .. $#subfields ) {
2867 if ( $subfields[$subfieldcount][0] eq $subfield ) {
2869 $kohafield .= " | " . $subfields[$subfieldcount][1];
2871 $kohafield = $subfields[$subfieldcount][1];
2881 =head2 TransformMarcToKohaOneField
2883 $result = TransformMarcToKohaOneField( $kohatable, $kohafield, $record, $result, $frameworkcode )
2887 sub TransformMarcToKohaOneField
{
2889 # FIXME ? if a field has a repeatable subfield that is used in old-db,
2890 # only the 1st will be retrieved...
2891 my ( $kohatable, $kohafield, $record, $result, $frameworkcode ) = @_;
2893 my ( $tagfield, $subfield ) = GetMarcFromKohaField
( $kohatable . "." . $kohafield, $frameworkcode );
2894 foreach my $field ( $record->field($tagfield) ) {
2895 if ( $field->tag() < 10 ) {
2896 if ( $result->{$kohafield} ) {
2897 $result->{$kohafield} .= " | " . $field->data();
2899 $result->{$kohafield} = $field->data();
2902 if ( $field->subfields ) {
2903 my @subfields = $field->subfields();
2904 foreach my $subfieldcount ( 0 .. $#subfields ) {
2905 if ( $subfields[$subfieldcount][0] eq $subfield ) {
2906 if ( $result->{$kohafield} ) {
2907 $result->{$kohafield} .= " | " . $subfields[$subfieldcount][1];
2909 $result->{$kohafield} = $subfields[$subfieldcount][1];
2923 # true ModZebra commented until indexdata fixes zebraDB crashes (it seems they occur on multiple updates
2925 # replaced by a zebraqueue table, that is filled with ModZebra to run.
2926 # the table is emptied by misc/cronjobs/zebraqueue_start.pl script
2927 # =head2 ModZebrafiles
2929 # &ModZebrafiles( $dbh, $biblionumber, $record, $folder, $server );
2933 # sub ModZebrafiles {
2935 # my ( $dbh, $biblionumber, $record, $folder, $server ) = @_;
2939 # C4::Context->zebraconfig($server)->{directory} . "/" . $folder . "/";
2940 # unless ( opendir( DIR, "$zebradir" ) ) {
2941 # warn "$zebradir not found";
2945 # my $filename = $zebradir . $biblionumber;
2948 # open( OUTPUT, ">", $filename . ".xml" );
2949 # print OUTPUT $record;
2956 ModZebra( $biblionumber, $op, $server, $record );
2958 $biblionumber is the biblionumber we want to index
2960 $op is specialUpdate or recordDelete, and is used to know what we want to do
2962 $server is the server that we want to update
2964 $record is the update MARC record if it's available. If it's not supplied
2965 and is needed, it'll be loaded from the database.
2970 ###Accepts a $server variable thus we can use it for biblios authorities or other zebra dbs
2971 my ( $biblionumber, $op, $server, $record ) = @_;
2972 $debug && warn "ModZebra: update requested for: $biblionumber $op $server\n";
2973 if ( C4
::Context
->preference('SearchEngine') eq 'Elasticsearch' ) {
2975 # TODO abstract to a standard API that'll work for whatever
2976 require Koha
::SearchEngine
::Elasticsearch
::Indexer
;
2977 my $indexer = Koha
::SearchEngine
::Elasticsearch
::Indexer
->new(
2979 index => $server eq 'biblioserver'
2980 ?
$Koha::SearchEngine
::BIBLIOS_INDEX
2981 : $Koha::SearchEngine
::AUTHORITIES_INDEX
2984 if ( $op eq 'specialUpdate' ) {
2986 $record = GetMarcBiblio
($biblionumber, 1);
2988 my $records = [$record];
2989 $indexer->update_index_background( [$biblionumber], [$record] );
2991 elsif ( $op eq 'recordDelete' ) {
2992 $indexer->delete_index_background( [$biblionumber] );
2995 croak
"ModZebra called with unknown operation: $op";
2999 my $dbh = C4
::Context
->dbh;
3001 # true ModZebra commented until indexdata fixes zebraDB crashes (it seems they occur on multiple updates
3003 # replaced by a zebraqueue table, that is filled with ModZebra to run.
3004 # the table is emptied by rebuild_zebra.pl script (using the -z switch)
3005 my $check_sql = "SELECT COUNT(*) FROM zebraqueue
3007 AND biblio_auth_number = ?
3010 my $check_sth = $dbh->prepare_cached($check_sql);
3011 $check_sth->execute( $server, $biblionumber, $op );
3012 my ($count) = $check_sth->fetchrow_array;
3013 $check_sth->finish();
3014 if ( $count == 0 ) {
3015 my $sth = $dbh->prepare("INSERT INTO zebraqueue (biblio_auth_number,server,operation) VALUES(?,?,?)");
3016 $sth->execute( $biblionumber, $server, $op );
3022 =head2 EmbedItemsInMarcBiblio
3024 EmbedItemsInMarcBiblio($marc, $biblionumber, $itemnumbers, $opac);
3026 Given a MARC::Record object containing a bib record,
3027 modify it to include the items attached to it as 9XX
3028 per the bib's MARC framework.
3029 if $itemnumbers is defined, only specified itemnumbers are embedded.
3031 If $opac is true, then opac-relevant suppressions are included.
3035 sub EmbedItemsInMarcBiblio
{
3036 my ($marc, $biblionumber, $itemnumbers, $opac) = @_;
3038 carp
'EmbedItemsInMarcBiblio: No MARC record passed';
3042 $itemnumbers = [] unless defined $itemnumbers;
3044 my $frameworkcode = GetFrameworkCode
($biblionumber);
3045 _strip_item_fields
($marc, $frameworkcode);
3047 # ... and embed the current items
3048 my $dbh = C4
::Context
->dbh;
3049 my $sth = $dbh->prepare("SELECT itemnumber FROM items WHERE biblionumber = ?");
3050 $sth->execute($biblionumber);
3052 my ( $itemtag, $itemsubfield ) = GetMarcFromKohaField
( "items.itemnumber", $frameworkcode );
3054 my $opachiddenitems = $opac
3055 && ( C4
::Context
->preference('OpacHiddenItems') !~ /^\s*$/ );
3057 while ( my ($itemnumber) = $sth->fetchrow_array ) {
3058 next if @
$itemnumbers and not grep { $_ == $itemnumber } @
$itemnumbers;
3059 my $i = $opachiddenitems ? C4
::Items
::GetItem
($itemnumber) : undef;
3060 push @items, { itemnumber
=> $itemnumber, item
=> $i };
3064 ? C4
::Items
::GetHiddenItemnumbers
( map { $_->{item
} } @items )
3066 # Convert to a hash for quick searching
3067 my %hiddenitems = map { $_ => 1 } @hiddenitems;
3068 foreach my $itemnumber ( map { $_->{itemnumber
} } @items ) {
3069 next if $hiddenitems{$itemnumber};
3070 my $item_marc = C4
::Items
::GetMarcItem
( $biblionumber, $itemnumber );
3071 push @item_fields, $item_marc->field($itemtag);
3073 $marc->append_fields(@item_fields);
3076 =head1 INTERNAL FUNCTIONS
3078 =head2 _koha_marc_update_bib_ids
3081 _koha_marc_update_bib_ids($record, $frameworkcode, $biblionumber, $biblioitemnumber);
3083 Internal function to add or update biblionumber and biblioitemnumber to
3088 sub _koha_marc_update_bib_ids
{
3089 my ( $record, $frameworkcode, $biblionumber, $biblioitemnumber ) = @_;
3091 my ( $biblio_tag, $biblio_subfield ) = GetMarcFromKohaField
( "biblio.biblionumber", $frameworkcode );
3092 die qq{No biblionumber tag
for framework
"$frameworkcode"} unless $biblio_tag;
3093 my ( $biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField
( "biblioitems.biblioitemnumber", $frameworkcode );
3094 die qq{No biblioitemnumber tag
for framework
"$frameworkcode"} unless $biblioitem_tag;
3096 if ( $biblio_tag < 10 ) {
3097 C4
::Biblio
::UpsertMarcControlField
( $record, $biblio_tag, $biblionumber );
3099 C4
::Biblio
::UpsertMarcSubfield
($record, $biblio_tag, $biblio_subfield, $biblionumber);
3101 if ( $biblioitem_tag < 10 ) {
3102 C4
::Biblio
::UpsertMarcControlField
( $record, $biblioitem_tag, $biblioitemnumber );
3104 C4
::Biblio
::UpsertMarcSubfield
($record, $biblioitem_tag, $biblioitem_subfield, $biblioitemnumber);
3108 =head2 _koha_marc_update_biblioitem_cn_sort
3110 _koha_marc_update_biblioitem_cn_sort($marc, $biblioitem, $frameworkcode);
3112 Given a MARC bib record and the biblioitem hash, update the
3113 subfield that contains a copy of the value of biblioitems.cn_sort.
3117 sub _koha_marc_update_biblioitem_cn_sort
{
3119 my $biblioitem = shift;
3120 my $frameworkcode = shift;
3122 my ( $biblioitem_tag, $biblioitem_subfield ) = GetMarcFromKohaField
( "biblioitems.cn_sort", $frameworkcode );
3123 return unless $biblioitem_tag;
3125 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
3127 if ( my $field = $marc->field($biblioitem_tag) ) {
3128 $field->delete_subfield( code
=> $biblioitem_subfield );
3129 if ( $cn_sort ne '' ) {
3130 $field->add_subfields( $biblioitem_subfield => $cn_sort );
3134 # if we get here, no biblioitem tag is present in the MARC record, so
3135 # we'll create it if $cn_sort is not empty -- this would be
3136 # an odd combination of events, however
3138 $marc->insert_grouped_field( MARC
::Field
->new( $biblioitem_tag, ' ', ' ', $biblioitem_subfield => $cn_sort ) );
3143 =head2 _koha_add_biblio
3145 my ($biblionumber,$error) = _koha_add_biblio($dbh,$biblioitem);
3147 Internal function to add a biblio ($biblio is a hash with the values)
3151 sub _koha_add_biblio
{
3152 my ( $dbh, $biblio, $frameworkcode ) = @_;
3156 # set the series flag
3157 unless (defined $biblio->{'serial'}){
3158 $biblio->{'serial'} = 0;
3159 if ( $biblio->{'seriestitle'} ) { $biblio->{'serial'} = 1 }
3162 my $query = "INSERT INTO biblio
3163 SET frameworkcode = ?,
3174 my $sth = $dbh->prepare($query);
3176 $frameworkcode, $biblio->{'author'}, $biblio->{'title'}, $biblio->{'unititle'}, $biblio->{'notes'},
3177 $biblio->{'serial'}, $biblio->{'seriestitle'}, $biblio->{'copyrightdate'}, $biblio->{'abstract'}
3180 my $biblionumber = $dbh->{'mysql_insertid'};
3181 if ( $dbh->errstr ) {
3182 $error .= "ERROR in _koha_add_biblio $query" . $dbh->errstr;
3188 #warn "LEAVING _koha_add_biblio: ".$biblionumber."\n";
3189 return ( $biblionumber, $error );
3192 =head2 _koha_modify_biblio
3194 my ($biblionumber,$error) == _koha_modify_biblio($dbh,$biblio,$frameworkcode);
3196 Internal function for updating the biblio table
3200 sub _koha_modify_biblio
{
3201 my ( $dbh, $biblio, $frameworkcode ) = @_;
3206 SET frameworkcode = ?,
3215 WHERE biblionumber = ?
3218 my $sth = $dbh->prepare($query);
3221 $frameworkcode, $biblio->{'author'}, $biblio->{'title'}, $biblio->{'unititle'}, $biblio->{'notes'},
3222 $biblio->{'serial'}, $biblio->{'seriestitle'}, $biblio->{'copyrightdate'}, $biblio->{'abstract'}, $biblio->{'biblionumber'}
3223 ) if $biblio->{'biblionumber'};
3225 if ( $dbh->errstr || !$biblio->{'biblionumber'} ) {
3226 $error .= "ERROR in _koha_modify_biblio $query" . $dbh->errstr;
3229 return ( $biblio->{'biblionumber'}, $error );
3232 =head2 _koha_modify_biblioitem_nonmarc
3234 my ($biblioitemnumber,$error) = _koha_modify_biblioitem_nonmarc( $dbh, $biblioitem );
3236 Updates biblioitems row except for marc and marcxml, which should be changed
3241 sub _koha_modify_biblioitem_nonmarc
{
3242 my ( $dbh, $biblioitem ) = @_;
3245 # re-calculate the cn_sort, it may have changed
3246 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
3248 my $query = "UPDATE biblioitems
3249 SET biblionumber = ?,
3255 publicationyear = ?,
3259 collectiontitle = ?,
3261 collectionvolume= ?,
3262 editionstatement= ?,
3263 editionresponsibility = ?,
3279 where biblioitemnumber = ?
3281 my $sth = $dbh->prepare($query);
3283 $biblioitem->{'biblionumber'}, $biblioitem->{'volume'}, $biblioitem->{'number'}, $biblioitem->{'itemtype'},
3284 $biblioitem->{'isbn'}, $biblioitem->{'issn'}, $biblioitem->{'publicationyear'}, $biblioitem->{'publishercode'},
3285 $biblioitem->{'volumedate'}, $biblioitem->{'volumedesc'}, $biblioitem->{'collectiontitle'}, $biblioitem->{'collectionissn'},
3286 $biblioitem->{'collectionvolume'}, $biblioitem->{'editionstatement'}, $biblioitem->{'editionresponsibility'}, $biblioitem->{'illus'},
3287 $biblioitem->{'pages'}, $biblioitem->{'bnotes'}, $biblioitem->{'size'}, $biblioitem->{'place'},
3288 $biblioitem->{'lccn'}, $biblioitem->{'url'}, $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'},
3289 $biblioitem->{'cn_item'}, $biblioitem->{'cn_suffix'}, $cn_sort, $biblioitem->{'totalissues'},
3290 $biblioitem->{'ean'}, $biblioitem->{'agerestriction'}, $biblioitem->{'biblioitemnumber'}
3292 if ( $dbh->errstr ) {
3293 $error .= "ERROR in _koha_modify_biblioitem_nonmarc $query" . $dbh->errstr;
3296 return ( $biblioitem->{'biblioitemnumber'}, $error );
3299 =head2 _koha_add_biblioitem
3301 my ($biblioitemnumber,$error) = _koha_add_biblioitem( $dbh, $biblioitem );
3303 Internal function to add a biblioitem
3307 sub _koha_add_biblioitem
{
3308 my ( $dbh, $biblioitem ) = @_;
3311 my ($cn_sort) = GetClassSort
( $biblioitem->{'biblioitems.cn_source'}, $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'} );
3312 my $query = "INSERT INTO biblioitems SET
3319 publicationyear = ?,
3323 collectiontitle = ?,
3325 collectionvolume= ?,
3326 editionstatement= ?,
3327 editionresponsibility = ?,
3344 my $sth = $dbh->prepare($query);
3346 $biblioitem->{'biblionumber'}, $biblioitem->{'volume'}, $biblioitem->{'number'}, $biblioitem->{'itemtype'},
3347 $biblioitem->{'isbn'}, $biblioitem->{'issn'}, $biblioitem->{'publicationyear'}, $biblioitem->{'publishercode'},
3348 $biblioitem->{'volumedate'}, $biblioitem->{'volumedesc'}, $biblioitem->{'collectiontitle'}, $biblioitem->{'collectionissn'},
3349 $biblioitem->{'collectionvolume'}, $biblioitem->{'editionstatement'}, $biblioitem->{'editionresponsibility'}, $biblioitem->{'illus'},
3350 $biblioitem->{'pages'}, $biblioitem->{'bnotes'}, $biblioitem->{'size'}, $biblioitem->{'place'},
3351 $biblioitem->{'lccn'}, $biblioitem->{'url'}, $biblioitem->{'biblioitems.cn_source'},
3352 $biblioitem->{'cn_class'}, $biblioitem->{'cn_item'}, $biblioitem->{'cn_suffix'}, $cn_sort,
3353 $biblioitem->{'totalissues'}, $biblioitem->{'ean'}, $biblioitem->{'agerestriction'}
3355 my $bibitemnum = $dbh->{'mysql_insertid'};
3357 if ( $dbh->errstr ) {
3358 $error .= "ERROR in _koha_add_biblioitem $query" . $dbh->errstr;
3362 return ( $bibitemnum, $error );
3365 =head2 _koha_delete_biblio
3367 $error = _koha_delete_biblio($dbh,$biblionumber);
3369 Internal sub for deleting from biblio table -- also saves to deletedbiblio
3371 C<$dbh> - the database handle
3373 C<$biblionumber> - the biblionumber of the biblio to be deleted
3377 # FIXME: add error handling
3379 sub _koha_delete_biblio
{
3380 my ( $dbh, $biblionumber ) = @_;
3382 # get all the data for this biblio
3383 my $sth = $dbh->prepare("SELECT * FROM biblio WHERE biblionumber=?");
3384 $sth->execute($biblionumber);
3386 if ( my $data = $sth->fetchrow_hashref ) {
3388 # save the record in deletedbiblio
3389 # find the fields to save
3390 my $query = "INSERT INTO deletedbiblio SET ";
3392 foreach my $temp ( keys %$data ) {
3393 $query .= "$temp = ?,";
3394 push( @bind, $data->{$temp} );
3397 # replace the last , by ",?)"
3399 my $bkup_sth = $dbh->prepare($query);
3400 $bkup_sth->execute(@bind);
3404 my $sth2 = $dbh->prepare("DELETE FROM biblio WHERE biblionumber=?");
3405 $sth2->execute($biblionumber);
3406 # update the timestamp (Bugzilla 7146)
3407 $sth2= $dbh->prepare("UPDATE deletedbiblio SET timestamp=NOW() WHERE biblionumber=?");
3408 $sth2->execute($biblionumber);
3415 =head2 _koha_delete_biblioitems
3417 $error = _koha_delete_biblioitems($dbh,$biblioitemnumber);
3419 Internal sub for deleting from biblioitems table -- also saves to deletedbiblioitems
3421 C<$dbh> - the database handle
3422 C<$biblionumber> - the biblioitemnumber of the biblioitem to be deleted
3426 # FIXME: add error handling
3428 sub _koha_delete_biblioitems
{
3429 my ( $dbh, $biblioitemnumber ) = @_;
3431 # get all the data for this biblioitem
3432 my $sth = $dbh->prepare("SELECT * FROM biblioitems WHERE biblioitemnumber=?");
3433 $sth->execute($biblioitemnumber);
3435 if ( my $data = $sth->fetchrow_hashref ) {
3437 # save the record in deletedbiblioitems
3438 # find the fields to save
3439 my $query = "INSERT INTO deletedbiblioitems SET ";
3441 foreach my $temp ( keys %$data ) {
3442 $query .= "$temp = ?,";
3443 push( @bind, $data->{$temp} );
3446 # replace the last , by ",?)"
3448 my $bkup_sth = $dbh->prepare($query);
3449 $bkup_sth->execute(@bind);
3452 # delete the biblioitem
3453 my $sth2 = $dbh->prepare("DELETE FROM biblioitems WHERE biblioitemnumber=?");
3454 $sth2->execute($biblioitemnumber);
3455 # update the timestamp (Bugzilla 7146)
3456 $sth2= $dbh->prepare("UPDATE deletedbiblioitems SET timestamp=NOW() WHERE biblioitemnumber=?");
3457 $sth2->execute($biblioitemnumber);
3464 =head1 UNEXPORTED FUNCTIONS
3466 =head2 ModBiblioMarc
3468 &ModBiblioMarc($newrec,$biblionumber,$frameworkcode);
3470 Add MARC XML data for a biblio to koha
3472 Function exported, but should NOT be used, unless you really know what you're doing
3477 # pass the MARC::Record to this function, and it will create the records in
3479 my ( $record, $biblionumber, $frameworkcode ) = @_;
3481 carp
'ModBiblioMarc passed an undefined record';
3485 # Clone record as it gets modified
3486 $record = $record->clone();
3487 my $dbh = C4
::Context
->dbh;
3488 my @fields = $record->fields();
3489 if ( !$frameworkcode ) {
3490 $frameworkcode = "";
3492 my $sth = $dbh->prepare("UPDATE biblio SET frameworkcode=? WHERE biblionumber=?");
3493 $sth->execute( $frameworkcode, $biblionumber );
3495 my $encoding = C4
::Context
->preference("marcflavour");
3497 # deal with UNIMARC field 100 (encoding) : create it if needed & set encoding to unicode
3498 if ( $encoding eq "UNIMARC" ) {
3499 my $defaultlanguage = C4
::Context
->preference("UNIMARCField100Language");
3500 $defaultlanguage = "fre" if (!$defaultlanguage || length($defaultlanguage) != 3);
3501 my $string = $record->subfield( 100, "a" );
3502 if ( ($string) && ( length( $record->subfield( 100, "a" ) ) == 36 ) ) {
3503 my $f100 = $record->field(100);
3504 $record->delete_field($f100);
3506 $string = POSIX
::strftime
( "%Y%m%d", localtime );
3508 $string = sprintf( "%-*s", 35, $string );
3509 substr ( $string, 22, 3, $defaultlanguage);
3511 substr( $string, 25, 3, "y50" );
3512 unless ( $record->subfield( 100, "a" ) ) {
3513 $record->insert_fields_ordered( MARC
::Field
->new( 100, "", "", "a" => $string ) );
3517 #enhancement 5374: update transaction date (005) for marc21/unimarc
3518 if($encoding =~ /MARC21|UNIMARC/) {
3519 my @a= (localtime) [5,4,3,2,1,0]; $a[0]+=1900; $a[1]++;
3520 # YY MM DD HH MM SS (update year and month)
3521 my $f005= $record->field('005');
3522 $f005->update(sprintf("%4d%02d%02d%02d%02d%04.1f",@a)) if $f005;
3525 $sth = $dbh->prepare("UPDATE biblioitems SET marcxml=? WHERE biblionumber=?");
3526 $sth->execute( $record->as_xml_record($encoding), $biblionumber );
3528 ModZebra
( $biblionumber, "specialUpdate", "biblioserver", $record );
3529 return $biblionumber;
3532 =head2 CountBiblioInOrders
3534 $count = &CountBiblioInOrders( $biblionumber);
3536 This function return count of biblios in orders with $biblionumber
3540 sub CountBiblioInOrders
{
3541 my ($biblionumber) = @_;
3542 my $dbh = C4
::Context
->dbh;
3543 my $query = "SELECT count(*)
3545 WHERE biblionumber=? AND (datecancellationprinted IS NULL OR datecancellationprinted='0000-00-00')";
3546 my $sth = $dbh->prepare($query);
3547 $sth->execute($biblionumber);
3548 my $count = $sth->fetchrow;
3552 =head2 GetSubscriptionsId
3554 $subscriptions = &GetSubscriptionsId($biblionumber);
3556 This function return an array of subscriptionid with $biblionumber
3560 sub GetSubscriptionsId
{
3561 my ($biblionumber) = @_;
3562 my $dbh = C4
::Context
->dbh;
3563 my $query = "SELECT subscriptionid
3565 WHERE biblionumber=?";
3566 my $sth = $dbh->prepare($query);
3567 $sth->execute($biblionumber);
3568 my @subscriptions = $sth->fetchrow_array;
3569 return (@subscriptions);
3572 =head2 prepare_host_field
3574 $marcfield = prepare_host_field( $hostbiblioitem, $marcflavour );
3575 Generate the host item entry for an analytic child entry
3579 sub prepare_host_field
{
3580 my ( $hostbiblio, $marcflavour ) = @_;
3581 $marcflavour ||= C4
::Context
->preference('marcflavour');
3582 my $host = GetMarcBiblio
($hostbiblio);
3583 # unfortunately as_string does not 'do the right thing'
3584 # if field returns undef
3588 if ( $marcflavour eq 'MARC21' || $marcflavour eq 'NORMARC' ) {
3589 if ( $field = $host->field('100') || $host->field('110') || $host->field('11') ) {
3590 my $s = $field->as_string('ab');
3595 if ( $field = $host->field('245') ) {
3596 my $s = $field->as_string('a');
3601 if ( $field = $host->field('260') ) {
3602 my $s = $field->as_string('abc');
3607 if ( $field = $host->field('240') ) {
3608 my $s = $field->as_string();
3613 if ( $field = $host->field('022') ) {
3614 my $s = $field->as_string('a');
3619 if ( $field = $host->field('020') ) {
3620 my $s = $field->as_string('a');
3625 if ( $field = $host->field('001') ) {
3626 $sfd{w
} = $field->data(),;
3628 $host_field = MARC
::Field
->new( 773, '0', ' ', %sfd );
3631 elsif ( $marcflavour eq 'UNIMARC' ) {
3633 if ( $field = $host->field('700') || $host->field('710') || $host->field('720') ) {
3634 my $s = $field->as_string('ab');
3640 if ( $field = $host->field('200') ) {
3641 my $s = $field->as_string('a');
3646 #place of publicaton
3647 if ( $field = $host->field('210') ) {
3648 my $s = $field->as_string('a');
3653 #date of publication
3654 if ( $field = $host->field('210') ) {
3655 my $s = $field->as_string('d');
3661 if ( $field = $host->field('205') ) {
3662 my $s = $field->as_string();
3668 if ( $field = $host->field('856') ) {
3669 my $s = $field->as_string('u');
3675 if ( $field = $host->field('011') ) {
3676 my $s = $field->as_string('a');
3682 if ( $field = $host->field('010') ) {
3683 my $s = $field->as_string('a');
3688 if ( $field = $host->field('001') ) {
3689 $sfd{0} = $field->data(),;
3691 $host_field = MARC
::Field
->new( 461, '0', ' ', %sfd );
3698 =head2 UpdateTotalIssues
3700 UpdateTotalIssues($biblionumber, $increase, [$value])
3702 Update the total issue count for a particular bib record.
3706 =item C<$biblionumber> is the biblionumber of the bib to update
3708 =item C<$increase> is the amount to increase (or decrease) the total issues count by
3710 =item C<$value> is the absolute value that total issues count should be set to. If provided, C<$increase> is ignored.
3716 sub UpdateTotalIssues
{
3717 my ($biblionumber, $increase, $value) = @_;
3720 my $record = GetMarcBiblio
($biblionumber);
3722 carp
"UpdateTotalIssues could not get biblio record";
3725 my $data = GetBiblioData
($biblionumber);
3727 carp
"UpdateTotalIssues could not get datas of biblio";
3730 my ($totalissuestag, $totalissuessubfield) = GetMarcFromKohaField
('biblioitems.totalissues', $data->{'frameworkcode'});
3731 unless ($totalissuestag) {
3732 return 1; # There is nothing to do
3735 if (defined $value) {
3736 $totalissues = $value;
3738 $totalissues = $data->{'totalissues'} + $increase;
3741 my $field = $record->field($totalissuestag);
3742 if (defined $field) {
3743 $field->update( $totalissuessubfield => $totalissues );
3745 $field = MARC
::Field
->new($totalissuestag, '0', '0',
3746 $totalissuessubfield => $totalissues);
3747 $record->insert_grouped_field($field);
3750 return ModBiblio
($record, $biblionumber, $data->{'frameworkcode'});
3755 &RemoveAllNsb($record);
3757 Removes all nsb/nse chars from a record
3764 carp
'RemoveAllNsb called with undefined record';
3768 SetUTF8Flag
($record);
3770 foreach my $field ($record->fields()) {
3771 if ($field->is_control_field()) {
3772 $field->update(nsb_clean
($field->data()));
3774 my @subfields = $field->subfields();
3776 foreach my $subfield (@subfields) {
3777 push @new_subfields, $subfield->[0] => nsb_clean
($subfield->[1]);
3779 if (scalar(@new_subfields) > 0) {
3782 $new_field = MARC
::Field
->new(
3784 $field->indicator(1),
3785 $field->indicator(2),
3790 warn "error in RemoveAllNsb : $@";
3792 $field->replace_with($new_field);
3808 Koha Development Team <http://koha-community.org/>
3810 Paul POULAIN paul.poulain@free.fr
3812 Joshua Ferraro jmf@liblime.com