Bug 19036: Add ability to auto generate a number for account credits
[koha.git] / opac / opac-downloadcart.pl
blob0fb7a02f3c2eb88e46a4f8f3f569b324788047da
1 #!/usr/bin/perl
3 # Copyright 2009 BibLibre
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
22 use CGI qw ( -utf8 );
23 use Encode qw(encode);
25 use C4::Auth;
26 use C4::Biblio;
27 use C4::Items;
28 use C4::Output;
29 use C4::Record;
30 use C4::Ris;
31 use Koha::CsvProfiles;
32 use Koha::RecordProcessor;
34 use utf8;
35 my $query = CGI->new();
37 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
39 template_name => "opac-downloadcart.tt",
40 query => $query,
41 type => "opac",
42 authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
46 my $bib_list = $query->param('bib_list');
47 my $format = $query->param('format');
48 my $dbh = C4::Context->dbh;
50 if ($bib_list && $format) {
52 my $borcat = q{};
53 if ( C4::Context->preference('OpacHiddenItemsExceptions') ) {
54 # we need to fetch the borrower info here, so we can pass the category
55 my $borrower = Koha::Patrons->find( { borrowernumber => $borrowernumber } );
56 $borcat = $borrower ? $borrower->categorycode : $borcat;
59 my @bibs = split( /\//, $bib_list );
61 my $marcflavour = C4::Context->preference('marcflavour');
62 my $output;
63 my $extension;
64 my $type;
66 # CSV
67 if ($format =~ /^\d+$/) {
69 my $csv_profile = Koha::CsvProfiles->find($format);
70 if ( not $csv_profile or $csv_profile->staff_only ) {
71 print $query->redirect('/cgi-bin/koha/errors/404.pl');
72 exit;
75 $output = marc2csv(\@bibs, $format);
77 # Other formats
78 } else {
79 my $record_processor = Koha::RecordProcessor->new({
80 filters => 'ViewPolicy'
81 });
82 foreach my $biblio (@bibs) {
84 my $record = GetMarcBiblio({
85 biblionumber => $biblio,
86 embed_items => 1,
87 opac => 1,
88 borcat => $borcat });
89 my $framework = &GetFrameworkCode( $biblio );
90 $record_processor->options({
91 interface => 'opac',
92 frameworkcode => $framework
93 });
94 $record_processor->process($record);
96 next unless $record;
98 if ($format eq 'iso2709') {
99 #NOTE: If we don't explicitly UTF-8 encode the output,
100 #the browser will guess the encoding, and it won't always choose UTF-8.
101 $output .= encode("UTF-8", $record->as_usmarc()) // q{};
103 elsif ($format eq 'ris') {
104 $output .= marc2ris($record);
106 elsif ($format eq 'bibtex') {
107 $output .= marc2bibtex($record, $biblio);
109 elsif ( $format eq 'isbd' ) {
110 my $framework = GetFrameworkCode( $biblio );
111 $output .= GetISBDView({
112 'record' => $record,
113 'template' => 'opac',
114 'framework' => $framework,
116 $extension = "txt";
117 $type = "text/plain";
122 # If it was a CSV export we change the format after the export so the file extension is fine
123 $format = "csv" if ($format =~ m/^\d+$/);
125 print $query->header(
126 -type => ($type) ? $type : 'application/octet-stream',
127 -'Content-Transfer-Encoding' => 'binary',
128 -attachment => ($extension) ? "cart.$format.$extension" : "cart.$format"
130 print $output;
132 } else {
133 $template->param(
134 csv_profiles => [
135 Koha::CsvProfiles->search(
137 type => 'marc',
138 used_for => 'export_records',
139 staff_only => 0
144 $template->param(bib_list => $bib_list);
145 output_html_with_http_headers $query, $cookie, $template->output;