Bug 21797: Update two-column templates with Bootstrap grid: Acquisitions part 5
[koha.git] / members / apikeys.pl
blob9d1a4f12d54d6a9d907dc9124c910bc0d71e65b0
1 #!/usr/bin/perl
3 # This file is part of Koha.
5 # Copyright 2015 BibLibre
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.
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.
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>.
20 use Modern::Perl;
22 use CGI;
24 use C4::Auth;
25 use C4::Output;
27 use Koha::ApiKeys;
28 use Koha::Patrons;
29 use Koha::Token;
31 my $cgi = new CGI;
33 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
34 { template_name => 'members/apikeys.tt',
35 query => $cgi,
36 type => 'intranet',
37 authnotrequired => 0,
38 flagsrequired => { borrowers => 'edit_borrowers' },
42 my $patron;
43 my $patron_id = $cgi->param('patron_id') // '';
44 my $api_key = $cgi->param('key') // '';
46 $patron = Koha::Patrons->find($patron_id) if $patron_id;
48 if ( not defined $patron or
49 not C4::Context->preference('RESTOAuth2ClientCredentials') ) {
51 # patron_id invalid -> exit
52 print $cgi->redirect("/cgi-bin/koha/errors/404.pl"); # escape early
53 exit;
56 my $op = $cgi->param('op') // '';
58 if ( $op eq 'generate' or
59 $op eq 'delete' or
60 $op eq 'revoke' or
61 $op eq 'activate' ) {
63 die "Wrong CSRF token"
64 unless Koha::Token->new->check_csrf({
65 session_id => scalar $cgi->cookie('CGISESSID'),
66 token => scalar $cgi->param('csrf_token'),
67 });
70 if ($op) {
71 if ( $op eq 'generate' ) {
72 my $description = $cgi->param('description') // '';
73 my $api_key = Koha::ApiKey->new(
74 { patron_id => $patron_id,
75 description => $description
78 $api_key->store;
79 print $cgi->redirect( '/cgi-bin/koha/members/apikeys.pl?patron_id=' . $patron_id );
80 exit;
83 if ( $op eq 'delete' ) {
84 my $api_key_id = $cgi->param('key');
85 my $key = Koha::ApiKeys->find({ patron_id => $patron_id, client_id => $api_key_id });
86 if ($key) {
87 $key->delete;
89 print $cgi->redirect( '/cgi-bin/koha/members/apikeys.pl?patron_id=' . $patron_id );
90 exit;
93 if ( $op eq 'revoke' ) {
94 my $api_key_id = $cgi->param('key');
95 my $key = Koha::ApiKeys->find({ patron_id => $patron_id, client_id => $api_key_id });
96 if ($key) {
97 $key->active(0);
98 $key->store;
100 print $cgi->redirect( '/cgi-bin/koha/members/apikeys.pl?patron_id=' . $patron_id );
101 exit;
104 if ( $op eq 'activate' ) {
105 my $api_key_id = $cgi->param('key');
106 my $key = Koha::ApiKeys->find({ patron_id => $patron_id, client_id => $api_key_id });
107 if ($key) {
108 $key->active(1);
109 $key->store;
111 print $cgi->redirect( '/cgi-bin/koha/members/apikeys.pl?patron_id=' . $patron_id );
112 exit;
116 my @api_keys = Koha::ApiKeys->search({ patron_id => $patron_id });
118 $template->param(
119 api_keys => \@api_keys,
120 csrf_token => Koha::Token->new->generate_csrf({ session_id => scalar $cgi->cookie('CGISESSID') }),
121 patron => $patron
124 output_html_with_http_headers $cgi, $cookie, $template->output;