Skip to content
Snippets Groups Projects
Unverified Commit 37720317 authored by Morris Jobke's avatar Morris Jobke Committed by GitHub
Browse files

Merge pull request #21819 from nextcloud/techdebt/noid/updatenotification-bootstrap

Use IBootstrap for the app updatenotification
parents cbbbbee8 81a433d5
No related branches found
No related tags found
No related merge requests found
<?php
/**
* @copyright Copyright (c) 2018, Joas Schilling <coding@schilljs.com>
*
* @author Joas Schilling <coding@schilljs.com>
* @author Lukas Reschke <lukas@statuscode.ch>
* @author Robin Appelman <robin@icewind.nl>
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
use \OCA\UpdateNotification\AppInfo\Application;
/** @var Application $app */
$app = \OC::$server->query(Application::class);
$app->register();
...@@ -7,6 +7,7 @@ declare(strict_types=1); ...@@ -7,6 +7,7 @@ declare(strict_types=1);
* *
* @author Joas Schilling <coding@schilljs.com> * @author Joas Schilling <coding@schilljs.com>
* @author Lukas Reschke <lukas@statuscode.ch> * @author Lukas Reschke <lukas@statuscode.ch>
* @author Morris Jobke <hey@morrisjobke.de>
* *
* @license GNU AGPL version 3 or any later version * @license GNU AGPL version 3 or any later version
* *
...@@ -30,17 +31,23 @@ namespace OCA\UpdateNotification\AppInfo; ...@@ -30,17 +31,23 @@ namespace OCA\UpdateNotification\AppInfo;
use OCA\UpdateNotification\Notification\Notifier; use OCA\UpdateNotification\Notification\Notifier;
use OCA\UpdateNotification\UpdateChecker; use OCA\UpdateNotification\UpdateChecker;
use OCP\AppFramework\App; use OCP\AppFramework\App;
use OCP\AppFramework\Bootstrap\IBootContext;
use OCP\AppFramework\Bootstrap\IBootstrap;
use OCP\AppFramework\Bootstrap\IRegistrationContext;
use OCP\AppFramework\QueryException; use OCP\AppFramework\QueryException;
use OCP\IUser; use OCP\IUser;
use OCP\Util; use OCP\Util;
class Application extends App { class Application extends App implements IBootstrap {
public function __construct() { public function __construct() {
parent::__construct('updatenotification', []); parent::__construct('updatenotification', []);
} }
public function register() { public function register(IRegistrationContext $context): void {
$server = $this->getContainer()->getServer(); }
public function boot(IBootContext $context): void {
$server = $context->getServerContainer();
if ($server->getConfig()->getSystemValue('updatechecker', true) !== true) { if ($server->getConfig()->getSystemValue('updatechecker', true) !== true) {
// Updater check is disabled // Updater check is disabled
...@@ -48,7 +55,8 @@ class Application extends App { ...@@ -48,7 +55,8 @@ class Application extends App {
} }
// Always register the notifier, so background jobs (without a user) can send push notifications // Always register the notifier, so background jobs (without a user) can send push notifications
$this->registerNotifier(); $notificationsManager = $server->getNotificationManager();
$notificationsManager->registerNotifierService(Notifier::class);
$user = $server->getUserSession()->getUser(); $user = $server->getUserSession()->getUser();
if (!$user instanceof IUser) { if (!$user instanceof IUser) {
...@@ -59,7 +67,7 @@ class Application extends App { ...@@ -59,7 +67,7 @@ class Application extends App {
if (!$server->getAppManager()->isEnabledForUser('notifications') && if (!$server->getAppManager()->isEnabledForUser('notifications') &&
$server->getGroupManager()->isAdmin($user->getUID())) { $server->getGroupManager()->isAdmin($user->getUID())) {
try { try {
$updateChecker = $this->getContainer()->query(UpdateChecker::class); $updateChecker = $server->query(UpdateChecker::class);
} catch (QueryException $e) { } catch (QueryException $e) {
$server->getLogger()->logException($e); $server->getLogger()->logException($e);
return; return;
...@@ -71,9 +79,4 @@ class Application extends App { ...@@ -71,9 +79,4 @@ class Application extends App {
} }
} }
} }
public function registerNotifier() {
$notificationsManager = $this->getContainer()->getServer()->getNotificationManager();
$notificationsManager->registerNotifierService(Notifier::class);
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment