2016-05-04 16:27:43 +03:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-01-17 15:42:02 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2016-05-04 16:27:43 +03:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2016-07-21 17:49:16 +03:00
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Julius Härtl <jus@bitgrid.net>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2016-07-21 17:49:16 +03:00
|
|
|
*
|
2016-05-04 16:27:43 +03:00
|
|
|
* @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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2016-05-04 16:27:43 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace OCA\UpdateNotification\Notification;
|
|
|
|
|
2017-03-17 14:47:26 +03:00
|
|
|
use OCP\IConfig;
|
2017-01-09 13:24:09 +03:00
|
|
|
use OCP\IGroupManager;
|
2016-12-01 17:32:39 +03:00
|
|
|
use OCP\IURLGenerator;
|
2017-01-09 13:24:09 +03:00
|
|
|
use OCP\IUser;
|
|
|
|
use OCP\IUserSession;
|
2016-05-04 16:27:43 +03:00
|
|
|
use OCP\L10N\IFactory;
|
2019-04-30 15:29:30 +03:00
|
|
|
use OCP\Notification\AlreadyProcessedException;
|
2016-05-04 17:34:54 +03:00
|
|
|
use OCP\Notification\IManager;
|
2016-05-04 16:27:43 +03:00
|
|
|
use OCP\Notification\INotification;
|
|
|
|
use OCP\Notification\INotifier;
|
2018-01-17 15:42:02 +03:00
|
|
|
use OCP\Util;
|
2016-05-04 16:27:43 +03:00
|
|
|
|
|
|
|
class Notifier implements INotifier {
|
|
|
|
|
2016-12-01 17:32:39 +03:00
|
|
|
/** @var IURLGenerator */
|
|
|
|
protected $url;
|
|
|
|
|
2017-03-17 14:47:26 +03:00
|
|
|
/** @var IConfig */
|
|
|
|
protected $config;
|
|
|
|
|
2016-05-04 17:34:54 +03:00
|
|
|
/** @var IManager */
|
|
|
|
protected $notificationManager;
|
|
|
|
|
2016-05-04 16:27:43 +03:00
|
|
|
/** @var IFactory */
|
|
|
|
protected $l10NFactory;
|
|
|
|
|
2017-01-09 13:24:09 +03:00
|
|
|
/** @var IUserSession */
|
|
|
|
protected $userSession;
|
|
|
|
|
|
|
|
/** @var IGroupManager */
|
|
|
|
protected $groupManager;
|
|
|
|
|
2016-05-04 17:34:54 +03:00
|
|
|
/** @var string[] */
|
|
|
|
protected $appVersions;
|
|
|
|
|
2016-05-04 16:27:43 +03:00
|
|
|
/**
|
|
|
|
* Notifier constructor.
|
|
|
|
*
|
2016-12-01 17:32:39 +03:00
|
|
|
* @param IURLGenerator $url
|
2017-03-17 14:47:26 +03:00
|
|
|
* @param IConfig $config
|
2016-05-04 17:34:54 +03:00
|
|
|
* @param IManager $notificationManager
|
2016-05-04 16:27:43 +03:00
|
|
|
* @param IFactory $l10NFactory
|
2017-01-09 13:24:09 +03:00
|
|
|
* @param IUserSession $userSession
|
|
|
|
* @param IGroupManager $groupManager
|
2016-05-04 16:27:43 +03:00
|
|
|
*/
|
2017-03-17 14:47:26 +03:00
|
|
|
public function __construct(IURLGenerator $url, IConfig $config, IManager $notificationManager, IFactory $l10NFactory, IUserSession $userSession, IGroupManager $groupManager) {
|
2016-12-01 17:32:39 +03:00
|
|
|
$this->url = $url;
|
2016-05-04 17:34:54 +03:00
|
|
|
$this->notificationManager = $notificationManager;
|
2017-03-17 14:47:26 +03:00
|
|
|
$this->config = $config;
|
2016-05-04 16:27:43 +03:00
|
|
|
$this->l10NFactory = $l10NFactory;
|
2017-01-09 13:24:09 +03:00
|
|
|
$this->userSession = $userSession;
|
|
|
|
$this->groupManager = $groupManager;
|
2016-05-04 17:34:54 +03:00
|
|
|
$this->appVersions = $this->getAppVersions();
|
2016-05-04 16:27:43 +03:00
|
|
|
}
|
|
|
|
|
2019-04-30 15:29:30 +03:00
|
|
|
/**
|
|
|
|
* Identifier of the notifier, only use [a-z0-9_]
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
* @since 17.0.0
|
|
|
|
*/
|
|
|
|
public function getID(): string {
|
|
|
|
return 'updatenotification';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Human readable name describing the notifier
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
* @since 17.0.0
|
|
|
|
*/
|
|
|
|
public function getName(): string {
|
|
|
|
return $this->l10NFactory->get('updatenotification')->t('Update notifications');
|
|
|
|
}
|
|
|
|
|
2016-05-04 16:27:43 +03:00
|
|
|
/**
|
|
|
|
* @param INotification $notification
|
|
|
|
* @param string $languageCode The code of the language that should be used to prepare the notification
|
|
|
|
* @return INotification
|
|
|
|
* @throws \InvalidArgumentException When the notification was not prepared by a notifier
|
2019-04-30 15:29:30 +03:00
|
|
|
* @throws AlreadyProcessedException When the notification is not needed anymore and should be deleted
|
2016-05-04 16:27:43 +03:00
|
|
|
* @since 9.0.0
|
|
|
|
*/
|
2019-04-30 15:29:30 +03:00
|
|
|
public function prepare(INotification $notification, string $languageCode): INotification {
|
2016-05-04 16:27:43 +03:00
|
|
|
if ($notification->getApp() !== 'updatenotification') {
|
2018-01-17 15:42:02 +03:00
|
|
|
throw new \InvalidArgumentException('Unknown app id');
|
2016-05-04 16:27:43 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$l = $this->l10NFactory->get('updatenotification', $languageCode);
|
2017-03-17 14:47:26 +03:00
|
|
|
if ($notification->getSubject() === 'connection_error') {
|
|
|
|
$errors = (int) $this->config->getAppValue('updatenotification', 'update_check_errors', 0);
|
|
|
|
if ($errors === 0) {
|
|
|
|
$this->notificationManager->markProcessed($notification);
|
2018-01-17 15:42:02 +03:00
|
|
|
throw new \InvalidArgumentException('Update checked worked again');
|
2017-03-17 14:47:26 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
$notification->setParsedSubject($l->t('The update server could not be reached since %d days to check for new updates.', [$errors]))
|
2017-04-18 10:53:02 +03:00
|
|
|
->setParsedMessage($l->t('Please check the Nextcloud and server log files for errors.'));
|
2017-03-17 14:47:26 +03:00
|
|
|
} elseif ($notification->getObjectType() === 'core') {
|
2016-05-04 17:34:54 +03:00
|
|
|
$this->updateAlreadyInstalledCheck($notification, $this->getCoreVersions());
|
2016-10-04 13:48:17 +03:00
|
|
|
|
|
|
|
$parameters = $notification->getSubjectParameters();
|
|
|
|
$notification->setParsedSubject($l->t('Update to %1$s is available.', [$parameters['version']]));
|
2017-01-09 13:24:09 +03:00
|
|
|
|
|
|
|
if ($this->isAdmin()) {
|
2018-09-12 11:24:02 +03:00
|
|
|
$notification->setLink($this->url->linkToRouteAbsolute('settings.AdminSettings.index', ['section' => 'overview']) . '#version');
|
2017-01-09 13:24:09 +03:00
|
|
|
}
|
2016-05-04 16:27:43 +03:00
|
|
|
} else {
|
2016-05-04 17:34:54 +03:00
|
|
|
$appInfo = $this->getAppInfo($notification->getObjectType());
|
2016-05-04 16:27:43 +03:00
|
|
|
$appName = ($appInfo === null) ? $notification->getObjectType() : $appInfo['name'];
|
2016-05-04 17:34:54 +03:00
|
|
|
|
|
|
|
if (isset($this->appVersions[$notification->getObjectType()])) {
|
|
|
|
$this->updateAlreadyInstalledCheck($notification, $this->appVersions[$notification->getObjectType()]);
|
|
|
|
}
|
2016-10-04 13:48:17 +03:00
|
|
|
|
2016-12-01 17:33:13 +03:00
|
|
|
$notification->setParsedSubject($l->t('Update for %1$s to version %2$s is available.', [$appName, $notification->getObjectId()]))
|
2017-07-24 12:36:20 +03:00
|
|
|
->setRichSubject($l->t('Update for {app} to version %s is available.', [$notification->getObjectId()]), [
|
2016-12-01 17:33:13 +03:00
|
|
|
'app' => [
|
|
|
|
'type' => 'app',
|
|
|
|
'id' => $notification->getObjectType(),
|
|
|
|
'name' => $appName,
|
|
|
|
]
|
|
|
|
]);
|
2017-01-09 13:18:59 +03:00
|
|
|
|
2017-01-09 13:24:09 +03:00
|
|
|
if ($this->isAdmin()) {
|
2018-01-03 19:21:41 +03:00
|
|
|
$notification->setLink($this->url->linkToRouteAbsolute('settings.AppSettings.viewApps', ['category' => 'updates']) . '#app-' . $notification->getObjectType());
|
2017-01-09 13:24:09 +03:00
|
|
|
}
|
2016-05-04 16:27:43 +03:00
|
|
|
}
|
|
|
|
|
2016-12-01 17:32:39 +03:00
|
|
|
$notification->setIcon($this->url->getAbsoluteURL($this->url->imagePath('updatenotification', 'notification.svg')));
|
|
|
|
|
2016-05-04 16:27:43 +03:00
|
|
|
return $notification;
|
|
|
|
}
|
2016-05-04 17:34:54 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Remove the notification and prevent rendering, when the update is installed
|
|
|
|
*
|
|
|
|
* @param INotification $notification
|
|
|
|
* @param string $installedVersion
|
2019-04-30 15:29:30 +03:00
|
|
|
* @throws AlreadyProcessedException When the update is already installed
|
2016-05-04 17:34:54 +03:00
|
|
|
*/
|
|
|
|
protected function updateAlreadyInstalledCheck(INotification $notification, $installedVersion) {
|
|
|
|
if (version_compare($notification->getObjectId(), $installedVersion, '<=')) {
|
2019-04-30 15:29:30 +03:00
|
|
|
throw new AlreadyProcessedException();
|
2016-05-04 17:34:54 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-09 13:24:09 +03:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
2018-01-17 15:42:02 +03:00
|
|
|
protected function isAdmin(): bool {
|
2017-01-09 13:24:09 +03:00
|
|
|
$user = $this->userSession->getUser();
|
|
|
|
|
|
|
|
if ($user instanceof IUser) {
|
|
|
|
return $this->groupManager->isAdmin($user->getUID());
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2018-01-17 15:42:02 +03:00
|
|
|
protected function getCoreVersions(): string {
|
|
|
|
return implode('.', Util::getVersion());
|
2016-05-04 17:34:54 +03:00
|
|
|
}
|
|
|
|
|
2018-01-17 15:42:02 +03:00
|
|
|
protected function getAppVersions(): array {
|
2016-05-04 17:34:54 +03:00
|
|
|
return \OC_App::getAppVersions();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected function getAppInfo($appId) {
|
|
|
|
return \OC_App::getAppInfo($appId);
|
|
|
|
}
|
2016-05-04 16:27:43 +03:00
|
|
|
}
|