Bug 11876 - Ommited files in last patch
[koha.git] / tools / showdiffmarc.pl
1 #!/usr/bin/perl
2
3 # Koha library project  www.koha-community.org
4
5 # Copyright 2011 LibĂ©o
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21
22 use strict;
23 use warnings;
24
25 # standard or CPAN modules used
26 use CGI qw(:standard);
27 use DBI;
28
29 # Koha modules used
30 use C4::Context;
31 use C4::Output;
32 use C4::Auth;
33 use C4::Biblio;
34 use C4::ImportBatch;
35 use XML::LibXSLT;
36 use XML::LibXML;
37
38
39 # Input params
40 my $input        = new CGI;
41 my $biblionumber = $input->param('id');
42 my $importid     = $input->param('importid');
43
44
45 if ( $biblionumber and $importid ) {
46
47     # Init vars
48     my ($recordBiblionumber, $recordImportid, $biblioTitle, $importTitle, $formatted1, $formatted2,
49         $errorFormatted1, $errorFormatted2);
50
51
52     # Prepare template
53     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
54         {
55             template_name   => "tools/showdiffmarc.tt",
56             query           => $input,
57             type            => "intranet",
58             authnotrequired => 0,
59             flagsrequired   => { catalogue => 1  },
60             debug           => 1,
61         }
62     );
63
64
65     $recordBiblionumber =GetMarcBiblio($biblionumber);
66     if( $recordBiblionumber ) {
67         $formatted1 = $recordBiblionumber->as_formatted;
68         my $data = GetBiblioData($biblionumber);
69         $biblioTitle = $data->{title};
70     } else {
71         $errorFormatted1 = 1;
72     }
73
74     my ($marc,$encoding) = GetImportRecordMarc($importid);
75     if( $marc ) {
76         $recordImportid = MARC::Record->new_from_usmarc($marc) ;
77         $formatted2 = $recordImportid->as_formatted;
78         my $biblio = GetImportBiblios($importid);
79         $importTitle = $biblio->[0]->{'title'};
80     } else {
81         $errorFormatted2 = 1;
82     }
83
84
85     $template->param(     SCRIPT_NAME => $ENV{'SCRIPT_NAME'},
86                         BIBLIONUMBER => $biblionumber,
87                         IMPORTID => $importid,
88                         BIBLIOTITLE => $biblioTitle,
89                         IMPORTTITLE => $importTitle,
90                         MARC_FORMATTED1 => $formatted1,
91                         MARC_FORMATTED2 => $formatted2,
92                         ERROR_FORMATTED1 => $errorFormatted1,
93                         ERROR_FORMATTED2 => $errorFormatted2
94                     );
95
96     output_html_with_http_headers $input, $cookie, $template->output;
97 } else {
98     exit;
99 }