06812c0bfaedf877bbbd37a9d246b8fc8d8cf0f8
[koha.git] / admin / restrictions.pl
1 #!/usr/bin/perl
2
3 # Copyright 2019 PTFS Europe
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use Modern::Perl;
21
22 use CGI qw ( -utf8 );
23 use Try::Tiny qw( try catch );
24
25 use C4::Auth qw( get_template_and_user );
26 use C4::Output qw( output_html_with_http_headers );
27 use Koha::Patron::Restriction::Types;
28
29 my $input = CGI->new;
30 my $op    = $input->param('op') // 'list';
31 my $code  = uc $input->param('code');
32 my @messages = ();
33
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
35     {
36         template_name   => "admin/restrictions.tt",
37         query           => $input,
38         type            => "intranet",
39         flagsrequired   => { parameters => 'manage_patron_restrictions' },
40         debug           => 1,
41     }
42 );
43
44 if ( $op eq 'add_form') {
45     # Get all existing restrictions, so we can do client-side validation
46     $template->param(
47         existing => scalar Koha::Patron::Restriction::Types->search()
48     );
49     if ($code) {
50         $template->param(
51             restriction => scalar Koha::Patron::Restriction::Types->find($code)
52         );
53     }
54 } elsif ( $op eq 'add_validate' ) {
55
56     my $display_text = $input->param('display_text');
57     my $is_a_modif = $input->param("is_a_modif");
58
59     if ($is_a_modif) {
60         # Check whether another restriction already has this display text
61         my $dupe = Koha::Patron::Restriction::Types->find({
62             display_text => $display_text
63         });
64         if ($dupe) {
65             push @messages, {
66                 type => 'error', code => 'duplicate_display_text'
67             };
68         } else {
69             my $restriction = Koha::Patron::Restriction::Types->find($code);
70             $restriction->display_text($display_text);
71             $restriction->store;
72             push @messages, { type => 'message', code => 'update_success' };
73         }
74     } else {
75         # Check whether another restriction already has this code
76         my $dupe = Koha::Patron::Restriction::Types->find($code);
77         if ($dupe) {
78             push @messages, {
79                 type => 'error', code => 'duplicate_code'
80             };
81         } else {
82             my $restriction = Koha::Patron::Restriction::Type->new({
83                 code => $code,
84                 display_text => $display_text
85             });
86             $restriction->store;
87             push @messages, { type => 'message', code => 'add_success' };
88         }
89     }
90     $op = 'list';
91 } elsif ( $op eq 'make_default' ) {
92     my $restriction = Koha::Patron::Restriction::Types->find($code);
93     $restriction->make_default;
94     $op = 'list';
95 } elsif ( $op eq 'delete_confirm' ) {
96     $template->param(
97         restriction => scalar Koha::Patron::Restriction::Types->find($code)
98     );
99 } elsif ( $op eq 'delete_confirmed' ) {
100     try {
101         Koha::Patron::Restriction::Types->find($code)->delete;
102         push @messages, { type => 'message', code => 'delete_success' };
103     }
104     catch {
105         if ( blessed $_ ) {
106             if ( $_->isa('Koha::Exceptions::CannotDeleteDefault') ) {
107                 push @messages, { type => 'error', code => 'delete_default' };
108             }
109             elsif ( $_->isa('Koha::Exceptions::CannotDeleteSystem') ) {
110                 push @messages, { type => 'error', code => 'delete_system' };
111             }
112         }
113     };
114     $op = 'list';
115 }
116
117 $template->param(
118     messages => \@messages,
119     op       => $op
120 );
121
122 if ( $op eq 'list' ) {
123     my $restrictions = Koha::Patron::Restriction::Types->search();
124     $template->param(
125         restrictions => $restrictions,
126     )
127 }
128
129 output_html_with_http_headers $input, $cookie, $template->output;
130
131 exit 0;