small bugfix to make logout work
[koha.git] / opac / opac-searchresults.pl
1 #!/usr/bin/perl
2 use strict;
3 require Exporter;
4 use CGI;
5 use C4::Search;
6 use C4::Auth;
7 use HTML::Template;
8
9 my $query=new CGI;
10
11 my ($template, $borrowernumber, $cookie)
12     = get_template_and_user({template_name => "opac-searchresults.tmpl",
13                              query => $query,
14                              type => "opac",
15                              authnotrequired => 1,
16                              flagsrequired => {borrow => 1},
17                          });
18
19
20 my $subject=$query->param('subject');
21
22
23
24 if ($subject) {
25     $template->param(subjectsearch => $subject);
26 }
27
28 # get all the search variables
29 # we assume that C4::Search will validate these values for us
30 my @fields = ('keyword', 'subject', 'author', 'illustrator', 'itemnumber', 'isbn', 'date-before', 'date-after', 'class', 'dewey', 'branch', 'title', 'abstract', 'publisher');
31
32
33
34 # collect all the fields ...
35 my %search;
36
37 my $forminputs;
38 my $searchdesc = '';
39 foreach my $field (@fields) {
40     $search{$field} = $query->param($field);
41     if ($field eq 'keyword'){
42         $search{$field} = $query->param('words') unless $search{$field};
43     }
44     if ($search{$field}) {
45         push @$forminputs, {field => $field, value => $search{$field}};
46         $searchdesc .= "$field = $search{$field}, ";
47     }
48 }
49
50 $search{'ttype'} = $query->param('ttype');
51 push @$forminputs, {field => 'ttype', value => $search{'ttype'}};
52
53 if (my $subjectitems=$query->param('subjectitems')){
54     $search{'subject'} = $subjectitems;
55     $searchdesc.="subject = $subjectitems, ";
56 }
57
58 @$forminputs=() unless $forminputs;
59 $template->param(FORMINPUTS => $forminputs);
60
61 # do the searchs ....
62 my $env;
63 $env->{itemcount}=1;
64 my $number_of_results = 20;
65 my @results;
66 my $count;
67 my $startfrom = $query->param('startfrom');
68 my $subjectitems=$query->param('subjectitems');
69 if ($subjectitems) {
70     @results = subsearch($env,$subjectitems, $number_of_results, $startfrom);
71     $count = $#results+1;
72 } else {
73     ($count, @results) = catalogsearch($env,'',\%search,$number_of_results,$startfrom);
74 }
75
76 my $num = 1;
77 foreach my $res (@results) {
78     my @items = ItemInfo(undef, $res->{'biblionumber'}, "intra");
79     my $norequests = 1;
80     foreach my $itm (@items) {
81         $norequests = 0 unless $itm->{'notforloan'};
82     }
83     $res->{'norequests'} = $norequests;
84     # set up the even odd elements....
85     $res->{'even'} = 1 if $num % 2 == 0;
86     $res->{'odd'} = 1 if $num % 2 == 1;
87     $num++;
88 }
89
90
91 my $startfrom=$query->param('startfrom');
92 ($startfrom) || ($startfrom=0);
93
94 my $resultsarray=\@results;
95 ($resultsarray) || (@$resultsarray=());
96
97
98 # sorting out which results to display.
99 $template->param(startfrom => $startfrom+1);
100 ($startfrom+$num<=$count) ? ($template->param(endat => $startfrom+$num)) : ($template->param(endat => $count));
101 $template->param(numrecords => $count);
102 my $nextstartfrom=($startfrom+$num<$count) ? ($startfrom+$num) : (-1);
103 my $prevstartfrom=($startfrom-$num>=0) ? ($startfrom-$num) : (-1);
104 $template->param(nextstartfrom => $nextstartfrom);
105 my $displaynext=1;
106 my $displayprev=0;
107 ($nextstartfrom==-1) ? ($displaynext=0) : ($displaynext=1);
108 ($prevstartfrom==-1) ? ($displayprev=0) : ($displayprev=1);
109 $template->param(displaynext => $displaynext);
110 $template->param(displayprev => $displayprev);
111 $template->param(prevstartfrom => $prevstartfrom);
112
113 $template->param(searchdesc => $searchdesc);
114 $template->param(SEARCH_RESULTS => $resultsarray);
115
116 my $numbers;
117 @$numbers = ();
118 if ($count>10) {
119     for (my $i=1; $i<$count/10+1; $i++) {
120         my $highlight=0;
121         my $themelang = $template->param('themelang');
122         ($startfrom==($i-1)*10) && ($highlight=1);
123         push @$numbers, { number => $i, highlight => $highlight , startfrom => ($i-1)*10 };
124     }
125 }
126
127 $template->param(numbers => $numbers);
128
129 print $query->header(-cookie => $cookie), $template->output;
130