synch'ing virtual shelves management in opac with the librarian one, that has more...
[koha.git] / authorities / auth_finder.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 use strict;
22 require Exporter;
23 use CGI;
24 use C4::Auth;
25 use HTML::Template;
26 use C4::Context;
27 use C4::Search;
28 use C4::Auth;
29 use C4::Output;
30 use C4::Interface::CGI::Output;
31 use C4::AuthoritiesMarc;
32 use C4::SearchMarc;
33 use C4::Acquisition;
34 use C4::Koha; # XXX subfield_is_koha_internal_p
35
36 my $query=new CGI;
37 my $op = $query->param('op');
38 my $authtypecode = $query->param('authtypecode');
39 my $index = $query->param('index');
40 my $category = $query->param('category');
41 my $resultstring = $query->param('result');
42 my $dbh = C4::Context->dbh;
43
44 my $startfrom=$query->param('startfrom');
45 $startfrom=0 if(!defined $startfrom);
46 my ($template, $loggedinuser, $cookie);
47 my $resultsperpage;
48
49 my $authtypes = getauthtypes;
50 my @authtypesloop;
51 foreach my $thisauthtype (keys %$authtypes) {
52         my $selected = 1 if $thisauthtype eq $authtypecode;
53         my %row =(value => $thisauthtype,
54                                 selected => $selected,
55                                 authtypetext => $authtypes->{$thisauthtype}{'authtypetext'},
56                           index => $index,
57                         );
58         push @authtypesloop, \%row;
59 }
60
61 if ($op eq "do_search") {
62         my @marclist = $query->param('marclist');
63         my @and_or = $query->param('and_or');
64         my @excluding = $query->param('excluding');
65         my @operator = $query->param('operator');
66         my @value = $query->param('value');
67
68         $resultsperpage= $query->param('resultsperpage');
69         $resultsperpage = 19 if(!defined $resultsperpage);
70
71         # builds tag and subfield arrays
72         my @tags;
73
74         my ($results,$total) = authoritysearch($dbh, \@tags,\@and_or,
75                                                                                 \@excluding, \@operator, \@value,
76                                                                                 $startfrom*$resultsperpage, $resultsperpage,$authtypecode);# $orderby);
77
78         ($template, $loggedinuser, $cookie)
79                 = get_template_and_user({template_name => "authorities/searchresultlist-auth.tmpl",
80                                 query => $query,
81                                 type => 'intranet',
82                                 authnotrequired => 0,
83                                 flagsrequired => {borrowers => 1},
84                                 flagsrequired => {catalogue => 1},
85                                 debug => 1,
86                                 });
87
88         # multi page display gestion
89         my $displaynext=0;
90         my $displayprev=$startfrom;
91         if(($total - (($startfrom+1)*($resultsperpage))) > 0 ) {
92                 $displaynext = 1;
93         }
94
95         my @field_data = ();
96
97
98         for(my $i = 0 ; $i <= $#marclist ; $i++) {
99                 push @field_data, { term => "marclist", val=>$marclist[$i] };
100                 push @field_data, { term => "and_or", val=>$and_or[$i] };
101                 push @field_data, { term => "excluding", val=>$excluding[$i] };
102                 push @field_data, { term => "operator", val=>$operator[$i] };
103                 push @field_data, { term => "value", val=>$value[$i] };
104         }
105
106         my @numbers = ();
107
108         if ($total>$resultsperpage) {
109                 for (my $i=1; $i<$total/$resultsperpage+1; $i++) {
110                         if ($i<16) {
111                         my $highlight=0;
112                         ($startfrom==($i-1)) && ($highlight=1);
113                         push @numbers, { number => $i,
114                                         highlight => $highlight ,
115                                         searchdata=> \@field_data,
116                                         startfrom => ($i-1)};
117                         }
118         }
119         }
120
121         my $from = $startfrom*$resultsperpage+1;
122         my $to;
123
124         if($total < (($startfrom+1)*$resultsperpage)) {
125                 $to = $total;
126         } else {
127                 $to = (($startfrom+1)*$resultsperpage);
128         }
129         $template->param(result => $results) if $results;
130         $template->param(index => $query->param('index'));
131         $template->param(startfrom=> $startfrom,
132                                                         displaynext=> $displaynext,
133                                                         displayprev=> $displayprev,
134                                                         resultsperpage => $resultsperpage,
135                                                         startfromnext => $startfrom+1,
136                                                         startfromprev => $startfrom-1,
137                                                 index => $index,
138                                                         searchdata=>\@field_data,
139                                                         total=>$total,
140                                                         from=>$from,
141                                                         to=>$to,
142                                                         numbers=>\@numbers,
143                                                         authtypecode =>$authtypecode,
144                                                         resultstring =>$value[0],
145                                                         );
146 } else {
147         ($template, $loggedinuser, $cookie)
148                 = get_template_and_user({template_name => "authorities/auth_finder.tmpl",
149                                 query => $query,
150                                 type => 'intranet',
151                                 authnotrequired => 0,
152                                 flagsrequired => {catalogue => 1},
153                                 debug => 1,
154                                 });
155
156         $template->param(index => $index,
157                                         resultstring => $resultstring
158                                         );
159 }
160
161 $template->param(authtypesloop => \@authtypesloop);
162 $template->param(category => $category);
163
164 # Print the page
165 output_html_with_http_headers $query, $cookie, $template->output;
166
167 # Local Variables:
168 # tab-width: 4
169 # End: