3 # This file is part of Koha.
5 # Copyright 2013 BibLibre
7 # Koha is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as
9 # published by the Free Software Foundation; either version 3
10 # of the License, or (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
18 # Public License along with Koha; if not, see
19 # <http://www.gnu.org/licenses>
24 use List
::MoreUtils
qw( uniq );
25 use JSON
qw( encode_json );
28 use C4
::Auth
qw( get_template_and_user );
29 use C4
::Output
qw( output_html_with_http_headers );
30 use C4
::AuthoritiesMarc
qw( BuildSummary ModAuthority );
31 use C4
::Biblio
qw( GetMarcBiblio ModBiblio );
32 use C4
::MarcModificationTemplates
qw( GetModificationTemplateActions GetModificationTemplates );
35 use Koha
::BackgroundJob
::BatchUpdateBiblio
;
36 use Koha
::BackgroundJob
::BatchUpdateAuthority
;
37 use Koha
::MetadataRecord
::Authority
;
38 use Koha
::Virtualshelves
;
41 our $dbh = C4
::Context
->dbh;
42 my $op = $input->param('op') // q
|form
|;
43 my $recordtype = $input->param('recordtype') // 'biblio';
44 my $mmtid = $input->param('marc_modification_template_id');
48 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
({
49 template_name
=> 'tools/batch_record_modification.tt',
52 flagsrequired
=> { tools
=> 'records_batchmod' },
55 my $sessionID = $input->cookie("CGISESSID");
57 my @templates = GetModificationTemplates
( $mmtid );
58 unless ( @templates ) {
62 errors
=> ['no_template_defined'],
64 output_html_with_http_headers
$input, $cookie, $template->output;
69 my @actions = GetModificationTemplateActions
( $mmtid );
74 code
=> 'no_action_defined_for_the_template',
80 if ( $op eq 'form' ) {
85 } elsif ( $op eq 'list' ) {
86 # List all records to process
87 my ( @records, @record_ids );
88 if ( my $bib_list = $input->param('bib_list') ) {
89 # Come from the basket
90 @record_ids = split /\//, $bib_list;
91 $recordtype = 'biblio';
92 } elsif ( my $uploadfile = $input->param('uploadfile') ) {
93 # A file of id is given
94 binmode $uploadfile, ':encoding(UTF-8)';
95 while ( my $content = <$uploadfile> ) {
97 $content =~ s/[\r\n]*$//;
98 push @record_ids, $content if $content;
100 } elsif ( my $shelf_number = $input->param('shelf_number') ) {
101 my $shelf = Koha
::Virtualshelves
->find($shelf_number);
102 my $contents = $shelf->get_contents;
103 while ( my $content = $contents->next ) {
104 my $biblionumber = $content->biblionumber;
105 push @record_ids, $biblionumber;
108 # The user enters manually the list of id
109 push @record_ids, split( /\s\n/, $input->param('recordnumber_list') );
112 for my $record_id ( uniq
@record_ids ) {
113 if ( $recordtype eq 'biblio' ) {
114 # Retrieve biblio information
115 my $biblio = Koha
::Biblios
->find( $record_id );
119 code
=> 'biblio_not_exists',
120 biblionumber
=> $record_id,
124 push @records, $biblio;
126 # Retrieve authority information
127 my $authority = Koha
::MetadataRecord
::Authority
->get_from_authid( $record_id );
128 unless ( $authority ) {
131 code
=> 'authority_not_exists',
132 authid
=> $record_id,
138 authid
=> $record_id,
139 summary
=> C4
::AuthoritiesMarc
::BuildSummary
( $authority->record, $record_id ),
144 records
=> \
@records,
148 } elsif ( $op eq 'modify' ) {
149 # We want to modify selected records!
150 my @record_ids = $input->multi_param('record_id');
155 record_ids
=> \
@record_ids,
159 $recordtype eq 'biblio'
160 ? Koha
::BackgroundJob
::BatchUpdateBiblio
->new->enqueue($params)
161 : Koha
::BackgroundJob
::BatchUpdateAuthority
->new->enqueue($params);
170 code
=> 'cannot_enqueue_job',
173 $template->param( view
=> 'errors' );
178 messages
=> \
@messages,
179 recordtype
=> $recordtype,
180 MarcModificationTemplatesLoop
=> \
@templates,
183 output_html_with_http_headers
$input, $cookie, $template->output;