Bug 5404: Move the test to a new IsMarcStructureInternal sub
[koha.git] / tools / automatic_item_modification_by_age.pl
1 #!/usr/bin/perl
2
3 # This file is part of Koha.
4 #
5 # Copyright 2013 BibLibre
6 #
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.
11 #
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.
16 #
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>.
19
20 =head1 NAME
21
22 automatic_item_modification_by_age.pl: Update new status for items.
23
24 =cut
25
26 =head1 DESCRIPTION
27
28 This script allows a user to update the new status for items.
29
30 =cut
31
32 use Modern::Perl;
33
34 use CGI;
35 use JSON qw( to_json from_json );
36
37 use C4::Auth;
38 use C4::Context;
39 use C4::Items;
40 use C4::Output;
41 use C4::Koha;
42
43 my $cgi = new CGI;
44
45 # open template
46 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
47     {
48         template_name   => "tools/automatic_item_modification_by_age.tt",
49         query           => $cgi,
50         type            => "intranet",
51         authnotrequired => 0,
52         flagsrequired   => { tools => 'items_batchmod' },
53     }
54 );
55
56 my $op = $cgi->param('op') // 'show';
57
58 my $syspref_name = q|automatic_item_modification_by_age_configuration|;
59 if ( $op eq 'update' ) {
60     my @rules;
61     my @unique_ids = $cgi->param('unique_id');
62     for my $unique_id ( @unique_ids ) {
63         my @substitution_fields = $cgi->param("substitution_field_$unique_id");
64         my @substitution_values = $cgi->param("substitution_value_$unique_id");
65         my @condition_fields = $cgi->param("condition_field_$unique_id");
66         my @condition_values = $cgi->param("condition_value_$unique_id");
67         my $rule = {
68             substitutions => [],
69             conditions => [],
70         };
71         for my $value ( @substitution_values ) {
72             my $field = shift @substitution_fields;
73             last unless $field;
74             push @{ $rule->{substitutions} }, { field => $field, value => $value };
75         }
76         push @{ $rule->{substitutions} }, {}
77             unless @{ $rule->{substitutions} };
78         for my $value ( @condition_values ) {
79             my $field = shift @condition_fields;
80             last unless $field;
81             push @{ $rule->{conditions} }, { field => $field, value => $value };
82         }
83         push @{ $rule->{conditions} }, {}
84             unless @{ $rule->{conditions} };
85         $rule->{age} = $cgi->param("age_$unique_id");
86         push @rules, $rule;
87     }
88     my $syspref_content = to_json( \@rules );
89     C4::Context->set_preference($syspref_name, $syspref_content);
90
91     $op = 'show';
92 }
93
94 my @messages;
95 my $syspref_content = C4::Context->preference($syspref_name);
96 my $rules;
97 $rules = eval { JSON::from_json( $syspref_content ) }
98     if $syspref_content;
99 if ( $@ ) {
100     push @messages, {
101         type => 'error',
102         code => 'unable_to_load_configuration'
103     };
104     $template->param( messages => \@messages );
105     output_html_with_http_headers $cgi, $cookie, $template->output;
106     exit;
107 }
108
109 my @item_fields = map { "items.$_" } C4::Items::columns;
110 my @biblioitem_fields = map { "biblioitems.$_" } C4::Items::biblioitems_columns;
111 $template->param(
112     op => $op,
113     messages => \@messages,
114     condition_fields => [ @item_fields, @biblioitem_fields ],
115     substitution_fields => \@item_fields,
116     rules => $rules,
117 );
118
119 output_html_with_http_headers $cgi, $cookie, $template->output;