You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<?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 OCA\Talk\Exceptions\WrongPermissionsException;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 { try { $version = $this->bridgeManager->getCurrentVersionFromBinary(); if ($version === null) { return new DataResponse([ 'error' => 'binary', ], Http::STATUS_BAD_REQUEST); } } catch (WrongPermissionsException $e) { return new DataResponse([ 'error' => 'binary_permissions', ], 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); }}
|