1 package C4
::MarcModificationTemplates
;
3 # This file is part of Koha.
5 # Copyright 2010 Kyle M Hall <kyle.m.hall@gmail.com>
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>.
27 use vars
qw(@ISA @EXPORT);
29 use constant DEBUG => 0;
34 &GetModificationTemplates
35 &AddModificationTemplate
36 &DelModificationTemplate
38 &GetModificationTemplateAction
39 &GetModificationTemplateActions
41 &AddModificationTemplateAction
42 &ModModificationTemplateAction
43 &DelModificationTemplateAction
44 &MoveModificationTemplateAction
46 &ModifyRecordsWithTemplate
47 &ModifyRecordWithTemplate
54 C4::MarcModificationTemplates - Module to manage MARC Modification Templates
58 MARC Modification Templates are a tool for marc batch imports,
59 so that librarians can set up templates for various vendors'
60 files telling Koha what fields to insert data into.
66 =head2 GetModificationTemplates
68 my @templates = GetModificationTemplates( $template_id );
70 Passing optional $template_id marks it as the selected template.
74 sub GetModificationTemplates
{
75 my ( $template_id ) = @_;
76 warn("C4::MarcModificationTemplates::GetModificationTemplates( $template_id )") if DEBUG
;
78 my $dbh = C4
::Context
->dbh;
79 my $sth = $dbh->prepare("SELECT * FROM marc_modification_templates ORDER BY name");
83 while ( my $template = $sth->fetchrow_hashref() ) {
84 $template->{'selected'} = 1
85 if $template_id && $template->{'template_id'} eq $template_id;
86 push( @templates, $template );
93 AddModificationTemplate
95 $template_id = AddModificationTemplate( $template_name[, $template_id ] );
97 If $template_id is supplied, the actions from that template will be copied
98 into the newly created template.
101 sub AddModificationTemplate
{
102 my ( $template_name, $template_id_copy ) = @_;
104 my $dbh = C4
::Context
->dbh;
105 my $sth = $dbh->prepare("INSERT INTO marc_modification_templates ( name ) VALUES ( ? )");
106 $sth->execute( $template_name );
108 $sth = $dbh->prepare("SELECT * FROM marc_modification_templates WHERE name = ?");
109 $sth->execute( $template_name );
110 my $row = $sth->fetchrow_hashref();
111 my $template_id = $row->{'template_id'};
113 if ( $template_id_copy ) {
114 my @actions = GetModificationTemplateActions
( $template_id_copy );
115 foreach my $action ( @actions ) {
116 AddModificationTemplateAction
(
119 $action->{'field_number'},
120 $action->{'from_field'},
121 $action->{'from_subfield'},
122 $action->{'field_value'},
123 $action->{'to_field'},
124 $action->{'to_subfield'},
125 $action->{'to_regex_search'},
126 $action->{'to_regex_replace'},
127 $action->{'to_regex_modifiers'},
128 $action->{'conditional'},
129 $action->{'conditional_field'},
130 $action->{'conditional_subfield'},
131 $action->{'conditional_comparison'},
132 $action->{'conditional_value'},
133 $action->{'conditional_regex'},
134 $action->{'description'},
144 DelModificationTemplate
146 DelModificationTemplate( $template_id );
149 sub DelModificationTemplate
{
150 my ( $template_id ) = @_;
152 my $dbh = C4
::Context
->dbh;
153 my $sth = $dbh->prepare("DELETE FROM marc_modification_templates WHERE template_id = ?");
154 $sth->execute( $template_id );
158 GetModificationTemplateAction
160 my $action = GetModificationTemplateAction( $mmta_id );
163 sub GetModificationTemplateAction
{
164 my ( $mmta_id ) = @_;
166 my $dbh = C4
::Context
->dbh;
167 my $sth = $dbh->prepare("SELECT * FROM marc_modification_template_actions WHERE mmta_id = ?");
168 $sth->execute( $mmta_id );
169 my $action = $sth->fetchrow_hashref();
175 GetModificationTemplateActions
177 my @actions = GetModificationTemplateActions( $template_id );
180 sub GetModificationTemplateActions
{
181 my ( $template_id ) = @_;
183 warn( "C4::MarcModificationTemplates::GetModificationTemplateActions( $template_id )" ) if DEBUG
;
185 my $dbh = C4
::Context
->dbh;
186 my $sth = $dbh->prepare("SELECT * FROM marc_modification_template_actions WHERE template_id = ? ORDER BY ordering");
187 $sth->execute( $template_id );
190 while ( my $action = $sth->fetchrow_hashref() ) {
191 push( @actions, $action );
194 warn( Data
::Dumper
::Dumper
( @actions ) ) if DEBUG
> 4;
200 AddModificationTemplateAction
202 AddModificationTemplateAction(
203 $template_id, $action, $field_number,
204 $from_field, $from_subfield, $field_value,
205 $to_field, $to_subfield, $to_regex_search, $to_regex_replace, $to_regex_modifiers
206 $conditional, $conditional_field, $conditional_subfield,
207 $conditional_comparison, $conditional_value,
208 $conditional_regex, $description
211 Adds a new action to the given modification template.
215 sub AddModificationTemplateAction
{
230 $conditional_subfield,
231 $conditional_comparison,
237 warn( "C4::MarcModificationTemplates::AddModificationTemplateAction( $template_id, $action,
238 $field_number, $from_field, $from_subfield, $field_value, $to_field, $to_subfield,
239 $to_regex_search, $to_regex_replace, $to_regex_modifiers, $conditional, $conditional_field, $conditional_subfield, $conditional_comparison,
240 $conditional_value, $conditional_regex, $description )" ) if DEBUG
;
242 $conditional_regex ||= '0';
244 my $dbh = C4
::Context
->dbh;
245 my $sth = $dbh->prepare( 'SELECT MAX(ordering) + 1 AS next_ordering FROM marc_modification_template_actions WHERE template_id = ?' );
246 $sth->execute( $template_id );
247 my $row = $sth->fetchrow_hashref;
248 my $ordering = $row->{'next_ordering'} || 1;
251 INSERT INTO marc_modification_template_actions (
267 conditional_subfield,
268 conditional_comparison,
273 VALUES ( NULL, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )";
275 $sth = $dbh->prepare( $query );
292 $conditional_subfield,
293 $conditional_comparison,
301 ModModificationTemplateAction
303 ModModificationTemplateAction(
304 $mmta_id, $action, $field_number, $from_field,
305 $from_subfield, $field_value, $to_field,
306 $to_subfield, $to_regex_search, $to_regex_replace, $to_regex_modifiers, $conditional,
307 $conditional_field, $conditional_subfield,
308 $conditional_comparison, $conditional_value,
309 $conditional_regex, $description
312 Modifies an existing action.
316 sub ModModificationTemplateAction
{
331 $conditional_subfield,
332 $conditional_comparison,
338 my $dbh = C4
::Context
->dbh;
341 UPDATE marc_modification_template_actions SET
350 to_regex_replace = ?,
351 to_regex_modifiers = ?,
353 conditional_field = ?,
354 conditional_subfield = ?,
355 conditional_comparison = ?,
356 conditional_value = ?,
357 conditional_regex = ?,
361 my $sth = $dbh->prepare( $query );
376 $conditional_subfield,
377 $conditional_comparison,
387 DelModificationTemplateAction
389 DelModificationTemplateAction( $mmta_id );
391 Deletes the given template action.
394 sub DelModificationTemplateAction
{
395 my ( $mmta_id ) = @_;
397 my $action = GetModificationTemplateAction
( $mmta_id );
399 my $dbh = C4
::Context
->dbh;
400 my $sth = $dbh->prepare("DELETE FROM marc_modification_template_actions WHERE mmta_id = ?");
401 $sth->execute( $mmta_id );
403 $sth = $dbh->prepare("UPDATE marc_modification_template_actions SET ordering = ordering - 1 WHERE template_id = ? AND ordering > ?");
404 $sth->execute( $action->{'template_id'}, $action->{'ordering'} );
408 MoveModificationTemplateAction
410 MoveModificationTemplateAction( $mmta_id, $where );
412 Changes the order for the given action.
413 Options for $where are 'up', 'down', 'top' and 'bottom'
415 sub MoveModificationTemplateAction
{
416 my ( $mmta_id, $where ) = @_;
418 my $action = GetModificationTemplateAction
( $mmta_id );
420 return if ( $action->{'ordering'} eq '1' && ( $where eq 'up' || $where eq 'top' ) );
421 return if ( $action->{'ordering'} eq GetModificationTemplateActions
( $action->{'template_id'} ) && ( $where eq 'down' || $where eq 'bottom' ) );
423 my $dbh = C4
::Context
->dbh;
426 if ( $where eq 'up' || $where eq 'down' ) {
428 ## For up and down, we just swap the ordering number with the one above or below it.
430 ## Change the ordering for the other action
431 $query = "UPDATE marc_modification_template_actions SET ordering = ? WHERE template_id = ? AND ordering = ?";
433 my $ordering = $action->{'ordering'};
434 $ordering-- if ( $where eq 'up' );
435 $ordering++ if ( $where eq 'down' );
437 $sth = $dbh->prepare( $query );
438 $sth->execute( $action->{'ordering'}, $action->{'template_id'}, $ordering );
440 ## Change the ordering for this action
441 $query = "UPDATE marc_modification_template_actions SET ordering = ? WHERE mmta_id = ?";
442 $sth = $dbh->prepare( $query );
443 $sth->execute( $ordering, $action->{'mmta_id'} );
445 } elsif ( $where eq 'top' ) {
447 $sth = $dbh->prepare('UPDATE marc_modification_template_actions SET ordering = ordering + 1 WHERE template_id = ? AND ordering < ?');
448 $sth->execute( $action->{'template_id'}, $action->{'ordering'} );
450 $sth = $dbh->prepare('UPDATE marc_modification_template_actions SET ordering = 1 WHERE mmta_id = ?');
451 $sth->execute( $mmta_id );
453 } elsif ( $where eq 'bottom' ) {
455 my $ordering = GetModificationTemplateActions
( $action->{'template_id'} );
457 $sth = $dbh->prepare('UPDATE marc_modification_template_actions SET ordering = ordering - 1 WHERE template_id = ? AND ordering > ?');
458 $sth->execute( $action->{'template_id'}, $action->{'ordering'} );
460 $sth = $dbh->prepare('UPDATE marc_modification_template_actions SET ordering = ? WHERE mmta_id = ?');
461 $sth->execute( $ordering, $mmta_id );
468 ModifyRecordsWithTemplate
470 ModifyRecordsWithTemplate( $template_id, $batch );
472 Accepts a template id and a MARC::Batch object.
475 sub ModifyRecordsWithTemplate
{
476 my ( $template_id, $batch ) = @_;
477 warn( "C4::MarcModificationTemplates::ModifyRecordsWithTemplate( $template_id, $batch )" ) if DEBUG
;
479 while ( my $record = $batch->next() ) {
480 ModifyRecordWithTemplate
( $template_id, $record );
485 ModifyRecordWithTemplate
487 ModifyRecordWithTemplate( $template_id, $record )
489 Accepts a MARC::Record object ( $record ) and modifies
490 it based on the actions for the given $template_id
493 sub ModifyRecordWithTemplate
{
494 my ( $template_id, $record ) = @_;
495 warn( "C4::MarcModificationTemplates::ModifyRecordWithTemplate( $template_id, $record )" ) if DEBUG
;
496 warn( "Unmodified Record:\n" . $record->as_formatted() ) if DEBUG
>= 10;
498 my $current_date = DateTime
->now()->ymd();
500 $branchcode = C4
::Context
->userenv->{branch
} if C4
::Context
->userenv;
502 my @actions = GetModificationTemplateActions
( $template_id );
504 foreach my $a ( @actions ) {
505 my $action = $a->{'action'};
506 my $field_number = $a->{'field_number'} // 1;
507 my $from_field = $a->{'from_field'};
508 my $from_subfield = $a->{'from_subfield'};
509 my $field_value = $a->{'field_value'};
510 my $to_field = $a->{'to_field'};
511 my $to_subfield = $a->{'to_subfield'};
512 my $to_regex_search = $a->{'to_regex_search'};
513 my $to_regex_replace = $a->{'to_regex_replace'};
514 my $to_regex_modifiers = $a->{'to_regex_modifiers'};
515 my $conditional = $a->{'conditional'};
516 my $conditional_field = $a->{'conditional_field'};
517 my $conditional_subfield = $a->{'conditional_subfield'};
518 my $conditional_comparison = $a->{'conditional_comparison'};
519 my $conditional_value = $a->{'conditional_value'};
520 my $conditional_regex = $a->{'conditional_regex'};
522 if ( $field_value ) {
523 $field_value =~ s/__CURRENTDATE__/$current_date/g;
524 $field_value =~ s/__BRANCHCODE__/$branchcode/g;
528 my $field_numbers = [];
529 if ( $conditional ) {
530 if ( $conditional_comparison eq 'exists' ) {
531 $field_numbers = field_exists
({
533 field
=> $conditional_field,
534 subfield
=> $conditional_subfield,
536 $do = $conditional eq 'if'
538 : not @
$field_numbers;
540 elsif ( $conditional_comparison eq 'not_exists' ) {
541 $field_numbers = field_exists
({
543 field
=> $conditional_field,
544 subfield
=> $conditional_subfield
546 $do = $conditional eq 'if'
547 ?
not @
$field_numbers
550 elsif ( $conditional_comparison eq 'equals' ) {
551 $field_numbers = field_equals
({
553 value
=> $conditional_value,
554 field
=> $conditional_field,
555 subfield
=> $conditional_subfield,
556 is_regex
=> $conditional_regex,
558 $do = $conditional eq 'if'
560 : not @
$field_numbers;
562 elsif ( $conditional_comparison eq 'not_equals' ) {
563 $field_numbers = field_equals
({
565 value
=> $conditional_value,
566 field
=> $conditional_field,
567 subfield
=> $conditional_subfield,
568 is_regex
=> $conditional_regex,
570 $do = $conditional eq 'if'
571 ?
not @
$field_numbers
578 # field_number == 0 if all field need to be updated
579 # or 1 if only the first field need to be updated
581 # A condition has been given
582 if ( @
$field_numbers > 0 ) {
583 if ( $field_number == 1 ) {
584 # We want only the first matching
585 $field_numbers = [ $field_numbers->[0] ];
588 # There was no condition
590 if ( $field_number == 1 ) {
591 # We want to process the first field
592 $field_numbers = [ 1 ];
593 } elsif ( $to_field and $from_field ne $to_field ) {
594 # If the from and to fields are not the same, we only process the first field.
595 $field_numbers = [ 1 ];
599 if ( $action eq 'copy_field' ) {
602 from_field
=> $from_field,
603 from_subfield
=> $from_subfield,
604 to_field
=> $to_field,
605 to_subfield
=> $to_subfield,
607 search
=> $to_regex_search,
608 replace
=> $to_regex_replace,
609 modifiers
=> $to_regex_modifiers
611 field_numbers
=> $field_numbers,
614 elsif ( $action eq 'copy_and_replace_field' ) {
615 copy_and_replace_field
({
617 from_field
=> $from_field,
618 from_subfield
=> $from_subfield,
619 to_field
=> $to_field,
620 to_subfield
=> $to_subfield,
622 search
=> $to_regex_search,
623 replace
=> $to_regex_replace,
624 modifiers
=> $to_regex_modifiers
626 field_numbers
=> $field_numbers,
629 elsif ( $action eq 'update_field' ) {
632 field
=> $from_field,
633 subfield
=> $from_subfield,
634 values => [ $field_value ],
635 field_numbers
=> $field_numbers,
638 elsif ( $action eq 'move_field' ) {
641 from_field
=> $from_field,
642 from_subfield
=> $from_subfield,
643 to_field
=> $to_field,
644 to_subfield
=> $to_subfield,
646 search
=> $to_regex_search,
647 replace
=> $to_regex_replace,
648 modifiers
=> $to_regex_modifiers
650 field_numbers
=> $field_numbers,
653 elsif ( $action eq 'delete_field' ) {
656 field
=> $from_field,
657 subfield
=> $from_subfield,
658 field_numbers
=> $field_numbers,
663 warn( $record->as_formatted() ) if DEBUG
>= 10;