2018-01-15 14:06:03 +03:00
|
|
|
<?php
|
2018-01-17 15:42:02 +03:00
|
|
|
declare(strict_types=1);
|
2018-01-15 14:06:03 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\UpdateNotification\Settings;
|
|
|
|
|
|
|
|
use OCA\UpdateNotification\UpdateChecker;
|
|
|
|
use OCP\AppFramework\Http\TemplateResponse;
|
|
|
|
use OCP\IConfig;
|
|
|
|
use OCP\IDateTimeFormatter;
|
2018-01-31 12:54:22 +03:00
|
|
|
use OCP\IGroupManager;
|
2018-01-15 14:06:03 +03:00
|
|
|
use OCP\Settings\ISettings;
|
|
|
|
use OCP\Util;
|
|
|
|
|
|
|
|
class Admin implements ISettings {
|
|
|
|
/** @var IConfig */
|
|
|
|
private $config;
|
|
|
|
/** @var UpdateChecker */
|
|
|
|
private $updateChecker;
|
2018-01-31 12:54:22 +03:00
|
|
|
/** @var IGroupManager */
|
|
|
|
private $groupManager;
|
2018-01-15 14:06:03 +03:00
|
|
|
/** @var IDateTimeFormatter */
|
|
|
|
private $dateTimeFormatter;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param IConfig $config
|
|
|
|
* @param UpdateChecker $updateChecker
|
2018-01-31 12:54:22 +03:00
|
|
|
* @param IGroupManager $groupManager
|
2018-01-15 14:06:03 +03:00
|
|
|
* @param IDateTimeFormatter $dateTimeFormatter
|
|
|
|
*/
|
|
|
|
public function __construct(IConfig $config,
|
|
|
|
UpdateChecker $updateChecker,
|
2018-01-31 12:54:22 +03:00
|
|
|
IGroupManager $groupManager,
|
2018-01-15 14:06:03 +03:00
|
|
|
IDateTimeFormatter $dateTimeFormatter) {
|
|
|
|
$this->config = $config;
|
|
|
|
$this->updateChecker = $updateChecker;
|
2018-01-31 12:54:22 +03:00
|
|
|
$this->groupManager = $groupManager;
|
2018-01-15 14:06:03 +03:00
|
|
|
$this->dateTimeFormatter = $dateTimeFormatter;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return TemplateResponse
|
|
|
|
*/
|
2018-01-17 15:42:02 +03:00
|
|
|
public function getForm(): TemplateResponse {
|
2018-01-15 14:06:03 +03:00
|
|
|
$lastUpdateCheckTimestamp = $this->config->getAppValue('core', 'lastupdatedat');
|
|
|
|
$lastUpdateCheck = $this->dateTimeFormatter->formatDateTime($lastUpdateCheckTimestamp);
|
|
|
|
|
|
|
|
$channels = [
|
|
|
|
'daily',
|
|
|
|
'beta',
|
|
|
|
'stable',
|
|
|
|
'production',
|
|
|
|
];
|
|
|
|
$currentChannel = Util::getChannel();
|
2018-01-18 14:25:52 +03:00
|
|
|
if ($currentChannel === 'git') {
|
|
|
|
$channels[] = 'git';
|
2018-01-15 14:06:03 +03:00
|
|
|
}
|
2018-01-18 14:25:52 +03:00
|
|
|
|
2018-01-15 14:06:03 +03:00
|
|
|
$updateState = $this->updateChecker->getUpdateState();
|
|
|
|
|
|
|
|
$notifyGroups = json_decode($this->config->getAppValue('updatenotification', 'notify_groups', '["admin"]'), true);
|
|
|
|
|
2018-02-01 15:22:36 +03:00
|
|
|
$defaultUpdateServerURL = 'https://updates.nextcloud.com/updater_server/';
|
2018-01-15 14:06:03 +03:00
|
|
|
$updateServerURL = $this->config->getSystemValue('updater.server.url', $defaultUpdateServerURL);
|
|
|
|
|
|
|
|
$params = [
|
|
|
|
'isNewVersionAvailable' => !empty($updateState['updateAvailable']),
|
|
|
|
'isUpdateChecked' => $lastUpdateCheckTimestamp > 0,
|
|
|
|
'lastChecked' => $lastUpdateCheck,
|
|
|
|
'currentChannel' => $currentChannel,
|
|
|
|
'channels' => $channels,
|
|
|
|
'newVersionString' => empty($updateState['updateVersion']) ? '' : $updateState['updateVersion'],
|
|
|
|
'downloadLink' => empty($updateState['downloadLink']) ? '' : $updateState['downloadLink'],
|
2018-05-30 16:53:08 +03:00
|
|
|
'changelogURL' => empty($updateState['changelog']) ? false : $updateState['changelog'],
|
|
|
|
'whatsNew' => empty($updateState['whatsNew']) ? false : $updateState['whatsNew'],
|
2018-01-15 14:06:03 +03:00
|
|
|
'updaterEnabled' => empty($updateState['updaterEnabled']) ? false : $updateState['updaterEnabled'],
|
2018-03-14 16:21:49 +03:00
|
|
|
'versionIsEol' => empty($updateState['versionIsEol']) ? false : $updateState['versionIsEol'],
|
2018-01-15 14:06:03 +03:00
|
|
|
'isDefaultUpdateServerURL' => $updateServerURL === $defaultUpdateServerURL,
|
|
|
|
'updateServerURL' => $updateServerURL,
|
2018-01-31 12:54:22 +03:00
|
|
|
'notifyGroups' => $this->getSelectedGroups($notifyGroups),
|
2018-01-18 14:25:52 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
$params = [
|
|
|
|
'json' => json_encode($params),
|
2018-01-15 14:06:03 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
return new TemplateResponse('updatenotification', 'admin', $params, '');
|
|
|
|
}
|
|
|
|
|
2018-01-31 12:54:22 +03:00
|
|
|
/**
|
|
|
|
* @param array $groupIds
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
protected function getSelectedGroups(array $groupIds): array {
|
|
|
|
$result = [];
|
|
|
|
foreach ($groupIds as $groupId) {
|
|
|
|
$group = $this->groupManager->get($groupId);
|
|
|
|
|
|
|
|
if ($group === null) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
$result[] = ['value' => $group->getGID(), 'label' => $group->getDisplayName()];
|
|
|
|
}
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
2018-01-15 14:06:03 +03:00
|
|
|
/**
|
|
|
|
* @return string the section ID, e.g. 'sharing'
|
|
|
|
*/
|
2018-01-17 15:42:02 +03:00
|
|
|
public function getSection(): string {
|
2018-04-19 21:10:29 +03:00
|
|
|
return 'overview';
|
2018-01-15 14:06:03 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return int whether the form should be rather on the top or bottom of
|
|
|
|
* the admin section. The forms are arranged in ascending order of the
|
|
|
|
* priority values. It is required to return a value between 0 and 100.
|
|
|
|
*
|
|
|
|
* E.g.: 70
|
|
|
|
*/
|
2018-01-17 15:42:02 +03:00
|
|
|
public function getPriority(): int {
|
2018-04-19 21:10:29 +03:00
|
|
|
return 11;
|
2018-01-15 14:06:03 +03:00
|
|
|
}
|
|
|
|
}
|