mirror of
https://github.com/nextcloud/server.git
synced 2025-01-30 22:37:01 +00:00
2201bce7d3
Signed-off-by: Anna Larch <anna@nextcloud.com>
52 lines
1.3 KiB
PHP
52 lines
1.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCA\Settings\SetupChecks;
|
|
|
|
use OCP\IDBConnection;
|
|
use OCP\IL10N;
|
|
use OCP\SetupCheck\ISetupCheck;
|
|
use OCP\SetupCheck\SetupResult;
|
|
|
|
class SchedulingTableSize implements ISetupCheck {
|
|
public const MAX_SCHEDULING_ENTRIES = 50000;
|
|
|
|
public function __construct(
|
|
private IL10N $l10n,
|
|
private IDBConnection $connection,
|
|
) {
|
|
}
|
|
|
|
public function getName(): string {
|
|
return $this->l10n->t('Scheduling objects table size');
|
|
}
|
|
|
|
public function getCategory(): string {
|
|
return 'database';
|
|
}
|
|
|
|
public function run(): SetupResult {
|
|
$qb = $this->connection->getQueryBuilder();
|
|
$qb->select($qb->func()->count('id'))
|
|
->from('schedulingobjects');
|
|
$query = $qb->executeQuery();
|
|
$count = $query->fetchOne();
|
|
$query->closeCursor();
|
|
|
|
if ($count > self::MAX_SCHEDULING_ENTRIES) {
|
|
return SetupResult::warning(
|
|
$this->l10n->t('You have more than %s rows in the scheduling objects table. Please run the expensive repair jobs via occ maintenance:repair --include-expensive.', [
|
|
self::MAX_SCHEDULING_ENTRIES,
|
|
])
|
|
);
|
|
}
|
|
return SetupResult::success(
|
|
$this->l10n->t('Scheduling objects table size is within acceptable range.')
|
|
);
|
|
}
|
|
}
|