summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2017-10-06 11:29:01 +0200
committerGitHub <noreply@github.com>2017-10-06 11:29:01 +0200
commit8e9505e7b124c9d5a40ef8e576d282f030aa5372 (patch)
tree0651e2b3588562b5407c62b3664207dc004a852f /lib
parent4c54ca571df20562b3a11f865a053f03ece4c3ac (diff)
parent6292f665d7d10f23cedc71befb2acb2ef467870a (diff)
downloadnextcloud-server-8e9505e7b124c9d5a40ef8e576d282f030aa5372.tar.gz
nextcloud-server-8e9505e7b124c9d5a40ef8e576d282f030aa5372.zip
Merge pull request #6759 from nextcloud/allow-multiple-settings-and-sections-per-app
Allow multiple settings and sections per app
Diffstat (limited to 'lib')
-rw-r--r--lib/private/App/InfoParser.php27
-rw-r--r--lib/private/Settings/Manager.php48
2 files changed, 59 insertions, 16 deletions
diff --git a/lib/private/App/InfoParser.php b/lib/private/App/InfoParser.php
index 0531682d67a..40eaaf21bca 100644
--- a/lib/private/App/InfoParser.php
+++ b/lib/private/App/InfoParser.php
@@ -122,6 +122,21 @@ class InfoParser {
if (!array_key_exists('providers', $array['activity'])) {
$array['activity']['providers'] = [];
}
+ if (!array_key_exists('settings', $array)) {
+ $array['settings'] = [];
+ }
+ if (!array_key_exists('admin', $array['settings'])) {
+ $array['settings']['admin'] = [];
+ }
+ if (!array_key_exists('admin-section', $array['settings'])) {
+ $array['settings']['admin-section'] = [];
+ }
+ if (!array_key_exists('personal', $array['settings'])) {
+ $array['settings']['personal'] = [];
+ }
+ if (!array_key_exists('personal-section', $array['settings'])) {
+ $array['settings']['personal-section'] = [];
+ }
if (array_key_exists('types', $array)) {
if (is_array($array['types'])) {
@@ -171,6 +186,18 @@ class InfoParser {
) {
$array['collaboration']['collaborators']['searchPlugins'] = $array['collaboration']['collaborators']['searchPlugins']['searchPlugin'];
}
+ if (isset($array['settings']['admin']) && !is_array($array['settings']['admin'])) {
+ $array['settings']['admin'] = [$array['settings']['admin']];
+ }
+ if (isset($array['settings']['admin-section']) && !is_array($array['settings']['admin-section'])) {
+ $array['settings']['admin-section'] = [$array['settings']['admin-section']];
+ }
+ if (isset($array['settings']['personal']) && !is_array($array['settings']['personal'])) {
+ $array['settings']['personal'] = [$array['settings']['personal']];
+ }
+ if (isset($array['settings']['personal-section']) && !is_array($array['settings']['personal-section'])) {
+ $array['settings']['personal-section'] = [$array['settings']['personal-section']];
+ }
if(!is_null($this->cache)) {
$this->cache->set($fileCacheKey, json_encode($array));
diff --git a/lib/private/Settings/Manager.php b/lib/private/Settings/Manager.php
index 3c5ff5670da..8de72ce314e 100644
--- a/lib/private/Settings/Manager.php
+++ b/lib/private/Settings/Manager.php
@@ -127,18 +127,26 @@ class Manager implements IManager {
* @inheritdoc
*/
public function setupSettings(array $settings) {
- if (isset($settings[IManager::KEY_ADMIN_SECTION])) {
- $this->setupSectionEntry($settings[IManager::KEY_ADMIN_SECTION], 'admin');
+ if (!empty($settings[IManager::KEY_ADMIN_SECTION])) {
+ foreach ($settings[IManager::KEY_ADMIN_SECTION] as $className) {
+ $this->setupSectionEntry($className, 'admin');
+ }
}
- if (isset($settings[IManager::KEY_ADMIN_SETTINGS])) {
- $this->setupSettingsEntry($settings[IManager::KEY_ADMIN_SETTINGS], 'admin');
+ if (!empty($settings[IManager::KEY_ADMIN_SETTINGS])) {
+ foreach ($settings[IManager::KEY_ADMIN_SETTINGS] as $className) {
+ $this->setupSettingsEntry($className, 'admin');
+ }
}
- if (isset($settings[IManager::KEY_PERSONAL_SECTION])) {
- $this->setupSectionEntry($settings[IManager::KEY_PERSONAL_SECTION], 'personal');
+ if (!empty($settings[IManager::KEY_PERSONAL_SECTION])) {
+ foreach ($settings[IManager::KEY_PERSONAL_SECTION] as $className) {
+ $this->setupSectionEntry($className, 'personal');
+ }
}
- if (isset($settings[IManager::KEY_PERSONAL_SETTINGS])) {
- $this->setupSettingsEntry($settings[IManager::KEY_PERSONAL_SETTINGS], 'personal');
+ if (!empty($settings[IManager::KEY_PERSONAL_SETTINGS])) {
+ foreach ($settings[IManager::KEY_PERSONAL_SETTINGS] as $className) {
+ $this->setupSettingsEntry($className, 'personal');
+ }
}
}
@@ -153,18 +161,26 @@ class Manager implements IManager {
public function onAppDisabled($appId) {
$appInfo = \OC_App::getAppInfo($appId); // hello static legacy
- if (isset($appInfo['settings'][IManager::KEY_ADMIN_SECTION])) {
- $this->mapper->remove(Mapper::TABLE_ADMIN_SECTIONS, trim($appInfo['settings'][IManager::KEY_ADMIN_SECTION], '\\'));
+ if (!empty($appInfo['settings'][IManager::KEY_ADMIN_SECTION])) {
+ foreach ($appInfo['settings'][IManager::KEY_ADMIN_SECTION] as $className) {
+ $this->mapper->remove(Mapper::TABLE_ADMIN_SECTIONS, trim($className, '\\'));
+ }
}
- if (isset($appInfo['settings'][IManager::KEY_ADMIN_SETTINGS])) {
- $this->mapper->remove(Mapper::TABLE_ADMIN_SETTINGS, trim($appInfo['settings'][IManager::KEY_ADMIN_SETTINGS], '\\'));
+ if (!empty($appInfo['settings'][IManager::KEY_ADMIN_SETTINGS])) {
+ foreach ($appInfo['settings'][IManager::KEY_ADMIN_SETTINGS] as $className) {
+ $this->mapper->remove(Mapper::TABLE_ADMIN_SETTINGS, trim($className, '\\'));
+ }
}
- if (isset($appInfo['settings'][IManager::KEY_PERSONAL_SECTION])) {
- $this->mapper->remove(Mapper::TABLE_PERSONAL_SECTIONS, trim($appInfo['settings'][IManager::KEY_PERSONAL_SECTION], '\\'));
+ if (!empty($appInfo['settings'][IManager::KEY_PERSONAL_SECTION])) {
+ foreach ($appInfo['settings'][IManager::KEY_PERSONAL_SECTION] as $className) {
+ $this->mapper->remove(Mapper::TABLE_PERSONAL_SECTIONS, trim($className, '\\'));
+ }
}
- if (isset($appInfo['settings'][IManager::KEY_PERSONAL_SETTINGS])) {
- $this->mapper->remove(Mapper::TABLE_PERSONAL_SETTINGS, trim($appInfo['settings'][IManager::KEY_PERSONAL_SETTINGS], '\\'));
+ if (!empty($appInfo['settings'][IManager::KEY_PERSONAL_SETTINGS])) {
+ foreach ($appInfo['settings'][IManager::KEY_PERSONAL_SETTINGS] as $className) {
+ $this->mapper->remove(Mapper::TABLE_PERSONAL_SETTINGS, trim($className, '\\'));
+ }
}
}