aboutsummaryrefslogtreecommitdiffstats
path: root/apps/sharebymail/src
diff options
context:
space:
mode:
Diffstat (limited to 'apps/sharebymail/src')
-rw-r--r--apps/sharebymail/src/components/AdminSettings.vue76
-rw-r--r--apps/sharebymail/src/main-admin.js20
2 files changed, 96 insertions, 0 deletions
diff --git a/apps/sharebymail/src/components/AdminSettings.vue b/apps/sharebymail/src/components/AdminSettings.vue
new file mode 100644
index 00000000000..a3f813195e7
--- /dev/null
+++ b/apps/sharebymail/src/components/AdminSettings.vue
@@ -0,0 +1,76 @@
+<!--
+ - SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
+ - SPDX-License-Identifier: AGPL-3.0-or-later
+-->
+
+<template>
+ <NcSettingsSection :name="t('sharebymail', 'Share by mail')"
+ :description="t('sharebymail', 'Allows people to share a personalized link to a file or folder by putting in an email address.')">
+ <NcCheckboxRadioSwitch type="switch"
+ :checked.sync="sendPasswordMail"
+ @update:checked="update('sendpasswordmail', sendPasswordMail)">
+ {{ t('sharebymail', 'Send password by mail') }}
+ </NcCheckboxRadioSwitch>
+
+ <NcCheckboxRadioSwitch type="switch"
+ :checked.sync="replyToInitiator"
+ @update:checked="update('replyToInitiator', replyToInitiator)">
+ {{ t('sharebymail', 'Reply to initiator') }}
+ </NcCheckboxRadioSwitch>
+ </NcSettingsSection>
+</template>
+
+<script>
+import { loadState } from '@nextcloud/initial-state'
+import { showError } from '@nextcloud/dialogs'
+import { generateOcsUrl } from '@nextcloud/router'
+import { confirmPassword } from '@nextcloud/password-confirmation'
+import axios from '@nextcloud/axios'
+import NcCheckboxRadioSwitch from '@nextcloud/vue/components/NcCheckboxRadioSwitch'
+import NcSettingsSection from '@nextcloud/vue/components/NcSettingsSection'
+
+import '@nextcloud/password-confirmation/dist/style.css'
+
+export default {
+ name: 'AdminSettings',
+ components: {
+ NcCheckboxRadioSwitch,
+ NcSettingsSection,
+ },
+ data() {
+ return {
+ sendPasswordMail: loadState('sharebymail', 'sendPasswordMail'),
+ replyToInitiator: loadState('sharebymail', 'replyToInitiator'),
+ }
+ },
+ methods: {
+ async update(key, value) {
+ await confirmPassword()
+ const url = generateOcsUrl('/apps/provisioning_api/api/v1/config/apps/{appId}/{key}', {
+ appId: 'sharebymail',
+ key,
+ })
+ const stringValue = value ? 'yes' : 'no'
+ try {
+ const { data } = await axios.post(url, {
+ value: stringValue,
+ })
+ this.handleResponse({
+ status: data.ocs?.meta?.status,
+ })
+ } catch (e) {
+ this.handleResponse({
+ errorMessage: t('sharebymail', 'Unable to update share by mail config'),
+ error: e,
+ })
+ }
+ },
+ async handleResponse({ status, errorMessage, error }) {
+ if (status !== 'ok') {
+ showError(errorMessage)
+ console.error(errorMessage, error)
+ }
+ },
+ },
+}
+</script>
diff --git a/apps/sharebymail/src/main-admin.js b/apps/sharebymail/src/main-admin.js
new file mode 100644
index 00000000000..dd3f6574adf
--- /dev/null
+++ b/apps/sharebymail/src/main-admin.js
@@ -0,0 +1,20 @@
+/**
+ * SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+
+import { getCSPNonce } from '@nextcloud/auth'
+import { translate as t } from '@nextcloud/l10n'
+import Vue from 'vue'
+import AdminSettings from './components/AdminSettings.vue'
+
+__webpack_nonce__ = getCSPNonce()
+
+Vue.mixin({
+ methods: {
+ t,
+ },
+})
+
+const AdminSettingsView = Vue.extend(AdminSettings)
+new AdminSettingsView().$mount('#vue-admin-sharebymail')