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
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.
25 use C4
::AuthoritiesMarc
;
29 use Koha
::Authority
::Types
;
30 use Koha
::MetadataRecord
::Authority
;
33 my @authid = $input->multi_param('authid');
34 my $merge = $input->param('merge');
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
40 template_name
=> "authorities/merge.tt",
44 flagsrequired
=> { editauthorities
=> 1 },
48 #------------------------
50 #------------------------
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');
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' };
68 $template->param( errors
=> \
@errors );
69 output_html_with_http_headers
$input, $cookie, $template->output;
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 });
93 recordid1
=> $recordid1
96 #-------------------------
97 # Show records to merge
98 #-------------------------
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' };
109 my $recordObj1 = Koha
::MetadataRecord
::Authority
->get_from_authid($authid[0]);
111 push @errors, { code
=> "MISSING_RECORD", value
=> $authid[0] };
116 if (defined $mergereference && $mergereference eq 'breeding') {
117 $recordObj2 = Koha
::MetadataRecord
::Authority
->get_from_breeding($authid[1]);
119 $recordObj2 = Koha
::MetadataRecord
::Authority
->get_from_authid($authid[1]);
122 push @errors, { code
=> "MISSING_RECORD", value
=> $authid[1] };
125 unless ( $recordObj1 && $recordObj2 ) {
127 $template->param( errors
=> \
@errors );
129 output_html_with_http_headers
$input, $cookie, $template->output;
133 if ($mergereference ) {
136 if ( $recordObj1->authtypecode ne $recordObj2->authtypecode && $mergereference ne 'breeding' ) {
137 $framework = $input->param('frameworkcode');
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
166 recordid
=> $mergereference,
167 record
=> $recordObj1->record,
168 frameworkcode
=> $recordObj1->authtypecode,
169 display
=> $recordObj1->createMergeHash($tagslib),
173 recordid
=> $notreference,
174 record
=> $recordObj2->record,
175 frameworkcode
=> $recordObj2->authtypecode,
176 display
=> $recordObj2->createMergeHash($tagslib),
182 recordid1
=> $mergereference,
183 recordid2
=> $notreference,
184 records
=> \
@records,
185 framework
=> $framework,
190 # Ask the user to choose which record will be the kept
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'] } );
201 frameworkselect
=> $authority_types->unblessed,
202 frameworkcode1
=> $recordObj1->authtypecode,
203 frameworkcode2
=> $recordObj2->authtypecode,
211 $template->param( errors
=> \
@errors );
213 output_html_with_http_headers
$input, $cookie, $template->output;