Bug 23895: Move installer file into the mandatory directory
[koha.git] / cataloguing / addbooks.pl
blobfdc04b2c2e4bc9238eb4de37e4c091376c992179
1 #!/usr/bin/perl
4 # Copyright 2000-2002 Katipo Communications
6 # This file is part of Koha.
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.
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.
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>.
21 =head1 cataloguing:addbooks.pl
23 TODO
25 =cut
27 use Modern::Perl;
29 use CGI qw ( -utf8 );
30 use URI::Escape;
31 use C4::Auth;
32 use C4::Biblio;
33 use C4::Breeding;
34 use C4::Output;
35 use C4::Koha;
36 use C4::Languages qw(getlanguage);
37 use C4::Search;
39 use Koha::BiblioFrameworks;
40 use Koha::SearchEngine::Search;
41 use Koha::SearchEngine::QueryBuilder;
42 use Koha::Z3950Servers;
44 my $input = new CGI;
46 my $success = $input->param('biblioitem');
47 my $query = $input->param('q');
48 my @value = $input->multi_param('value');
49 my $page = $input->param('page') || 1;
50 my $results_per_page = 20;
51 my $lang = C4::Languages::getlanguage($input);
54 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
56 template_name => "cataloguing/addbooks.tt",
57 query => $input,
58 type => "intranet",
59 flagsrequired => { editcatalogue => '*' },
60 debug => 1,
64 # Searching the catalog.
65 if ($query) {
67 # build query
68 my @operands = $query;
70 my $builtquery;
71 my $query_cgi;
72 my $builder = Koha::SearchEngine::QueryBuilder->new(
73 { index => $Koha::SearchEngine::BIBLIOS_INDEX } );
74 my $searcher = Koha::SearchEngine::Search->new(
75 { index => $Koha::SearchEngine::BIBLIOS_INDEX } );
76 ( undef, $builtquery, undef, $query_cgi, undef, undef, undef, undef, undef, undef ) =
77 $builder->build_query_compat( undef, \@operands, undef, undef, undef, 0, $lang, { weighted_fields => 1 });
79 $template->param( search_query => $builtquery ) if C4::Context->preference('DumpSearchQueryTemplate');
81 # find results
82 my ( $error, $marcresults, $total_hits ) = $searcher->simple_search_compat($builtquery, $results_per_page * ($page - 1), $results_per_page);
84 if ( defined $error ) {
85 $template->param( error => $error );
86 warn "error: " . $error;
87 output_html_with_http_headers $input, $cookie, $template->output;
88 exit;
91 # format output
92 # SimpleSearch() give the results per page we want, so 0 offet here
93 my $total = @{$marcresults};
94 my @newresults = searchResults( {'interface' => 'intranet'}, $query, $total, $results_per_page, 0, 0, $marcresults );
95 foreach my $line (@newresults) {
96 if ( not exists $line->{'size'} ) { $line->{'size'} = "" }
98 $template->param(
99 total => $total_hits,
100 query => $query,
101 resultsloop => \@newresults,
102 pagination_bar => pagination_bar( "/cgi-bin/koha/cataloguing/addbooks.pl?$query_cgi&", getnbpages( $total_hits, $results_per_page ), $page, 'page' ),
106 # fill with books in breeding farm
108 my $countbr = 0;
109 my @resultsbr;
110 if ($query) {
111 # fill isbn or title, depending on what has been entered
112 #u must do check on isbn because u can find number in beginning of title
113 #check is on isbn legnth 13 for new isbn and 10 for old isbn
114 my ( $title, $isbn );
115 if ($query=~/\d/) {
116 my $clean_query = $query;
117 $clean_query =~ s/-//g; # remove hyphens
118 my $querylength = length $clean_query;
119 if ( $querylength == 13 || $querylength == 10 ) {
120 $isbn = $query;
123 if (!$isbn) {
124 $title = $query;
126 ( $countbr, @resultsbr ) = BreedingSearch( $title, $isbn );
128 my $breeding_loop = [];
129 for my $resultsbr (@resultsbr) {
130 push @{$breeding_loop}, {
131 id => $resultsbr->{import_record_id},
132 isbn => $resultsbr->{isbn},
133 copyrightdate => $resultsbr->{copyrightdate},
134 editionstatement => $resultsbr->{editionstatement},
135 file => $resultsbr->{file_name},
136 title => $resultsbr->{title},
137 author => $resultsbr->{author},
141 my $servers = Koha::Z3950Servers->search(
143 recordtype => 'biblio',
144 servertype => ['zed','sru'],
148 my $frameworks = Koha::BiblioFrameworks->search({}, { order_by => ['frameworktext'] });
149 $template->param(
150 servers => $servers,
151 frameworks => $frameworks,
152 breeding_count => $countbr,
153 breeding_loop => $breeding_loop,
154 z3950_search_params => C4::Search::z3950_search_args($query),
157 output_html_with_http_headers $input, $cookie, $template->output;