|
1
|
|
|
<?php |
|
2
|
|
|
declare(strict_types=1); |
|
3
|
|
|
/** |
|
4
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc. |
|
5
|
|
|
* |
|
6
|
|
|
* @author Arthur Schiwon <[email protected]> |
|
7
|
|
|
* @author Joas Schilling <[email protected]> |
|
8
|
|
|
* @author Lukas Reschke <[email protected]> |
|
9
|
|
|
* @author Morris Jobke <[email protected]> |
|
10
|
|
|
* |
|
11
|
|
|
* @license AGPL-3.0 |
|
12
|
|
|
* |
|
13
|
|
|
* This code is free software: you can redistribute it and/or modify |
|
14
|
|
|
* it under the terms of the GNU Affero General Public License, version 3, |
|
15
|
|
|
* as published by the Free Software Foundation. |
|
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, version 3, |
|
23
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/> |
|
24
|
|
|
* |
|
25
|
|
|
*/ |
|
26
|
|
|
|
|
27
|
|
|
namespace OCA\UpdateNotification\Settings; |
|
28
|
|
|
|
|
29
|
|
|
use OCA\UpdateNotification\UpdateChecker; |
|
30
|
|
|
use OCP\AppFramework\Http\TemplateResponse; |
|
31
|
|
|
use OCP\IConfig; |
|
32
|
|
|
use OCP\IDateTimeFormatter; |
|
33
|
|
|
use OCP\IGroupManager; |
|
34
|
|
|
use OCP\IUserSession; |
|
35
|
|
|
use OCP\L10N\IFactory; |
|
36
|
|
|
use OCP\Settings\ISettings; |
|
37
|
|
|
use OCP\Util; |
|
38
|
|
|
|
|
39
|
|
|
class Admin implements ISettings { |
|
40
|
|
|
/** @var IConfig */ |
|
41
|
|
|
private $config; |
|
42
|
|
|
/** @var UpdateChecker */ |
|
43
|
|
|
private $updateChecker; |
|
44
|
|
|
/** @var IGroupManager */ |
|
45
|
|
|
private $groupManager; |
|
46
|
|
|
/** @var IDateTimeFormatter */ |
|
47
|
|
|
private $dateTimeFormatter; |
|
48
|
|
|
/** @var IUserSession */ |
|
49
|
|
|
private $session; |
|
50
|
|
|
/** @var IFactory */ |
|
51
|
|
|
private $l10nFactory; |
|
52
|
|
|
|
|
53
|
|
|
public function __construct( |
|
54
|
|
|
IConfig $config, |
|
55
|
|
|
UpdateChecker $updateChecker, |
|
56
|
|
|
IGroupManager $groupManager, |
|
57
|
|
|
IDateTimeFormatter $dateTimeFormatter, |
|
58
|
|
|
IUserSession $session, |
|
59
|
|
|
IFactory $l10nFactory |
|
60
|
|
|
) { |
|
61
|
|
|
$this->config = $config; |
|
62
|
|
|
$this->updateChecker = $updateChecker; |
|
63
|
|
|
$this->groupManager = $groupManager; |
|
64
|
|
|
$this->dateTimeFormatter = $dateTimeFormatter; |
|
65
|
|
|
$this->session = $session; |
|
66
|
|
|
$this->l10nFactory = $l10nFactory; |
|
67
|
|
|
} |
|
68
|
|
|
|
|
69
|
|
|
/** |
|
70
|
|
|
* @return TemplateResponse |
|
71
|
|
|
*/ |
|
72
|
|
|
public function getForm(): TemplateResponse { |
|
73
|
|
|
$lastUpdateCheckTimestamp = $this->config->getAppValue('core', 'lastupdatedat'); |
|
74
|
|
|
$lastUpdateCheck = $this->dateTimeFormatter->formatDateTime($lastUpdateCheckTimestamp); |
|
75
|
|
|
|
|
76
|
|
|
$channels = [ |
|
77
|
|
|
'daily', |
|
78
|
|
|
'beta', |
|
79
|
|
|
'stable', |
|
80
|
|
|
'production', |
|
81
|
|
|
]; |
|
82
|
|
|
$currentChannel = Util::getChannel(); |
|
83
|
|
|
if ($currentChannel === 'git') { |
|
84
|
|
|
$channels[] = 'git'; |
|
85
|
|
|
} |
|
86
|
|
|
|
|
87
|
|
|
$updateState = $this->updateChecker->getUpdateState(); |
|
88
|
|
|
|
|
89
|
|
|
$notifyGroups = json_decode($this->config->getAppValue('updatenotification', 'notify_groups', '["admin"]'), true); |
|
90
|
|
|
|
|
91
|
|
|
$defaultUpdateServerURL = 'https://updates.nextcloud.com/updater_server/'; |
|
92
|
|
|
$updateServerURL = $this->config->getSystemValue('updater.server.url', $defaultUpdateServerURL); |
|
93
|
|
|
|
|
94
|
|
|
$params = [ |
|
95
|
|
|
'isNewVersionAvailable' => !empty($updateState['updateAvailable']), |
|
96
|
|
|
'isUpdateChecked' => $lastUpdateCheckTimestamp > 0, |
|
97
|
|
|
'lastChecked' => $lastUpdateCheck, |
|
98
|
|
|
'currentChannel' => $currentChannel, |
|
99
|
|
|
'channels' => $channels, |
|
100
|
|
|
'newVersionString' => empty($updateState['updateVersion']) ? '' : $updateState['updateVersion'], |
|
101
|
|
|
'downloadLink' => empty($updateState['downloadLink']) ? '' : $updateState['downloadLink'], |
|
102
|
|
|
'changes' => $this->filterChanges($updateState['changes'] ?? []), |
|
103
|
|
|
'updaterEnabled' => empty($updateState['updaterEnabled']) ? false : $updateState['updaterEnabled'], |
|
104
|
|
|
'versionIsEol' => empty($updateState['versionIsEol']) ? false : $updateState['versionIsEol'], |
|
105
|
|
|
'isDefaultUpdateServerURL' => $updateServerURL === $defaultUpdateServerURL, |
|
106
|
|
|
'updateServerURL' => $updateServerURL, |
|
107
|
|
|
'notifyGroups' => $this->getSelectedGroups($notifyGroups), |
|
108
|
|
|
]; |
|
109
|
|
|
|
|
110
|
|
|
$params = [ |
|
111
|
|
|
'json' => json_encode($params), |
|
112
|
|
|
]; |
|
113
|
|
|
|
|
114
|
|
|
return new TemplateResponse('updatenotification', 'admin', $params, ''); |
|
115
|
|
|
} |
|
116
|
|
|
|
|
117
|
|
|
protected function filterChanges(array $changes) { |
|
118
|
|
|
$filtered = []; |
|
119
|
|
|
if(isset($changes['changelogURL'])) { |
|
120
|
|
|
$filtered['changelogURL'] = $changes['changelogURL']; |
|
121
|
|
|
} |
|
122
|
|
|
if(!isset($changes['whatsNew'])) { |
|
123
|
|
|
return $filtered; |
|
124
|
|
|
} |
|
125
|
|
|
|
|
126
|
|
|
$isFirstCall = true; |
|
127
|
|
|
do { |
|
128
|
|
|
$lang = $this->l10nFactory->iterateLanguage($isFirstCall); |
|
129
|
|
|
if($this->findWhatsNewTranslation($lang, $filtered, $changes['whatsNew'])) { |
|
130
|
|
|
return $filtered; |
|
131
|
|
|
} |
|
132
|
|
|
$isFirstCall = false; |
|
133
|
|
|
} while($lang !== 'en'); |
|
134
|
|
|
|
|
135
|
|
|
return $filtered; |
|
136
|
|
|
} |
|
137
|
|
|
|
|
138
|
|
|
protected function getLangTrunk(string $lang):string { |
|
139
|
|
|
$pos = strpos($lang, '_'); |
|
140
|
|
|
if($pos !== false) { |
|
141
|
|
|
$lang = substr($lang, 0, $pos); |
|
142
|
|
|
} |
|
143
|
|
|
return $lang; |
|
144
|
|
|
} |
|
145
|
|
|
|
|
146
|
|
|
protected function findWhatsNewTranslation(string $lang, array &$result, array $whatsNew): bool { |
|
147
|
|
|
if(isset($whatsNew[$lang])) { |
|
148
|
|
|
$result['whatsNew'] = $whatsNew[$lang]; |
|
149
|
|
|
return true; |
|
150
|
|
|
} |
|
151
|
|
|
$trunkedLang = $this->getLangTrunk($lang); |
|
152
|
|
|
if($trunkedLang !== $lang && isset($whatsNew[$trunkedLang])) { |
|
153
|
|
|
$result['whatsNew'] = $whatsNew[$trunkedLang]; |
|
154
|
|
|
return true; |
|
155
|
|
|
} |
|
156
|
|
|
return false; |
|
157
|
|
|
} |
|
158
|
|
|
|
|
159
|
|
|
/** |
|
160
|
|
|
* @param array $groupIds |
|
161
|
|
|
* @return array |
|
162
|
|
|
*/ |
|
163
|
|
|
protected function getSelectedGroups(array $groupIds): array { |
|
164
|
|
|
$result = []; |
|
165
|
|
|
foreach ($groupIds as $groupId) { |
|
166
|
|
|
$group = $this->groupManager->get($groupId); |
|
167
|
|
|
|
|
168
|
|
|
if ($group === null) { |
|
169
|
|
|
continue; |
|
170
|
|
|
} |
|
171
|
|
|
|
|
172
|
|
|
$result[] = ['value' => $group->getGID(), 'label' => $group->getDisplayName()]; |
|
173
|
|
|
} |
|
174
|
|
|
|
|
175
|
|
|
return $result; |
|
176
|
|
|
} |
|
177
|
|
|
|
|
178
|
|
|
/** |
|
179
|
|
|
* @return string the section ID, e.g. 'sharing' |
|
180
|
|
|
*/ |
|
181
|
|
|
public function getSection(): string { |
|
182
|
|
|
return 'overview'; |
|
183
|
|
|
} |
|
184
|
|
|
|
|
185
|
|
|
/** |
|
186
|
|
|
* @return int whether the form should be rather on the top or bottom of |
|
187
|
|
|
* the admin section. The forms are arranged in ascending order of the |
|
188
|
|
|
* priority values. It is required to return a value between 0 and 100. |
|
189
|
|
|
* |
|
190
|
|
|
* E.g.: 70 |
|
191
|
|
|
*/ |
|
192
|
|
|
public function getPriority(): int { |
|
193
|
|
|
return 11; |
|
194
|
|
|
} |
|
195
|
|
|
} |
|
196
|
|
|
|