1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* @copyright Copyright (c) 2018 John Molakvoæ <[email protected]> |
4
|
|
|
* @copyright Copyright (c) 2019 Janis Köhr <[email protected]> |
5
|
|
|
* |
6
|
|
|
* @author Christoph Wurst <[email protected]> |
7
|
|
|
* @author John Molakvoæ <[email protected]> |
8
|
|
|
* @author Roeland Jago Douma <[email protected]> |
9
|
|
|
* |
10
|
|
|
* @license GNU AGPL version 3 or any later version |
11
|
|
|
* |
12
|
|
|
* This program is free software: you can redistribute it and/or modify |
13
|
|
|
* it under the terms of the GNU Affero General Public License as |
14
|
|
|
* published by the Free Software Foundation, either version 3 of the |
15
|
|
|
* License, or (at your option) any later version. |
16
|
|
|
* |
17
|
|
|
* This program is distributed in the hope that it will be useful, |
18
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
19
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
20
|
|
|
* GNU Affero General Public License for more details. |
21
|
|
|
* |
22
|
|
|
* You should have received a copy of the GNU Affero General Public License |
23
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. |
24
|
|
|
* |
25
|
|
|
*/ |
26
|
|
|
namespace OCA\Theming\Settings; |
27
|
|
|
|
28
|
|
|
use OCA\Theming\Service\ThemesService; |
29
|
|
|
use OCP\AppFramework\Http\TemplateResponse; |
30
|
|
|
use OCP\AppFramework\Services\IInitialState; |
31
|
|
|
use OCP\IConfig; |
32
|
|
|
use OCP\IUserSession; |
33
|
|
|
use OCP\Settings\ISettings; |
34
|
|
|
use OCP\Util; |
35
|
|
|
|
36
|
|
|
class Personal implements ISettings { |
37
|
|
|
|
38
|
|
|
protected string $appName; |
39
|
|
|
private IConfig $config; |
40
|
|
|
private IUserSession $userSession; |
41
|
|
|
private ThemesService $themesService; |
42
|
|
|
private IInitialState $initialStateService; |
43
|
|
|
|
44
|
|
|
public function __construct(string $appName, |
45
|
|
|
IConfig $config, |
46
|
|
|
IUserSession $userSession, |
47
|
|
|
ThemesService $themesService, |
48
|
|
|
IInitialState $initialStateService) { |
49
|
|
|
$this->appName = $appName; |
50
|
|
|
$this->config = $config; |
51
|
|
|
$this->userSession = $userSession; |
52
|
|
|
$this->themesService = $themesService; |
53
|
|
|
$this->initialStateService = $initialStateService; |
54
|
|
|
} |
55
|
|
|
|
56
|
|
|
public function getForm(): TemplateResponse { |
57
|
|
|
$themes = array_map(function($theme) { |
58
|
|
|
return [ |
59
|
|
|
'id' => $theme->getId(), |
60
|
|
|
'type' => $theme->getType(), |
61
|
|
|
'title' => $theme->getTitle(), |
62
|
|
|
'enableLabel' => $theme->getEnableLabel(), |
63
|
|
|
'description' => $theme->getDescription(), |
64
|
|
|
'enabled' => $this->themesService->isEnabled($theme), |
65
|
|
|
]; |
66
|
|
|
}, $this->themesService->getThemes()); |
67
|
|
|
|
68
|
|
|
$this->initialStateService->provideInitialState('themes', array_values($themes)); |
69
|
|
|
Util::addScript($this->appName, 'theming-settings'); |
70
|
|
|
|
71
|
|
|
return new TemplateResponse($this->appName, 'settings-personal'); |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
/** |
75
|
|
|
* @return string the section ID, e.g. 'sharing' |
76
|
|
|
* @since 9.1 |
77
|
|
|
*/ |
78
|
|
|
public function getSection(): string { |
79
|
|
|
return $this->appName; |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
/** |
83
|
|
|
* @return int whether the form should be rather on the top or bottom of |
84
|
|
|
* the admin section. The forms are arranged in ascending order of the |
85
|
|
|
* priority values. It is required to return a value between 0 and 100. |
86
|
|
|
* |
87
|
|
|
* E.g.: 70 |
88
|
|
|
* @since 9.1 |
89
|
|
|
*/ |
90
|
|
|
public function getPriority(): int { |
91
|
|
|
return 40; |
92
|
|
|
} |
93
|
|
|
} |
94
|
|
|
|