DBRev 24.06.00.000: Start of a new release cycle
[koha.git] / labels / label-edit-template.pl
1 #!/usr/bin/perl
2 #
3 # Copyright 2006 Katipo Communications.
4 # Parts Copyright 2009 Foundations Bible College.
5 #
6 # This file is part of Koha.
7 #
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.
12 #
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.
17 #
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>.
20
21 use Modern::Perl;
22
23 use CGI qw ( -utf8 );
24
25 use C4::Auth qw( get_template_and_user );
26 use C4::Output qw( output_html_with_http_headers );
27 use C4::Creators qw( get_all_profiles get_unit_values );
28 use C4::Labels;
29
30 my $cgi = CGI->new;
31 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
32     {
33         template_name   => "labels/label-edit-template.tt",
34         query           => $cgi,
35         type            => "intranet",
36         flagsrequired   => { catalogue => 1 },
37     }
38 );
39
40 my $op = $cgi->param('op');
41 my $template_id = $cgi->param('template_id') || $cgi->param('element_id');
42 my $label_template = undef;
43 my $profile_list = undef;
44
45 my $units = get_unit_values();
46
47 if ($op eq 'edit_form') {
48     $label_template = C4::Labels::Template->retrieve(template_id => $template_id);
49     $profile_list = get_all_profiles({ fields => [ qw( profile_id printer_name paper_bin ) ], filters => { template_id => [ $template_id, '' ], creator => 'Labels'} } );
50     push @$profile_list, {paper_bin => 'N/A', profile_id => 0, printer_name => 'No Profile'};
51     foreach my $profile (@$profile_list) {
52         if ($profile->{'profile_id'} == $label_template->get_attr('profile_id')) {
53             $profile->{'selected'} = 1;
54         }
55         else {
56             $profile->{'selected'} = 0;
57         }
58     }
59 }
60 elsif ($op eq 'cud-save') {
61     my @params = (      profile_id      => scalar $cgi->param('profile_id'),
62                         template_code   => scalar $cgi->param('template_code') || 'DEFAULT_TEMPLATE',
63                         template_desc   => scalar $cgi->param('template_desc') || 'Default description',
64                         page_width      => scalar $cgi->param('page_width') || 0,
65                         page_height     => scalar $cgi->param('page_height') || 0,
66                         label_width     => scalar $cgi->param('label_width') || 0,
67                         label_height    => scalar $cgi->param('label_height') || 0,
68                         top_text_margin => scalar $cgi->param('top_text_margin') || 0,
69                         left_text_margin=> scalar $cgi->param('left_text_margin') || 0,
70                         top_margin      => scalar $cgi->param('top_margin') || 0,
71                         left_margin     => scalar $cgi->param('left_margin') || 0,
72                         cols            => scalar $cgi->param('cols') || 0,
73                         rows            => scalar $cgi->param('rows') || 0,
74                         col_gap         => scalar $cgi->param('col_gap') || 0,
75                         row_gap         => scalar $cgi->param('row_gap') || 0,
76                         units           => scalar $cgi->param('units') || 'POINT',
77                         );
78     if ($template_id) {   # if a template_id was passed in, this is an update to an existing template
79         $label_template = C4::Labels::Template->retrieve(template_id => $template_id);
80         if ($cgi->param('profile_id') && ($label_template->get_attr('template_id') != $cgi->param('profile_id'))) {
81             # Release the old profile if one is currently associated
82             if ($label_template->get_attr('profile_id') > 0) {
83                 my $old_profile = C4::Labels::Profile->retrieve(profile_id => $label_template->get_attr('profile_id'));
84                 $old_profile->set_attr(template_id => 0);
85                 $old_profile->save();
86             }
87             my $new_profile = C4::Labels::Profile->retrieve(profile_id => scalar $cgi->param('profile_id'));
88             $new_profile->set_attr(template_id => $label_template->get_attr('template_id'));
89             $new_profile->save();
90         }
91         elsif ($cgi->param('profile_id') == 0) { # Disassociate any printer profile from the template
92             if ($label_template->get_attr('profile_id') > 0) {
93                 my $old_profile = C4::Labels::Profile->retrieve(profile_id => $label_template->get_attr('profile_id'));
94                 $old_profile->set_attr(template_id => 0);
95                 $old_profile->save();
96             }
97         }
98
99         $label_template->set_attr(@params);
100         $label_template->save();
101     }
102     else {      # if no template_id, this is a new template so insert it
103         $label_template = C4::Labels::Template->new(@params);
104         my $template_id = $label_template->save();
105         if ($cgi->param('profile_id')) {
106             my $profile = C4::Labels::Profile->retrieve(profile_id => scalar $cgi->param('profile_id'));
107             $profile->set_attr(template_id => $template_id) if $template_id != $profile->get_attr('template_id');
108             $profile->save();
109         }
110     }
111     print $cgi->redirect("label-manage.pl?label_element=template");
112     exit;
113 }
114 else {  # if we get here, this is a new layout
115     $label_template = C4::Labels::Template->new();
116     $profile_list = get_all_profiles({ fields => [ qw( profile_id printer_name paper_bin ) ], filters => { template_id => [''], creator => 'Labels' } });
117     push @$profile_list, {paper_bin => 'N/A', profile_id => 0, printer_name => 'No Profile'};
118     foreach my $profile (@$profile_list) {
119         if ($profile->{'profile_id'} == 0) {
120             $profile->{'selected'} = 1;
121         }
122         else {
123             $profile->{'selected'} = 0;
124         }
125     }
126 }
127
128 foreach my $unit (@$units) {
129     if ($unit->{'type'} eq $label_template->get_attr('units')) {
130         $unit->{'selected'} = 1;
131     }
132 }
133
134 $template->param(
135     profile_list         => $profile_list,
136     template_id          => ($label_template->get_attr('template_id') > 0) ? $label_template->get_attr('template_id') : '',
137     template_code        => $label_template->get_attr('template_code'),
138     template_desc        => $label_template->get_attr('template_desc'),
139     page_width           => $label_template->get_attr('page_width'),
140     page_height          => $label_template->get_attr('page_height'),
141     label_width          => $label_template->get_attr('label_width'),
142     label_height         => $label_template->get_attr('label_height'),
143     top_text_margin      => $label_template->get_attr('top_text_margin'),
144     left_text_margin     => $label_template->get_attr('left_text_margin'),
145     top_margin           => $label_template->get_attr('top_margin'),
146     left_margin          => $label_template->get_attr('left_margin'),
147     cols                 => $label_template->get_attr('cols'),
148     rows                 => $label_template->get_attr('rows'),
149     col_gap              => $label_template->get_attr('col_gap'),
150     row_gap              => $label_template->get_attr('row_gap'),
151     units                => $units,
152 );
153
154 output_html_with_http_headers $cgi, $cookie, $template->output;