aboutsummaryrefslogtreecommitdiffstats
path: root/lib/repair/repairconfig.php
blob: e09d8e8fe7a00faa7a3da9fc3bc83be562eb6082 (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
<?php
/**
 * Copyright (c) 2014 Lukas Reschke <lukas@owncloud.com>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

namespace OC\Repair;

use OC\Hooks\BasicEmitter;
use OC\RepairStep;
use Sabre\DAV\Exception;

class RepairConfig extends BasicEmitter implements RepairStep {

	public function getName() {
		return 'Repair config';
	}

	/**
	 * Updates the configuration after running an update
	 */
	public function run() {
		$this->addSecret();
	}

	/**
	 * Adds a secret to config.php
	 */
	private function addSecret() {
		if(\OC::$server->getConfig()->getSystemValue('secret', null) === null) {
			$secret = \OC::$server->getSecureRandom()->getMediumStrengthGenerator()->generate(48);
			\OC::$server->getConfig()->setSystemValue('secret', $secret);
		}
	}
}