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.
24 use C4
::AuthoritiesMarc
;
28 use Koha
::Authority
::Types
;
29 use Koha
::MetadataRecord
::Authority
;
32 my @authid = $input->multi_param('authid');
33 my $merge = $input->param('merge');
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
39 template_name
=> "authorities/merge.tt",
43 flagsrequired
=> { editauthorities
=> 1 },
47 #------------------------
49 #------------------------
52 # Creating a new record from the html code
53 my $record = TransformHtmlToMarc
($input, 0);
54 my $recordid1 = $input->param('recordid1') // q{};
55 my $recordid2 = $input->param('recordid2') // q{};
56 my $typecode = $input->param('frameworkcode');
59 if( $recordid1 eq $recordid2 ) {
60 push @errors, { code
=> 'DESTRUCTIVE_MERGE' };
61 } elsif( !$typecode || !Koha
::Authority
::Types
->find($typecode) ) {
62 push @errors, { code
=> 'WRONG_FRAMEWORK' };
63 } elsif( scalar $record->fields == 0 ) {
64 push @errors, { code
=> 'EMPTY_MARC' };
67 $template->param( errors
=> \
@errors );
68 output_html_with_http_headers
$input, $cookie, $template->output;
72 # Rewriting the leader
73 if( my $authrec = GetAuthority
($recordid1) ) {
74 $record->leader( $authrec->leader() );
77 # Modifying the reference record
78 # This triggers a merge for the biblios attached to $recordid1
79 ModAuthority
( $recordid1, $record, $typecode );
81 # Now merge for biblios attached to $recordid2
82 my $MARCfrom = GetAuthority
( $recordid2 );
83 merge
({ mergefrom
=> $recordid2, MARCfrom
=> $MARCfrom, mergeto
=> $recordid1, MARCto
=> $record });
85 # Delete the other record. Do not merge. It is unneeded and could under
86 # special circumstances have unwanted side-effects.
87 DelAuthority
({ authid
=> $recordid2, skip_merge
=> 1 });
92 recordid1
=> $recordid1
95 #-------------------------
96 # Show records to merge
97 #-------------------------
100 my $mergereference = $input->param('mergereference');
101 $template->{'VARS'}->{'mergereference'} = $mergereference;
103 if ( scalar(@authid) != 2 ) {
104 push @errors, { code
=> "WRONG_COUNT", value
=> scalar(@authid) };
105 } elsif( $authid[0] eq $authid[1] ) {
106 push @errors, { code
=> 'DESTRUCTIVE_MERGE' };
108 my $recordObj1 = Koha
::MetadataRecord
::Authority
->get_from_authid($authid[0]);
110 push @errors, { code
=> "MISSING_RECORD", value
=> $authid[0] };
115 if (defined $mergereference && $mergereference eq 'breeding') {
116 $recordObj2 = Koha
::MetadataRecord
::Authority
->get_from_breeding($authid[1]);
118 $recordObj2 = Koha
::MetadataRecord
::Authority
->get_from_authid($authid[1]);
121 push @errors, { code
=> "MISSING_RECORD", value
=> $authid[1] };
124 unless ( $recordObj1 && $recordObj2 ) {
126 $template->param( errors
=> \
@errors );
128 output_html_with_http_headers
$input, $cookie, $template->output;
132 if ($mergereference ) {
135 if ( $recordObj1->authtypecode ne $recordObj2->authtypecode && $mergereference ne 'breeding' ) {
136 $framework = $input->param('frameworkcode');
139 $framework = $recordObj1->authtypecode;
141 if ($mergereference eq 'breeding') {
142 $mergereference = $authid[0];
145 # Getting MARC Structure
146 my $tagslib = GetTagsLabels
( 1, $framework );
147 foreach my $field ( keys %$tagslib ) {
148 if ( defined $tagslib->{$field}->{'tab'} && $tagslib->{$field}->{'tab'} eq ' ' ) {
149 $tagslib->{$field}->{'tab'} = 0;
153 #Setting $notreference
154 my $notreference = $authid[1];
155 if($mergereference == $notreference){
156 $notreference = $authid[0];
157 #Swap so $recordObj1 is always the correct merge reference
158 ($recordObj1, $recordObj2) = ($recordObj2, $recordObj1);
161 # Creating a loop for display
165 recordid
=> $mergereference,
166 record
=> $recordObj1->record,
167 frameworkcode
=> $recordObj1->authtypecode,
168 display
=> $recordObj1->createMergeHash($tagslib),
172 recordid
=> $notreference,
173 record
=> $recordObj2->record,
174 frameworkcode
=> $recordObj2->authtypecode,
175 display
=> $recordObj2->createMergeHash($tagslib),
181 recordid1
=> $mergereference,
182 recordid2
=> $notreference,
183 records
=> \
@records,
184 framework
=> $framework,
189 # Ask the user to choose which record will be the kept
191 choosereference
=> 1,
192 recordid1
=> $authid[0],
193 recordid2
=> $authid[1],
194 title1
=> $recordObj1->authorized_heading,
195 title2
=> $recordObj2->authorized_heading,
197 if ( $recordObj1->authtypecode ne $recordObj2->authtypecode ) {
198 my $authority_types = Koha
::Authority
::Types
->search( { authtypecode
=> { '!=' => '' } }, { order_by
=> ['authtypetext'] } );
200 frameworkselect
=> $authority_types->unblessed,
201 frameworkcode1
=> $recordObj1->authtypecode,
202 frameworkcode2
=> $recordObj2->authtypecode,
210 $template->param( errors
=> \
@errors );
212 output_html_with_http_headers
$input, $cookie, $template->output;