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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 use C4
::AuthoritiesMarc
;
28 use Koha
::Authority
::MergeRequests
;
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",
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. No need to merge.
86 DelAuthority
({ authid
=> $recordid2, skip_merge
=> 1 });
91 recordid1
=> $recordid1
94 #-------------------------
95 # Show records to merge
96 #-------------------------
99 my $mergereference = $input->param('mergereference');
100 $template->{'VARS'}->{'mergereference'} = $mergereference;
102 if ( scalar(@authid) != 2 ) {
103 push @errors, { code
=> "WRONG_COUNT", value
=> scalar(@authid) };
104 } elsif( $authid[0] eq $authid[1] ) {
105 push @errors, { code
=> 'DESTRUCTIVE_MERGE' };
107 my $recordObj1 = Koha
::MetadataRecord
::Authority
->get_from_authid($authid[0]);
109 push @errors, { code
=> "MISSING_RECORD", value
=> $authid[0] };
114 if (defined $mergereference && $mergereference eq 'breeding') {
115 $recordObj2 = Koha
::MetadataRecord
::Authority
->get_from_breeding($authid[1]);
117 $recordObj2 = Koha
::MetadataRecord
::Authority
->get_from_authid($authid[1]);
120 push @errors, { code
=> "MISSING_RECORD", value
=> $authid[1] };
123 unless ( $recordObj1 && $recordObj2 ) {
125 $template->param( errors
=> \
@errors );
127 output_html_with_http_headers
$input, $cookie, $template->output;
131 if ($mergereference ) {
134 if ( $recordObj1->authtypecode ne $recordObj2->authtypecode && $mergereference ne 'breeding' ) {
135 $framework = $input->param('frameworkcode');
138 $framework = $recordObj1->authtypecode;
140 if ($mergereference eq 'breeding') {
141 $mergereference = $authid[0];
144 # Getting MARC Structure
145 my $tagslib = GetTagsLabels
( 1, $framework );
146 foreach my $field ( keys %$tagslib ) {
147 if ( defined $tagslib->{$field}->{'tab'} && $tagslib->{$field}->{'tab'} eq ' ' ) {
148 $tagslib->{$field}->{'tab'} = 0;
152 #Setting $notreference
153 my $notreference = $authid[1];
154 if($mergereference == $notreference){
155 $notreference = $authid[0];
156 #Swap so $recordObj1 is always the correct merge reference
157 ($recordObj1, $recordObj2) = ($recordObj2, $recordObj1);
160 # Creating a loop for display
164 recordid
=> $mergereference,
165 record
=> $recordObj1->record,
166 frameworkcode
=> $recordObj1->authtypecode,
167 display
=> $recordObj1->createMergeHash($tagslib),
171 recordid
=> $notreference,
172 record
=> $recordObj2->record,
173 frameworkcode
=> $recordObj2->authtypecode,
174 display
=> $recordObj2->createMergeHash($tagslib),
180 recordid1
=> $mergereference,
181 recordid2
=> $notreference,
182 records
=> \
@records,
183 framework
=> $framework,
188 # Ask the user to choose which record will be the kept
190 choosereference
=> 1,
191 recordid1
=> $authid[0],
192 recordid2
=> $authid[1],
193 title1
=> $recordObj1->authorized_heading,
194 title2
=> $recordObj2->authorized_heading,
196 if ( $recordObj1->authtypecode ne $recordObj2->authtypecode ) {
197 my $authority_types = Koha
::Authority
::Types
->search( { authtypecode
=> { '!=' => '' } }, { order_by
=> ['authtypetext'] } );
199 frameworkselect
=> $authority_types->unblessed,
200 frameworkcode1
=> $recordObj1->authtypecode,
201 frameworkcode2
=> $recordObj2->authtypecode,
209 $template->param( errors
=> \
@errors );
211 output_html_with_http_headers
$input, $cookie, $template->output;