Bug 25898: Prohibit indirect object notation
[koha.git] / patroncards / edit-template.pl
blobcce2a8f5ecec710bbb7b058e08176159ea4694c8
1 #!/usr/bin/perl
3 # Copyright 2006 Katipo Communications.
4 # Parts Copyright 2009 Foundations Bible College.
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21 use Modern::Perl;
23 use CGI qw ( -utf8 );
24 use autouse 'Data::Dumper' => qw(Dumper);
26 use C4::Auth qw(get_template_and_user);
27 use C4::Output qw(output_html_with_http_headers);
28 use C4::Creators;
29 use C4::Patroncards;
31 my $cgi = CGI->new;
32 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
34 template_name => "patroncards/edit-template.tt",
35 query => $cgi,
36 type => "intranet",
37 flagsrequired => { catalogue => 1 },
38 debug => 1,
42 my $op = $cgi->param('op') || '';
43 my $template_id = $cgi->param('template_id') || $cgi->param('element_id');
44 my $card_template = undef;
45 my $profile_list = undef;
47 my $units = get_unit_values();
49 if ($op eq 'edit') {
50 $card_template = C4::Patroncards::Template->retrieve(template_id => $template_id);
51 $profile_list = get_all_profiles({ fields => [ qw( profile_id printer_name paper_bin ) ], filters => {template_id => [ $template_id, '' ]} } );
53 elsif ($op eq 'save') {
54 my @params = ( profile_id => scalar $cgi->param('profile_id') || '',
55 template_code => scalar $cgi->param('template_code'),
56 template_desc => scalar $cgi->param('template_desc'),
57 page_width => scalar $cgi->param('page_width'),
58 page_height => scalar $cgi->param('page_height'),
59 label_width => scalar $cgi->param('card_width'),
60 label_height => scalar $cgi->param('card_height'),
61 top_margin => scalar $cgi->param('top_margin'),
62 left_margin => scalar $cgi->param('left_margin'),
63 cols => scalar $cgi->param('cols'),
64 rows => scalar $cgi->param('rows'),
65 col_gap => scalar $cgi->param('col_gap'),
66 row_gap => scalar $cgi->param('row_gap'),
67 units => scalar $cgi->param('units'),
69 if ($template_id) { # if a template_id was passed in, this is an update to an existing template
70 $card_template = C4::Patroncards::Template->retrieve(template_id => $template_id);
71 if ($cgi->param('profile_id') && ($card_template->get_attr('template_id') != $cgi->param('profile_id'))) {
72 if ($card_template->get_attr('profile_id') > 0) { # no need to get the old one if there was no profile associated
73 my $old_profile = C4::Patroncards::Profile->retrieve(profile_id => $card_template->get_attr('profile_id'));
74 $old_profile->set_attr(template_id => 0);
75 $old_profile->save();
77 my $new_profile = C4::Patroncards::Profile->retrieve(profile_id => scalar $cgi->param('profile_id'));
78 $new_profile->set_attr(template_id => $card_template->get_attr('template_id'));
79 $new_profile->save();
81 $card_template->set_attr(@params);
82 $card_template->save();
84 else { # if no template_id, this is a new template so insert it
85 $card_template = C4::Patroncards::Template->new(@params);
86 die "Error: $card_template\n" if !ref($card_template);
87 my $template_id = $card_template->save();
88 if ($cgi->param('profile_id')) {
89 my $profile = C4::Patroncards::Profile->retrieve(profile_id => scalar $cgi->param('profile_id'));
90 $profile->set_attr(template_id => $template_id) if $template_id != $profile->get_attr('template_id');
91 $profile->save();
94 print $cgi->redirect("manage.pl?card_element=template");
95 exit;
97 else { # if we get here, this is a new layout
98 $card_template = C4::Patroncards::Template->new();
100 if ($template_id) {
101 foreach my $profile (@$profile_list) {
102 if ($profile->{'profile_id'} == $card_template->get_attr('profile_id')) {
103 $profile->{'selected'} = 1;
105 else {
106 $profile->{'selected'} = 0;
111 foreach my $unit (@$units) {
112 if ($unit->{'type'} eq $card_template->get_attr('units')) {
113 $unit->{'selected'} = 1;
117 $template->param(
118 profile_list => $profile_list,
119 template_id => ($card_template->get_attr('template_id') > 0) ? $card_template->get_attr('template_id') : '',
120 template_code => $card_template->get_attr('template_code'),
121 template_desc => $card_template->get_attr('template_desc'),
122 page_width => $card_template->get_attr('page_width'),
123 page_height => $card_template->get_attr('page_height'),
124 card_width => $card_template->get_attr('label_width'),
125 card_height => $card_template->get_attr('label_height'),
126 top_margin => $card_template->get_attr('top_margin'),
127 left_margin => $card_template->get_attr('left_margin'),
128 cols => $card_template->get_attr('cols'),
129 rows => $card_template->get_attr('rows'),
130 col_gap => $card_template->get_attr('col_gap'),
131 row_gap => $card_template->get_attr('row_gap'),
132 units => $units,
135 output_html_with_http_headers $cgi, $cookie, $template->output;