mirror of
https://github.com/nextcloud/server.git
synced 2026-05-14 09:29:52 -04:00
Add profile default setting for admin
Signed-off-by: Christopher Ng <chrng8@gmail.com>
(cherry picked from commit 108abd77ed)
Signed-off-by: Christopher Ng <chrng8@gmail.com>
This commit is contained in:
parent
8bef2ec925
commit
d8c04464aa
36 changed files with 604 additions and 238 deletions
156
apps/settings/js/vue-settings-admin-basic-settings.js
Normal file
156
apps/settings/js/vue-settings-admin-basic-settings.js
Normal file
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
|
@ -25,7 +25,10 @@
|
|||
*/
|
||||
namespace OCA\Settings\Settings\Admin;
|
||||
|
||||
use OC\Profile\ProfileManager;
|
||||
use OC\Profile\TProfileHelper;
|
||||
use OCP\AppFramework\Http\TemplateResponse;
|
||||
use OCP\AppFramework\Services\IInitialState;
|
||||
use OCP\AppFramework\Utility\ITimeFactory;
|
||||
use OCP\IConfig;
|
||||
use OCP\IDBConnection;
|
||||
|
|
@ -33,9 +36,14 @@ use OCP\IL10N;
|
|||
use OCP\Settings\IDelegatedSettings;
|
||||
|
||||
class Server implements IDelegatedSettings {
|
||||
use TProfileHelper;
|
||||
|
||||
/** @var IDBConnection */
|
||||
private $connection;
|
||||
/** @var IInitialState */
|
||||
private $initialStateService;
|
||||
/** @var ProfileManager */
|
||||
private $profileManager;
|
||||
/** @var ITimeFactory */
|
||||
private $timeFactory;
|
||||
/** @var IConfig */
|
||||
|
|
@ -44,10 +52,14 @@ class Server implements IDelegatedSettings {
|
|||
private $l;
|
||||
|
||||
public function __construct(IDBConnection $connection,
|
||||
IInitialState $initialStateService,
|
||||
ProfileManager $profileManager,
|
||||
ITimeFactory $timeFactory,
|
||||
IConfig $config,
|
||||
IL10N $l) {
|
||||
$this->connection = $connection;
|
||||
$this->initialStateService = $initialStateService;
|
||||
$this->profileManager = $profileManager;
|
||||
$this->timeFactory = $timeFactory;
|
||||
$this->config = $config;
|
||||
$this->l = $l;
|
||||
|
|
@ -65,8 +77,12 @@ class Server implements IDelegatedSettings {
|
|||
'cronErrors' => $this->config->getAppValue('core', 'cronErrors'),
|
||||
'cli_based_cron_possible' => function_exists('posix_getpwuid'),
|
||||
'cli_based_cron_user' => function_exists('posix_getpwuid') ? posix_getpwuid(fileowner(\OC::$configDir . 'config.php'))['name'] : '',
|
||||
'profileEnabledGlobally' => $this->profileManager->isProfileEnabled(),
|
||||
];
|
||||
|
||||
$this->initialStateService->provideInitialState('profileEnabledGlobally', $this->profileManager->isProfileEnabled());
|
||||
$this->initialStateService->provideInitialState('profileEnabledByDefault', $this->isProfileEnabledByDefault($this->config));
|
||||
|
||||
return new TemplateResponse('settings', 'settings/admin/server', $parameters, '');
|
||||
}
|
||||
|
||||
|
|
|
|||
101
apps/settings/src/components/BasicSettings/ProfileSettings.vue
Normal file
101
apps/settings/src/components/BasicSettings/ProfileSettings.vue
Normal file
|
|
@ -0,0 +1,101 @@
|
|||
<!--
|
||||
- @copyright 2022 Christopher Ng <chrng8@gmail.com>
|
||||
-
|
||||
- @author Christopher Ng <chrng8@gmail.com>
|
||||
-
|
||||
- @license GNU AGPL version 3 or any later version
|
||||
-
|
||||
- This program is free software: you can redistribute it and/or modify
|
||||
- it under the terms of the GNU Affero General Public License as
|
||||
- published by the Free Software Foundation, either version 3 of the
|
||||
- License, or (at your option) any later version.
|
||||
-
|
||||
- This program 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 Affero General Public License for more details.
|
||||
-
|
||||
- You should have received a copy of the GNU Affero General Public License
|
||||
- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div id="profile-settings"
|
||||
class="section">
|
||||
<h2 class="inlineblock">
|
||||
{{ t('settings', 'Profile') }}
|
||||
</h2>
|
||||
|
||||
<p class="settings-hint">
|
||||
{{ t('settings', 'Enable or disable profile by default for new users.') }}
|
||||
</p>
|
||||
|
||||
<CheckboxRadioSwitch type="switch"
|
||||
:checked.sync="initialProfileEnabledByDefault"
|
||||
@update:checked="onProfileDefaultChange">
|
||||
{{ t('settings', 'Enable') }}
|
||||
</CheckboxRadioSwitch>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { loadState } from '@nextcloud/initial-state'
|
||||
import { showError } from '@nextcloud/dialogs'
|
||||
|
||||
import { saveProfileDefault } from '../../service/ProfileService'
|
||||
import { validateBoolean } from '../../utils/validate'
|
||||
|
||||
import CheckboxRadioSwitch from '@nextcloud/vue/dist/Components/CheckboxRadioSwitch'
|
||||
|
||||
const profileEnabledByDefault = loadState('settings', 'profileEnabledByDefault', true)
|
||||
|
||||
export default {
|
||||
name: 'ProfileSettings',
|
||||
|
||||
components: {
|
||||
CheckboxRadioSwitch,
|
||||
},
|
||||
|
||||
data() {
|
||||
return {
|
||||
initialProfileEnabledByDefault: profileEnabledByDefault,
|
||||
}
|
||||
},
|
||||
|
||||
methods: {
|
||||
async onProfileDefaultChange(isEnabled) {
|
||||
if (validateBoolean(isEnabled)) {
|
||||
await this.updateProfileDefault(isEnabled)
|
||||
}
|
||||
},
|
||||
|
||||
async updateProfileDefault(isEnabled) {
|
||||
try {
|
||||
const responseData = await saveProfileDefault(isEnabled)
|
||||
this.handleResponse({
|
||||
isEnabled,
|
||||
status: responseData.ocs?.meta?.status,
|
||||
})
|
||||
} catch (e) {
|
||||
this.handleResponse({
|
||||
errorMessage: t('settings', 'Unable to update profile default setting'),
|
||||
error: e,
|
||||
})
|
||||
}
|
||||
},
|
||||
|
||||
handleResponse({ isEnabled, status, errorMessage, error }) {
|
||||
if (status === 'ok') {
|
||||
this.initialProfileEnabledByDefault = isEnabled
|
||||
} else {
|
||||
showError(errorMessage)
|
||||
this.logger.error(errorMessage, error)
|
||||
}
|
||||
},
|
||||
},
|
||||
}
|
||||
</script>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
</style>
|
||||
49
apps/settings/src/main-admin-basic-settings.js
Normal file
49
apps/settings/src/main-admin-basic-settings.js
Normal file
|
|
@ -0,0 +1,49 @@
|
|||
/**
|
||||
* @copyright 2022 Christopher Ng <chrng8@gmail.com>
|
||||
*
|
||||
* @author Christopher Ng <chrng8@gmail.com>
|
||||
*
|
||||
* @license GNU AGPL version 3 or any later version
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU Affero General Public License as
|
||||
* published by the Free Software Foundation, either version 3 of the
|
||||
* License, or (at your option) any later version.
|
||||
*
|
||||
* This program 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 Affero General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Affero General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
import Vue from 'vue'
|
||||
import { getRequestToken } from '@nextcloud/auth'
|
||||
import { loadState } from '@nextcloud/initial-state'
|
||||
import { translate as t } from '@nextcloud/l10n'
|
||||
import '@nextcloud/dialogs/styles/toast.scss'
|
||||
|
||||
import logger from './logger'
|
||||
|
||||
import ProfileSettings from './components/BasicSettings/ProfileSettings'
|
||||
|
||||
__webpack_nonce__ = btoa(getRequestToken())
|
||||
|
||||
const profileEnabledGlobally = loadState('settings', 'profileEnabledGlobally', true)
|
||||
|
||||
Vue.mixin({
|
||||
props: {
|
||||
logger,
|
||||
},
|
||||
methods: {
|
||||
t,
|
||||
},
|
||||
})
|
||||
|
||||
if (profileEnabledGlobally) {
|
||||
const ProfileSettingsView = Vue.extend(ProfileSettings)
|
||||
new ProfileSettingsView().$mount('.vue-admin-profile-settings')
|
||||
}
|
||||
|
|
@ -45,3 +45,27 @@ export const saveProfileParameterVisibility = async(paramId, visibility) => {
|
|||
|
||||
return res.data
|
||||
}
|
||||
|
||||
/**
|
||||
* Save profile default
|
||||
*
|
||||
* @param {boolean} isEnabled the default
|
||||
* @returns {object}
|
||||
*/
|
||||
export const saveProfileDefault = async(isEnabled) => {
|
||||
// Convert to string for compatibility
|
||||
isEnabled = isEnabled ? '1' : '0'
|
||||
|
||||
const url = generateOcsUrl('/apps/provisioning_api/api/v1/config/apps/{appId}/{key}', {
|
||||
appId: 'settings',
|
||||
key: 'profile_enabled_by_default',
|
||||
})
|
||||
|
||||
await confirmPassword()
|
||||
|
||||
const res = await axios.post(url, {
|
||||
value: isEnabled,
|
||||
})
|
||||
|
||||
return res.data
|
||||
}
|
||||
|
|
|
|||
|
|
@ -24,6 +24,9 @@
|
|||
/** @var \OCP\IL10N $l */
|
||||
/** @var array $_ */
|
||||
|
||||
script('settings', [
|
||||
'vue-settings-admin-basic-settings',
|
||||
]);
|
||||
?>
|
||||
|
||||
<div class="section" id="backgroundjobs">
|
||||
|
|
@ -112,3 +115,7 @@
|
|||
</fieldset>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<?php if ($_['profileEnabledGlobally']) : ?>
|
||||
<div class="vue-admin-profile-settings"></div>
|
||||
<?php endif; ?>
|
||||
|
|
|
|||
|
|
@ -31,8 +31,10 @@ declare(strict_types=1);
|
|||
*/
|
||||
namespace OCA\Settings\Tests\Settings\Admin;
|
||||
|
||||
use OC\Profile\ProfileManager;
|
||||
use OCA\Settings\Settings\Admin\Server;
|
||||
use OCP\AppFramework\Http\TemplateResponse;
|
||||
use OCP\AppFramework\Services\IInitialState;
|
||||
use OCP\AppFramework\Utility\ITimeFactory;
|
||||
use OCP\IConfig;
|
||||
use OCP\IDBConnection;
|
||||
|
|
@ -48,6 +50,10 @@ class ServerTest extends TestCase {
|
|||
private $admin;
|
||||
/** @var IDBConnection */
|
||||
private $connection;
|
||||
/** @var IInitialState */
|
||||
private $initialStateService;
|
||||
/** @var ProfileManager */
|
||||
private $profileManager;
|
||||
/** @var ITimeFactory|MockObject */
|
||||
private $timeFactory;
|
||||
/** @var IConfig|MockObject */
|
||||
|
|
@ -58,6 +64,8 @@ class ServerTest extends TestCase {
|
|||
protected function setUp(): void {
|
||||
parent::setUp();
|
||||
$this->connection = \OC::$server->getDatabaseConnection();
|
||||
$this->initialStateService = $this->createMock(IInitialState::class);
|
||||
$this->profileManager = $this->createMock(ProfileManager::class);
|
||||
$this->timeFactory = $this->createMock(ITimeFactory::class);
|
||||
$this->config = $this->createMock(IConfig::class);
|
||||
$this->l10n = $this->createMock(IL10N::class);
|
||||
|
|
@ -66,6 +74,8 @@ class ServerTest extends TestCase {
|
|||
->onlyMethods(['cronMaxAge'])
|
||||
->setConstructorArgs([
|
||||
$this->connection,
|
||||
$this->initialStateService,
|
||||
$this->profileManager,
|
||||
$this->timeFactory,
|
||||
$this->config,
|
||||
$this->l10n,
|
||||
|
|
@ -106,6 +116,7 @@ class ServerTest extends TestCase {
|
|||
'cronMaxAge' => 1337,
|
||||
'cli_based_cron_possible' => true,
|
||||
'cli_based_cron_user' => function_exists('posix_getpwuid') ? posix_getpwuid(fileowner(\OC::$configDir . 'config.php'))['name'] : '', // to not explode here because of posix extension not being disabled - which is already checked in the line above
|
||||
'profileEnabledGlobally' => true,
|
||||
],
|
||||
''
|
||||
);
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ module.exports = {
|
|||
]
|
||||
},
|
||||
entry: {
|
||||
'settings-admin-basic-settings': path.join(__dirname, 'src', 'main-admin-basic-settings'),
|
||||
'settings-apps-users-management': path.join(__dirname, 'src', 'main-apps-users-management'),
|
||||
'settings-admin-security': path.join(__dirname, 'src', 'main-admin-security'),
|
||||
'settings-admin-delegation': path.join(__dirname, 'src', 'main-admin-delegation'),
|
||||
|
|
|
|||
|
|
@ -40,6 +40,7 @@ use libphonenumber\NumberParseException;
|
|||
use libphonenumber\PhoneNumber;
|
||||
use libphonenumber\PhoneNumberFormat;
|
||||
use libphonenumber\PhoneNumberUtil;
|
||||
use OC\Profile\TProfileHelper;
|
||||
use OCA\Settings\BackgroundJobs\VerifyUserData;
|
||||
use OCP\Accounts\IAccount;
|
||||
use OCP\Accounts\IAccountManager;
|
||||
|
|
@ -79,6 +80,8 @@ use function json_last_error;
|
|||
class AccountManager implements IAccountManager {
|
||||
use TAccountsHelper;
|
||||
|
||||
use TProfileHelper;
|
||||
|
||||
/** @var IDBConnection database connection */
|
||||
private $connection;
|
||||
|
||||
|
|
@ -722,7 +725,7 @@ class AccountManager implements IAccountManager {
|
|||
|
||||
[
|
||||
'name' => self::PROPERTY_PROFILE_ENABLED,
|
||||
'value' => '1',
|
||||
'value' => $this->isProfileEnabledByDefault($this->config) ? '1' : '0',
|
||||
],
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* @copyright 2021 Christopher Ng <chrng8@gmail.com>
|
||||
* @copyright 2022 Christopher Ng <chrng8@gmail.com>
|
||||
*
|
||||
* @author Christopher Ng <chrng8@gmail.com>
|
||||
*
|
||||
|
|
@ -26,19 +26,12 @@ declare(strict_types=1);
|
|||
|
||||
namespace OC\Profile;
|
||||
|
||||
use OCP\Accounts\IAccount;
|
||||
use OCP\Accounts\IAccountManager;
|
||||
use OCP\IConfig;
|
||||
|
||||
trait TProfileHelper {
|
||||
|
||||
/**
|
||||
* Returns whether the profile is enabled for the account
|
||||
*
|
||||
* @since 23.0.0
|
||||
*/
|
||||
protected function isProfileEnabled(IAccount $account): ?bool {
|
||||
protected function isProfileEnabledByDefault(IConfig $config): ?bool {
|
||||
return filter_var(
|
||||
$account->getProperty(IAccountManager::PROPERTY_PROFILE_ENABLED)->getValue(),
|
||||
$config->getAppValue('settings', 'profile_enabled_by_default', '1'),
|
||||
FILTER_VALIDATE_BOOLEAN,
|
||||
FILTER_NULL_ON_FAILURE,
|
||||
);
|
||||
|
|
|
|||
|
|
@ -511,6 +511,12 @@ class AccountManagerTest extends TestCase {
|
|||
public function testAddMissingDefaults() {
|
||||
$user = $this->createMock(IUser::class);
|
||||
|
||||
$this->config
|
||||
->expects($this->once())
|
||||
->method('getAppValue')
|
||||
->with('settings', 'profile_enabled_by_default', '1')
|
||||
->willReturn('1');
|
||||
|
||||
$input = [
|
||||
[
|
||||
'name' => IAccountManager::PROPERTY_DISPLAYNAME,
|
||||
|
|
|
|||
Loading…
Reference in a new issue