From 5bf9e14412bad27b3a8632dc0537292b3de7fd0b Mon Sep 17 00:00:00 2001 From: Lari Taskula Date: Tue, 11 Oct 2016 15:14:39 +0300 Subject: [PATCH] Bug 17424: REST API: Preference to control access to own objects without permission This patch adds a new system preference AccessOwnObjectsInAPI which controls accessibility for OPAC-like REST API operations for patron's without otherwise required permissions. To test: 1. Apply this patch and set AccessOwnObjectsInAPI to "Enabled" 2. Test REST API operations that allow access to own objects. They should work as before. E.g. try to GET /api/v1/patrons/XXX where XXX is your borrowernumber (you need a valid CGISESSID, so login first, but make sure you don't have borrowers-permission) 3. Disable AccessOwnObjectsInAPI 4. Observe that you no longer have access. You should be given an appropriate error message for what happened. 5. Run t/db_dependent/api/v1/swagger/ownership.t and also other REST tests. --- Koha/REST/V1.pm | 18 ++- ...add_system_preference_AccessOwnObjectsInAPI.sql | 2 + installer/data/mysql/sysprefs.sql | 1 + .../en/modules/admin/preferences/web_services.pref | 9 ++ t/db_dependent/api/v1/holds.t | 2 + t/db_dependent/api/v1/patrons.t | 2 + t/db_dependent/api/v1/swagger/ownership.t | 132 +++++++++++++++++++++ 7 files changed, 164 insertions(+), 2 deletions(-) create mode 100644 installer/data/mysql/atomicupdate/Bug_17424_add_system_preference_AccessOwnObjectsInAPI.sql create mode 100644 t/db_dependent/api/v1/swagger/ownership.t diff --git a/Koha/REST/V1.pm b/Koha/REST/V1.pm index 591c584..531abbd 100644 --- a/Koha/REST/V1.pm +++ b/Koha/REST/V1.pm @@ -97,8 +97,22 @@ sub authenticate_api_request { my $authorization = $action_spec->{'x-koha-authorization'}; my $permissions = $authorization->{'permissions'}; return $next->($c) if C4::Auth::haspermission($user->userid, $permissions); - return $next->($c) if allow_owner($c, $authorization, $user); - return $next->($c) if allow_guarantor($c, $authorization, $user); + if (C4::Context->preference("AccessOwnObjectsInAPI")) { + return $next->($c) if allow_owner($c, $authorization, $user); + return $next->($c) if allow_guarantor($c, $authorization, $user); + } else { + if ($authorization->{'allow-owner'} && allow_owner($c, $authorization, + $user) || $authorization->{'allow-guarantor'} && allow_guarantor( + $c, $authorization, $user)) { + return $c->render_swagger( + { error => "Functionality for accessing own objects has been " + ."disabled. Permission(s) required to access.", + required_permissions => $permissions }, + {}, + 403 + ); + } + } return $c->render_swagger( { error => "Authorization failure. Missing required permission(s).", required_permissions => $permissions }, diff --git a/installer/data/mysql/atomicupdate/Bug_17424_add_system_preference_AccessOwnObjectsInAPI.sql b/installer/data/mysql/atomicupdate/Bug_17424_add_system_preference_AccessOwnObjectsInAPI.sql new file mode 100644 index 0000000..c72d6df --- /dev/null +++ b/installer/data/mysql/atomicupdate/Bug_17424_add_system_preference_AccessOwnObjectsInAPI.sql @@ -0,0 +1,2 @@ +INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES +('AccessOwnObjectsInAPI','1','','If OFF, REST API does not allow access to own objects even if otherwise possible.','YesNo') diff --git a/installer/data/mysql/sysprefs.sql b/installer/data/mysql/sysprefs.sql index 5a90b7c..43cf200 100644 --- a/installer/data/mysql/sysprefs.sql +++ b/installer/data/mysql/sysprefs.sql @@ -1,4 +1,5 @@ INSERT INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES +('AccessOwnObjectsInAPI','1','','If OFF, REST API does not allow access to own objects even if otherwise possible.','YesNo'), ('AcqCreateItem','ordering','ordering|receiving|cataloguing','Define when the item is created : when ordering, when receiving, or in cataloguing module','Choice'), ('AcqEnableFiles','0',NULL,'If enabled, allows librarians to upload and attach arbitrary files to invoice records.','YesNo'), ('AcqItemSetSubfieldsWhenReceiptIsCancelled','', '','Upon cancelling a receipt, update the items subfields if they were created when placing an order (e.g. o=5|a="bar foo")', 'Free'), diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref index b52fdc6..81df378 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/admin/preferences/web_services.pref @@ -61,3 +61,12 @@ Web services: no: Disable - the IdRef webservice from the opac detail page. IdRef allows to request authorities from the Sudoc database. - Please note that this feature is available only for UNIMARC. + REST API: + - + - pref: AccessOwnObjectsInAPI + choices: + yes: Enable + no: Disable + - access to API user's own objects. If enabled, basic OPAC operations via REST API are possible even without otherwise + - required permissions (e.g. get your own patron data, renew your own checkout etc.). If disabled, API can + - be used only if user has required permission for the operation. diff --git a/t/db_dependent/api/v1/holds.t b/t/db_dependent/api/v1/holds.t index 8a5f393..2024fc6 100644 --- a/t/db_dependent/api/v1/holds.t +++ b/t/db_dependent/api/v1/holds.t @@ -19,6 +19,7 @@ use Modern::Perl; use Test::More tests => 4; use Test::Mojo; +use t::lib::Mocks; use t::lib::TestBuilder; use DateTime; @@ -174,6 +175,7 @@ subtest "Test endpoints without permission" => sub { subtest "Test endpoints without permission, but accessing own object" => sub { plan tests => 15; + t::lib::Mocks::mock_preference("AccessOwnObjectsInAPI", 1); my $borrno_tmp = $post_data->{'borrowernumber'}; $post_data->{'borrowernumber'} = int $nopermission->{'borrowernumber'}; $tx = $t->ua->build_tx(POST => "/api/v1/holds" => json => $post_data); diff --git a/t/db_dependent/api/v1/patrons.t b/t/db_dependent/api/v1/patrons.t index f4b9410..40e6f79 100644 --- a/t/db_dependent/api/v1/patrons.t +++ b/t/db_dependent/api/v1/patrons.t @@ -19,6 +19,7 @@ use Modern::Perl; use Test::More tests => 20; use Test::Mojo; +use t::lib::Mocks; use t::lib::TestBuilder; use C4::Auth; @@ -87,6 +88,7 @@ $t->request_ok($tx) ->status_is(403) ->json_is('/required_permissions', {"borrowers" => "1"}); +t::lib::Mocks::mock_preference("AccessOwnObjectsInAPI", 1); # User without permissions, but is the owner of the object $tx = $t->ua->build_tx(GET => "/api/v1/patrons/" . $borrower->{borrowernumber}); $tx->req->cookies({name => 'CGISESSID', value => $session->id}); diff --git a/t/db_dependent/api/v1/swagger/ownership.t b/t/db_dependent/api/v1/swagger/ownership.t new file mode 100644 index 0000000..8fcfbf7 --- /dev/null +++ b/t/db_dependent/api/v1/swagger/ownership.t @@ -0,0 +1,132 @@ +#!/usr/bin/env perl + +# Copyright 2016 Koha-Suomi +# +# This file is part of Koha. +# +# 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, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +use Modern::Perl; + +use Test::More tests => 15; +use Test::Mojo; + +use t::lib::TestBuilder; +use t::lib::Mocks; + +use C4::Context; + +use Koha::Database; +use Koha::Patron; + +my $builder = t::lib::TestBuilder->new(); + +my $dbh = C4::Context->dbh; +$dbh->{AutoCommit} = 0; +$dbh->{RaiseError} = 1; + +$ENV{REMOTE_ADDR} = '127.0.0.1'; +my $t = Test::Mojo->new('Koha::REST::V1'); + +my $categorycode = $builder->build({ source => 'Category' })->{ categorycode }; +my $branchcode = $builder->build({ source => 'Branch' })->{ branchcode }; +my $guarantor = $builder->build({ + source => 'Borrower', + value => { + branchcode => $branchcode, + categorycode => $categorycode, + flags => 0, + } +}); +my $borrower = $builder->build({ + source => 'Borrower', + value => { + branchcode => $branchcode, + categorycode => $categorycode, + flags => 0, + guarantorid => $guarantor->{borrowernumber}, + } +}); +my $librarian = $builder->build({ + source => 'Borrower', + value => { + branchcode => $branchcode, + categorycode => $categorycode, + flags => 16, + } +}); + +my $session = C4::Auth::get_session(''); +$session->param('number', $borrower->{ borrowernumber }); +$session->param('id', $borrower->{ userid }); +$session->param('ip', '127.0.0.1'); +$session->param('lasttime', time()); +$session->flush; + +my $session2 = C4::Auth::get_session(''); +$session2->param('number', $guarantor->{ borrowernumber }); +$session2->param('id', $guarantor->{ userid }); +$session2->param('ip', '127.0.0.1'); +$session2->param('lasttime', time()); +$session2->flush; + +my $session_librarian = C4::Auth::get_session(''); +$session_librarian->param('number', $librarian->{ borrowernumber }); +$session_librarian->param('id', $librarian->{ userid }); +$session_librarian->param('ip', '127.0.0.1'); +$session_librarian->param('lasttime', time()); +$session_librarian->flush; + +t::lib::Mocks::mock_preference("AccessOwnObjectsInAPI", 1); + +# User without permissions, but is the owner of the object +my $tx = $t->ua->build_tx(GET => "/api/v1/patrons/" . $borrower->{borrowernumber}); +$tx->req->cookies({name => 'CGISESSID', value => $session->id}); +$t->request_ok($tx) + ->status_is(200); + +# User without permissions, but is the guarantor of the owner of the object +$tx = $t->ua->build_tx(GET => "/api/v1/patrons/" . $borrower->{borrowernumber}); +$tx->req->cookies({name => 'CGISESSID', value => $session2->id}); +$t->request_ok($tx) + ->status_is(200) + ->json_is('/guarantorid', $guarantor->{borrowernumber}); + +t::lib::Mocks::mock_preference("AccessOwnObjectsInAPI", 0); # disable access to own objects + +# User without permissions, accessing someone else +$tx = $t->ua->build_tx(GET => "/api/v1/patrons/" . $librarian->{borrowernumber}); +$tx->req->cookies({name => 'CGISESSID', value => $session->id}); +$t->request_ok($tx) + ->status_is(403) + ->json_like('/error', qr/^Authorization failure. Missing/); + +# Librarian with borrowers flag, should always work +$tx = $t->ua->build_tx(GET => "/api/v1/patrons/" . $borrower->{borrowernumber}); +$tx->req->cookies({name => 'CGISESSID', value => $session_librarian->id}); +$t->request_ok($tx) + ->status_is(200); + +# User without permissions, but is the owner of the object +$tx = $t->ua->build_tx(GET => "/api/v1/patrons/" . $borrower->{borrowernumber}); +$tx->req->cookies({name => 'CGISESSID', value => $session->id}); +$t->request_ok($tx) + ->status_is(403) + ->json_like('/error', qr/^Functionality for accessing own objects has been disabled/); + +# User without permissions, but is the guarantor of the owner of the object +$tx = $t->ua->build_tx(GET => "/api/v1/patrons/" . $borrower->{borrowernumber}); +$tx->req->cookies({name => 'CGISESSID', value => $session2->id}); +$t->request_ok($tx) + ->status_is(403); -- 1.9.1