Bug 11091: revamp search limit options for new subscription bib search form
[koha-equinox.git] / serials / subscription-bib-search.pl
1 #!/usr/bin/perl
2 # WARNING: 4-character tab stops here
3
4 # Copyright 2000-2002 Katipo Communications
5 # Parts Copyright 2010 Biblibre
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22
23 =head1 NAME
24
25 subscription-bib-search.pl
26
27 =head1 DESCRIPTION
28
29 this script search among all existing subscriptions.
30
31 =head1 PARAMETERS
32
33 =over 4
34
35 =item op
36 op use to know the operation to do on this template.
37  * do_search : to search the subscription.
38
39 Note that if op = do_search there are some others params specific to the search :
40     marclist,and_or,excluding,operator,value
41
42 =item startfrom
43 to multipage gestion.
44
45
46 =back
47
48 =cut
49
50
51 use strict;
52 use warnings;
53
54 use CGI;
55 use C4::Koha;
56 use C4::Auth;
57 use C4::Context;
58 use C4::Output;
59 use C4::Search;
60 use C4::Biblio;
61 use C4::Debug;
62
63 my $input=new CGI;
64 # my $type=$query->param('type');
65 my $op = $input->param('op') || q{};
66 my $dbh = C4::Context->dbh;
67
68 my $startfrom=$input->param('startfrom');
69 $startfrom=0 unless $startfrom;
70 my ($template, $loggedinuser, $cookie);
71 my $resultsperpage;
72
73 my $itype_or_itemtype = (C4::Context->preference("item-level_itypes"))?'itype':'itemtype';
74
75 my $query = $input->param('q');
76 # don't run the search if no search term !
77 if ($op eq "do_search" && $query) {
78
79     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
80         {   template_name   => "serials/result.tmpl",
81             query           => $input,
82             type            => "intranet",
83             authnotrequired => 0,
84             flagsrequired => {catalogue => 1, serials => '*'},
85             debug           => 1,
86         }
87     );
88
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);
98
99     my ($error, $marcrecords, $total_hits) = SimpleSearch($query, $startfrom*$resultsperpage, $resultsperpage);
100     my $total = 0;
101     if (defined $marcrecords ) {
102         $total = scalar @{$marcrecords};
103     }
104
105     if (defined $error) {
106         $template->param(query_error => $error);
107         warn "error: ".$error;
108         output_html_with_http_headers $input, $cookie, $template->output;
109         exit;
110     }
111     my @results;
112
113     for(my $i=0;$i<$total;$i++) {
114         my %resultsloop;
115         my $marcrecord = MARC::File::USMARC::decode($marcrecords->[$i]);
116         my $biblio = TransformMarcToKoha(C4::Context->dbh,$marcrecord,'');
117
118         #build the hash for the template.
119         $resultsloop{highlight}       = ($i % 2)?(1):(0);
120         $resultsloop{title}           = $biblio->{'title'};
121         $resultsloop{subtitle}        = $biblio->{'subtitle'};
122         $resultsloop{biblionumber}    = $biblio->{'biblionumber'};
123         $resultsloop{author}          = $biblio->{'author'};
124         $resultsloop{publishercode}   = $biblio->{'publishercode'};
125         $resultsloop{publicationyear} = $biblio->{'publicationyear'};
126         $resultsloop{issn}            = $biblio->{'issn'};
127
128         push @results, \%resultsloop;
129     }
130
131     # multi page display gestion
132     my $displaynext=0;
133     my $displayprev=$startfrom;
134     if(($total_hits - (($startfrom+1)*($resultsperpage))) > 0 ){
135         $displaynext = 1;
136     }
137
138
139     my @numbers = ();
140
141     if ($total_hits>$resultsperpage)
142     {
143         for (my $i=1; $i<$total/$resultsperpage+1; $i++)
144         {
145             if ($i<16)
146             {
147                 my $highlight=0;
148                 ($startfrom==($i-1)) && ($highlight=1);
149                 push @numbers, { number => $i,
150                     highlight => $highlight ,
151                     searchdata=> \@results,
152                     startfrom => ($i-1)};
153             }
154         }
155     }
156
157     my $from = 0;
158     $from = $startfrom*$resultsperpage+1 if($total_hits > 0);
159     my $to;
160
161     if($total_hits < (($startfrom+1)*$resultsperpage))
162     {
163         $to = $total;
164     } else {
165         $to = (($startfrom+1)*$resultsperpage);
166     }
167     $template->param(
168                             query => $query,
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,
177                             from=>$from,
178                             to=>$to,
179                             numbers=>\@numbers,
180                             );
181 } # end of if ($op eq "do_search" & $query)
182 else {
183     ($template, $loggedinuser, $cookie)
184         = get_template_and_user({template_name => "serials/subscription-bib-search.tmpl",
185                 query => $input,
186                 type => "intranet",
187                 authnotrequired => 0,
188                 flagsrequired => {catalogue => 1, serials => '*'},
189                 debug => 1,
190                 });
191
192     # load the itemtypes
193     my $itemtypes = GetItemTypes();
194     my @itemtypesloop;
195         foreach my $thisitemtype ( sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'} } keys %$itemtypes ) {
196             my %row =(
197                         code => $thisitemtype,
198                         description => $itemtypes->{$thisitemtype}->{'description'},
199                     );
200             push @itemtypesloop, \%row;
201         }
202
203     # load Collection Codes
204         my $authvalues = GetAuthorisedValues('CCODE');
205         my @ccodesloop;
206         for my $thisauthvalue (sort {$a->{'lib'} cmp $b->{'lib'}} @$authvalues) {
207             my %row =(
208                     code => $thisauthvalue->{'authorised_value'},
209                     description => $thisauthvalue->{'lib'},
210                 );
211             push @ccodesloop, \%row;
212         }
213
214     $template->param(
215         itemtypeloop => \@itemtypesloop,
216         ccodeloop    => \@ccodesloop,
217         no_query     => $op eq "do_search" ? 1 : 0,
218     );
219 }
220 # Print the page
221 output_html_with_http_headers $input, $cookie, $template->output;
222
223 # Local Variables:
224 # tab-width: 4
225 # End: