blob: 46b89d5f6f7f6e710df2d68ae6e3e41284478f58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
<?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.');
}
}
}
}
|