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