summaryrefslogtreecommitdiffstats
path: root/apps/settings/src
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2022-03-17 18:06:38 +0000
committerChristopher Ng <chrng8@gmail.com>2022-03-18 02:55:12 +0000
commit108abd77ed0ee29bca4019f6a212ba1b2bdad5e7 (patch)
tree3c2d3f2382b83eb93cae4f974d20bbbbe2b9789b /apps/settings/src
parent1fc0b4320c8921ad59bf4d41a88bf9936e1f653d (diff)
downloadnextcloud-server-108abd77ed0ee29bca4019f6a212ba1b2bdad5e7.tar.gz
nextcloud-server-108abd77ed0ee29bca4019f6a212ba1b2bdad5e7.zip
Add profile default setting for admin
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/settings/src')
-rw-r--r--apps/settings/src/components/BasicSettings/ProfileSettings.vue101
-rw-r--r--apps/settings/src/main-admin-basic-settings.js49
-rw-r--r--apps/settings/src/service/ProfileService.js24
3 files changed, 174 insertions, 0 deletions
diff --git a/apps/settings/src/components/BasicSettings/ProfileSettings.vue b/apps/settings/src/components/BasicSettings/ProfileSettings.vue
new file mode 100644
index 00000000000..9abce3d787c
--- /dev/null
+++ b/apps/settings/src/components/BasicSettings/ProfileSettings.vue
@@ -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>
diff --git a/apps/settings/src/main-admin-basic-settings.js b/apps/settings/src/main-admin-basic-settings.js
new file mode 100644
index 00000000000..522ca392e77
--- /dev/null
+++ b/apps/settings/src/main-admin-basic-settings.js
@@ -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')
+}
diff --git a/apps/settings/src/service/ProfileService.js b/apps/settings/src/service/ProfileService.js
index ca84316c655..f84135dd9d2 100644
--- a/apps/settings/src/service/ProfileService.js
+++ b/apps/settings/src/service/ProfileService.js
@@ -45,3 +45,27 @@ export const saveProfileParameterVisibility = async (paramId, visibility) => {
return res.data
}
+
+/**
+ * Save profile default
+ *
+ * @param {boolean} isEnabled the default
+ * @return {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
+}