Bug 18050: (QA follow-up) Adjust conditions and make use of message text
[koha.git] / admin / patron-attr-types.pl
1 #! /usr/bin/perl
2 #
3 # Copyright 2008 LibLime
4 # Parts copyright 2010 BibLibre
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
22 use Modern::Perl;
23
24 use CGI qw ( -utf8 );
25 use List::MoreUtils qw/uniq/;
26
27 use C4::Auth;
28 use C4::Context;
29 use C4::Output;
30 use C4::Koha;
31 use C4::Members::AttributeTypes;
32
33 use Koha::AuthorisedValues;
34 use Koha::Libraries;
35 use Koha::Patron::Categories;
36
37 my $script_name = "/cgi-bin/koha/admin/patron-attr-types.pl";
38
39 our $input = new CGI;
40 my $op = $input->param('op') || '';
41
42
43 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
44     {   template_name   => "admin/patron-attr-types.tt",
45         query           => $input,
46         type            => "intranet",
47         flagsrequired => { parameters => 'manage_patron_attributes' }
48     }
49 );
50
51
52 $template->param(script_name => $script_name);
53
54 my $code = $input->param("code");
55
56 my $display_list = 0;
57 if ($op eq "edit_attribute_type") {
58     edit_attribute_type_form($template, $code);
59 } elsif ($op eq "edit_attribute_type_confirmed") {
60     $display_list = add_update_attribute_type('edit', $template, $code);
61 } elsif ($op eq "add_attribute_type") {
62     add_attribute_type_form($template);
63 } elsif ($op eq "add_attribute_type_confirmed") {
64     $display_list = add_update_attribute_type('add', $template, $code);
65 } elsif ($op eq "delete_attribute_type") {
66     $display_list = delete_attribute_type_form($template, $code);
67 } elsif ($op eq "delete_attribute_type_confirmed") {
68     delete_attribute_type($template, $code);
69     $display_list = 1;
70 } else {
71     $display_list = 1;
72 }
73
74 if ($display_list) {
75     unless (C4::Context->preference('ExtendedPatronAttributes')) {
76         $template->param(WARNING_extended_attributes_off => 1); 
77     }
78     patron_attribute_type_list($template);
79 }
80
81 output_html_with_http_headers $input, $cookie, $template->output;
82
83 exit 0;
84
85 sub add_attribute_type_form {
86     my $template = shift;
87
88     my $branches = Koha::Libraries->search( {}, { order_by => ['branchname'] } )->unblessed;
89     my @branches_loop;
90     foreach my $branch (@$branches) {
91         push @branches_loop, {
92             branchcode => $branch->{branchcode},
93             branchname => $branch->{branchname},
94         };
95     }
96
97     my $patron_categories = Koha::Patron::Categories->search_limited({}, {order_by => ['description']});
98     $template->param(
99         attribute_type_form => 1,
100         confirm_op => 'add_attribute_type_confirmed',
101         categories => $patron_categories,
102         branches_loop => \@branches_loop,
103     );
104     $template->param(classes_val_loop => GetAuthorisedValues( 'PA_CLASS'));
105 }
106
107 sub error_add_attribute_type_form {
108     my $template = shift;
109
110     $template->param(description => scalar $input->param('description'));
111
112     if ($input->param('repeatable')) {
113         $template->param(repeatable_checked => 1);
114     }
115     if ($input->param('unique_id')) {
116         $template->param(unique_id_checked => 1);
117     }
118     if ($input->param('opac_display')) {
119         $template->param(opac_display_checked => 1);
120     }
121     if ($input->param('opac_editable')) {
122         $template->param(opac_editable_checked => 1);
123     }
124     if ($input->param('staff_searchable')) {
125         $template->param(staff_searchable_checked => 1);
126     }
127     if ($input->param('display_checkout')) {
128         $template->param(display_checkout_checked => 'checked="checked"');
129     }
130
131     $template->param( category_code => scalar $input->param('category_code') );
132     $template->param( class => scalar $input->param('class') );
133
134     $template->param(
135         attribute_type_form => 1,
136         confirm_op => 'add_attribute_type_confirmed',
137         authorised_value_category => scalar $input->param('authorised_value_category'),
138     );
139 }
140
141 sub add_update_attribute_type {
142     my $op = shift;
143     my $template = shift;
144     my $code = shift;
145
146     my $description               = $input->param('description');
147     my $repeatable                = $input->param('repeatable') ? 1 : 0;
148     my $unique_id                 = $input->param('unique_id') ? 1 : 0;
149     my $opac_display              = $input->param('opac_display') ? 1 : 0;
150     my $opac_editable             = $input->param('opac_editable') ? 1 : 0;
151     my $staff_searchable          = $input->param('staff_searchable') ? 1 : 0;
152     my $authorised_value_category = $input->param('authorised_value_category');
153     my $display_checkout          = $input->param('display_checkout') ? 1 : 0;
154     my $category_code             = $input->param('category_code') || undef;
155     my $class                     = $input->param('class');
156
157     my $description = $input->param('description');
158
159     my $attr_type;
160     if ($op eq 'edit') {
161         $attr_type = C4::Members::AttributeTypes->fetch($code);
162         $attr_type->description($description);
163     } else {
164         my $existing = C4::Members::AttributeTypes->fetch($code);
165         if (defined($existing)) {
166             $template->param(duplicate_code_error => $code);
167             error_add_attribute_type_form($template);
168             return 0;
169         }
170         $attr_type = C4::Members::AttributeTypes->new($code, $description);
171         my $repeatable = $input->param('repeatable');
172         $attr_type->repeatable($repeatable);
173         my $unique_id = $input->param('unique_id');
174         $attr_type->unique_id($unique_id);
175     }
176
177     my $opac_display = $input->param('opac_display');
178     $attr_type->opac_display($opac_display);
179     my $opac_editable = $input->param('opac_editable');
180     $attr_type->opac_editable($opac_editable);
181     my $staff_searchable = $input->param('staff_searchable');
182     $attr_type->staff_searchable($staff_searchable);
183     my $authorised_value_category = $input->param('authorised_value_category');
184     $attr_type->authorised_value_category($authorised_value_category);
185     my $display_checkout = $input->param('display_checkout');
186     $attr_type->display_checkout($display_checkout);
187     $attr_type->category_code(scalar $input->param('category_code'));
188     $attr_type->class(scalar $input->param('class'));
189     my @branches = $input->multi_param('branches');
190     $attr_type->branches( \@branches );
191
192     if ($op eq 'edit') {
193         $template->param(edited_attribute_type => $attr_type->code());
194     } else {
195         $template->param(added_attribute_type => $attr_type->code());
196     }
197     $attr_type->store();
198
199     return 1;
200 }
201
202 sub delete_attribute_type_form {
203     my $template = shift;
204     my $code = shift;
205
206     my $attr_type = C4::Members::AttributeTypes->fetch($code);
207     my $display_list = 0;
208     if (defined($attr_type)) {
209         $template->param(
210             delete_attribute_type_form => 1,
211             confirm_op => "delete_attribute_type_confirmed",
212             code => $code,
213             description => $attr_type->description(),
214         );
215     } else {
216         $template->param(ERROR_delete_not_found => $code);
217         $display_list = 1;
218     }
219     return $display_list;
220 }
221
222 sub delete_attribute_type {
223     my $template = shift;
224     my $code = shift;
225
226     my $attr_type = C4::Members::AttributeTypes->fetch($code);
227     if (defined($attr_type)) {
228         if ($attr_type->num_patrons() > 0) {
229             $template->param(ERROR_delete_in_use => $code);
230             $template->param(ERROR_num_patrons => $attr_type->num_patrons());
231         } else {
232             $attr_type->delete();
233             $template->param(deleted_attribute_type => $code);
234         }
235     } else {
236         $template->param(ERROR_delete_not_found => $code);
237     }
238 }
239
240 sub edit_attribute_type_form {
241     my $template = shift;
242     my $code = shift;
243
244     my $attr_type = C4::Members::AttributeTypes->fetch($code);
245
246     $template->param(code => $code);
247     $template->param(description => $attr_type->description());
248     $template->param(class => $attr_type->class());
249
250     if ($attr_type->repeatable()) {
251         $template->param(repeatable_checked => 1);
252     }
253     $template->param(repeatable_disabled => 1);
254     if ($attr_type->unique_id()) {
255         $template->param(unique_id_checked => 1);
256     }
257     $template->param(unique_id_disabled => 1);
258     if ($attr_type->opac_display()) {
259         $template->param(opac_display_checked => 1);
260     }
261     if ($attr_type->opac_editable()) {
262         $template->param(opac_editable_checked => 1);
263     }
264     if ($attr_type->staff_searchable()) {
265         $template->param(staff_searchable_checked => 1);
266     }
267     if ($attr_type->display_checkout()) {
268         $template->param(display_checkout_checked => 'checked="checked"');
269     }
270     $template->param( authorised_value_category => $attr_type->authorised_value_category() );
271     $template->param(classes_val_loop => GetAuthorisedValues( 'PA_CLASS' ));
272
273     my $branches = Koha::Libraries->search( {}, { order_by => ['branchname'] } )->unblessed;
274     my @branches_loop;
275     my $selected_branches = $attr_type->branches;
276     foreach my $branch (@$branches) {
277         my $selected = ( grep {$_->{branchcode} eq $branch->{branchcode}} @$selected_branches ) ? 1 : 0;
278         push @branches_loop, {
279             branchcode => $branch->{branchcode},
280             branchname => $branch->{branchname},
281             selected => $selected,
282         };
283     }
284     $template->param( branches_loop => \@branches_loop );
285
286     $template->param(
287         category_code        => $attr_type->category_code,
288         category_class       => $attr_type->class,
289         category_description => $attr_type->category_description,
290     );
291
292     my $patron_categories = Koha::Patron::Categories->search({}, {order_by => ['description']});
293     $template->param(
294         attribute_type_form => 1,
295         edit_attribute_type => 1,
296         confirm_op => 'edit_attribute_type_confirmed',
297         categories => $patron_categories,
298     );
299
300 }
301
302 sub patron_attribute_type_list {
303     my $template = shift;
304
305     my @attr_types = C4::Members::AttributeTypes::GetAttributeTypes( 1, 1 );
306
307     my @classes = uniq( map { $_->{class} } @attr_types );
308     @classes = sort @classes;
309
310     my @attributes_loop;
311     for my $class (@classes) {
312         my ( @items, $branches );
313         for my $attr (@attr_types) {
314             next if $attr->{class} ne $class;
315             my $attr_type = C4::Members::AttributeTypes->fetch($attr->{code});
316             $attr->{branches} = $attr_type->branches;
317             push @items, $attr;
318         }
319         my $av = Koha::AuthorisedValues->search({ category => 'PA_CLASS', authorised_value => $class });
320         my $lib = $av->count ? $av->next->lib : $class;
321         push @attributes_loop, {
322             class => $class,
323             items => \@items,
324             lib   => $lib,
325             branches => $branches,
326         };
327     }
328     $template->param(available_attribute_types => \@attributes_loop);
329     $template->param(display_list => 1);
330 }