3 # Copyright 2000-2002 Katipo Communications
4 # Parts Copyright 2010 Nelsonville Public Library
5 # Parts copyright 2010 BibLibre
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 #use warnings; FIXME - Bug 2505
27 use C4
::Branch
qw(GetBranchesCount);
29 use Koha
::DateUtils
qw(dt_from_string);
30 use DateTime
::Format
::MySQL
;
32 use autouse
'Data::Dumper' => qw(Dumper);
33 use DBI
qw(:sql_types);
35 use vars
qw($VERSION @ISA @EXPORT @EXPORT_OK $DEBUG);
38 $VERSION = 3.07.00.049;
43 &subfield_is_koha_internal_p
44 &GetPrinters &GetPrinter
45 &GetItemTypes &getitemtypeinfo
46 &GetSupportName &GetSupportList
48 &getframeworks &getframeworkinfo
50 &getauthtypes &getauthtype
56 &get_notforloan_label_of
59 &getitemtypeimagelocation
61 &GetAuthorisedValueCategories
62 &IsAuthorisedValueCategory
63 &GetKohaAuthorisedValues
64 &GetKohaAuthorisedValuesFromField
65 &GetKohaAuthorisedValuesMapping
66 &GetKohaAuthorisedValueLib
67 &GetAuthorisedValueByCode
68 &GetKohaImageurlFromAuthorisedValues
74 &GetNormalizedOCLCNumber
84 @EXPORT_OK = qw( GetDailyQuote );
89 C4::Koha - Perl Module containing convenience functions for Koha scripts
97 Koha.pm provides many functions for Koha scripts.
105 $slash_date = &slashifyDate($dash_date);
107 Takes a string of the form "DD-MM-YYYY" (or anything separated by
108 dashes), converts it to the form "YYYY/MM/DD", and returns the result.
114 # accepts a date of the form xx-xx-xx[xx] and returns it in the
116 my @dateOut = split( '-', shift );
117 return ("$dateOut[2]/$dateOut[1]/$dateOut[0]");
120 # FIXME.. this should be moved to a MARC-specific module
121 sub subfield_is_koha_internal_p
{
124 # We could match on 'lib' and 'tab' (and 'mandatory', & more to come!)
125 # But real MARC subfields are always single-character
126 # so it really is safer just to check the length
128 return length $subfield != 1;
131 =head2 GetSupportName
133 $itemtypename = &GetSupportName($codestring);
135 Returns a string with the name of the itemtype.
141 return if (! $codestring);
143 my $advanced_search_types = C4
::Context
->preference("AdvancedSearchTypes");
144 if (!$advanced_search_types or $advanced_search_types eq 'itemtypes') {
151 my $sth = C4
::Context
->dbh->prepare($query);
152 $sth->execute($codestring);
153 ($resultstring)=$sth->fetchrow;
154 return $resultstring;
157 C4
::Context
->dbh->prepare(
158 "SELECT lib FROM authorised_values WHERE category = ? AND authorised_value = ?"
160 $sth->execute( $advanced_search_types, $codestring );
161 my $data = $sth->fetchrow_hashref;
162 return $$data{'lib'};
166 =head2 GetSupportList
168 $itemtypes = &GetSupportList();
170 Returns an array ref containing informations about Support (since itemtype is rather a circulation code when item-level-itypes is used).
172 build a HTML select with the following code :
174 =head3 in PERL SCRIPT
176 my $itemtypes = GetSupportList();
177 $template->param(itemtypeloop => $itemtypes);
181 <select name="itemtype" id="itemtype">
182 <option value=""></option>
183 [% FOREACH itemtypeloo IN itemtypeloop %]
184 [% IF ( itemtypeloo.selected ) %]
185 <option value="[% itemtypeloo.itemtype %]" selected="selected">[% itemtypeloo.description %]</option>
187 <option value="[% itemtypeloo.itemtype %]">[% itemtypeloo.description %]</option>
195 my $advanced_search_types = C4
::Context
->preference("AdvancedSearchTypes");
196 if (!$advanced_search_types or $advanced_search_types =~ /itemtypes/) {
202 my $sth = C4
::Context
->dbh->prepare($query);
204 return $sth->fetchall_arrayref({});
206 my $advsearchtypes = GetAuthorisedValues
($advanced_search_types);
207 my @results= map {{itemtype
=>$$_{authorised_value
},description
=>$$_{lib
},imageurl
=>$$_{imageurl
}}} @
$advsearchtypes;
213 $itemtypes = &GetItemTypes( style => $style );
215 Returns information about existing itemtypes.
218 style: either 'array' or 'hash', defaults to 'hash'.
219 'array' returns an arrayref,
220 'hash' return a hashref with the itemtype value as the key
222 build a HTML select with the following code :
224 =head3 in PERL SCRIPT
226 my $itemtypes = GetItemTypes;
228 foreach my $thisitemtype (sort keys %$itemtypes) {
229 my $selected = 1 if $thisitemtype eq $itemtype;
230 my %row =(value => $thisitemtype,
231 selected => $selected,
232 description => $itemtypes->{$thisitemtype}->{'description'},
234 push @itemtypesloop, \%row;
236 $template->param(itemtypeloop => \@itemtypesloop);
240 <form action='<!-- TMPL_VAR name="script_name" -->' method=post>
241 <select name="itemtype">
242 <option value="">Default</option>
243 <!-- TMPL_LOOP name="itemtypeloop" -->
244 <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="description" --></option>
247 <input type=text name=searchfield value="<!-- TMPL_VAR name="searchfield" -->">
248 <input type="submit" value="OK" class="button">
255 my $style = defined( $params{'style'} ) ?
$params{'style'} : 'hash';
257 # returns a reference to a hash of references to itemtypes...
259 my $dbh = C4
::Context
->dbh;
264 my $sth = $dbh->prepare($query);
267 if ( $style eq 'hash' ) {
268 while ( my $IT = $sth->fetchrow_hashref ) {
269 $itemtypes{ $IT->{'itemtype'} } = $IT;
271 return ( \
%itemtypes );
273 return $sth->fetchall_arrayref({});
277 sub get_itemtypeinfos_of
{
280 my $placeholders = join( ', ', map { '?' } @itemtypes );
281 my $query = <<"END_SQL";
287 WHERE itemtype IN ( $placeholders )
290 return get_infos_of( $query, 'itemtype', undef, \@itemtypes );
295 $authtypes = &getauthtypes();
297 Returns information about existing authtypes.
299 build a HTML select with the following code :
301 =head3 in PERL SCRIPT
303 my $authtypes = getauthtypes;
305 foreach my $thisauthtype (keys %$authtypes) {
306 my $selected = 1 if $thisauthtype eq $authtype;
307 my %row =(value => $thisauthtype,
308 selected => $selected,
309 authtypetext => $authtypes->{$thisauthtype}->{'authtypetext'},
311 push @authtypesloop, \%row;
313 $template->param(itemtypeloop => \@itemtypesloop);
317 <form action='<!-- TMPL_VAR name="script_name" -->' method=post>
318 <select name="authtype">
319 <!-- TMPL_LOOP name="authtypeloop" -->
320 <option value="<!-- TMPL_VAR name="value" -->" <!-- TMPL_IF name="selected" -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR name="authtypetext" --></option>
323 <input type=text name=searchfield value="<!-- TMPL_VAR name="searchfield" -->">
324 <input type="submit" value="OK" class="button">
332 # returns a reference to a hash of references to authtypes...
334 my $dbh = C4::Context->dbh;
335 my $sth = $dbh->prepare("select * from auth_types order by authtypetext");
337 while ( my $IT = $sth->fetchrow_hashref ) {
338 $authtypes{ $IT->{'authtypecode'} } = $IT;
340 return ( \%authtypes );
344 my ($authtypecode) = @_;
346 # returns a reference to a hash of references to authtypes...
348 my $dbh = C4::Context->dbh;
349 my $sth = $dbh->prepare("select * from auth_types where authtypecode=?");
350 $sth->execute($authtypecode);
351 my $res = $sth->fetchrow_hashref;
357 $frameworks = &getframework();
359 Returns information about existing frameworks
361 build a HTML select with the following code :
363 =head3 in PERL SCRIPT
365 my $frameworks = getframeworks();
367 foreach my $thisframework (keys %$frameworks) {
368 my $selected = 1 if $thisframework eq $frameworkcode;
370 value => $thisframework,
371 selected => $selected,
372 description => $frameworks->{$thisframework}->{'frameworktext'},
374 push @frameworksloop, \%row;
376 $template->param(frameworkloop => \@frameworksloop);
380 <form action="[% script_name %] method=post>
381 <select name="frameworkcode">
382 <option value="">Default</option>
383 [% FOREACH framework IN frameworkloop %]
384 [% IF ( framework.selected ) %]
385 <option value="[% framework.value %]" selected="selected">[% framework.description %]</option>
387 <option value="[% framework.value %]">[% framework.description %]</option>
391 <input type
=text name
=searchfield value
="[% searchfield %]">
392 <input type
="submit" value
="OK" class="button">
399 # returns a reference to a hash of references to branches...
401 my $dbh = C4
::Context
->dbh;
402 my $sth = $dbh->prepare("select * from biblio_framework");
404 while ( my $IT = $sth->fetchrow_hashref ) {
405 $itemtypes{ $IT->{'frameworkcode'} } = $IT;
407 return ( \
%itemtypes );
410 =head2 GetFrameworksLoop
412 $frameworks = GetFrameworksLoop( $frameworkcode );
414 Returns the loop suggested on getframework(), but ordered by framework description.
416 build a HTML select with the following code :
418 =head3 in PERL SCRIPT
420 $template->param( frameworkloop => GetFrameworksLoop( $frameworkcode ) );
424 Same as getframework()
426 <form action="[% script_name %] method=post>
427 <select name="frameworkcode">
428 <option value="">Default</option>
429 [% FOREACH framework IN frameworkloop %]
430 [% IF ( framework.selected ) %]
431 <option value="[% framework.value %]" selected="selected">[% framework.description %]</option>
433 <option value="[% framework.value %]">[% framework.description %]</option>
437 <input type=text name=searchfield value="[% searchfield %]">
438 <input type="submit" value="OK" class="button">
443 sub GetFrameworksLoop
{
444 my $frameworkcode = shift;
445 my $frameworks = getframeworks
();
447 foreach my $thisframework (sort { uc($frameworks->{$a}->{'frameworktext'}) cmp uc($frameworks->{$b}->{'frameworktext'}) } keys %$frameworks) {
448 my $selected = ( $thisframework eq $frameworkcode ) ?
1 : undef;
450 value
=> $thisframework,
451 selected
=> $selected,
452 description
=> $frameworks->{$thisframework}->{'frameworktext'},
454 push @frameworkloop, \
%row;
456 return \
@frameworkloop;
459 =head2 getframeworkinfo
461 $frameworkinfo = &getframeworkinfo($frameworkcode);
463 Returns information about an frameworkcode.
467 sub getframeworkinfo
{
468 my ($frameworkcode) = @_;
469 my $dbh = C4
::Context
->dbh;
471 $dbh->prepare("select * from biblio_framework where frameworkcode=?");
472 $sth->execute($frameworkcode);
473 my $res = $sth->fetchrow_hashref;
477 =head2 getitemtypeinfo
479 $itemtype = &getitemtypeinfo($itemtype, [$interface]);
481 Returns information about an itemtype. The optional $interface argument
482 sets which interface ('opac' or 'intranet') to return the imageurl for.
483 Defaults to intranet.
487 sub getitemtypeinfo
{
488 my ($itemtype, $interface) = @_;
489 my $dbh = C4
::Context
->dbh;
490 my $sth = $dbh->prepare("select * from itemtypes where itemtype=?");
491 $sth->execute($itemtype);
492 my $res = $sth->fetchrow_hashref;
494 $res->{imageurl
} = getitemtypeimagelocation
( ( ( defined $interface && $interface eq 'opac' ) ?
'opac' : 'intranet' ), $res->{imageurl
} );
499 =head2 getitemtypeimagedir
501 my $directory = getitemtypeimagedir( 'opac' );
503 pass in 'opac' or 'intranet'. Defaults to 'opac'.
505 returns the full path to the appropriate directory containing images.
509 sub getitemtypeimagedir
{
510 my $src = shift || 'opac';
511 if ($src eq 'intranet') {
512 return C4
::Context
->config('intrahtdocs') . '/' .C4
::Context
->preference('template') . '/img/itemtypeimg';
514 return C4
::Context
->config('opachtdocs') . '/' . C4
::Context
->preference('opacthemes') . '/itemtypeimg';
518 sub getitemtypeimagesrc
{
519 my $src = shift || 'opac';
520 if ($src eq 'intranet') {
521 return '/intranet-tmpl' . '/' . C4
::Context
->preference('template') . '/img/itemtypeimg';
523 return '/opac-tmpl' . '/' . C4
::Context
->preference('opacthemes') . '/itemtypeimg';
527 sub getitemtypeimagelocation
{
528 my ( $src, $image ) = @_;
530 return '' if ( !$image );
533 my $scheme = ( URI
::Split
::uri_split
( $image ) )[0];
535 return $image if ( $scheme );
537 return getitemtypeimagesrc
( $src ) . '/' . $image;
540 =head3 _getImagesFromDirectory
542 Find all of the image files in a directory in the filesystem
544 parameters: a directory name
546 returns: a list of images in that directory.
548 Notes: this does not traverse into subdirectories. See
549 _getSubdirectoryNames for help with that.
550 Images are assumed to be files with .gif or .png file extensions.
551 The image names returned do not have the directory name on them.
555 sub _getImagesFromDirectory
{
556 my $directoryname = shift;
557 return unless defined $directoryname;
558 return unless -d
$directoryname;
560 if ( opendir ( my $dh, $directoryname ) ) {
561 my @images = grep { /\.(gif|png)$/i } readdir( $dh );
563 @images = sort(@images);
566 warn "unable to opendir $directoryname: $!";
571 =head3 _getSubdirectoryNames
573 Find all of the directories in a directory in the filesystem
575 parameters: a directory name
577 returns: a list of subdirectories in that directory.
579 Notes: this does not traverse into subdirectories. Only the first
580 level of subdirectories are returned.
581 The directory names returned don't have the parent directory name on them.
585 sub _getSubdirectoryNames
{
586 my $directoryname = shift;
587 return unless defined $directoryname;
588 return unless -d
$directoryname;
590 if ( opendir ( my $dh, $directoryname ) ) {
591 my @directories = grep { -d File
::Spec
->catfile( $directoryname, $_ ) && ! ( /^\./ ) } readdir( $dh );
595 warn "unable to opendir $directoryname: $!";
602 returns: a listref of hashrefs. Each hash represents another collection of images.
604 { imagesetname => 'npl', # the name of the image set (npl is the original one)
605 images => listref of image hashrefs
608 each image is represented by a hashref like this:
610 { KohaImage => 'npl/image.gif',
611 StaffImageUrl => '/intranet-tmpl/prog/img/itemtypeimg/npl/image.gif',
612 OpacImageURL => '/opac-tmpl/prog/itemtypeimg/npl/image.gif'
613 checked => 0 or 1: was this the image passed to this method?
614 Note: I'd like to remove this somehow.
621 my $checked = $params{'checked'} || '';
623 my $paths = { staff
=> { filesystem
=> getitemtypeimagedir
('intranet'),
624 url
=> getitemtypeimagesrc
('intranet'),
626 opac
=> { filesystem
=> getitemtypeimagedir
('opac'),
627 url
=> getitemtypeimagesrc
('opac'),
631 my @imagesets = (); # list of hasrefs of image set data to pass to template
632 my @subdirectories = _getSubdirectoryNames
( $paths->{'staff'}{'filesystem'} );
633 foreach my $imagesubdir ( @subdirectories ) {
634 warn $imagesubdir if $DEBUG;
635 my @imagelist = (); # hashrefs of image info
636 my @imagenames = _getImagesFromDirectory
( File
::Spec
->catfile( $paths->{'staff'}{'filesystem'}, $imagesubdir ) );
637 my $imagesetactive = 0;
638 foreach my $thisimage ( @imagenames ) {
640 { KohaImage
=> "$imagesubdir/$thisimage",
641 StaffImageUrl
=> join( '/', $paths->{'staff'}{'url'}, $imagesubdir, $thisimage ),
642 OpacImageUrl
=> join( '/', $paths->{'opac'}{'url'}, $imagesubdir, $thisimage ),
643 checked
=> "$imagesubdir/$thisimage" eq $checked ?
1 : 0,
646 $imagesetactive = 1 if "$imagesubdir/$thisimage" eq $checked;
648 push @imagesets, { imagesetname
=> $imagesubdir,
649 imagesetactive
=> $imagesetactive,
650 images
=> \
@imagelist };
658 $printers = &GetPrinters();
659 @queues = keys %$printers;
661 Returns information about existing printer queues.
663 C<$printers> is a reference-to-hash whose keys are the print queues
664 defined in the printers table of the Koha database. The values are
665 references-to-hash, whose keys are the fields in the printers table.
671 my $dbh = C4
::Context
->dbh;
672 my $sth = $dbh->prepare("select * from printers");
674 while ( my $printer = $sth->fetchrow_hashref ) {
675 $printers{ $printer->{'printqueue'} } = $printer;
677 return ( \
%printers );
682 $printer = GetPrinter( $query, $printers );
687 my ( $query, $printers ) = @_; # get printer for this query from printers
688 my $printer = $query->param('printer');
689 my %cookie = $query->cookie('userenv');
690 ($printer) || ( $printer = $cookie{'printer'} ) || ( $printer = '' );
691 ( $printers->{$printer} ) || ( $printer = ( keys %$printers )[0] );
697 Returns the number of pages to display in a pagination bar, given the number
698 of items and the number of items per page.
703 my ( $nb_items, $nb_items_per_page ) = @_;
705 return int( ( $nb_items - 1 ) / $nb_items_per_page ) + 1;
710 (@themes) = &getallthemes('opac');
711 (@themes) = &getallthemes('intranet');
713 Returns an array of all available themes.
721 if ( $type eq 'intranet' ) {
722 $htdocs = C4
::Context
->config('intrahtdocs');
725 $htdocs = C4
::Context
->config('opachtdocs');
727 opendir D
, "$htdocs";
728 my @dirlist = readdir D
;
729 foreach my $directory (@dirlist) {
730 next if $directory eq 'lib';
731 -d
"$htdocs/$directory/en" and push @themes, $directory;
738 if ( C4
::Context
->preference("marcflavour") eq "UNIMARC" ) {
743 tags
=> [ qw
/ 600ab 601ab 602a 604at 605a 606ax 610a / ],
749 tags
=> [ qw
/ 607a / ],
755 tags
=> [ qw
/ 500a 501a 503a / ],
761 tags
=> [ qw
/ 700ab 701ab 702ab / ],
762 sep
=> C4
::Context
->preference("UNIMARCAuthorsFacetsSeparator"),
767 tags
=> [ qw
/ 225a / ],
773 tags
=> [ qw
/ 995e / ],
777 unless ( C4
::Context
->preference("singleBranchMode")
778 || GetBranchesCount
() == 1 )
780 my $DisplayLibraryFacets = C4
::Context
->preference('DisplayLibraryFacets');
781 if ( $DisplayLibraryFacets eq 'both'
782 || $DisplayLibraryFacets eq 'holding' )
787 idx
=> 'holdingbranch',
788 label
=> 'HoldingLibrary',
789 tags
=> [qw
/ 995c /],
794 if ( $DisplayLibraryFacets eq 'both'
795 || $DisplayLibraryFacets eq 'home' )
801 label
=> 'HomeLibrary',
802 tags
=> [qw
/ 995b /],
813 tags
=> [ qw
/ 650a / ],
818 # label => 'People and Organizations',
819 # tags => [ qw/ 600a 610a 611a / ],
825 tags
=> [ qw
/ 651a / ],
831 tags
=> [ qw
/ 630a / ],
837 tags
=> [ qw
/ 100a 110a 700a / ],
843 tags
=> [ qw
/ 440a 490a / ],
848 label
=> 'ItemTypes',
849 tags
=> [ qw
/ 952y 942c / ],
855 tags
=> [ qw
/ 952c / ],
859 unless ( C4
::Context
->preference("singleBranchMode")
860 || GetBranchesCount
() == 1 )
862 my $DisplayLibraryFacets = C4
::Context
->preference('DisplayLibraryFacets');
863 if ( $DisplayLibraryFacets eq 'both'
864 || $DisplayLibraryFacets eq 'holding' )
869 idx
=> 'holdingbranch',
870 label
=> 'HoldingLibrary',
871 tags
=> [qw
/ 952b /],
876 if ( $DisplayLibraryFacets eq 'both'
877 || $DisplayLibraryFacets eq 'home' )
883 label
=> 'HomeLibrary',
884 tags
=> [qw
/ 952a /],
895 Return a href where a key is associated to a href. You give a query,
896 the name of the key among the fields returned by the query. If you
897 also give as third argument the name of the value, the function
898 returns a href of scalar. The optional 4th argument is an arrayref of
899 items passed to the C<execute()> call. It is designed to bind
900 parameters to any placeholders in your SQL.
909 # generic href of any information on the item, href of href.
910 my $iteminfos_of = get_infos_of($query, 'itemnumber');
911 print $iteminfos_of->{$itemnumber}{barcode};
913 # specific information, href of scalar
914 my $barcode_of_item = get_infos_of($query, 'itemnumber', 'barcode');
915 print $barcode_of_item->{$itemnumber};
920 my ( $query, $key_name, $value_name, $bind_params ) = @_;
922 my $dbh = C4
::Context
->dbh;
924 my $sth = $dbh->prepare($query);
925 $sth->execute( @
$bind_params );
928 while ( my $row = $sth->fetchrow_hashref ) {
929 if ( defined $value_name ) {
930 $infos_of{ $row->{$key_name} } = $row->{$value_name};
933 $infos_of{ $row->{$key_name} } = $row;
941 =head2 get_notforloan_label_of
943 my $notforloan_label_of = get_notforloan_label_of();
945 Each authorised value of notforloan (information available in items and
946 itemtypes) is link to a single label.
948 Returns a href where keys are authorised values and values are corresponding
951 foreach my $authorised_value (keys %{$notforloan_label_of}) {
953 "authorised_value: %s => %s\n",
955 $notforloan_label_of->{$authorised_value}
961 # FIXME - why not use GetAuthorisedValues ??
963 sub get_notforloan_label_of
{
964 my $dbh = C4
::Context
->dbh;
967 SELECT authorised_value
968 FROM marc_subfield_structure
969 WHERE kohafield = \'items.notforloan\'
972 my $sth = $dbh->prepare($query);
974 my ($statuscode) = $sth->fetchrow_array();
979 FROM authorised_values
982 $sth = $dbh->prepare($query);
983 $sth->execute($statuscode);
984 my %notforloan_label_of;
985 while ( my $row = $sth->fetchrow_hashref ) {
986 $notforloan_label_of{ $row->{authorised_value
} } = $row->{lib
};
990 return \
%notforloan_label_of;
993 =head2 displayServers
995 my $servers = displayServers();
996 my $servers = displayServers( $position );
997 my $servers = displayServers( $position, $type );
999 displayServers returns a listref of hashrefs, each containing
1000 information about available z3950 servers. Each hashref has a format
1004 'checked' => 'checked',
1005 'encoding' => 'utf8',
1007 'id' => 'LIBRARY OF CONGRESS',
1011 'value' => 'lx2.loc.gov:210/',
1017 sub displayServers
{
1018 my ( $position, $type ) = @_;
1019 my $dbh = C4
::Context
->dbh;
1021 my $strsth = 'SELECT * FROM z3950servers';
1026 push @bind_params, $position;
1027 push @where_clauses, ' position = ? ';
1031 push @bind_params, $type;
1032 push @where_clauses, ' type = ? ';
1035 # reassemble where clause from where clause pieces
1036 if (@where_clauses) {
1037 $strsth .= ' WHERE ' . join( ' AND ', @where_clauses );
1040 my $rq = $dbh->prepare($strsth);
1041 $rq->execute(@bind_params);
1042 my @primaryserverloop;
1044 while ( my $data = $rq->fetchrow_hashref ) {
1045 push @primaryserverloop,
1046 { label
=> $data->{description
},
1047 id
=> $data->{name
},
1049 value
=> $data->{host
} . ":" . $data->{port
} . "/" . $data->{database
},
1050 encoding
=> ( $data->{encoding
} ?
$data->{encoding
} : "iso-5426" ),
1051 checked
=> "checked",
1052 icon
=> $data->{icon
},
1053 zed
=> $data->{type
} eq 'zed',
1054 opensearch
=> $data->{type
} eq 'opensearch'
1057 return \
@primaryserverloop;
1061 =head2 GetKohaImageurlFromAuthorisedValues
1063 $authhorised_value = GetKohaImageurlFromAuthorisedValues( $category, $authvalcode );
1065 Return the first url of the authorised value image represented by $lib.
1069 sub GetKohaImageurlFromAuthorisedValues
{
1070 my ( $category, $lib ) = @_;
1071 my $dbh = C4
::Context
->dbh;
1072 my $sth = $dbh->prepare("SELECT imageurl FROM authorised_values WHERE category=? AND lib =?");
1073 $sth->execute( $category, $lib );
1074 while ( my $data = $sth->fetchrow_hashref ) {
1075 return $data->{'imageurl'};
1079 =head2 GetAuthValCode
1081 $authvalcode = GetAuthValCode($kohafield,$frameworkcode);
1085 sub GetAuthValCode
{
1086 my ($kohafield,$fwcode) = @_;
1087 my $dbh = C4
::Context
->dbh;
1088 $fwcode='' unless $fwcode;
1089 my $sth = $dbh->prepare('select authorised_value from marc_subfield_structure where kohafield=? and frameworkcode=?');
1090 $sth->execute($kohafield,$fwcode);
1091 my ($authvalcode) = $sth->fetchrow_array;
1092 return $authvalcode;
1095 =head2 GetAuthValCodeFromField
1097 $authvalcode = GetAuthValCodeFromField($field,$subfield,$frameworkcode);
1099 C<$subfield> can be undefined
1103 sub GetAuthValCodeFromField
{
1104 my ($field,$subfield,$fwcode) = @_;
1105 my $dbh = C4
::Context
->dbh;
1106 $fwcode='' unless $fwcode;
1108 if (defined $subfield) {
1109 $sth = $dbh->prepare('select authorised_value from marc_subfield_structure where tagfield=? and tagsubfield=? and frameworkcode=?');
1110 $sth->execute($field,$subfield,$fwcode);
1112 $sth = $dbh->prepare('select authorised_value from marc_tag_structure where tagfield=? and frameworkcode=?');
1113 $sth->execute($field,$fwcode);
1115 my ($authvalcode) = $sth->fetchrow_array;
1116 return $authvalcode;
1119 =head2 GetAuthorisedValues
1121 $authvalues = GetAuthorisedValues([$category], [$selected]);
1123 This function returns all authorised values from the'authorised_value' table in a reference to array of hashrefs.
1125 C<$category> returns authorised values for just one category (optional).
1127 C<$selected> adds a "selected => 1" entry to the hash if the
1128 authorised_value matches it. B<NOTE:> this feature should be considered
1129 deprecated as it may be removed in the future.
1131 C<$opac> If set to a true value, displays OPAC descriptions rather than normal ones when they exist.
1135 sub GetAuthorisedValues
{
1136 my ( $category, $selected, $opac ) = @_;
1138 # TODO: the "selected" feature should be replaced by a utility function
1139 # somewhere else, it doesn't belong in here. For starters it makes
1140 # caching much more complicated. Or just let the UI logic handle it, it's
1143 # Is this cached already?
1144 $opac = $opac ?
1 : 0; # normalise to be safe
1146 C4
::Context
->userenv ? C4
::Context
->userenv->{"branch"} : "";
1147 my $selected_key = defined($selected) ?
$selected : '';
1149 "AuthorisedValues-$category-$selected_key-$opac-$branch_limit";
1150 my $cache = Koha
::Cache
->get_instance();
1151 my $result = $cache->get_from_cache($cache_key);
1152 return $result if $result;
1155 my $dbh = C4
::Context
->dbh;
1158 FROM authorised_values
1161 LEFT JOIN authorised_values_branches ON
( id
= av_id
)
1166 push @where_strings, "category = ?";
1167 push @where_args, $category;
1170 push @where_strings, "( branchcode = ? OR branchcode IS NULL )";
1171 push @where_args, $branch_limit;
1173 if(@where_strings > 0) {
1174 $query .= " WHERE " . join(" AND ", @where_strings);
1176 $query .= " GROUP BY lib";
1177 $query .= ' ORDER BY category, ' . (
1178 $opac ?
'COALESCE(lib_opac, lib)'
1182 my $sth = $dbh->prepare($query);
1184 $sth->execute( @where_args );
1185 while (my $data=$sth->fetchrow_hashref) {
1186 if ( defined $selected and $selected eq $data->{authorised_value
} ) {
1187 $data->{selected
} = 1;
1190 $data->{selected
} = 0;
1193 if ($opac && $data->{lib_opac
}) {
1194 $data->{lib
} = $data->{lib_opac
};
1196 push @results, $data;
1200 # We can't cache for long because of that "selected" thing which
1201 # makes it impossible to clear the cache without iterating through every
1202 # value, which sucks. This'll cover this request, and not a whole lot more.
1203 $cache->set_in_cache( $cache_key, \
@results, { deepcopy
=> 1, expiry
=> 5 } );
1207 =head2 GetAuthorisedValueCategories
1209 $auth_categories = GetAuthorisedValueCategories();
1211 Return an arrayref of all of the available authorised
1216 sub GetAuthorisedValueCategories
{
1217 my $dbh = C4
::Context
->dbh;
1218 my $sth = $dbh->prepare("SELECT DISTINCT category FROM authorised_values ORDER BY category");
1221 while (defined (my $category = $sth->fetchrow_array) ) {
1222 push @results, $category;
1227 =head2 IsAuthorisedValueCategory
1229 $is_auth_val_category = IsAuthorisedValueCategory($category);
1231 Returns whether a given category name is a valid one
1235 sub IsAuthorisedValueCategory
{
1236 my $category = shift;
1239 FROM authorised_values
1240 WHERE BINARY category=?
1243 my $sth = C4
::Context
->dbh->prepare($query);
1244 $sth->execute($category);
1245 $sth->fetchrow ?
return 1
1249 =head2 GetAuthorisedValueByCode
1251 $authorised_value = GetAuthorisedValueByCode( $category, $authvalcode, $opac );
1253 Return the lib attribute from authorised_values from the row identified
1254 by the passed category and code
1258 sub GetAuthorisedValueByCode
{
1259 my ( $category, $authvalcode, $opac ) = @_;
1261 my $field = $opac ?
'lib_opac' : 'lib';
1262 my $dbh = C4
::Context
->dbh;
1263 my $sth = $dbh->prepare("SELECT $field FROM authorised_values WHERE category=? AND authorised_value =?");
1264 $sth->execute( $category, $authvalcode );
1265 while ( my $data = $sth->fetchrow_hashref ) {
1266 return $data->{ $field };
1270 =head2 GetKohaAuthorisedValues
1272 Takes $kohafield, $fwcode as parameters.
1274 If $opac parameter is set to a true value, displays OPAC descriptions rather than normal ones when they exist.
1276 Returns hashref of Code => description
1278 Returns undef if no authorised value category is defined for the kohafield.
1282 sub GetKohaAuthorisedValues
{
1283 my ($kohafield,$fwcode,$opac) = @_;
1284 $fwcode='' unless $fwcode;
1286 my $dbh = C4
::Context
->dbh;
1287 my $avcode = GetAuthValCode
($kohafield,$fwcode);
1289 my $sth = $dbh->prepare("select authorised_value, lib, lib_opac from authorised_values where category=? ");
1290 $sth->execute($avcode);
1291 while ( my ($val, $lib, $lib_opac) = $sth->fetchrow_array ) {
1292 $values{$val} = ($opac && $lib_opac) ?
$lib_opac : $lib;
1300 =head2 GetKohaAuthorisedValuesFromField
1302 Takes $field, $subfield, $fwcode as parameters.
1304 If $opac parameter is set to a true value, displays OPAC descriptions rather than normal ones when they exist.
1305 $subfield can be undefined
1307 Returns hashref of Code => description
1309 Returns undef if no authorised value category is defined for the given field and subfield
1313 sub GetKohaAuthorisedValuesFromField
{
1314 my ($field, $subfield, $fwcode,$opac) = @_;
1315 $fwcode='' unless $fwcode;
1317 my $dbh = C4
::Context
->dbh;
1318 my $avcode = GetAuthValCodeFromField
($field, $subfield, $fwcode);
1320 my $sth = $dbh->prepare("select authorised_value, lib, lib_opac from authorised_values where category=? ");
1321 $sth->execute($avcode);
1322 while ( my ($val, $lib, $lib_opac) = $sth->fetchrow_array ) {
1323 $values{$val} = ($opac && $lib_opac) ?
$lib_opac : $lib;
1331 =head2 GetKohaAuthorisedValuesMapping
1333 Takes a hash as a parameter. The interface key indicates the
1334 description to use in the mapping.
1337 "{kohafield},{frameworkcode},{authorised_value}" => "{description}"
1338 for all the kohafields, frameworkcodes, and authorised values.
1340 Returns undef if nothing is found.
1344 sub GetKohaAuthorisedValuesMapping
{
1345 my ($parameter) = @_;
1346 my $interface = $parameter->{'interface'} // '';
1348 my $query_mapping = q{
1349 SELECT TA.kohafield,TA.authorised_value AS category,
1350 TA.frameworkcode,TB.authorised_value,
1351 IF(TB.lib_opac>'',TB.lib_opac,TB.lib) AS OPAC,
1352 TB.lib AS Intranet,TB.lib_opac
1353 FROM marc_subfield_structure AS TA JOIN
1354 authorised_values as TB ON
1355 TA.authorised_value=TB.category
1356 WHERE TA.kohafield>'' AND TA.authorised_value>'';
1358 my $dbh = C4
::Context
->dbh;
1359 my $sth = $dbh->prepare($query_mapping);
1362 if ($interface eq 'opac') {
1363 while (my $row = $sth->fetchrow_hashref) {
1364 $avmapping->{$row->{kohafield
}.",".$row->{frameworkcode
}.",".$row->{authorised_value
}} = $row->{OPAC
};
1368 while (my $row = $sth->fetchrow_hashref) {
1369 $avmapping->{$row->{kohafield
}.",".$row->{frameworkcode
}.",".$row->{authorised_value
}} = $row->{Intranet
};
1377 my $escaped_string = C4::Koha::xml_escape($string);
1379 Convert &, <, >, ', and " in a string to XML entities
1385 return '' unless defined $str;
1386 $str =~ s/&/&/g;
1389 $str =~ s/'/'/g;
1390 $str =~ s/"/"/g;
1394 =head2 GetKohaAuthorisedValueLib
1396 Takes $category, $authorised_value as parameters.
1398 If $opac parameter is set to a true value, displays OPAC descriptions rather than normal ones when they exist.
1400 Returns authorised value description
1404 sub GetKohaAuthorisedValueLib
{
1405 my ($category,$authorised_value,$opac) = @_;
1407 my $dbh = C4
::Context
->dbh;
1408 my $sth = $dbh->prepare("select lib, lib_opac from authorised_values where category=? and authorised_value=?");
1409 $sth->execute($category,$authorised_value);
1410 my $data = $sth->fetchrow_hashref;
1411 $value = ($opac && $$data{'lib_opac'}) ?
$$data{'lib_opac'} : $$data{'lib'};
1415 =head2 AddAuthorisedValue
1417 AddAuthorisedValue($category, $authorised_value, $lib, $lib_opac, $imageurl);
1419 Create a new authorised value.
1423 sub AddAuthorisedValue
{
1424 my ($category, $authorised_value, $lib, $lib_opac, $imageurl) = @_;
1426 my $dbh = C4
::Context
->dbh;
1428 INSERT INTO authorised_values
(category
, authorised_value
, lib
, lib_opac
, imageurl
)
1431 my $sth = $dbh->prepare($query);
1432 $sth->execute($category, $authorised_value, $lib, $lib_opac, $imageurl);
1435 =head2 display_marc_indicators
1437 my $display_form = C4::Koha::display_marc_indicators($field);
1439 C<$field> is a MARC::Field object
1441 Generate a display form of the indicators of a variable
1442 MARC field, replacing any blanks with '#'.
1446 sub display_marc_indicators
{
1448 my $indicators = '';
1449 if ($field->tag() >= 10) {
1450 $indicators = $field->indicator(1) . $field->indicator(2);
1451 $indicators =~ s/ /#/g;
1456 sub GetNormalizedUPC
{
1457 my ($record,$marcflavour) = @_;
1460 if ($marcflavour eq 'UNIMARC') {
1461 @fields = $record->field('072');
1462 foreach my $field (@fields) {
1463 my $upc = _normalize_match_point
($field->subfield('a'));
1470 else { # assume marc21 if not unimarc
1471 @fields = $record->field('024');
1472 foreach my $field (@fields) {
1473 my $indicator = $field->indicator(1);
1474 my $upc = _normalize_match_point
($field->subfield('a'));
1475 if ($indicator == 1 and $upc ne '') {
1482 # Normalizes and returns the first valid ISBN found in the record
1483 # ISBN13 are converted into ISBN10. This is required to get some book cover images.
1484 sub GetNormalizedISBN
{
1485 my ($isbn,$record,$marcflavour) = @_;
1488 # Koha attempts to store multiple ISBNs in biblioitems.isbn, separated by " | "
1489 # anything after " | " should be removed, along with the delimiter
1490 ($isbn) = split(/\|/, $isbn );
1491 return _isbn_cleanup
($isbn);
1493 return unless $record;
1495 if ($marcflavour eq 'UNIMARC') {
1496 @fields = $record->field('010');
1497 foreach my $field (@fields) {
1498 my $isbn = $field->subfield('a');
1500 return _isbn_cleanup
($isbn);
1506 else { # assume marc21 if not unimarc
1507 @fields = $record->field('020');
1508 foreach my $field (@fields) {
1509 $isbn = $field->subfield('a');
1511 return _isbn_cleanup
($isbn);
1519 sub GetNormalizedEAN
{
1520 my ($record,$marcflavour) = @_;
1523 if ($marcflavour eq 'UNIMARC') {
1524 @fields = $record->field('073');
1525 foreach my $field (@fields) {
1526 $ean = _normalize_match_point
($field->subfield('a'));
1532 else { # assume marc21 if not unimarc
1533 @fields = $record->field('024');
1534 foreach my $field (@fields) {
1535 my $indicator = $field->indicator(1);
1536 $ean = _normalize_match_point
($field->subfield('a'));
1537 if ($indicator == 3 and $ean ne '') {
1543 sub GetNormalizedOCLCNumber
{
1544 my ($record,$marcflavour) = @_;
1547 if ($marcflavour eq 'UNIMARC') {
1548 # TODO: add UNIMARC fields
1550 else { # assume marc21 if not unimarc
1551 @fields = $record->field('035');
1552 foreach my $field (@fields) {
1553 $oclc = $field->subfield('a');
1554 if ($oclc =~ /OCoLC/) {
1555 $oclc =~ s/\(OCoLC\)//;
1564 sub GetAuthvalueDropbox
{
1565 my ( $authcat, $default ) = @_;
1566 my $branch_limit = C4
::Context
->userenv ? C4
::Context
->userenv->{"branch"} : "";
1567 my $dbh = C4
::Context
->dbh;
1571 FROM authorised_values
1574 LEFT JOIN authorised_values_branches ON
( id
= av_id
)
1579 $query .= " AND ( branchcode = ? OR branchcode IS NULL )" if $branch_limit;
1580 $query .= " GROUP BY lib ORDER BY category, lib, lib_opac";
1581 my $sth = $dbh->prepare($query);
1582 $sth->execute( $authcat, $branch_limit ?
$branch_limit : () );
1585 my $option_list = [];
1586 my @authorised_values = ( q{} );
1587 while (my $av = $sth->fetchrow_hashref) {
1588 push @
{$option_list}, {
1589 value
=> $av->{authorised_value
},
1590 label
=> $av->{lib
},
1591 default => ($default eq $av->{authorised_value
}),
1595 if ( @
{$option_list} ) {
1596 return $option_list;
1602 =head2 GetDailyQuote($opts)
1604 Takes a hashref of options
1606 Currently supported options are:
1608 'id' An exact quote id
1609 'random' Select a random quote
1610 noop When no option is passed in, this sub will return the quote timestamped for the current day
1612 The function returns an anonymous hash following this format:
1615 'source' => 'source-of-quote',
1616 'timestamp' => 'timestamp-value',
1617 'text' => 'text-of-quote',
1623 # This is definitely a candidate for some sort of caching once we finally settle caching/persistence issues...
1624 # at least for default option
1628 my $dbh = C4
::Context
->dbh;
1633 $query = 'SELECT * FROM quotes WHERE id = ?';
1634 $sth = $dbh->prepare($query);
1635 $sth->execute($opts{'id'});
1636 $quote = $sth->fetchrow_hashref();
1638 elsif ($opts{'random'}) {
1639 # Fall through... we also return a random quote as a catch-all if all else fails
1642 $query = 'SELECT * FROM quotes WHERE timestamp LIKE CONCAT(CURRENT_DATE,\'%\') ORDER BY timestamp DESC LIMIT 0,1';
1643 $sth = $dbh->prepare($query);
1645 $quote = $sth->fetchrow_hashref();
1647 unless ($quote) { # if there are not matches, choose a random quote
1648 # get a list of all available quote ids
1649 $sth = C4
::Context
->dbh->prepare('SELECT count(*) FROM quotes;');
1651 my $range = ($sth->fetchrow_array)[0];
1652 # chose a random id within that range if there is more than one quote
1653 my $offset = int(rand($range));
1655 $query = 'SELECT * FROM quotes ORDER BY id LIMIT 1 OFFSET ?';
1656 $sth = C4
::Context
->dbh->prepare($query);
1657 # see http://www.perlmonks.org/?node_id=837422 for why
1658 # we're being verbose and using bind_param
1659 $sth->bind_param(1, $offset, SQL_INTEGER
);
1661 $quote = $sth->fetchrow_hashref();
1662 # update the timestamp for that quote
1663 $query = 'UPDATE quotes SET timestamp = ? WHERE id = ?';
1664 $sth = C4
::Context
->dbh->prepare($query);
1666 DateTime
::Format
::MySQL
->format_datetime( dt_from_string
() ),
1673 sub _normalize_match_point
{
1674 my $match_point = shift;
1675 (my $normalized_match_point) = $match_point =~ /([\d-]*[X]*)/;
1676 $normalized_match_point =~ s/-//g;
1678 return $normalized_match_point;
1683 return NormalizeISBN
(
1686 format
=> 'ISBN-10',
1692 =head2 NormalizedISBN
1694 my $isbns = NormalizedISBN({
1696 strip_hyphens => [0,1],
1697 format => ['ISBN-10', 'ISBN-13']
1700 Returns an isbn validated by Business::ISBN.
1701 Optionally strips hyphens and/or forces the isbn
1702 to be of the specified format.
1704 If the string cannot be validated as an isbn,
1712 my $string = $params->{isbn
};
1713 my $strip_hyphens = $params->{strip_hyphens
};
1714 my $format = $params->{format
};
1716 return unless $string;
1718 my $isbn = Business
::ISBN
->new($string);
1720 if ( $isbn && $isbn->is_valid() ) {
1722 if ( $format eq 'ISBN-10' ) {
1723 $isbn = $isbn->as_isbn10();
1725 elsif ( $format eq 'ISBN-13' ) {
1726 $isbn = $isbn->as_isbn13();
1728 return unless $isbn;
1730 if ($strip_hyphens) {
1731 $string = $isbn->as_string( [] );
1733 $string = $isbn->as_string();
1740 =head2 GetVariationsOfISBN
1742 my @isbns = GetVariationsOfISBN( $isbn );
1744 Returns a list of variations of the given isbn in
1745 both ISBN-10 and ISBN-13 formats, with and without
1748 In a scalar context, the isbns are returned as a
1749 string delimited by ' | '.
1753 sub GetVariationsOfISBN
{
1756 return unless $isbn;
1760 push( @isbns, NormalizeISBN
({ isbn
=> $isbn }) );
1761 push( @isbns, NormalizeISBN
({ isbn
=> $isbn, format
=> 'ISBN-10' }) );
1762 push( @isbns, NormalizeISBN
({ isbn
=> $isbn, format
=> 'ISBN-13' }) );
1763 push( @isbns, NormalizeISBN
({ isbn
=> $isbn, format
=> 'ISBN-10', strip_hyphens
=> 1 }) );
1764 push( @isbns, NormalizeISBN
({ isbn
=> $isbn, format
=> 'ISBN-13', strip_hyphens
=> 1 }) );
1766 # Strip out any "empty" strings from the array
1767 @isbns = grep { defined($_) && $_ =~ /\S/ } @isbns;
1769 return wantarray ?
@isbns : join( " | ", @isbns );
1772 =head2 GetVariationsOfISBNs
1774 my @isbns = GetVariationsOfISBNs( @isbns );
1776 Returns a list of variations of the given isbns in
1777 both ISBN-10 and ISBN-13 formats, with and without
1780 In a scalar context, the isbns are returned as a
1781 string delimited by ' | '.
1785 sub GetVariationsOfISBNs
{
1788 @isbns = map { GetVariationsOfISBN
( $_ ) } @isbns;
1790 return wantarray ?
@isbns : join( " | ", @isbns );
1793 =head2 IsKohaFieldLinked
1795 my $is_linked = IsKohaFieldLinked({
1796 kohafield => $kohafield,
1797 frameworkcode => $frameworkcode,
1800 Return 1 if the field is linked
1804 sub IsKohaFieldLinked
{
1805 my ( $params ) = @_;
1806 my $kohafield = $params->{kohafield
};
1807 my $frameworkcode = $params->{frameworkcode
} || '';
1808 my $dbh = C4
::Context
->dbh;
1809 my $is_linked = $dbh->selectcol_arrayref( q
|
1811 FROM marc_subfield_structure
1812 WHERE frameworkcode
= ?
1814 |,{}, $frameworkcode, $kohafield );
1815 return $is_linked->[0];