Bug 9302: Add button directing use to keeper's patron record
[koha.git] / authorities / merge.pl
blob9f725415a52cdeeb7a3e80a1abeb673e7055e4be
1 #!/usr/bin/perl
3 # Copyright 2013 C & P Bibliography Services
5 # This file is part of Koha.
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 3 of the License, or (at your option) any later
10 # version.
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.
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.
20 use strict;
21 use warnings;
22 use CGI qw ( -utf8 );
23 use C4::Output;
24 use C4::Auth;
25 use C4::AuthoritiesMarc;
26 use C4::Koha;
27 use C4::Biblio;
29 use Koha::Authority::Types;
30 use Koha::MetadataRecord::Authority;
32 my $input = new CGI;
33 my @authid = $input->multi_param('authid');
34 my $merge = $input->param('merge');
36 my @errors;
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
40 template_name => "authorities/merge.tt",
41 query => $input,
42 type => "intranet",
43 authnotrequired => 0,
44 flagsrequired => { editauthorities => 1 },
48 #------------------------
49 # Merging
50 #------------------------
51 if ($merge) {
53 # Creating a new record from the html code
54 my $record = TransformHtmlToMarc($input, 0);
55 my $recordid1 = $input->param('recordid1') // q{};
56 my $recordid2 = $input->param('recordid2') // q{};
57 my $typecode = $input->param('frameworkcode');
59 # Some error checking
60 if( $recordid1 eq $recordid2 ) {
61 push @errors, { code => 'DESTRUCTIVE_MERGE' };
62 } elsif( !$typecode || !Koha::Authority::Types->find($typecode) ) {
63 push @errors, { code => 'WRONG_FRAMEWORK' };
64 } elsif( scalar $record->fields == 0 ) {
65 push @errors, { code => 'EMPTY_MARC' };
67 if( @errors ) {
68 $template->param( errors => \@errors );
69 output_html_with_http_headers $input, $cookie, $template->output;
70 exit;
73 # Rewriting the leader
74 if( my $authrec = GetAuthority($recordid1) ) {
75 $record->leader( $authrec->leader() );
78 # Modifying the reference record
79 # This triggers a merge for the biblios attached to $recordid1
80 ModAuthority( $recordid1, $record, $typecode );
82 # Now merge for biblios attached to $recordid2
83 my $MARCfrom = GetAuthority( $recordid2 );
84 merge({ mergefrom => $recordid2, MARCfrom => $MARCfrom, mergeto => $recordid1, MARCto => $record });
86 # Delete the other record. Do not merge. It is unneeded and could under
87 # special circumstances have unwanted side-effects.
88 DelAuthority({ authid => $recordid2, skip_merge => 1 });
90 # Parameters
91 $template->param(
92 result => 1,
93 recordid1 => $recordid1
96 #-------------------------
97 # Show records to merge
98 #-------------------------
100 else {
101 my $mergereference = $input->param('mergereference');
102 $template->{'VARS'}->{'mergereference'} = $mergereference;
104 if ( scalar(@authid) != 2 ) {
105 push @errors, { code => "WRONG_COUNT", value => scalar(@authid) };
106 } elsif( $authid[0] eq $authid[1] ) {
107 push @errors, { code => 'DESTRUCTIVE_MERGE' };
108 } else {
109 my $recordObj1 = Koha::MetadataRecord::Authority->get_from_authid($authid[0]);
110 if (!$recordObj1) {
111 push @errors, { code => "MISSING_RECORD", value => $authid[0] };
115 my $recordObj2;
116 if (defined $mergereference && $mergereference eq 'breeding') {
117 $recordObj2 = Koha::MetadataRecord::Authority->get_from_breeding($authid[1]);
118 } else {
119 $recordObj2 = Koha::MetadataRecord::Authority->get_from_authid($authid[1]);
121 if (!$recordObj2) {
122 push @errors, { code => "MISSING_RECORD", value => $authid[1] };
125 unless ( $recordObj1 && $recordObj2 ) {
126 if (@errors) {
127 $template->param( errors => \@errors );
129 output_html_with_http_headers $input, $cookie, $template->output;
130 exit;
133 if ($mergereference ) {
135 my $framework;
136 if ( $recordObj1->authtypecode ne $recordObj2->authtypecode && $mergereference ne 'breeding' ) {
137 $framework = $input->param('frameworkcode');
139 else {
140 $framework = $recordObj1->authtypecode;
142 if ($mergereference eq 'breeding') {
143 $mergereference = $authid[0];
146 # Getting MARC Structure
147 my $tagslib = GetTagsLabels( 1, $framework );
148 foreach my $field ( keys %$tagslib ) {
149 if ( defined $tagslib->{$field}->{'tab'} && $tagslib->{$field}->{'tab'} eq ' ' ) {
150 $tagslib->{$field}->{'tab'} = 0;
154 #Setting $notreference
155 my $notreference = $authid[1];
156 if($mergereference == $notreference){
157 $notreference = $authid[0];
158 #Swap so $recordObj1 is always the correct merge reference
159 ($recordObj1, $recordObj2) = ($recordObj2, $recordObj1);
162 # Creating a loop for display
164 my @records = (
166 recordid => $mergereference,
167 record => $recordObj1->record,
168 frameworkcode => $recordObj1->authtypecode,
169 display => $recordObj1->createMergeHash($tagslib),
170 reference => 1,
173 recordid => $notreference,
174 record => $recordObj2->record,
175 frameworkcode => $recordObj2->authtypecode,
176 display => $recordObj2->createMergeHash($tagslib),
180 # Parameters
181 $template->param(
182 recordid1 => $mergereference,
183 recordid2 => $notreference,
184 records => \@records,
185 framework => $framework,
188 else {
190 # Ask the user to choose which record will be the kept
191 $template->param(
192 choosereference => 1,
193 recordid1 => $authid[0],
194 recordid2 => $authid[1],
195 title1 => $recordObj1->authorized_heading,
196 title2 => $recordObj2->authorized_heading,
198 if ( $recordObj1->authtypecode ne $recordObj2->authtypecode ) {
199 my $authority_types = Koha::Authority::Types->search( { authtypecode => { '!=' => '' } }, { order_by => ['authtypecode'] } );
200 $template->param(
201 frameworkselect => $authority_types->unblessed,
202 frameworkcode1 => $recordObj1->authtypecode,
203 frameworkcode2 => $recordObj2->authtypecode,
210 if (@errors) {
211 $template->param( errors => \@errors );
213 output_html_with_http_headers $input, $cookie, $template->output;