summaryrefslogtreecommitdiffstats
path: root/settings/Controller
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2018-10-08 14:03:22 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2018-10-10 14:34:52 +0200
commit67c3730fbb8e12c6adda0af37d5a7ac8960415dc (patch)
tree4625e834d8812cff6c7f4a4bdae16ea9f8cda564 /settings/Controller
parent1dbd7172c31b2d611e49c7c8a60a05da134a4733 (diff)
downloadnextcloud-server-67c3730fbb8e12c6adda0af37d5a7ac8960415dc.tar.gz
nextcloud-server-67c3730fbb8e12c6adda0af37d5a7ac8960415dc.zip
Add admin interface to enforce 2FA
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'settings/Controller')
-rw-r--r--settings/Controller/TwoFactorSettingsController.php63
1 files changed, 63 insertions, 0 deletions
diff --git a/settings/Controller/TwoFactorSettingsController.php b/settings/Controller/TwoFactorSettingsController.php
new file mode 100644
index 00000000000..87dbd97b80b
--- /dev/null
+++ b/settings/Controller/TwoFactorSettingsController.php
@@ -0,0 +1,63 @@
+<?php
+
+declare(strict_types=1);
+
+/**
+ * @copyright 2018 Christoph Wurst <christoph@winzerhof-wurst.at>
+ *
+ * @author 2018 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 OC\Settings\Controller;
+
+use OC\Authentication\TwoFactorAuth\MandatoryTwoFactor;
+use OCP\AppFramework\Controller;
+use OCP\AppFramework\Http\JSONResponse;
+use OCP\AppFramework\Http\Response;
+use OCP\IRequest;
+use OCP\JSON;
+
+class TwoFactorSettingsController extends Controller {
+
+ /** @var MandatoryTwoFactor */
+ private $mandatoryTwoFactor;
+
+ public function __construct(string $appName,
+ IRequest $request,
+ MandatoryTwoFactor $mandatoryTwoFactor) {
+ parent::__construct($appName, $request);
+
+ $this->mandatoryTwoFactor = $mandatoryTwoFactor;
+ }
+
+ public function index(): Response {
+ return new JSONResponse([
+ 'enabled' => $this->mandatoryTwoFactor->isEnforced(),
+ ]);
+ }
+
+ public function update(bool $enabled): Response {
+ $this->mandatoryTwoFactor->setEnforced($enabled);
+
+ return new JSONResponse([
+ 'enabled' => $enabled
+ ]);
+ }
+
+} \ No newline at end of file