summaryrefslogtreecommitdiffstats
path: root/lib/Controller/MatterbridgeSettingsController.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/MatterbridgeSettingsController.php
parent4ad2f3bc905661ad10fe6e93e01e956b29a30a35 (diff)
Rename to Matterbridge everywhere
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Controller/MatterbridgeSettingsController.php')
-rw-r--r--lib/Controller/MatterbridgeSettingsController.php77
1 files changed, 77 insertions, 0 deletions
diff --git a/lib/Controller/MatterbridgeSettingsController.php b/lib/Controller/MatterbridgeSettingsController.php
new file mode 100644
index 000000000..0c0a8a77e
--- /dev/null
+++ b/lib/Controller/MatterbridgeSettingsController.php
@@ -0,0 +1,77 @@
+<?php
+
+declare(strict_types=1);
+/**
+ * @copyright Copyright (c) 2020 Joas Schilling <coding@schilljs.com>
+ *
+ * @author Joas Schilling <coding@schilljs.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/>.
+ *
+ */
+
+namespace OCA\Talk\Controller;
+
+use OCA\Talk\MatterbridgeManager;
+use OCA\Talk\Exceptions\ImpossibleToKillException;
+use OCP\AppFramework\Http;
+use OCP\AppFramework\Http\DataResponse;
+use OCP\AppFramework\OCSController;
+use OCP\IRequest;
+
+class MatterbridgeSettingsController extends OCSController {
+ /** @var MatterbridgeManager */
+ protected $bridgeManager;
+
+ public function __construct(string $appName,
+ IRequest $request,
+ MatterbridgeManager $bridgeManager) {
+ parent::__construct($appName, $request);
+ $this->bridgeManager = $bridgeManager;
+ }
+
+ /**
+ * Get Matterbridge version
+ *
+ * @return DataResponse
+ */
+ public function getMatterbridgeVersion(): DataResponse {
+ $version = $this->bridgeManager->getCurrentVersionFromBinary();
+ if ($version === null) {
+ return new DataResponse([
+ 'error' => 'binary',
+ ], Http::STATUS_BAD_REQUEST);
+ }
+
+ return new DataResponse([
+ 'version' => $version,
+ ]);
+ }
+
+ /**
+ * Stop all bridges
+ *
+ * @return DataResponse
+ */
+ public function stopAllBridges(): DataResponse {
+ try {
+ $success = $this->bridgeManager->stopAllBridges();
+ } catch (ImpossibleToKillException $e) {
+ return new DataResponse(['error' => $e->getMessage()], Http::STATUS_NOT_ACCEPTABLE);
+ }
+ return new DataResponse($success);
+ }
+}