01acfa3b40
Type checking / changes (push) Has been cancelled
Type checking / test (push) Has been cancelled
Type checking / typescript-summary (push) Has been cancelled
Node tests / changes (push) Has been cancelled
Node tests / test (push) Has been cancelled
Node tests / test-summary (push) Has been cancelled
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06). Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
|
|
namespace OCA\Talk\BackgroundJob;
|
|
|
|
use OCA\Talk\MatterbridgeManager;
|
|
use OCP\AppFramework\Utility\ITimeFactory;
|
|
use OCP\BackgroundJob\IJob;
|
|
use OCP\BackgroundJob\TimedJob;
|
|
use OCP\IConfig;
|
|
use Psr\Log\LoggerInterface;
|
|
|
|
/**
|
|
* Class CheckMatterbridges
|
|
*
|
|
* @package OCA\Talk\BackgroundJob
|
|
*/
|
|
class CheckMatterbridges extends TimedJob {
|
|
|
|
public function __construct(
|
|
ITimeFactory $time,
|
|
protected IConfig $serverConfig,
|
|
protected MatterbridgeManager $bridgeManager,
|
|
protected LoggerInterface $logger,
|
|
) {
|
|
parent::__construct($time);
|
|
|
|
// Every 15 minutes
|
|
$this->setInterval(60 * 15);
|
|
$this->setTimeSensitivity(IJob::TIME_SENSITIVE);
|
|
|
|
}
|
|
|
|
#[\Override]
|
|
protected function run($argument): void {
|
|
if ($this->serverConfig->getAppValue('spreed', 'enable_matterbridge', '0') === '1') {
|
|
$this->bridgeManager->checkAllBridges();
|
|
$this->bridgeManager->killZombieBridges();
|
|
$this->logger->info('Checked if Matterbridge instances are running correctly.');
|
|
} else {
|
|
if ($this->bridgeManager->stopAllBridges()) {
|
|
$this->logger->info('Stopped all Matterbridge instances as it is disabled');
|
|
}
|
|
}
|
|
}
|
|
}
|