Bug 30477: Add new UNIMARC installer translation files
[koha.git] / opac / opac-downloadcart.pl
1 #!/usr/bin/perl
2
3 # Copyright 2009 BibLibre
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
20 use Modern::Perl;
21
22 use CGI qw ( -utf8 );
23 use Encode qw( encode );
24
25 use C4::Auth qw( get_template_and_user );
26 use C4::Biblio qw( GetFrameworkCode GetISBDView GetMarcBiblio );
27 use C4::Output qw( output_html_with_http_headers );
28 use C4::Record;
29 use C4::Ris qw( marc2ris );
30 use Koha::CsvProfiles;
31 use Koha::RecordProcessor;
32
33 use utf8;
34 my $query = CGI->new();
35
36 my ( $template, $borrowernumber, $cookie ) = get_template_and_user (
37     {
38         template_name   => "opac-downloadcart.tt",
39         query           => $query,
40         type            => "opac",
41         authnotrequired => ( C4::Context->preference("OpacPublic") ? 1 : 0 ),
42     }
43 );
44
45 my $bib_list = $query->param('bib_list');
46 my $format  = $query->param('format');
47 my $dbh     = C4::Context->dbh;
48
49 if ($bib_list && $format) {
50
51     my $borcat = q{};
52     if ( C4::Context->preference('OpacHiddenItemsExceptions') ) {
53         # we need to fetch the borrower info here, so we can pass the category
54         my $borrower = Koha::Patrons->find( { borrowernumber => $borrowernumber } );
55         $borcat = $borrower ? $borrower->categorycode : $borcat;
56     }
57
58     my @bibs = split( /\//, $bib_list );
59
60     my $marcflavour = C4::Context->preference('marcflavour');
61     my $output;
62     my $extension;
63     my $type;
64
65     # CSV   
66     if ($format =~ /^\d+$/) {
67
68         my $csv_profile = Koha::CsvProfiles->find($format);
69         if ( not $csv_profile or $csv_profile->staff_only ) {
70             print $query->redirect('/cgi-bin/koha/errors/404.pl');
71             exit;
72         }
73
74         $output = marc2csv(\@bibs, $format);
75
76         # Other formats
77     } else {
78         my $record_processor = Koha::RecordProcessor->new({
79             filters => 'ViewPolicy'
80         });
81         foreach my $biblio (@bibs) {
82
83             my $record = GetMarcBiblio({
84                 biblionumber => $biblio,
85                 embed_items  => 1,
86                 opac         => 1,
87                 borcat       => $borcat });
88             my $framework = &GetFrameworkCode( $biblio );
89             $record_processor->options({
90                 interface => 'opac',
91                 frameworkcode => $framework
92             });
93             $record_processor->process($record);
94
95             next unless $record;
96
97             if ($format eq 'iso2709') {
98                 #NOTE: If we don't explicitly UTF-8 encode the output,
99                 #the browser will guess the encoding, and it won't always choose UTF-8.
100                 $output .= encode("UTF-8", $record->as_usmarc()) // q{};
101             }
102             elsif ($format eq 'ris') {
103                 $output .= marc2ris($record);
104             }
105             elsif ($format eq 'bibtex') {
106                 $output .= marc2bibtex($record, $biblio);
107             }
108             elsif ( $format eq 'isbd' ) {
109                 my $framework = GetFrameworkCode( $biblio );
110                 $output   .= GetISBDView({
111                     'record'    => $record,
112                     'template'  => 'opac',
113                     'framework' => $framework,
114                 });
115                 $extension = "txt";
116                 $type      = "text/plain";
117             }
118         }
119     }
120
121     # If it was a CSV export we change the format after the export so the file extension is fine
122     $format = "csv" if ($format =~ m/^\d+$/);
123
124     print $query->header(
125                                -type => ($type) ? $type : 'application/octet-stream',
126         -'Content-Transfer-Encoding' => 'binary',
127                          -attachment => ($extension) ? "cart.$format.$extension" : "cart.$format"
128     );
129     print $output;
130
131 } else { 
132     $template->param(
133         csv_profiles => Koha::CsvProfiles->search(
134             {
135                 type       => 'marc',
136                 used_for   => 'export_records',
137                 staff_only => 0
138             }
139         ),
140         bib_list => $bib_list,
141     );
142     output_html_with_http_headers $query, $cookie, $template->output;
143 }