Completed
Push — master ( cfc21f...d660b1 )
by Morris
10s
created

Application   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 37
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 8
c 3
b 0
f 0
lcom 0
cbo 0
dl 0
loc 37
ccs 28
cts 28
cp 1
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 7 1
A register() 0 4 1
A registerNotificationApp() 0 6 1
B registerUserInterface() 0 15 5
1
<?php
2
/**
3
 * @author Joas Schilling <[email protected]>
4
 *
5
 * @copyright Copyright (c) 2016, ownCloud, Inc.
6
 * @license AGPL-3.0
7
 *
8
 * This code is free software: you can redistribute it and/or modify
9
 * it under the terms of the GNU Affero General Public License, version 3,
10
 * as published by the Free Software Foundation.
11
 *
12
 * This program is distributed in the hope that it will be useful,
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
 * GNU Affero General Public License for more details.
16
 *
17
 * You should have received a copy of the GNU Affero General Public License, version 3,
18
 * along with this program.  If not, see <http://www.gnu.org/licenses/>
19
 *
20
 */
21
22
namespace OCA\Notifications\AppInfo;
23
24
use OCA\Notifications\App;
25
use OCA\Notifications\Capabilities;
26
use OCA\Notifications\Controller\EndpointController;
27
use OCP\Util;
28
29
class Application extends \OCP\AppFramework\App {
30 15
	public function __construct() {
31 15
		parent::__construct('notifications');
32 15
		$container = $this->getContainer();
33
34 15
		$container->registerAlias('EndpointController', EndpointController::class);
35 15
		$container->registerCapability(Capabilities::class);
36 15
	}
37
38 6
	public function register() {
39 6
		$this->registerNotificationApp();
40 6
		$this->registerUserInterface();
41 6
	}
42
43 6
	protected function registerNotificationApp() {
44 6
		$container = $this->getContainer();
45 6
		$container->getServer()->getNotificationManager()->registerApp(function() use($container) {
46 1
			return $container->query(App::class);
47 6
		});
48 6
	}
49
50 6
	protected function registerUserInterface() {
51
		// Only display the app on index.php except for public shares
52 6
		$server = $this->getContainer()->getServer();
53 6
		$request = $server->getRequest();
54
55 6
		if ($server->getUserSession()->getUser() !== null
56 6
			&& substr($request->getScriptName(), 0 - strlen('/index.php')) === '/index.php'
57 6
			&& substr($request->getPathInfo(), 0, strlen('/s/')) !== '/s/'
58 6
			&& substr($request->getPathInfo(), 0, strlen('/login/')) !== '/login/') {
59 1
			Util::addScript('notifications', 'app');
60 1
			Util::addScript('notifications', 'notification');
61 1
			Util::addStyle('notifications', 'styles');
62 1
		}
63
64 6
	}
65
}
66