Files
f7_talk/lib/BackgroundJob/ExpireObjectRooms.php
T
glb_adm 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
UPSTREAM BASELINE: nextcloud/spreed v22.0.12 (без изменений)
Источник: https://github.com/nextcloud/spreed/archive/refs/tags/v22.0.12.tar.gz
С этого коммита ветка официального Nextcloud Talk отрезана (решение владельца 2026-07-06).
Все дальнейшие изменения — только наши; версии релизов: 22.0.12-f7.N.
2026-07-06 14:07:50 +00:00

78 lines
2.3 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OCA\Talk\BackgroundJob;
use OCA\Talk\Manager;
use OCA\Talk\Room;
use OCA\Talk\Service\RoomService;
use OCP\AppFramework\Services\IAppConfig;
use OCP\AppFramework\Utility\ITimeFactory;
use OCP\BackgroundJob\IJob;
use OCP\BackgroundJob\TimedJob;
use Psr\Log\LoggerInterface;
class ExpireObjectRooms extends TimedJob {
public function __construct(
ITimeFactory $timeFactory,
protected Manager $manager,
protected RoomService $roomService,
protected LoggerInterface $logger,
protected IAppConfig $appConfig,
) {
parent::__construct($timeFactory);
$this->setInterval(60 * 60);
$this->setTimeSensitivity(IJob::TIME_SENSITIVE);
}
#[\Override]
protected function run($argument): void {
$phoneRetention = $this->appConfig->getAppValueInt('retention_phone_rooms', 7);
if ($phoneRetention !== 0) {
$this->executeRetention(Room::OBJECT_TYPE_PHONE_TEMPORARY, $phoneRetention);
}
$eventRetention = $this->appConfig->getAppValueInt('retention_event_rooms', 28);
if ($eventRetention !== 0) {
$this->executeRetention(Room::OBJECT_TYPE_EVENT, $eventRetention);
}
$instantMeetingRetention = $this->appConfig->getAppValueInt('retention_instant_meetings', 1);
if ($instantMeetingRetention !== 0) {
$this->executeRetention(Room::OBJECT_TYPE_INSTANT_MEETING, $instantMeetingRetention);
}
}
protected function executeRetention(string $objectType, int $retention): void {
$now = $this->time->getTime();
$minimumLastActivity = $now - $retention * 24 * 3600;
$rooms = $this->manager->getExpiringRoomsForObjectType($objectType, $minimumLastActivity);
$numDeletedRooms = 0;
foreach ($rooms as $room) {
if ($objectType === Room::OBJECT_TYPE_EVENT) {
[, $endTime] = explode('#', $room->getObjectId());
if ($endTime >= $minimumLastActivity) {
// Event time is in the future, so don't even consider deleting
continue;
}
}
$this->roomService->deleteRoom($room);
$numDeletedRooms++;
}
$this->logger->info('Deleted {numDeletedRooms} {objectType} rooms because they did not have activity since {minimumLastActivity} days', [
'objectType' => $objectType,
'numDeletedRooms' => $numDeletedRooms,
'minimumLastActivity' => $retention,
]);
}
}