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 use Koha
::SearchEngine
;
63 use Koha
::SearchEngine
::Search
;
66 my $op = $input->param('op') || q{};
67 my $dbh = C4
::Context
->dbh;
69 my $startfrom = $input->param('startfrom');
70 $startfrom = 0 unless $startfrom;
71 my ( $template, $loggedinuser, $cookie );
74 my $itype_or_itemtype =
75 ( C4
::Context
->preference("item-level_itypes") ) ?
'itype' : 'itemtype';
77 my $query = $input->param('q');
79 # don't run the search if no search term !
80 if ( $op eq "do_search" && $query ) {
82 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
84 template_name
=> "serials/result.tt",
88 flagsrequired
=> { catalogue
=> 1, serials
=> '*' },
93 # add the limits if applicable
94 my $itemtypelimit = $input->param('itemtypelimit');
95 my $ccodelimit = $input->param('ccodelimit');
96 my $op = C4
::Context
->preference('UseQueryParser') ?
'&&' : 'and';
97 $query .= " $op $itype_or_itemtype:$itemtypelimit" if $itemtypelimit;
98 $query .= " $op ccode:$ccodelimit" if $ccodelimit;
99 $debug && warn $query;
100 $resultsperpage = $input->param('resultsperpage');
101 $resultsperpage = 20 if ( !defined $resultsperpage );
103 my $searcher = Koha
::SearchEngine
::Search
->new({index => $Koha::SearchEngine
::BIBLIOS_INDEX
});
104 my ( $error, $marcrecords, $total_hits ) =
105 $searcher->simple_search_compat( $query, $startfrom * $resultsperpage, $resultsperpage );
107 if ( defined $marcrecords ) {
108 $total = scalar @
{$marcrecords};
111 if ( defined $error ) {
112 $template->param( query_error
=> $error );
113 warn "error: " . $error;
114 output_html_with_http_headers
$input, $cookie, $template->output;
119 for ( my $i = 0 ; $i < $total ; $i++ ) {
121 my $marcrecord = C4
::Search
::new_record_from_zebra
( 'biblioserver', $marcrecords->[$i] );
122 my $biblio = TransformMarcToKoha
( $marcrecord, '' );
124 #build the hash for the template.
125 $resultsloop{highlight
} = ( $i % 2 ) ?
(1) : (0);
126 $resultsloop{title
} = $biblio->{'title'};
127 $resultsloop{subtitle
} = $biblio->{'subtitle'};
128 $resultsloop{biblionumber
} = $biblio->{'biblionumber'};
129 $resultsloop{author
} = $biblio->{'author'};
130 $resultsloop{publishercode
} = $biblio->{'publishercode'};
131 $resultsloop{publicationyear
} = $biblio->{'publicationyear'};
132 $resultsloop{issn
} = $biblio->{'issn'};
134 push @results, \
%resultsloop;
137 # multi page display gestion
139 my $displayprev = $startfrom;
140 if ( ( $total_hits - ( ( $startfrom + 1 ) * ($resultsperpage) ) ) > 0 ) {
146 if ( $total_hits > $resultsperpage ) {
147 for ( my $i = 1 ; $i < $total / $resultsperpage + 1 ; $i++ ) {
150 ( $startfrom == ( $i - 1 ) ) && ( $highlight = 1 );
154 highlight
=> $highlight,
155 searchdata
=> \
@results,
156 startfrom
=> ( $i - 1 )
163 $from = $startfrom * $resultsperpage + 1 if ( $total_hits > 0 );
166 if ( $total_hits < ( ( $startfrom + 1 ) * $resultsperpage ) ) {
170 $to = ( ( $startfrom + 1 ) * $resultsperpage );
174 resultsloop
=> \
@results,
175 startfrom
=> $startfrom,
176 displaynext
=> $displaynext,
177 displayprev
=> $displayprev,
178 resultsperpage
=> $resultsperpage,
179 startfromnext
=> $startfrom + 1,
180 startfromprev
=> $startfrom - 1,
181 total
=> $total_hits,
184 numbers
=> \
@numbers,
186 } # end of if ($op eq "do_search" & $query)
188 ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
190 template_name
=> "serials/subscription-bib-search.tt",
193 authnotrequired
=> 0,
194 flagsrequired
=> { catalogue
=> 1, serials
=> '*' },
200 my $itemtypes = { map { $_->{itemtype
} => $_ } @
{ Koha
::ItemTypes
->search_with_localization->unblessed } };
202 # FIXME This is uselessly complex, the iterator should be send to the template
203 # FIXME The translated_description should be used
204 foreach my $thisitemtype (
206 $itemtypes->{$a}->{'description'}
207 cmp $itemtypes->{$b}->{'description'}
212 code
=> $thisitemtype,
213 description
=> $itemtypes->{$thisitemtype}->{'description'},
215 push @itemtypesloop, \
%row;
218 # load Collection Codes
219 my $authvalues = GetAuthorisedValues
('CCODE');
221 for my $thisauthvalue ( sort { $a->{'lib'} cmp $b->{'lib'} } @
$authvalues )
224 code
=> $thisauthvalue->{'authorised_value'},
225 description
=> $thisauthvalue->{'lib'},
227 push @ccodesloop, \
%row;
231 itemtypeloop
=> \
@itemtypesloop,
232 ccodeloop
=> \
@ccodesloop,
233 no_query
=> $op eq "do_search" ?
1 : 0,
238 output_html_with_http_headers
$input, $cookie, $template->output;