Merge remote-tracking branch 'kc/new/bug_6476' into kcmaster
[koha.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 $advanced_search_types = C4::Context->preference("AdvancedSearchTypes");
74 my $itype_or_itemtype = (C4::Context->preference("item-level_itypes"))?'itype':'itemtype';
75
76 my $query = $input->param('q');
77 # don't run the search if no search term !
78 if ($op eq "do_search" && $query) {
79
80     ( $template, $loggedinuser, $cookie ) = get_template_and_user(
81         {   template_name   => "serials/result.tmpl",
82             query           => $input,
83             type            => "intranet",
84             authnotrequired => 0,
85             flagsrequired => {catalogue => 1, serials => '*'},
86             debug           => 1,
87         }
88     );
89
90     # add the itemtype limit if applicable
91     my $itemtypelimit = $input->param('itemtypelimit');
92     if ( $itemtypelimit ) {
93         if (!$advanced_search_types or $advanced_search_types eq 'itemtypes') {
94             $query .= " AND $itype_or_itemtype=$itemtypelimit";
95         } else {
96             $query .= " AND $advanced_search_types=$itemtypelimit";
97         }
98     }
99     $debug && warn $query;
100     $resultsperpage= $input->param('resultsperpage');
101     $resultsperpage = 20 if(!defined $resultsperpage);
102
103     my ($error, $marcrecords, $total_hits) = SimpleSearch($query, $startfrom*$resultsperpage, $resultsperpage);
104     my $total = 0;
105     if (defined $marcrecords ) {
106         $total = scalar @{$marcrecords};
107     }
108
109     if (defined $error) {
110         $template->param(query_error => $error);
111         warn "error: ".$error;
112         output_html_with_http_headers $input, $cookie, $template->output;
113         exit;
114     }
115     my @results;
116
117     for(my $i=0;$i<$total;$i++) {
118         my %resultsloop;
119         my $marcrecord = MARC::File::USMARC::decode($marcrecords->[$i]);
120         my $biblio = TransformMarcToKoha(C4::Context->dbh,$marcrecord,'');
121
122         #build the hash for the template.
123         $resultsloop{highlight}       = ($i % 2)?(1):(0);
124         $resultsloop{title}           = $biblio->{'title'};
125         $resultsloop{subtitle}        = $biblio->{'subtitle'};
126         $resultsloop{biblionumber}    = $biblio->{'biblionumber'};
127         $resultsloop{author}          = $biblio->{'author'};
128         $resultsloop{publishercode}   = $biblio->{'publishercode'};
129         $resultsloop{publicationyear} = $biblio->{'publicationyear'};
130
131         push @results, \%resultsloop;
132     }
133
134     # multi page display gestion
135     my $displaynext=0;
136     my $displayprev=$startfrom;
137     if(($total_hits - (($startfrom+1)*($resultsperpage))) > 0 ){
138         $displaynext = 1;
139     }
140
141
142     my @numbers = ();
143
144     if ($total_hits>$resultsperpage)
145     {
146         for (my $i=1; $i<$total/$resultsperpage+1; $i++)
147         {
148             if ($i<16)
149             {
150                 my $highlight=0;
151                 ($startfrom==($i-1)) && ($highlight=1);
152                 push @numbers, { number => $i,
153                     highlight => $highlight ,
154                     searchdata=> \@results,
155                     startfrom => ($i-1)};
156             }
157         }
158     }
159
160     my $from = 0;
161     $from = $startfrom*$resultsperpage+1 if($total_hits > 0);
162     my $to;
163
164     if($total_hits < (($startfrom+1)*$resultsperpage))
165     {
166         $to = $total;
167     } else {
168         $to = (($startfrom+1)*$resultsperpage);
169     }
170     $template->param(
171                             query => $query,
172                             resultsloop => \@results,
173                             startfrom=> $startfrom,
174                             displaynext=> $displaynext,
175                             displayprev=> $displayprev,
176                             resultsperpage => $resultsperpage,
177                             startfromnext => $startfrom+1,
178                             startfromprev => $startfrom-1,
179                             total=>$total_hits,
180                             from=>$from,
181                             to=>$to,
182                             numbers=>\@numbers,
183                             );
184 } # end of if ($op eq "do_search" & $query)
185 else {
186     ($template, $loggedinuser, $cookie)
187         = get_template_and_user({template_name => "serials/subscription-bib-search.tmpl",
188                 query => $input,
189                 type => "intranet",
190                 authnotrequired => 0,
191                 flagsrequired => {catalogue => 1, serials => '*'},
192                 debug => 1,
193                 });
194     # load the itemtypes
195     my $itemtypes = GetItemTypes;
196     my @itemtypesloop;
197     if (!$advanced_search_types or $advanced_search_types eq 'itemtypes') {
198         # load the itemtypes
199         my $itemtypes = GetItemTypes;
200         my $selected=1;
201         my $cnt;
202         foreach my $thisitemtype ( sort {$itemtypes->{$a}->{'description'} cmp $itemtypes->{$b}->{'description'} } keys %$itemtypes ) {
203             my %row =(
204                         code => $thisitemtype,
205                         selected => $selected,
206                         description => $itemtypes->{$thisitemtype}->{'description'},
207                     );
208             $selected = 0 if ($selected) ;
209             push @itemtypesloop, \%row;
210         }
211
212
213     } else {
214         my $advsearchtypes = GetAuthorisedValues($advanced_search_types);
215         my $cnt;
216         my $selected=1;
217         for my $thisitemtype (sort {$a->{'lib'} cmp $b->{'lib'}} @$advsearchtypes) {
218             my %row =(
219                     number=>$cnt++,
220                     ccl => $advanced_search_types,
221                     code => $thisitemtype->{authorised_value},
222                     selected => $selected,
223                     description => $thisitemtype->{'lib'},
224                     count5 => $cnt % 4,
225                     imageurl=> getitemtypeimagelocation( 'intranet', $thisitemtype->{'imageurl'} ),
226                 );
227             push @itemtypesloop, \%row;
228         }
229     }
230
231
232     if ($op eq "do_search") {
233        $template->param("no_query" => 1);
234     } else {
235        $template->param("no_query" => 0);
236     }
237     $template->param(itemtypeloop => \@itemtypesloop);
238 }
239 # Print the page
240 output_html_with_http_headers $input, $cookie, $template->output;
241
242 # Local Variables:
243 # tab-width: 4
244 # End: