Bug 20582: Fix a cache issue in Koha::App::{Opac,Intranet}
[koha.git] / admin / patron-attr-types.pl
blobcc6dcdfe766ff90a29c1f586db7c4126bdf86d1d
1 #! /usr/bin/perl
3 # Copyright 2008 LibLime
4 # Parts copyright 2010 BibLibre
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>.
22 use Modern::Perl;
24 use CGI qw ( -utf8 );
25 use List::MoreUtils qw/uniq/;
27 use C4::Auth;
28 use C4::Context;
29 use C4::Output;
30 use C4::Koha;
31 use Koha::Patron::Attribute::Types;
33 use Koha::AuthorisedValues;
34 use Koha::Libraries;
35 use Koha::Patron::Categories;
37 my $script_name = "/cgi-bin/koha/admin/patron-attr-types.pl";
39 our $input = new CGI;
40 my $op = $input->param('op') || '';
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' }
52 $template->param(script_name => $script_name);
54 my $code = $input->param("code");
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;
74 if ($display_list) {
75 unless (C4::Context->preference('ExtendedPatronAttributes')) {
76 $template->param(WARNING_extended_attributes_off => 1);
78 patron_attribute_type_list($template);
81 output_html_with_http_headers $input, $cookie, $template->output;
83 exit 0;
85 sub add_attribute_type_form {
86 my $template = shift;
88 my $patron_categories = Koha::Patron::Categories->search_limited({}, {order_by => ['description']});
89 $template->param(
90 attribute_type_form => 1,
91 confirm_op => 'add_attribute_type_confirmed',
92 categories => $patron_categories,
96 sub error_add_attribute_type_form {
97 my $template = shift;
99 $template->param(description => scalar $input->param('description'));
100 $template->param( category_code => scalar $input->param('category_code') );
101 $template->param( class => scalar $input->param('class') );
103 $template->param(
104 attribute_type_form => 1,
105 confirm_op => 'add_attribute_type_confirmed',
106 authorised_value_category => scalar $input->param('authorised_value_category'),
110 sub add_update_attribute_type {
111 my $op = shift;
112 my $template = shift;
113 my $code = shift;
115 my $description = $input->param('description');
116 my $repeatable = $input->param('repeatable') ? 1 : 0;
117 my $unique_id = $input->param('unique_id') ? 1 : 0;
118 my $opac_display = $input->param('opac_display') ? 1 : 0;
119 my $opac_editable = $input->param('opac_editable') ? 1 : 0;
120 my $staff_searchable = $input->param('staff_searchable') ? 1 : 0;
121 my $keep_for_pseudonymization = $input->param('keep_for_pseudonymization') ? 1 : 0;
122 my $mandatory = $input->param('mandatory') ? 1 : 0;
123 my $authorised_value_category = $input->param('authorised_value_category');
124 my $display_checkout = $input->param('display_checkout') ? 1 : 0;
125 my $category_code = $input->param('category_code') || undef;
126 my $class = $input->param('class');
128 my $attr_type = Koha::Patron::Attribute::Types->find($code);
129 if ( $op eq 'edit' ) {
130 $attr_type->description($description);
132 else {
133 if ($attr_type) { # Already exists
134 $template->param( duplicate_code_error => $code );
136 # FIXME Regression here
137 # Form will not be refilled with entered values on error
138 error_add_attribute_type_form($template);
139 return 0;
141 $attr_type = Koha::Patron::Attribute::Type->new(
143 code => $code,
144 description => $description,
145 repeatable => $repeatable,
146 unique_id => $unique_id,
150 $attr_type->set(
152 opac_display => $opac_display,
153 opac_editable => $opac_editable,
154 staff_searchable => $staff_searchable,
155 keep_for_pseudonymization => $keep_for_pseudonymization,
156 mandatory => $mandatory,
157 authorised_value_category => $authorised_value_category,
158 display_checkout => $display_checkout,
159 category_code => $category_code,
160 class => $class,
162 )->store;
164 my @branches = grep { ! /^\s*$/ } $input->multi_param('branches');
165 $attr_type->library_limits( \@branches );
167 if ( $op eq 'edit' ) {
168 $template->param( edited_attribute_type => $attr_type->code() );
170 else {
171 $template->param( added_attribute_type => $attr_type->code() );
174 return 1;
177 sub delete_attribute_type_form {
178 my $template = shift;
179 my $code = shift;
181 my $attr_type = Koha::Patron::Attribute::Types->find($code);
182 my $display_list = 0;
183 if (defined($attr_type)) {
184 $template->param(
185 delete_attribute_type_form => 1,
186 confirm_op => "delete_attribute_type_confirmed",
187 code => $code,
188 description => $attr_type->description(),
190 } else {
191 $template->param(ERROR_delete_not_found => $code);
192 $display_list = 1;
194 return $display_list;
197 sub delete_attribute_type {
198 my $template = shift;
199 my $code = shift;
201 my $attr_type = Koha::Patron::Attribute::Types->find($code);
202 if (defined($attr_type)) {
203 # TODO Check must be done for previous step as well
204 if ( my $num_patrons = Koha::Patrons->filter_by_attribute_type($code)->count ) {
205 $template->param(ERROR_delete_in_use => $code);
206 $template->param(ERROR_num_patrons => $num_patrons );
207 } else {
208 $attr_type->delete();
209 $template->param(deleted_attribute_type => $code);
211 } else {
212 # FIXME Really needed?
213 $template->param(ERROR_delete_not_found => $code);
217 sub edit_attribute_type_form {
218 my $template = shift;
219 my $code = shift;
221 my $attr_type = Koha::Patron::Attribute::Types->find($code);
222 $template->param(attribute_type => $attr_type);
224 my $patron_categories = Koha::Patron::Categories->search({}, {order_by => ['description']});
225 $template->param(
226 attribute_type_form => 1,
227 edit_attribute_type => 1,
228 confirm_op => 'edit_attribute_type_confirmed',
229 categories => $patron_categories,
234 sub patron_attribute_type_list {
235 my $template = shift;
237 my @attr_types = Koha::Patron::Attribute::Types->search->as_list;
239 my @classes = uniq( map { $_->class } @attr_types );
240 @classes = sort @classes;
242 my @attributes_loop;
243 # FIXME This is not efficient and should be improved
244 for my $class (@classes) {
245 my @items;
246 for my $attr (@attr_types) {
247 next if $attr->class ne $class;
248 push @items, $attr;
250 my $av = Koha::AuthorisedValues->search({ category => 'PA_CLASS', authorised_value => $class });
251 my $lib = $av->count ? $av->next->lib : $class;
252 push @attributes_loop, {
253 class => $class,
254 items => \@items,
255 lib => $lib,
258 $template->param(available_attribute_types => \@attributes_loop);
259 $template->param(display_list => 1);