2016-02-09 15:06:48 +03:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 17:49:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2016-02-09 15:06:48 +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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
if(\OC::$server->getConfig()->getSystemValue('updatechecker', true) === true) {
|
2016-04-11 14:19:22 +03:00
|
|
|
$updater = new \OC\Updater\VersionCheck(
|
2016-04-18 18:28:10 +03:00
|
|
|
\OC::$server->getHTTPClientService(),
|
2016-04-11 14:19:22 +03:00
|
|
|
\OC::$server->getConfig()
|
2016-02-09 15:06:48 +03:00
|
|
|
);
|
|
|
|
$updateChecker = new \OCA\UpdateNotification\UpdateChecker(
|
|
|
|
$updater
|
|
|
|
);
|
|
|
|
|
|
|
|
$userObject = \OC::$server->getUserSession()->getUser();
|
|
|
|
if($userObject !== null) {
|
2016-12-21 17:44:06 +03:00
|
|
|
if(\OC::$server->getGroupManager()->isAdmin($userObject->getUID()) &&
|
|
|
|
!\OC::$server->getAppManager()->isEnabledForUser('notifications')) {
|
2016-03-04 15:56:13 +03:00
|
|
|
if($updateChecker->getUpdateState() !== []) {
|
|
|
|
\OCP\Util::addScript('updatenotification', 'notification');
|
|
|
|
OC_Hook::connect('\OCP\Config', 'js', $updateChecker, 'getJavaScript');
|
|
|
|
}
|
2016-02-09 15:06:48 +03:00
|
|
|
}
|
|
|
|
}
|
2016-05-04 16:27:43 +03:00
|
|
|
|
|
|
|
$manager = \OC::$server->getNotificationManager();
|
2016-05-04 17:34:54 +03:00
|
|
|
$manager->registerNotifier(function() use ($manager) {
|
2016-12-01 17:32:39 +03:00
|
|
|
return \OC::$server->query(\OCA\UpdateNotification\Notification\Notifier::class);
|
2016-05-09 13:04:32 +03:00
|
|
|
}, function() {
|
|
|
|
$l = \OC::$server->getL10N('updatenotification');
|
2016-05-04 16:27:43 +03:00
|
|
|
return [
|
|
|
|
'id' => 'updatenotification',
|
|
|
|
'name' => $l->t('Update notifications'),
|
|
|
|
];
|
|
|
|
});
|
2016-02-09 15:06:48 +03:00
|
|
|
}
|