Bug 23681: Move to ::Patron::Restriction::Type(s)
[koha.git] / admin / categories.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2002 Paul Poulain
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 use C4::Context;
25 use C4::Auth qw( get_template_and_user );
26 use C4::Output qw( output_html_with_http_headers );
27 use C4::Form::MessagingPreferences;
28 use Koha::Patrons;
29 use Koha::Database;
30 use Koha::Patron::Categories;
31 use Koha::Libraries;
32
33 my $input         = CGI->new;
34 my $searchfield   = $input->param('description') // q||;
35 my $categorycode  = $input->param('categorycode');
36 my $op            = $input->param('op') // 'list';
37 my @messages;
38
39 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
40     {
41         template_name   => "admin/categories.tt",
42         query           => $input,
43         type            => "intranet",
44         flagsrequired   => { parameters => 'manage_patron_categories' },
45     }
46 );
47
48 if ( $op eq 'add_form' ) {
49
50     $template->param(
51         category => scalar Koha::Patron::Categories->find($categorycode),
52     );
53
54     if ( C4::Context->preference('EnhancedMessagingPreferences') ) {
55         C4::Form::MessagingPreferences::set_form_values(
56             { categorycode => $categorycode }, $template );
57     }
58 }
59 elsif ( $op eq 'add_validate' ) {
60
61     my $categorycode = $input->param('categorycode');
62     my $description = $input->param('description');
63     my $enrolmentperiod = $input->param('enrolmentperiod');
64     my $enrolmentperioddate = $input->param('enrolmentperioddate') || undef;
65     my $password_expiry_days = $input->param('password_expiry_days') || undef;
66     my $upperagelimit = $input->param('upperagelimit');
67     my $dateofbirthrequired = $input->param('dateofbirthrequired');
68     my $enrolmentfee = $input->param('enrolmentfee');
69     my $reservefee = $input->param('reservefee');
70     my $hidelostitems = $input->param('hidelostitems');
71     my $overduenoticerequired = $input->param('overduenoticerequired');
72     my $category_type = $input->param('category_type');
73     my $BlockExpiredPatronOpacActions = $input->param('BlockExpiredPatronOpacActions');
74     my $checkPrevCheckout = $input->param('checkprevcheckout');
75     my $default_privacy = $input->param('default_privacy');
76     my $reset_password = $input->param('reset_password');
77     my $change_password = $input->param('change_password');
78     my $exclude_from_local_holds_priority = $input->param('exclude_from_local_holds_priority');
79     my $min_password_length = $input->param('min_password_length');
80     my $require_strong_password = $input->param('require_strong_password');
81     my @branches = grep { $_ ne q{} } $input->multi_param('branches');
82     my $can_be_guarantee = $input->param('can_be_guarantee');
83
84     $reset_password = undef if $reset_password eq -1;
85     $change_password = undef if $change_password eq -1;
86     $min_password_length = undef unless length($min_password_length);
87     $require_strong_password = undef if $require_strong_password eq -1;
88
89     my $is_a_modif = $input->param("is_a_modif");
90
91     if ($is_a_modif) {
92         my $category = Koha::Patron::Categories->find( $categorycode );
93         $category->categorycode($categorycode);
94         $category->description($description);
95         $category->enrolmentperiod($enrolmentperiod);
96         $category->enrolmentperioddate($enrolmentperioddate);
97         $category->password_expiry_days($password_expiry_days);
98         $category->upperagelimit($upperagelimit);
99         $category->dateofbirthrequired($dateofbirthrequired);
100         $category->enrolmentfee($enrolmentfee);
101         $category->reservefee($reservefee);
102         $category->hidelostitems($hidelostitems);
103         $category->overduenoticerequired($overduenoticerequired);
104         $category->category_type($category_type);
105         $category->can_be_guarantee($can_be_guarantee);
106         $category->BlockExpiredPatronOpacActions($BlockExpiredPatronOpacActions);
107         $category->checkprevcheckout($checkPrevCheckout);
108         $category->default_privacy($default_privacy);
109         $category->reset_password($reset_password);
110         $category->change_password($change_password);
111         $category->exclude_from_local_holds_priority($exclude_from_local_holds_priority);
112         $category->min_password_length($min_password_length);
113         $category->require_strong_password($require_strong_password);
114         eval {
115             $category->store;
116             $category->replace_library_limits( \@branches );
117         };
118         if ( $@ ) {
119             push @messages, {type => 'error', code => 'error_on_update' };
120         } else {
121             push @messages, { type => 'message', code => 'success_on_update' };
122         }
123     }
124     else {
125         my $category = Koha::Patron::Category->new({
126             categorycode => $categorycode,
127             description => $description,
128             enrolmentperiod => $enrolmentperiod,
129             enrolmentperioddate => $enrolmentperioddate,
130             password_expiry_days => $password_expiry_days,
131             upperagelimit => $upperagelimit,
132             dateofbirthrequired => $dateofbirthrequired,
133             enrolmentfee => $enrolmentfee,
134             reservefee => $reservefee,
135             hidelostitems => $hidelostitems,
136             overduenoticerequired => $overduenoticerequired,
137             category_type => $category_type,
138             can_be_guarantee => $can_be_guarantee,
139             BlockExpiredPatronOpacActions => $BlockExpiredPatronOpacActions,
140             checkprevcheckout => $checkPrevCheckout,
141             default_privacy => $default_privacy,
142             reset_password => $reset_password,
143             change_password => $change_password,
144             exclude_from_local_holds_priority => $exclude_from_local_holds_priority,
145             min_password_length => $min_password_length,
146             require_strong_password => $require_strong_password,
147         });
148         eval {
149             $category->store;
150             $category->replace_library_limits( \@branches );
151         };
152
153         if ( $@ ) {
154             push @messages, { type => 'error', code => 'error_on_insert' };
155         } else {
156             push @messages, { type => 'message', code => 'success_on_insert' };
157         }
158     }
159
160     if ( C4::Context->preference('EnhancedMessagingPreferences') ) {
161         C4::Form::MessagingPreferences::handle_form_action( $input,
162             { categorycode => scalar $input->param('categorycode') }, $template );
163     }
164
165     $searchfield = q||;
166     $op = 'list';
167 }
168 elsif ( $op eq 'delete_confirm' ) {
169
170     my $count = Koha::Patrons->search({
171         categorycode => $categorycode
172     })->count;
173
174     my $category = Koha::Patron::Categories->find($categorycode);
175
176     $template->param(
177         category => $category,
178         patrons_in_category => $count,
179     );
180
181 }
182 elsif ( $op eq 'delete_confirmed' ) {
183     my $categorycode = uc( $input->param('categorycode') );
184
185     my $category = Koha::Patron::Categories->find( $categorycode );
186     my $deleted = eval { $category->delete; };
187
188     if ( $@ or not $deleted ) {
189         push @messages, {type => 'error', code => 'error_on_delete' };
190     } else {
191         push @messages, { type => 'message', code => 'success_on_delete' };
192     }
193
194     $op = 'list';
195 }
196
197 if ( $op eq 'list' ) {
198     my $categories = Koha::Patron::Categories->search(
199         {
200             description => { -like => "$searchfield%" }
201         },
202         {
203             order_by => ['category_type', 'description', 'categorycode' ]
204         }
205     );
206
207     $template->param(
208         categories => $categories,
209     )
210 }
211
212 $template->param(
213     categorycode => $categorycode,
214     searchfield  => $searchfield,
215     messages     => \@messages,
216     op => $op,
217 );
218
219 output_html_with_http_headers $input, $cookie, $template->output;
220
221 exit 0;