Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-11-15 16:26:56 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-12-04 10:49:38 +0300
commitad29c8a46cc0bc6e783e82cc81ea5c701c66fb98 (patch)
treee4f2c3c193747b84c4e8e6145531b204a55c3ff5 /lib/Controller/SettingsController.php
parent26c13bc035177ae100054e21ba97f61f6d8d5c50 (diff)
Persist provisioned accounts
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'lib/Controller/SettingsController.php')
-rw-r--r--lib/Controller/SettingsController.php73
1 files changed, 73 insertions, 0 deletions
diff --git a/lib/Controller/SettingsController.php b/lib/Controller/SettingsController.php
new file mode 100644
index 000000000..ccd80549d
--- /dev/null
+++ b/lib/Controller/SettingsController.php
@@ -0,0 +1,73 @@
+<?php declare(strict_types=1);
+
+/**
+ * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @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/>.
+ */
+
+namespace OCA\Mail\Controller;
+
+use OCA\Mail\AppInfo\Application;
+use OCA\Mail\Service\Provisioning\Manager as ProvisioningManager;
+use OCP\AppFramework\Controller;
+use OCP\AppFramework\Http\JSONResponse;
+use OCP\IRequest;
+
+class SettingsController extends Controller {
+
+ /** @var ProvisioningManager */
+ private $provisioningManager;
+
+ public function __construct(IRequest $request,
+ ProvisioningManager $provisioningManager) {
+ parent::__construct(Application::APP_ID, $request);
+ $this->provisioningManager = $provisioningManager;
+ }
+
+ public function provisioning(string $emailTemplate,
+ string $imapUser,
+ string $imapHost,
+ int $imapPort,
+ string $imapSslMode,
+ string $smtpUser,
+ string $smtpHost,
+ int $smtpPort,
+ string $smtpSslMode): JSONResponse {
+ $this->provisioningManager->newProvisioning(
+ $emailTemplate,
+ $imapUser,
+ $imapHost,
+ $imapPort,
+ $imapSslMode,
+ $smtpUser,
+ $smtpHost,
+ $smtpPort,
+ $smtpSslMode
+ );
+
+ return new JSONResponse(null);
+ }
+
+ public function deprovision(): JSONResponse {
+ $this->provisioningManager->deprovision();
+
+ return new JSONResponse(null);
+ }
+
+}