2 # WARNING: 4-character tab stops here
4 # Copyright 2000-2002 Katipo Communications
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 subscription-bib-search.pl
28 this script search among all existing subscriptions.
35 op use to know the operation to do on this template.
36 * do_search : to search the subscription.
38 Note that if op = do_search there are some others params specific to the search :
39 marclist,and_or,excluding,operator,value
62 my $op = $input->param('op') || q{};
63 my $dbh = C4
::Context
->dbh;
65 my $startfrom = $input->param('startfrom');
66 $startfrom = 0 unless $startfrom;
67 my ( $template, $loggedinuser, $cookie );
70 my $itype_or_itemtype =
71 ( C4
::Context
->preference("item-level_itypes") ) ?
'itype' : 'itemtype';
73 my $query = $input->param('q');
75 # don't run the search if no search term !
76 if ( $op eq "do_search" && $query ) {
78 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
80 template_name
=> "serials/result.tt",
84 flagsrequired
=> { catalogue
=> 1, serials
=> '*' },
89 # add the limits if applicable
90 my $itemtypelimit = $input->param('itemtypelimit');
91 my $ccodelimit = $input->param('ccodelimit');
92 my $op = C4
::Context
->preference('UseQueryParser') ?
'&&' : 'and';
93 $query .= " $op $itype_or_itemtype:$itemtypelimit" if $itemtypelimit;
94 $query .= " $op ccode:$ccodelimit" if $ccodelimit;
95 $debug && warn $query;
96 $resultsperpage = $input->param('resultsperpage');
97 $resultsperpage = 20 if ( !defined $resultsperpage );
99 my ( $error, $marcrecords, $total_hits ) =
100 SimpleSearch
( $query, $startfrom * $resultsperpage, $resultsperpage );
102 if ( defined $marcrecords ) {
103 $total = scalar @
{$marcrecords};
106 if ( defined $error ) {
107 $template->param( query_error
=> $error );
108 warn "error: " . $error;
109 output_html_with_http_headers
$input, $cookie, $template->output;
114 for ( my $i = 0 ; $i < $total ; $i++ ) {
116 my $marcrecord = C4
::Search
::new_record_from_zebra
( 'biblioserver', $marcrecords->[$i] );
117 my $biblio = TransformMarcToKoha
( C4
::Context
->dbh, $marcrecord, '' );
119 #build the hash for the template.
120 $resultsloop{highlight
} = ( $i % 2 ) ?
(1) : (0);
121 $resultsloop{title
} = $biblio->{'title'};
122 $resultsloop{subtitle
} = $biblio->{'subtitle'};
123 $resultsloop{biblionumber
} = $biblio->{'biblionumber'};
124 $resultsloop{author
} = $biblio->{'author'};
125 $resultsloop{publishercode
} = $biblio->{'publishercode'};
126 $resultsloop{publicationyear
} = $biblio->{'publicationyear'};
127 $resultsloop{issn
} = $biblio->{'issn'};
129 push @results, \
%resultsloop;
132 # multi page display gestion
134 my $displayprev = $startfrom;
135 if ( ( $total_hits - ( ( $startfrom + 1 ) * ($resultsperpage) ) ) > 0 ) {
141 if ( $total_hits > $resultsperpage ) {
142 for ( my $i = 1 ; $i < $total / $resultsperpage + 1 ; $i++ ) {
145 ( $startfrom == ( $i - 1 ) ) && ( $highlight = 1 );
149 highlight
=> $highlight,
150 searchdata
=> \
@results,
151 startfrom
=> ( $i - 1 )
158 $from = $startfrom * $resultsperpage + 1 if ( $total_hits > 0 );
161 if ( $total_hits < ( ( $startfrom + 1 ) * $resultsperpage ) ) {
165 $to = ( ( $startfrom + 1 ) * $resultsperpage );
169 resultsloop
=> \
@results,
170 startfrom
=> $startfrom,
171 displaynext
=> $displaynext,
172 displayprev
=> $displayprev,
173 resultsperpage
=> $resultsperpage,
174 startfromnext
=> $startfrom + 1,
175 startfromprev
=> $startfrom - 1,
176 total
=> $total_hits,
179 numbers
=> \
@numbers,
181 } # end of if ($op eq "do_search" & $query)
183 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
185 template_name
=> "serials/subscription-bib-search.tt",
188 authnotrequired
=> 0,
189 flagsrequired
=> { catalogue
=> 1, serials
=> '*' },
195 my $itemtypes = GetItemTypes
();
197 foreach my $thisitemtype (
199 $itemtypes->{$a}->{'description'}
200 cmp $itemtypes->{$b}->{'description'}
205 code
=> $thisitemtype,
206 description
=> $itemtypes->{$thisitemtype}->{'description'},
208 push @itemtypesloop, \
%row;
211 # load Collection Codes
212 my $authvalues = GetAuthorisedValues
('CCODE');
214 for my $thisauthvalue ( sort { $a->{'lib'} cmp $b->{'lib'} } @
$authvalues )
217 code
=> $thisauthvalue->{'authorised_value'},
218 description
=> $thisauthvalue->{'lib'},
220 push @ccodesloop, \
%row;
224 itemtypeloop
=> \
@itemtypesloop,
225 ccodeloop
=> \
@ccodesloop,
226 no_query
=> $op eq "do_search" ?
1 : 0,
231 output_html_with_http_headers
$input, $cookie, $template->output;