Bug 5202: QA follow-up: quiet warnings
[koha.git] / authorities / merge.pl
1 #!/usr/bin/perl
2
3 # Copyright 2013 C & P Bibliography Services
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use strict;
21 use warnings;
22 use CGI;
23 use C4::Output;
24 use C4::Auth;
25 use C4::AuthoritiesMarc;
26 use Koha::Authority;
27 use C4::Koha;
28 use C4::Biblio;
29
30 my $input  = new CGI;
31 my @authid = $input->param('authid');
32 my $merge  = $input->param('merge');
33
34 my @errors;
35
36 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
37     {
38         template_name   => "authorities/merge.tt",
39         query           => $input,
40         type            => "intranet",
41         authnotrequired => 0,
42         flagsrequired   => { editauthorities => 1 },
43     }
44 );
45
46 #------------------------
47 # Merging
48 #------------------------
49 if ($merge) {
50
51     # Creating a new record from the html code
52     my $record   = TransformHtmlToMarc($input);
53     my $recordid1   = $input->param('recordid1');
54     my $recordid2   = $input->param('recordid2');
55     my $typecode = $input->param('frameworkcode');
56
57     # Rewriting the leader
58     $record->leader( GetAuthority($recordid1)->leader() );
59
60     # Modifying the reference record
61     ModAuthority( $recordid1, $record, $typecode );
62
63     # Deleting the other record
64     if ( scalar(@errors) == 0 ) {
65
66         my $error;
67         if ($input->param('mergereference') eq 'breeding') {
68             require C4::ImportBatch;
69             C4::ImportBatch::SetImportRecordStatus( $recordid2, 'imported' );
70         } else {
71             $error = (DelAuthority($recordid2) == 0);
72         }
73         push @errors, $error if ($error);
74     }
75
76     # Parameters
77     $template->param(
78         result  => 1,
79         recordid1 => $recordid1
80     );
81
82     #-------------------------
83     # Show records to merge
84     #-------------------------
85 }
86 else {
87     my $mergereference = $input->param('mergereference');
88     $template->{'VARS'}->{'mergereference'} = $mergereference;
89
90     if ( scalar(@authid) != 2 ) {
91         push @errors, { code => "WRONG_COUNT", value => scalar(@authid) };
92     }
93     else {
94         my $recordObj1 = Koha::Authority->get_from_authid($authid[0]) || Koha::Authority->new();
95         my $recordObj2;
96
97         if ($mergereference eq 'breeding') {
98             $recordObj2 =  Koha::Authority->get_from_breeding($authid[1]) || Koha::Authority->new();
99             $mergereference = $authid[0];
100         } else {
101             $recordObj2 =  Koha::Authority->get_from_authid($authid[1]) || Koha::Authority->new();
102         }
103
104         if ($mergereference) {
105
106             my $framework;
107             if ( $recordObj1->authtype ne $recordObj2->authtype && $mergereference ne 'breeding' ) {
108                 $framework = $input->param('frameworkcode')
109                   or push @errors, "Framework not selected.";
110             }
111             else {
112                 $framework = $recordObj1->authtype;
113             }
114
115             # Getting MARC Structure
116             my $tagslib = GetTagsLabels( 1, $framework );
117             foreach my $field ( keys %$tagslib ) {
118                 if ( defined $tagslib->{$field}->{'tab'} && $tagslib->{$field}->{'tab'} eq ' ' ) {
119                     $tagslib->{$field}->{'tab'} = 0;
120                 }
121             }
122
123             my $notreference =
124               ( $authid[0] == $mergereference )
125               ? $authid[1]
126               : $authid[0];
127
128             # Creating a loop for display
129
130             my @record1 = $recordObj1->createMergeHash($tagslib);
131             my @record2 = $recordObj2->createMergeHash($tagslib);
132
133             # Parameters
134             $template->param(
135                 recordid1        => $mergereference,
136                 recordid2        => $notreference,
137                 record1        => @record1,
138                 record2        => @record2,
139                 framework      => $framework,
140             );
141         }
142         else {
143
144             # Ask the user to choose which record will be the kept
145             $template->param(
146                 choosereference => 1,
147                 recordid1         => $authid[0],
148                 recordid2         => $authid[1],
149                 title1          => $recordObj1->authorized_heading,
150                 title2          => $recordObj2->authorized_heading,
151             );
152             if ( $recordObj1->authtype ne $recordObj2->authtype ) {
153                 my $frameworks = getauthtypes;
154                 my @frameworkselect;
155                 foreach my $thisframeworkcode ( keys %$frameworks ) {
156                     my %row = (
157                         value => $thisframeworkcode,
158                         frameworktext =>
159                           $frameworks->{$thisframeworkcode}->{'authtypetext'},
160                     );
161                     if ( $recordObj1->authtype eq $thisframeworkcode ) {
162                         $row{'selected'} = 1;
163                     }
164                     push @frameworkselect, \%row;
165                 }
166                 $template->param(
167                     frameworkselect => \@frameworkselect,
168                     frameworkcode1  => $recordObj1->authtype,
169                     frameworkcode2  => $recordObj2->authtype,
170                 );
171             }
172         }
173     }
174 }
175
176 if (@errors) {
177
178     # Errors
179     $template->param( errors => \@errors );
180 }
181
182 output_html_with_http_headers $input, $cookie, $template->output;
183 exit;
184
185 =head1 FUNCTIONS
186
187 =cut
188
189 # ------------------------
190 # Functions
191 # ------------------------