98a81fdca29ff223f35fd63c47c22593deae8424
[koha.git] / acqui / z3950_search.pl
1 #!/usr/bin/perl
2
3 # This is a completely new Z3950 clients search using async ZOOM -TG 02/11/06
4 # Copyright 2000-2002 Katipo Communications
5 # Copyright 2010 Catalyst IT
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 use Modern::Perl;
23 use CGI qw/-utf8/;
24
25 use C4::Auth;
26 use C4::Output;
27 use C4::Context;
28 use C4::Breeding;
29 use C4::Koha;
30
31 use Koha::Acquisition::Booksellers;
32 use Koha::BiblioFrameworks;
33
34 my $input           = new CGI;
35 my $biblionumber    = $input->param('biblionumber')||0;
36 my $frameworkcode   = $input->param('frameworkcode') || q{};
37 my $title           = $input->param('title');
38 my $author          = $input->param('author');
39 my $isbn            = $input->param('isbn');
40 my $issn            = $input->param('issn');
41 my $lccn            = $input->param('lccn');
42 my $lccall          = $input->param('lccall');
43 my $subject         = $input->param('subject');
44 my $dewey           = $input->param('dewey');
45 my $controlnumber   = $input->param('controlnumber');
46 my $op              = $input->param('op')||'';
47 my $booksellerid    = $input->param('booksellerid');
48 my $basketno        = $input->param('basketno');
49 my $page            = $input->param('current_page') || 1;
50 $page               = $input->param('goto_page') if $input->param('changepage_goto');
51
52 # get framework list
53 my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
54
55 my $vendor = Koha::Acquisition::Booksellers->find( $booksellerid );
56
57 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
58     {
59         template_name   => "acqui/z3950_search.tt",
60         query           => $input,
61         type            => "intranet",
62         flagsrequired   => { acquisition => 'order_manage' },
63     }
64 );
65 $template->param(
66         frameworkcode => $frameworkcode,
67         frameworks   => $frameworks,
68         booksellerid => $booksellerid,
69         basketno     => $basketno,
70         name         => $vendor->name,
71         isbn         => $isbn,
72         issn         => $issn,
73         lccn         => $lccn,
74         lccall       => $lccall,
75         title        => $title,
76         author       => $author,
77         controlnumber=> $controlnumber,
78         biblionumber => $biblionumber,
79         dewey        => $dewey,
80         subject      => $subject,
81 );
82
83 if ( $op ne "do_search" ) {
84     my $schema = Koha::Database->new()->schema();
85     my $rs = $schema->resultset('Z3950server')->search(
86         {
87             recordtype => 'biblio',
88             servertype => ['zed', 'sru'],
89         },
90         {   result_class => 'DBIx::Class::ResultClass::HashRefInflator',
91             order_by     => ['rank', 'servername'],
92         },
93     );
94     $template->param(
95         serverloop   => [ $rs->all ],
96         opsearch     => "search",
97     );
98     output_html_with_http_headers $input, $cookie, $template->output;
99     exit;
100 }
101
102 my @id = $input->multi_param('id');
103 if (@id==0) {
104     $template->param( emptyserverlist => 1 );
105     output_html_with_http_headers $input, $cookie, $template->output;
106     exit;
107 }
108
109 my $pars= {
110         biblionumber => $biblionumber,
111         page => $page,
112         id => \@id,
113         isbn => $isbn,
114         issn => $issn,
115         title => $title,
116         author => $author,
117         dewey => $dewey,
118         subject => $subject,
119         lccall => $lccall,
120         controlnumber => $controlnumber,
121         stdid => 0,
122         srchany => 0,
123 };
124 Z3950Search($pars, $template);
125 output_html_with_http_headers $input, $cookie, $template->output;