Bug 28591: Don't pass debug to get_template_and_user
[koha.git] / catalogue / showmarc.pl
1 #!/usr/bin/perl
2
3 # Koha library project  www.koha-community.org
4
5 # Copyright 2007 Liblime
6 # Parts copyright 2010 BibLibre
7 #
8 # This file is part of Koha.
9 #
10 # Koha is free software; you can redistribute it and/or modify it
11 # under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 3 of the License, or
13 # (at your option) any later version.
14 #
15 # Koha is distributed in the hope that it will be useful, but
16 # WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22
23 use Modern::Perl;
24
25 # standard or CPAN modules used
26 use CGI qw(:standard -utf8);
27 use DBI;
28 use Encode;
29
30 # Koha modules used
31 use C4::Context;
32 use C4::Output;
33 use C4::Auth;
34 use C4::Biblio;
35 use C4::ImportBatch;
36 use C4::XSLT ();
37
38 my $input= CGI->new;
39 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
40   {
41     template_name   => "catalogue/showmarc.tt",
42     query           => $input,
43     type            => "intranet",
44     flagsrequired   => { catalogue => 1  },
45   }
46 );
47
48 my $biblionumber= $input->param('id');
49 my $importid= $input->param('importid');
50 my $view= $input->param('viewas')||'';
51
52 my $record;
53 if ($importid) {
54     $record = C4::ImportBatch::GetRecordFromImportBiblio( $importid, 'embed_items' );
55 }
56 else {
57     $record =GetMarcBiblio({ biblionumber => $biblionumber });
58 }
59 if(!ref $record) {
60     print $input->redirect("/cgi-bin/koha/errors/404.pl");
61     exit;
62 }
63
64 if($view eq 'card' || $view eq 'html') {
65     my $xml = $importid ? $record->as_xml(): GetXmlBiblio($biblionumber);
66     my $xsl;
67     if ( $view eq 'card' ){
68         $xsl = C4::Context->preference('marcflavour') eq 'UNIMARC'
69               ? 'UNIMARC_compact.xsl' : 'compact.xsl';
70     }
71     else {
72         $xsl = 'plainMARC.xsl';
73     }
74     my $htdocs = C4::Context->config('intrahtdocs');
75     my ($theme, $lang) = C4::Templates::themelanguage($htdocs, $xsl, 'intranet', $input);
76     $xsl = "$htdocs/$theme/$lang/xslt/$xsl";
77     print $input->header(-charset => 'UTF-8'),
78           Encode::encode_utf8(C4::XSLT::engine->transform($xml, $xsl));
79 }
80 else {
81     $template->param( MARC_FORMATTED => $record->as_formatted );
82     output_html_with_http_headers $input, $cookie, $template->output;
83 }