1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @copyright Copyright (c) 2018 Michael Weimann <[email protected]> |
4
|
|
|
* |
5
|
|
|
* @author Michael Weimann <[email protected]> |
6
|
|
|
* |
7
|
|
|
* @license GNU AGPL version 3 or any later version |
8
|
|
|
* |
9
|
|
|
* This program is free software: you can redistribute it and/or modify |
10
|
|
|
* it under the terms of the GNU Affero General Public License as |
11
|
|
|
* published by the Free Software Foundation, either version 3 of the |
12
|
|
|
* License, or (at your option) any later version. |
13
|
|
|
* |
14
|
|
|
* This program is distributed in the hope that it will be useful, |
15
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
16
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
17
|
|
|
* GNU Affero General Public License for more details. |
18
|
|
|
* |
19
|
|
|
* You should have received a copy of the GNU Affero General Public License |
20
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
21
|
|
|
*/ |
22
|
|
|
|
23
|
|
|
namespace OC\Settings\Controller; |
24
|
|
|
|
25
|
|
|
use OC\Settings\Theming\ServerInfo; |
26
|
|
|
use OCP\AppFramework\Controller; |
27
|
|
|
use OCP\IConfig; |
28
|
|
|
use OCP\IRequest; |
29
|
|
|
|
30
|
|
|
/** |
31
|
|
|
* This controller handles server info settings requests. |
32
|
|
|
*/ |
33
|
|
|
class ServerInfoSettingsController extends Controller { |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* @var IConfig |
37
|
|
|
*/ |
38
|
|
|
private $config; |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* ServerInfoSettingsController constructor. |
42
|
|
|
* |
43
|
|
|
* @param IConfig $config |
44
|
|
|
*/ |
45
|
|
|
public function __construct($appName, IRequest $request, IConfig $config) { |
46
|
|
|
parent::__construct($appName, $request); |
47
|
|
|
$this->config = $config; |
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
public function storeServerInfo( |
51
|
|
|
string $location, |
52
|
|
|
string $provider, |
53
|
|
|
string $providerWebsite, |
54
|
|
|
string $providerPrivacyLink, |
55
|
|
|
string $adminContact |
56
|
|
|
): void { |
57
|
|
|
$configs = [ |
58
|
|
|
ServerInfo::SETTING_LOCATION => $location, |
59
|
|
|
ServerInfo::SETTING_PROVIDER => $provider, |
60
|
|
|
ServerInfo::SETTING_PROVIDER_WEBSITE => $providerWebsite, |
61
|
|
|
ServerInfo::SETTING_PROVIDER_PRIVACY_LINK => $providerPrivacyLink, |
62
|
|
|
ServerInfo::SETTING_PROVIDER_ADMIN_CONTACT => $adminContact |
63
|
|
|
]; |
64
|
|
|
$this->config->setSystemValues($configs); |
65
|
|
|
} |
66
|
|
|
|
67
|
|
|
} |
68
|
|
|
|