0
0
mirror of https://github.com/nextcloud/server.git synced 2024-12-29 16:38:28 +00:00
nextcloud_server/lib/private/Repair/NC25/AddMissingSecretJob.php
Daniel Kesselberg af6de04e9e
style: update codestyle for coding-standard 1.2.3
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2024-08-25 19:34:58 +02:00

50 lines
1.4 KiB
PHP

<?php
declare(strict_types=1);
/**
* SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
namespace OC\Repair\NC25;
use OCP\HintException;
use OCP\IConfig;
use OCP\Migration\IOutput;
use OCP\Migration\IRepairStep;
use OCP\Security\ISecureRandom;
class AddMissingSecretJob implements IRepairStep {
private IConfig $config;
private ISecureRandom $random;
public function __construct(IConfig $config, ISecureRandom $random) {
$this->config = $config;
$this->random = $random;
}
public function getName(): string {
return 'Add possibly missing system config';
}
public function run(IOutput $output): void {
$passwordSalt = $this->config->getSystemValueString('passwordsalt', '');
if ($passwordSalt === '') {
try {
$this->config->setSystemValue('passwordsalt', $this->random->generate(30));
} catch (HintException $e) {
$output->warning('passwordsalt is missing from your config.php and your config.php is read only. Please fix it manually.');
}
}
$secret = $this->config->getSystemValueString('secret', '');
if ($secret === '') {
try {
$this->config->setSystemValue('secret', $this->random->generate(48));
} catch (HintException $e) {
$output->warning('secret is missing from your config.php and your config.php is read only. Please fix it manually.');
}
}
}
}