Bugzilla – Attachment 64378 Details for
Bug 17424
System preference to control access to own objects without permission
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17424: REST API: Preference to control access to own objects without permission
Bug-17424-REST-API-Preference-to-control-access-to.patch (text/plain), 12.18 KB, created by
Marcel de Rooy
on 2017-06-16 09:24:07 UTC
(
hide
)
Description:
Bug 17424: REST API: Preference to control access to own objects without permission
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2017-06-16 09:24:07 UTC
Size:
12.18 KB
patch
obsolete
>From 8ce10eed5098ce18754682a7d1b10f23dd2ec61d Mon Sep 17 00:00:00 2001 >From: Lari Taskula <lari.taskula@jns.fi> >Date: Tue, 11 Oct 2016 15:14:39 +0300 >Subject: [PATCH] Bug 17424: REST API: Preference to control access to own > objects without permission >Content-Type: text/plain; charset=utf-8 > >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. > >Signed-off-by: Josef Moravec <josef.moravec@gmail.com> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > Koha/REST/V1.pm | 26 ++-- > ...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(+), 10 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 e307552..eb8d265 100644 >--- a/Koha/REST/V1.pm >+++ b/Koha/REST/V1.pm >@@ -110,17 +110,23 @@ sub authenticate_api_request { > my $permissions = $authorization->{'permissions'}; > > # Check if the user is authorized >- if ( C4::Auth::haspermission($user->userid, $permissions) >- or allow_owner($c, $authorization, $user) >- or allow_guarantor($c, $authorization, $user) ) { >- >- # Return the query errors if exist >- return $c->render_swagger({}, \@query_errors, 400) if @query_errors; >- >- # Everything is ok >- return $next->($c) >+ return $next->($c) if C4::Auth::haspermission($user->userid, $permissions); >+ 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 0bd8cac..887f28e 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 c7ec7f8..108f010 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; >@@ -182,6 +183,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 6b3f51f..3cd383e 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 => 21; > use Test::Mojo; >+use t::lib::Mocks; > use t::lib::TestBuilder; > > use C4::Auth; >@@ -88,6 +89,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); >-- >2.1.4
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 17424
:
56257
|
59099
| 64378 |
64379