Bug 25898: Prohibit indirect object notation
[koha.git] / labels / label-manage.pl
blob8f53a70ae7e23fd1e62d49514df31c80f56ff63a
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 vars qw($debug);
25 use CGI qw ( -utf8 );
26 use Data::Dumper;
28 use C4::Auth qw(get_template_and_user);
29 use C4::Output qw(output_html_with_http_headers);
30 use C4::Creators;
31 use C4::Labels;
33 my $cgi = CGI->new;
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
36 template_name => "labels/label-manage.tt",
37 query => $cgi,
38 type => "intranet",
39 flagsrequired => { catalogue => 1 },
40 debug => 1,
44 my $db_rows = {};
45 my $display_columns = { layout => [ # db column => {col label is link?
46 {layout_id => {label => 'Layout ID', link_field => 0}},
47 {layout_name => {label => 'Layout', link_field => 0}},
48 {barcode_type => {label => 'Barcode Type', link_field => 0}},
49 {printing_type => {label => 'Print Type', link_field => 0}},
50 {format_string => {label => 'Fields to Print',link_field => 0}},
51 {select => {label => 'Actions', value => 'layout_id'}},
53 template => [
54 {template_id => {label => 'Template ID', link_field => 0}},
55 {template_code => {label => 'Template Name', link_field => 0}},
56 {template_desc => {label => 'Description', link_field => 0}},
57 {select => {label => 'Actions', value => 'template_id'}},
59 profile => [
60 {profile_id => {label => 'Profile ID', link_field => 0}},
61 {printer_name => {label => 'Printer Name', link_field => 0}},
62 {paper_bin => {label => 'Paper Bin', link_field => 0}},
63 {_template_code => {label => 'Template Name', link_field => 0}}, # this display column does not have a corresponding db column in the profile table, hence the underscore
64 {select => {label => 'Actions', value => 'profile_id'}},
66 batch => [
67 {batch_id => {label => 'Batch ID', link_field => 0}},
68 {description => {label => 'Description', link_field => 0}},
69 {_item_count => {label => 'Item Count', link_field => 0}},
70 {select => {label => 'Actions', value => 'batch_id'}},
71 {select1 => {label => ' ', link_field => 'batch_id'}},
75 my $label_element = $cgi->param('label_element') || 'template'; # default to template management
76 my $op = $cgi->param('op') || 'none';
77 my $element_id = $cgi->param('element_id') || undef;
78 my $error = $cgi->param('error') || 0;
80 my $branch_code = ($label_element eq 'batch' ? C4::Context->userenv->{'branch'} : '');
82 if ($op eq 'delete') {
83 if ($label_element eq 'layout') {$error = C4::Labels::Layout::delete(layout_id => $element_id);}
84 elsif ($label_element eq 'template') {$error = C4::Labels::Template::delete(template_id => $element_id);}
85 elsif ($label_element eq 'profile') {$error = C4::Labels::Profile::delete(profile_id => $element_id);}
86 elsif ($label_element eq 'batch') {$error = C4::Labels::Batch::delete(batch_id => $element_id, branch_code => $branch_code);}
87 else {} # FIXME: Some error trapping code
90 if ($label_element eq 'layout') {$db_rows = get_all_layouts( { filters => { creator => 'Labels' } });}
91 elsif ($label_element eq 'template') {$db_rows = get_all_templates( { filters => { creator => 'Labels' } });}
92 elsif ($label_element eq 'profile') {$db_rows = get_all_profiles( { filters => { creator => 'Labels' } });}
93 elsif ($label_element eq 'batch') {$db_rows = get_batch_summary( { filters => { branch_code => [$branch_code, 'NB'], creator => 'Labels' } });}
94 else {} # FIXME: Some error trapping code
96 my $table = html_table($display_columns->{$label_element}, $db_rows);
98 $template->param(error => $error) if ($error) && ($error ne 0);
99 $template->param(print => 1) if ($label_element eq 'batch');
100 $template->param(
101 op => $op,
102 element_id => $element_id,
103 table_loop => $table,
104 label_element => $label_element,
105 label_element_title => (
106 $label_element eq 'layout' ? 'Layouts' :
107 $label_element eq 'template' ? 'Templates' :
108 $label_element eq 'profile' ? 'Profiles' :
109 $label_element eq 'batch' ? 'Batches' :
110 '' )
113 output_html_with_http_headers $cgi, $cookie, $template->output;