summaryrefslogtreecommitdiffstats
path: root/lib/Controller/MatterbridgeController.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-08-24 13:58:15 +0200
committerJoas Schilling <coding@schilljs.com>2020-08-25 08:47:09 +0200
commita7ca2c7ca72fe289cd527c842797f2af637916ed (patch)
tree849e124d22f476f0a4a0f658e1812b2432d5cbfd /lib/Controller/MatterbridgeController.php
parent4ad2f3bc905661ad10fe6e93e01e956b29a30a35 (diff)
Rename to Matterbridge everywhere
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Controller/MatterbridgeController.php')
-rw-r--r--lib/Controller/MatterbridgeController.php103
1 files changed, 103 insertions, 0 deletions
diff --git a/lib/Controller/MatterbridgeController.php b/lib/Controller/MatterbridgeController.php
new file mode 100644
index 000000000..70489752c
--- /dev/null
+++ b/lib/Controller/MatterbridgeController.php
@@ -0,0 +1,103 @@
+<?php
+
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2020 Julien Veyssier <eneiluj@posteo.net>
+ *
+ * @author Julien Veyssier <eneiluj@posteo.net>
+ *
+ * @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\Talk\Controller;
+
+use OCA\Talk\Exceptions\ImpossibleToKillException;
+use OCA\Talk\Manager;
+use OCA\Talk\MatterbridgeManager;
+use OCP\AppFramework\Http;
+use OCP\AppFramework\Http\DataResponse;
+use OCP\IRequest;
+
+class MatterbridgeController extends AEnvironmentAwareController {
+ /** @var string|null */
+ protected $userId;
+ /** @var Manager */
+ protected $manager;
+ /** @var MatterbridgeManager */
+ protected $bridgeManager;
+
+ public function __construct(string $appName,
+ ?string $UserId,
+ IRequest $request,
+ Manager $manager,
+ MatterbridgeManager $bridgeManager) {
+ parent::__construct($appName, $request);
+ $this->userId = $UserId;
+ $this->manager = $manager;
+ $this->bridgeManager = $bridgeManager;
+ }
+
+ /**
+ * Get bridge information of one room
+ *
+ * @NoAdminRequired
+ * @RequireLoggedInModeratorParticipant
+ *
+ * @return DataResponse
+ */
+ public function getBridgeOfRoom(): DataResponse {
+ $this->bridgeManager->checkBridge($this->room);
+ $bridge = $this->bridgeManager->getBridgeOfRoom($this->room);
+ return new DataResponse($bridge);
+ }
+
+ /**
+ * Edit bridge information of one room
+ *
+ * @NoAdminRequired
+ * @RequireLoggedInModeratorParticipant
+ *
+ * @param bool $enabled
+ * @param array $parts
+ * @return DataResponse
+ */
+ public function editBridgeOfRoom(bool $enabled, array $parts = []): DataResponse {
+ try {
+ $success = $this->bridgeManager->editBridgeOfRoom($this->room, $enabled, $parts);
+ } catch (ImpossibleToKillException $e) {
+ return new DataResponse(['error' => $e->getMessage()], Http::STATUS_NOT_ACCEPTABLE);
+ }
+ return new DataResponse($success);
+ }
+
+ /**
+ * Delete bridge of one room
+ *
+ * @NoAdminRequired
+ * @RequireLoggedInModeratorParticipant
+ *
+ * @return DataResponse
+ */
+ public function deleteBridgeOfRoom(): DataResponse {
+ try {
+ $success = $this->bridgeManager->deleteBridgeOfRoom($this->room);
+ } catch (ImpossibleToKillException $e) {
+ return new DataResponse(['error' => $e->getMessage()], Http::STATUS_NOT_ACCEPTABLE);
+ }
+ return new DataResponse($success);
+ }
+}