summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2019-07-16 22:18:26 +0200
committerGitHub <noreply@github.com>2019-07-16 22:18:26 +0200
commitad675cd36416c1553d467964105551cadcda2dc2 (patch)
tree59941729d3c1e61665e570bafcd94ea7a687e295
parent5fa795ea533444d88066d78339662dd0e35d7c81 (diff)
parent5c036d1606b50622b96e6f7f7484de39808a16ef (diff)
downloadnextcloud-server-ad675cd36416c1553d467964105551cadcda2dc2.tar.gz
nextcloud-server-ad675cd36416c1553d467964105551cadcda2dc2.zip
Merge pull request #16427 from nextcloud/backport/16423/stable14
[stable14] Only prevent disabling encrytion via the API
-rw-r--r--apps/provisioning_api/lib/Controller/AppConfigController.php13
-rw-r--r--apps/provisioning_api/tests/Controller/AppConfigControllerTest.php33
2 files changed, 28 insertions, 18 deletions
diff --git a/apps/provisioning_api/lib/Controller/AppConfigController.php b/apps/provisioning_api/lib/Controller/AppConfigController.php
index 6e61e10a2f2..eda46ee8e2c 100644
--- a/apps/provisioning_api/lib/Controller/AppConfigController.php
+++ b/apps/provisioning_api/lib/Controller/AppConfigController.php
@@ -106,7 +106,7 @@ class AppConfigController extends OCSController {
public function setValue(string $app, string $key, string $value): DataResponse {
try {
$this->verifyAppId($app);
- $this->verifyConfigKey($app, $key);
+ $this->verifyConfigKey($app, $key, $value);
} catch (\InvalidArgumentException $e) {
return new DataResponse(['data' => ['message' => $e->getMessage()]], Http::STATUS_FORBIDDEN);
}
@@ -124,7 +124,7 @@ class AppConfigController extends OCSController {
public function deleteKey(string $app, string $key): DataResponse {
try {
$this->verifyAppId($app);
- $this->verifyConfigKey($app, $key);
+ $this->verifyConfigKey($app, $key, '');
} catch (\InvalidArgumentException $e) {
return new DataResponse(['data' => ['message' => $e->getMessage()]], Http::STATUS_FORBIDDEN);
}
@@ -146,14 +146,19 @@ class AppConfigController extends OCSController {
/**
* @param string $app
* @param string $key
+ * @param string $value
* @throws \InvalidArgumentException
*/
- protected function verifyConfigKey(string $app, string $key) {
+ protected function verifyConfigKey(string $app, string $key, string $value) {
if (in_array($key, ['installed_version', 'enabled', 'types'])) {
throw new \InvalidArgumentException('The given key can not be set');
}
- if ($app === 'core' && ($key === 'encryption_enabled' || strpos($key, 'public_') === 0 || strpos($key, 'remote_') === 0)) {
+ if ($app === 'core' && $key === 'encryption_enabled' && $value !== 'yes') {
+ throw new \InvalidArgumentException('The given key can not be set');
+ }
+
+ if ($app === 'core' && (strpos($key, 'public_') === 0 || strpos($key, 'remote_') === 0)) {
throw new \InvalidArgumentException('The given key can not be set');
}
}
diff --git a/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php b/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php
index 2f299b58586..c9b762d1fb4 100644
--- a/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php
+++ b/apps/provisioning_api/tests/Controller/AppConfigControllerTest.php
@@ -342,9 +342,10 @@ class AppConfigControllerTest extends TestCase {
public function dataVerifyConfigKey() {
return [
- ['activity', 'abc'],
- ['dav', 'public_route'],
- ['files', 'remote_route'],
+ ['activity', 'abc', ''],
+ ['dav', 'public_route', ''],
+ ['files', 'remote_route', ''],
+ ['core', 'encryption_enabled', 'yes'],
];
}
@@ -352,22 +353,25 @@ class AppConfigControllerTest extends TestCase {
* @dataProvider dataVerifyConfigKey
* @param string $app
* @param string $key
+ * @param string $value
*/
- public function testVerifyConfigKey($app, $key) {
+ public function testVerifyConfigKey($app, $key, $value) {
$api = $this->getInstance();
- $this->invokePrivate($api, 'verifyConfigKey', [$app, $key]);
+ $this->invokePrivate($api, 'verifyConfigKey', [$app, $key, $value]);
$this->addToAssertionCount(1);
}
public function dataVerifyConfigKeyThrows() {
return [
- ['activity', 'installed_version'],
- ['calendar', 'enabled'],
- ['contacts', 'types'],
- ['core', 'public_files'],
- ['core', 'public_dav'],
- ['core', 'remote_files'],
- ['core', 'remote_dav'],
+ ['activity', 'installed_version', ''],
+ ['calendar', 'enabled', ''],
+ ['contacts', 'types', ''],
+ ['core', 'encryption_enabled', 'no'],
+ ['core', 'encryption_enabled', ''],
+ ['core', 'public_files', ''],
+ ['core', 'public_dav', ''],
+ ['core', 'remote_files', ''],
+ ['core', 'remote_dav', ''],
];
}
@@ -376,9 +380,10 @@ class AppConfigControllerTest extends TestCase {
* @expectedException \InvalidArgumentException
* @param string $app
* @param string $key
+ * @param string $value
*/
- public function testVerifyConfigKeyThrows($app, $key) {
+ public function testVerifyConfigKeyThrows($app, $key, $value) {
$api = $this->getInstance();
- $this->invokePrivate($api, 'verifyConfigKey', [$app, $key]);
+ $this->invokePrivate($api, 'verifyConfigKey', [$app, $key, $value]);
}
}