Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Application.php « AppInfo « lib - github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 517827bfba1788c8a316574d1f7b5d27645d48f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<?php
/**
 * @author Joas Schilling <coding@schilljs.com>
 *
 * @copyright Copyright (c) 2016, ownCloud, Inc.
 * @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\Notifications\AppInfo;

use OC\Authentication\Token\IProvider;
use OCA\Notifications\App;
use OCA\Notifications\Capabilities;
use OCA\Notifications\Handler;
use OCA\Notifications\Notifier\AdminNotifications;
use OCA\Notifications\Push;
use OCP\AppFramework\IAppContainer;
use OCP\EventDispatcher\IEventDispatcher;
use OCP\Notification\IApp;
use OCP\Util;

class Application extends \OCP\AppFramework\App {
	public function __construct() {
		parent::__construct('notifications');
		$container = $this->getContainer();

		$container->registerCapability(Capabilities::class);

		// FIXME this is for automatic DI because it is not in DIContainer
		$container->registerService(IProvider::class, function(IAppContainer $c) {
			return $c->getServer()->query(IProvider::class);
		});
	}

	public function register(): void {
		$this->registerNotificationApp();
		$this->registerTalkDeferPushing();
		$this->registerAdminNotifications();
		$this->registerUserInterface();
		$this->registerUserDeleteHook();
	}

	protected function registerNotificationApp(): void {
		$this->getContainer()
			->getServer()
			->getNotificationManager()
			->registerApp(App::class);
	}
	protected function registerAdminNotifications(): void {
		$this->getContainer()
			->getServer()
			->getNotificationManager()
			->registerNotifierService(AdminNotifications::class);
	}

	protected function registerUserInterface(): void {
		// Only display the app on index.php except for public shares
		$server = $this->getContainer()->getServer();
		$request = $server->getRequest();

		if ($server->getUserSession()->getUser() !== null
			&& strpos($request->getPathInfo(), '/s/') !== 0
			&& strpos($request->getPathInfo(), '/login/') !== 0
			&& substr($request->getScriptName(), 0 - \strlen('/index.php')) === '/index.php') {

			Util::addScript('notifications', 'notifications');
			Util::addStyle('notifications', 'styles');
		}
	}

	protected function registerTalkDeferPushing(): void {
		/** @var IEventDispatcher $dispatcher */
		$dispatcher = $this->getContainer()->getServer()->query(IEventDispatcher::class);

		$dispatcher->addListener(IApp::class . '::defer', function() {
			/** @var App $app */
			$app = $this->getContainer()->query(App::class);
			$app->defer();
		});
		$dispatcher->addListener(IApp::class . '::flush', function() {
			/** @var App $app */
			$app = $this->getContainer()->query(App::class);
			$app->flush();
		});
	}

	protected function registerUserDeleteHook(): void {
		Util::connectHook('OC_User', 'post_deleteUser', $this, 'deleteUser');
	}

	public function deleteUser(array $params): void {
		/** @var Handler $handler */
		$handler = $this->getContainer()->query(Handler::class);
		$handler->deleteByUser($params['uid']);
	}
}