Koha/opac/opac-apikeys.pl
Tomas Cohen Arazi 9007b25d09 Bug 20568: API key management for OPAC users
This patch makes the OPAC interface for API keys management work
with the new lib. Verify all actions work for a logged user.

Users without login should be redirected to an error page.

The AllowPatronsManageAPIKeysInOPAC syspref is added to control if the
OPAC feature is enabled or not.

To test:
- Verify the syspref works
- Verify users can manage their API keys

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Signed-off-by: Julian Maurice <julian.maurice@biblibre.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2018-05-09 12:55:58 -03:00

106 lines
2.8 KiB
Perl
Executable file

#!/usr/bin/env perl
# This file is part of Koha.
#
# Copyright 2015 BibLibre
#
# Koha is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Koha is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Koha; if not, see <http://www.gnu.org/licenses>.
use Modern::Perl;
use CGI;
use C4::Auth;
use C4::Output;
use Koha::ApiKeys;
use Koha::Patrons;
my $cgi = new CGI;
my ($template, $loggedinuser, $cookie) = get_template_and_user({
template_name => 'opac-apikeys.tt',
query => $cgi,
type => 'opac',
authnotrequired => 0
});
my $patron_id = $loggedinuser;
my $patron = Koha::Patrons->find( $patron_id );
if ( not defined $patron
or C4::Context->preference('AllowPatronsManageAPIKeysInOPAC') )
{
# patron_id invalid -> exit
print $cgi->redirect("/cgi-bin/koha/errors/404.pl"); # escape early
exit;
}
my $op = $cgi->param('op');
if ($op) {
if ($op eq 'generate') {
my $description = $cgi->param('description') // '';
my $apikey = Koha::ApiKey->new({
patron_id => $patron_id,
description => $description
});
$apikey->store;
print $cgi->redirect('/cgi-bin/koha/opac-apikeys.pl');
exit;
}
if ($op eq 'delete') {
my $key = $cgi->param('key');
my $api_key = Koha::ApiKeys->find({ patron_id => $patron_id, value => $key});
if ($api_key) {
$api_key->delete;
}
print $cgi->redirect('/cgi-bin/koha/opac-apikeys.pl');
exit;
}
if ($op eq 'revoke') {
my $key = $cgi->param('key');
my $api_key = Koha::ApiKeys->find({ patron_id => $patron_id, value => $key });
if ($api_key) {
$api_key->active(0);
$api_key->store;
}
print $cgi->redirect('/cgi-bin/koha/opac-apikeys.pl');
exit;
}
if ($op eq 'activate') {
my $key = $cgi->param('key');
my $api_key = Koha::ApiKeys->find({ patron_id => $patron_id, value => $key });
if ($api_key) {
$api_key->active(1);
$api_key->store;
}
print $cgi->redirect('/cgi-bin/koha/opac-apikeys.pl');
exit;
}
}
my @api_keys = Koha::ApiKeys->search({ patron_id => $patron_id });
$template->param(
api_keys => \@api_keys,
apikeysview => 1,
patron => $patron
);
output_html_with_http_headers $cgi, $cookie, $template->output;