Authority tables are modified to be compatible with new MARC frameworks. This change...
[koha.git] / authorities / auth_linker.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::Biblio;
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         my ($results,$total) = authoritysearch($dbh, \@marclist,\@and_or,
72                                                                                 \@excluding, \@operator, \@value,
73                                                                                 $startfrom*$resultsperpage, $resultsperpage,$authtypecode);# $orderby);
74
75         ($template, $loggedinuser, $cookie)
76                 = get_template_and_user({template_name => "authorities/linkresultlist-auth.tmpl",
77                                 query => $query,
78                                 type => 'intranet',
79                                 authnotrequired => 0,
80                                 flagsrequired => {borrowers => 1},
81                                 flagsrequired => {catalogue => 1},
82                                 debug => 1,
83                                 });
84
85         # multi page display gestion
86         my $displaynext=0;
87         my $displayprev=$startfrom;
88         if(($total - (($startfrom+1)*($resultsperpage))) > 0 ) {
89                 $displaynext = 1;
90         }
91
92         my @field_data = ();
93
94
95         my @marclist_ini = $query->param('marclist'); # get marclist again, as the previous one has been modified by catalogsearch (mainentry replaced by field name
96         for(my $i = 0 ; $i <= $#marclist ; $i++) {
97                 push @field_data, { term => "marclist", val=>$marclist_ini[$i] };
98                 push @field_data, { term => "and_or", val=>$and_or[$i] };
99                 push @field_data, { term => "excluding", val=>$excluding[$i] };
100                 push @field_data, { term => "operator", val=>$operator[$i] };
101                 push @field_data, { term => "value", val=>$value[$i] };
102         }
103
104         my @numbers = ();
105
106         if ($total>$resultsperpage) {
107                 for (my $i=1; $i<$total/$resultsperpage+1; $i++) {
108                         if ($i<16) {
109                         my $highlight=0;
110                         ($startfrom==($i-1)) && ($highlight=1);
111                         push @numbers, { number => $i,
112                                         highlight => $highlight ,
113                                         searchdata=> \@field_data,
114                                         startfrom => ($i-1)};
115                         }
116         }
117         }
118
119         my $from = $startfrom*$resultsperpage+1;
120         my $to;
121
122         if($total < (($startfrom+1)*$resultsperpage)) {
123                 $to = $total;
124         } else {
125                 $to = (($startfrom+1)*$resultsperpage);
126         }
127         $template->param(result => $results) if $results;
128         $template->param(index => $query->param('index')."");
129         $template->param(startfrom=> $startfrom,
130                                                         displaynext=> $displaynext,
131                                                         displayprev=> $displayprev,
132                                                         resultsperpage => $resultsperpage,
133                                                         startfromnext => $startfrom+1,
134                                                         startfromprev => $startfrom-1,
135                                                 index => $index,
136                                                         searchdata=>\@field_data,
137                                                         total=>$total,
138                                                         from=>$from,
139                                                         to=>$to,
140                                                         numbers=>\@numbers,
141                                                         authtypecode =>$authtypecode,
142                                                         resultstring =>$value[0],
143                                                         );
144 } else {
145         ($template, $loggedinuser, $cookie)
146                 = get_template_and_user({template_name => "authorities/auth_linker.tmpl",
147                                 query => $query,
148                                 type => 'intranet',
149                                 authnotrequired => 0,
150                                 flagsrequired => {catalogue => 1},
151                                 debug => 1,
152                                 });
153
154         $template->param(index=>$query->param('index')."",
155                                         resultstring => $resultstring,
156                                 
157                                         );
158 }
159
160 $template->param(authtypesloop => \@authtypesloop,
161                                 authtypecode => $authtypecode,
162                                 nonav=>"1",);
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: