Bug 22061: OpenAPI spec
[koha.git] / cataloguing / addbooks.pl
1 #!/usr/bin/perl
2
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
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 =head1 cataloguing:addbooks.pl
22
23         TODO
24
25 =cut
26
27 use Modern::Perl;
28
29 use CGI qw ( -utf8 );
30 use C4::Auth;
31 use C4::Biblio;
32 use C4::Breeding;
33 use C4::Output;
34 use C4::Koha;
35 use C4::Languages qw(getlanguage);
36 use C4::Search;
37
38 use Koha::BiblioFrameworks;
39 use Koha::SearchEngine::Search;
40 use Koha::SearchEngine::QueryBuilder;
41 use Koha::Z3950Servers;
42
43 my $input = new CGI;
44
45 my $success = $input->param('biblioitem');
46 my $query   = $input->param('q');
47 my @value   = $input->multi_param('value');
48 my $page    = $input->param('page') || 1;
49 my $results_per_page = 20;
50 my $lang = C4::Languages::getlanguage($input);
51
52
53 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
54     {
55         template_name   => "cataloguing/addbooks.tt",
56         query           => $input,
57         type            => "intranet",
58         authnotrequired => 0,
59         flagsrequired   => { editcatalogue => '*' },
60         debug           => 1,
61     }
62 );
63
64 # Searching the catalog.
65 if ($query) {
66
67     # build query
68     my @operands = $query;
69
70     my $QParser;
71     $QParser = C4::Context->queryparser if (C4::Context->preference('UseQueryParser'));
72     my $builtquery;
73     my $builder = Koha::SearchEngine::QueryBuilder->new(
74         { index => $Koha::SearchEngine::BIBLIOS_INDEX } );
75     my $searcher = Koha::SearchEngine::Search->new(
76         { index => $Koha::SearchEngine::BIBLIOS_INDEX } );
77     if ($QParser) {
78         $builtquery = $query;
79     } else {
80         ( undef, $builtquery, undef, undef, undef, undef, undef, undef, undef, undef ) =
81           $builder->build_query_compat( undef, \@operands, undef, undef, undef, 0, $lang );
82     }
83     # find results
84     my ( $error, $marcresults, $total_hits ) = $searcher->simple_search_compat($builtquery, $results_per_page * ($page - 1), $results_per_page);
85
86     if ( defined $error ) {
87         $template->param( error => $error );
88         warn "error: " . $error;
89         output_html_with_http_headers $input, $cookie, $template->output;
90         exit;
91     }
92
93     # format output
94     # SimpleSearch() give the results per page we want, so 0 offet here
95     my $total = @{$marcresults};
96     my @newresults = searchResults( {'interface' => 'intranet'}, $query, $total, $results_per_page, 0, 0, $marcresults );
97     foreach my $line (@newresults) {
98         if ( not exists $line->{'size'} ) { $line->{'size'} = "" }
99     }
100     $template->param(
101         total          => $total_hits,
102         query          => $query,
103         resultsloop    => \@newresults,
104         pagination_bar => pagination_bar( "/cgi-bin/koha/cataloguing/addbooks.pl?q=$query&", getnbpages( $total_hits, $results_per_page ), $page, 'page' ),
105     );
106 }
107
108 # fill with books in breeding farm
109
110 my $countbr = 0;
111 my @resultsbr;
112 if ($query) {
113 # fill isbn or title, depending on what has been entered
114 #u must do check on isbn because u can find number in beginning of title
115 #check is on isbn legnth 13 for new isbn and 10 for old isbn
116     my ( $title, $isbn );
117     if ($query=~/\d/) {
118         my $clean_query = $query;
119         $clean_query =~ s/-//g; # remove hyphens
120         my $querylength = length $clean_query;
121         if ( $querylength == 13 || $querylength == 10 ) {
122             $isbn = $query;
123         }
124     }
125     if (!$isbn) {
126         $title = $query;
127     }
128     ( $countbr, @resultsbr ) = BreedingSearch( $title, $isbn );
129 }
130 my $breeding_loop = [];
131 for my $resultsbr (@resultsbr) {
132     push @{$breeding_loop}, {
133         id               => $resultsbr->{import_record_id},
134         isbn             => $resultsbr->{isbn},
135         copyrightdate    => $resultsbr->{copyrightdate},
136         editionstatement => $resultsbr->{editionstatement},
137         file             => $resultsbr->{file_name},
138         title            => $resultsbr->{title},
139         author           => $resultsbr->{author},
140     };
141 }
142
143 my $servers = Koha::Z3950Servers->search(
144     {
145         recordtype => 'biblio',
146         servertype => ['zed','sru'],
147     }
148 );
149
150 my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
151 $template->param(
152     servers           => $servers,
153     frameworks        => $frameworks,
154     breeding_count    => $countbr,
155     breeding_loop     => $breeding_loop,
156     z3950_search_params => C4::Search::z3950_search_args($query),
157 );
158
159 output_html_with_http_headers $input, $cookie, $template->output;
160