Completed
Pull Request — master (#4918)
by Julius
15:22
created
apps/updatenotification/lib/UpdateChecker.php 2 patches
Indentation   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -26,48 +26,48 @@
 block discarded – undo
26 26
 use OC\Updater\VersionCheck;
27 27
 
28 28
 class UpdateChecker {
29
-	/** @var VersionCheck */
30
-	private $updater;
29
+    /** @var VersionCheck */
30
+    private $updater;
31 31
 
32
-	/**
33
-	 * @param VersionCheck $updater
34
-	 */
35
-	public function __construct(VersionCheck $updater) {
36
-		$this->updater = $updater;
37
-	}
32
+    /**
33
+     * @param VersionCheck $updater
34
+     */
35
+    public function __construct(VersionCheck $updater) {
36
+        $this->updater = $updater;
37
+    }
38 38
 
39
-	/**
40
-	 * @return array
41
-	 */
42
-	public function getUpdateState() {
43
-		$data = $this->updater->check();
44
-		$result = [];
39
+    /**
40
+     * @return array
41
+     */
42
+    public function getUpdateState() {
43
+        $data = $this->updater->check();
44
+        $result = [];
45 45
 
46
-		if(isset($data['version']) && $data['version'] !== '' && $data['version'] !== []) {
47
-			$result['updateAvailable'] = true;
48
-			$result['updateVersion'] = $data['versionstring'];
49
-			$result['updaterEnabled'] = $data['autoupdater'] === '1';
50
-			if(substr($data['web'], 0, 8) === 'https://') {
51
-				$result['updateLink'] = $data['web'];
52
-			}
53
-			if(substr($data['url'], 0, 8) === 'https://') {
54
-				$result['downloadLink'] = $data['url'];
55
-			}
46
+        if(isset($data['version']) && $data['version'] !== '' && $data['version'] !== []) {
47
+            $result['updateAvailable'] = true;
48
+            $result['updateVersion'] = $data['versionstring'];
49
+            $result['updaterEnabled'] = $data['autoupdater'] === '1';
50
+            if(substr($data['web'], 0, 8) === 'https://') {
51
+                $result['updateLink'] = $data['web'];
52
+            }
53
+            if(substr($data['url'], 0, 8) === 'https://') {
54
+                $result['downloadLink'] = $data['url'];
55
+            }
56 56
 
57
-			return $result;
58
-		}
57
+            return $result;
58
+        }
59 59
 
60
-		return [];
61
-	}
60
+        return [];
61
+    }
62 62
 
63
-	/**
64
-	 * @param array $data
65
-	 */
66
-	public function getJavaScript(array $data) {
67
-		$data['array']['oc_updateState'] =  json_encode([
68
-			'updateAvailable' => true,
69
-			'updateVersion' => $this->getUpdateState()['updateVersion'],
70
-			'updateLink' => isset($this->getUpdateState()['updateLink']) ? $this->getUpdateState()['updateLink'] : '',
71
-		]);
72
-	}
63
+    /**
64
+     * @param array $data
65
+     */
66
+    public function getJavaScript(array $data) {
67
+        $data['array']['oc_updateState'] =  json_encode([
68
+            'updateAvailable' => true,
69
+            'updateVersion' => $this->getUpdateState()['updateVersion'],
70
+            'updateLink' => isset($this->getUpdateState()['updateLink']) ? $this->getUpdateState()['updateLink'] : '',
71
+        ]);
72
+    }
73 73
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -43,14 +43,14 @@  discard block
 block discarded – undo
43 43
 		$data = $this->updater->check();
44 44
 		$result = [];
45 45
 
46
-		if(isset($data['version']) && $data['version'] !== '' && $data['version'] !== []) {
46
+		if (isset($data['version']) && $data['version'] !== '' && $data['version'] !== []) {
47 47
 			$result['updateAvailable'] = true;
48 48
 			$result['updateVersion'] = $data['versionstring'];
49 49
 			$result['updaterEnabled'] = $data['autoupdater'] === '1';
50
-			if(substr($data['web'], 0, 8) === 'https://') {
50
+			if (substr($data['web'], 0, 8) === 'https://') {
51 51
 				$result['updateLink'] = $data['web'];
52 52
 			}
53
-			if(substr($data['url'], 0, 8) === 'https://') {
53
+			if (substr($data['url'], 0, 8) === 'https://') {
54 54
 				$result['downloadLink'] = $data['url'];
55 55
 			}
56 56
 
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
 	 * @param array $data
65 65
 	 */
66 66
 	public function getJavaScript(array $data) {
67
-		$data['array']['oc_updateState'] =  json_encode([
67
+		$data['array']['oc_updateState'] = json_encode([
68 68
 			'updateAvailable' => true,
69 69
 			'updateVersion' => $this->getUpdateState()['updateVersion'],
70 70
 			'updateLink' => isset($this->getUpdateState()['updateLink']) ? $this->getUpdateState()['updateLink'] : '',
Please login to merge, or discard this patch.
apps/updatenotification/lib/AppInfo/Application.php 2 patches
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -30,27 +30,27 @@
 block discarded – undo
30 30
 use OCP\AppFramework\IAppContainer;
31 31
 
32 32
 class Application extends App {
33
-	public function __construct (array $urlParams = array()) {
34
-		parent::__construct('updatenotification', $urlParams);
35
-		$container = $this->getContainer();
33
+    public function __construct (array $urlParams = array()) {
34
+        parent::__construct('updatenotification', $urlParams);
35
+        $container = $this->getContainer();
36 36
 
37
-		$container->registerService('AdminController', function(IAppContainer $c) {
38
-			$updater = new \OC\Updater\VersionCheck(
39
-				\OC::$server->getHTTPClientService(),
40
-				\OC::$server->getConfig()
41
-			);
42
-			return new AdminController(
43
-				$c->query('AppName'),
44
-				$c->query('Request'),
45
-				$c->getServer()->getJobList(),
46
-				$c->getServer()->getSecureRandom(),
47
-				$c->getServer()->getConfig(),
48
-				new TimeFactory(),
49
-				$c->getServer()->getL10N($c->query('AppName')),
50
-				new UpdateChecker($updater),
51
-				$c->getServer()->getDateTimeFormatter()
52
-			);
53
-		});
54
-	}
37
+        $container->registerService('AdminController', function(IAppContainer $c) {
38
+            $updater = new \OC\Updater\VersionCheck(
39
+                \OC::$server->getHTTPClientService(),
40
+                \OC::$server->getConfig()
41
+            );
42
+            return new AdminController(
43
+                $c->query('AppName'),
44
+                $c->query('Request'),
45
+                $c->getServer()->getJobList(),
46
+                $c->getServer()->getSecureRandom(),
47
+                $c->getServer()->getConfig(),
48
+                new TimeFactory(),
49
+                $c->getServer()->getL10N($c->query('AppName')),
50
+                new UpdateChecker($updater),
51
+                $c->getServer()->getDateTimeFormatter()
52
+            );
53
+        });
54
+    }
55 55
 
56 56
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 use OCP\AppFramework\IAppContainer;
31 31
 
32 32
 class Application extends App {
33
-	public function __construct (array $urlParams = array()) {
33
+	public function __construct(array $urlParams = array()) {
34 34
 		parent::__construct('updatenotification', $urlParams);
35 35
 		$container = $this->getContainer();
36 36
 
Please login to merge, or discard this patch.
apps/updatenotification/lib/ResetTokenBackgroundJob.php 2 patches
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -34,44 +34,44 @@
 block discarded – undo
34 34
  * @package OCA\UpdateNotification
35 35
  */
36 36
 class ResetTokenBackgroundJob extends TimedJob {
37
-	/** @var IConfig */
38
-	private $config;
39
-	/** @var ITimeFactory */
40
-	private $timeFactory;
37
+    /** @var IConfig */
38
+    private $config;
39
+    /** @var ITimeFactory */
40
+    private $timeFactory;
41 41
 
42
-	/**
43
-	 * @param IConfig|null $config
44
-	 * @param ITimeFactory|null $timeFactory
45
-	 */
46
-	public function __construct(IConfig $config = null,
47
-								ITimeFactory $timeFactory = null) {
48
-		// Run all 10 minutes
49
-		$this->setInterval(60 * 10);
42
+    /**
43
+     * @param IConfig|null $config
44
+     * @param ITimeFactory|null $timeFactory
45
+     */
46
+    public function __construct(IConfig $config = null,
47
+                                ITimeFactory $timeFactory = null) {
48
+        // Run all 10 minutes
49
+        $this->setInterval(60 * 10);
50 50
 
51
-		if ($config instanceof IConfig && $timeFactory instanceof ITimeFactory) {
52
-			$this->config = $config;
53
-			$this->timeFactory = $timeFactory;
54
-		} else {
55
-			$this->fixDIForJobs();
56
-		}
57
-	}
51
+        if ($config instanceof IConfig && $timeFactory instanceof ITimeFactory) {
52
+            $this->config = $config;
53
+            $this->timeFactory = $timeFactory;
54
+        } else {
55
+            $this->fixDIForJobs();
56
+        }
57
+    }
58 58
 
59
-	/**
60
-	 * DI for jobs
61
-	 */
62
-	private function fixDIForJobs() {
63
-		$this->config = \OC::$server->getConfig();
64
-		$this->timeFactory = new TimeFactory();
65
-	}
59
+    /**
60
+     * DI for jobs
61
+     */
62
+    private function fixDIForJobs() {
63
+        $this->config = \OC::$server->getConfig();
64
+        $this->timeFactory = new TimeFactory();
65
+    }
66 66
 
67
-	/**
68
-	 * @param $argument
69
-	 */
70
-	protected function run($argument) {
71
-		// Delete old tokens after 2 days
72
-		if($this->timeFactory->getTime() - $this->config->getAppValue('core', 'updater.secret.created', $this->timeFactory->getTime()) >= 172800) {
73
-			$this->config->deleteSystemValue('updater.secret');
74
-		}
75
-	}
67
+    /**
68
+     * @param $argument
69
+     */
70
+    protected function run($argument) {
71
+        // Delete old tokens after 2 days
72
+        if($this->timeFactory->getTime() - $this->config->getAppValue('core', 'updater.secret.created', $this->timeFactory->getTime()) >= 172800) {
73
+            $this->config->deleteSystemValue('updater.secret');
74
+        }
75
+    }
76 76
 
77 77
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 	 */
70 70
 	protected function run($argument) {
71 71
 		// Delete old tokens after 2 days
72
-		if($this->timeFactory->getTime() - $this->config->getAppValue('core', 'updater.secret.created', $this->timeFactory->getTime()) >= 172800) {
72
+		if ($this->timeFactory->getTime() - $this->config->getAppValue('core', 'updater.secret.created', $this->timeFactory->getTime()) >= 172800) {
73 73
 			$this->config->deleteSystemValue('updater.secret');
74 74
 		}
75 75
 	}
Please login to merge, or discard this patch.
apps/updatenotification/appinfo/routes.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,6 +25,6 @@
 block discarded – undo
25 25
 
26 26
 $application = new Application();
27 27
 $application->registerRoutes($this, ['routes' => [
28
-	['name' => 'Admin#createCredentials', 'url' => '/credentials', 'verb' => 'GET'],
29
-	['name' => 'Admin#setChannel', 'url' => '/channel', 'verb' => 'POST'],
28
+    ['name' => 'Admin#createCredentials', 'url' => '/credentials', 'verb' => 'GET'],
29
+    ['name' => 'Admin#setChannel', 'url' => '/channel', 'verb' => 'POST'],
30 30
 ]]);
Please login to merge, or discard this patch.
apps/updatenotification/appinfo/app.php 2 patches
Indentation   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -23,33 +23,33 @@
 block discarded – undo
23 23
  */
24 24
 
25 25
 if(\OC::$server->getConfig()->getSystemValue('updatechecker', true) === true) {
26
-	$updater = new \OC\Updater\VersionCheck(
27
-		\OC::$server->getHTTPClientService(),
28
-		\OC::$server->getConfig()
29
-	);
30
-	$updateChecker = new \OCA\UpdateNotification\UpdateChecker(
31
-		$updater
32
-	);
26
+    $updater = new \OC\Updater\VersionCheck(
27
+        \OC::$server->getHTTPClientService(),
28
+        \OC::$server->getConfig()
29
+    );
30
+    $updateChecker = new \OCA\UpdateNotification\UpdateChecker(
31
+        $updater
32
+    );
33 33
 
34
-	$userObject = \OC::$server->getUserSession()->getUser();
35
-	if($userObject !== null) {
36
-		if(\OC::$server->getGroupManager()->isAdmin($userObject->getUID()) &&
37
-			!\OC::$server->getAppManager()->isEnabledForUser('notifications')) {
38
-			if($updateChecker->getUpdateState() !== []) {
39
-				\OCP\Util::addScript('updatenotification', 'notification');
40
-				OC_Hook::connect('\OCP\Config', 'js', $updateChecker, 'getJavaScript');
41
-			}
42
-		}
43
-	}
34
+    $userObject = \OC::$server->getUserSession()->getUser();
35
+    if($userObject !== null) {
36
+        if(\OC::$server->getGroupManager()->isAdmin($userObject->getUID()) &&
37
+            !\OC::$server->getAppManager()->isEnabledForUser('notifications')) {
38
+            if($updateChecker->getUpdateState() !== []) {
39
+                \OCP\Util::addScript('updatenotification', 'notification');
40
+                OC_Hook::connect('\OCP\Config', 'js', $updateChecker, 'getJavaScript');
41
+            }
42
+        }
43
+    }
44 44
 
45
-	$manager = \OC::$server->getNotificationManager();
46
-	$manager->registerNotifier(function() use ($manager) {
47
-		return \OC::$server->query(\OCA\UpdateNotification\Notification\Notifier::class);
48
-	}, function() {
49
-		$l = \OC::$server->getL10N('updatenotification');
50
-		return [
51
-			'id' => 'updatenotification',
52
-			'name' => $l->t('Update notifications'),
53
-		];
54
-	});
45
+    $manager = \OC::$server->getNotificationManager();
46
+    $manager->registerNotifier(function() use ($manager) {
47
+        return \OC::$server->query(\OCA\UpdateNotification\Notification\Notifier::class);
48
+    }, function() {
49
+        $l = \OC::$server->getL10N('updatenotification');
50
+        return [
51
+            'id' => 'updatenotification',
52
+            'name' => $l->t('Update notifications'),
53
+        ];
54
+    });
55 55
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
  *
23 23
  */
24 24
 
25
-if(\OC::$server->getConfig()->getSystemValue('updatechecker', true) === true) {
25
+if (\OC::$server->getConfig()->getSystemValue('updatechecker', true) === true) {
26 26
 	$updater = new \OC\Updater\VersionCheck(
27 27
 		\OC::$server->getHTTPClientService(),
28 28
 		\OC::$server->getConfig()
@@ -32,10 +32,10 @@  discard block
 block discarded – undo
32 32
 	);
33 33
 
34 34
 	$userObject = \OC::$server->getUserSession()->getUser();
35
-	if($userObject !== null) {
36
-		if(\OC::$server->getGroupManager()->isAdmin($userObject->getUID()) &&
35
+	if ($userObject !== null) {
36
+		if (\OC::$server->getGroupManager()->isAdmin($userObject->getUID()) &&
37 37
 			!\OC::$server->getAppManager()->isEnabledForUser('notifications')) {
38
-			if($updateChecker->getUpdateState() !== []) {
38
+			if ($updateChecker->getUpdateState() !== []) {
39 39
 				\OCP\Util::addScript('updatenotification', 'notification');
40 40
 				OC_Hook::connect('\OCP\Config', 'js', $updateChecker, 'getJavaScript');
41 41
 			}
Please login to merge, or discard this patch.
apps/theming/templates/settings-admin.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,5 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
-
4 3
  *
5 4
  * @author Bjoern Schiessle <[email protected]>
6 5
  * @author Jan-Christoph Borchardt <[email protected]>
Please login to merge, or discard this patch.
apps/theming/lib/Controller/IconController.php 2 patches
Indentation   +133 added lines, -133 removed lines patch added patch discarded remove patch
@@ -36,142 +36,142 @@
 block discarded – undo
36 36
 use OCP\IConfig;
37 37
 
38 38
 class IconController extends Controller {
39
-	/** @var ThemingDefaults */
40
-	private $themingDefaults;
41
-	/** @var Util */
42
-	private $util;
43
-	/** @var ITimeFactory */
44
-	private $timeFactory;
45
-	/** @var IConfig */
46
-	private $config;
47
-	/** @var IconBuilder */
48
-	private $iconBuilder;
49
-	/** @var ImageManager */
50
-	private $imageManager;
39
+    /** @var ThemingDefaults */
40
+    private $themingDefaults;
41
+    /** @var Util */
42
+    private $util;
43
+    /** @var ITimeFactory */
44
+    private $timeFactory;
45
+    /** @var IConfig */
46
+    private $config;
47
+    /** @var IconBuilder */
48
+    private $iconBuilder;
49
+    /** @var ImageManager */
50
+    private $imageManager;
51 51
 
52
-	/**
53
-	 * IconController constructor.
54
-	 *
55
-	 * @param string $appName
56
-	 * @param IRequest $request
57
-	 * @param ThemingDefaults $themingDefaults
58
-	 * @param Util $util
59
-	 * @param ITimeFactory $timeFactory
60
-	 * @param IConfig $config
61
-	 * @param IconBuilder $iconBuilder
62
-	 * @param ImageManager $imageManager
63
-	 */
64
-	public function __construct(
65
-		$appName,
66
-		IRequest $request,
67
-		ThemingDefaults $themingDefaults,
68
-		Util $util,
69
-		ITimeFactory $timeFactory,
70
-		IConfig $config,
71
-		IconBuilder $iconBuilder,
72
-		ImageManager $imageManager
73
-	) {
74
-		parent::__construct($appName, $request);
52
+    /**
53
+     * IconController constructor.
54
+     *
55
+     * @param string $appName
56
+     * @param IRequest $request
57
+     * @param ThemingDefaults $themingDefaults
58
+     * @param Util $util
59
+     * @param ITimeFactory $timeFactory
60
+     * @param IConfig $config
61
+     * @param IconBuilder $iconBuilder
62
+     * @param ImageManager $imageManager
63
+     */
64
+    public function __construct(
65
+        $appName,
66
+        IRequest $request,
67
+        ThemingDefaults $themingDefaults,
68
+        Util $util,
69
+        ITimeFactory $timeFactory,
70
+        IConfig $config,
71
+        IconBuilder $iconBuilder,
72
+        ImageManager $imageManager
73
+    ) {
74
+        parent::__construct($appName, $request);
75 75
 
76
-		$this->themingDefaults = $themingDefaults;
77
-		$this->util = $util;
78
-		$this->timeFactory = $timeFactory;
79
-		$this->config = $config;
80
-		$this->iconBuilder = $iconBuilder;
81
-		$this->imageManager = $imageManager;
82
-	}
76
+        $this->themingDefaults = $themingDefaults;
77
+        $this->util = $util;
78
+        $this->timeFactory = $timeFactory;
79
+        $this->config = $config;
80
+        $this->iconBuilder = $iconBuilder;
81
+        $this->imageManager = $imageManager;
82
+    }
83 83
 
84
-	/**
85
-	 * @PublicPage
86
-	 * @NoCSRFRequired
87
-	 *
88
-	 * @param $app string app name
89
-	 * @param $image string image file name (svg required)
90
-	 * @return FileDisplayResponse|NotFoundResponse
91
-	 */
92
-	public function getThemedIcon($app, $image) {
93
-		try {
94
-			$iconFile = $this->imageManager->getCachedImage("icon-" . $app . '-' . str_replace("/","_",$image));
95
-		} catch (NotFoundException $exception) {
96
-			$icon = $this->iconBuilder->colorSvg($app, $image);
97
-			if ($icon === false || $icon === "") {
98
-				return new NotFoundResponse();
99
-			}
100
-			$iconFile = $this->imageManager->setCachedImage("icon-" . $app . '-' . str_replace("/","_",$image), $icon);
101
-		}
102
-		if ($iconFile !== false) {
103
-			$response = new FileDisplayResponse($iconFile, Http::STATUS_OK, ['Content-Type' => 'image/svg+xml']);
104
-			$response->cacheFor(86400);
105
-			$expires = new \DateTime();
106
-			$expires->setTimestamp($this->timeFactory->getTime());
107
-			$expires->add(new \DateInterval('PT24H'));
108
-			$response->addHeader('Expires', $expires->format(\DateTime::RFC2822));
109
-			$response->addHeader('Pragma', 'cache');
110
-			return $response;
111
-		} else {
112
-			return new NotFoundResponse();
113
-		}
114
-	}
84
+    /**
85
+     * @PublicPage
86
+     * @NoCSRFRequired
87
+     *
88
+     * @param $app string app name
89
+     * @param $image string image file name (svg required)
90
+     * @return FileDisplayResponse|NotFoundResponse
91
+     */
92
+    public function getThemedIcon($app, $image) {
93
+        try {
94
+            $iconFile = $this->imageManager->getCachedImage("icon-" . $app . '-' . str_replace("/","_",$image));
95
+        } catch (NotFoundException $exception) {
96
+            $icon = $this->iconBuilder->colorSvg($app, $image);
97
+            if ($icon === false || $icon === "") {
98
+                return new NotFoundResponse();
99
+            }
100
+            $iconFile = $this->imageManager->setCachedImage("icon-" . $app . '-' . str_replace("/","_",$image), $icon);
101
+        }
102
+        if ($iconFile !== false) {
103
+            $response = new FileDisplayResponse($iconFile, Http::STATUS_OK, ['Content-Type' => 'image/svg+xml']);
104
+            $response->cacheFor(86400);
105
+            $expires = new \DateTime();
106
+            $expires->setTimestamp($this->timeFactory->getTime());
107
+            $expires->add(new \DateInterval('PT24H'));
108
+            $response->addHeader('Expires', $expires->format(\DateTime::RFC2822));
109
+            $response->addHeader('Pragma', 'cache');
110
+            return $response;
111
+        } else {
112
+            return new NotFoundResponse();
113
+        }
114
+    }
115 115
 
116
-	/**
117
-	 * Return a 32x32 favicon as png
118
-	 *
119
-	 * @PublicPage
120
-	 * @NoCSRFRequired
121
-	 *
122
-	 * @param $app string app name
123
-	 * @return FileDisplayResponse|NotFoundResponse
124
-	 */
125
-	public function getFavicon($app = "core") {
126
-		if ($this->themingDefaults->shouldReplaceIcons()) {
127
-			try {
128
-				$iconFile = $this->imageManager->getCachedImage('favIcon-' . $app);
129
-			} catch (NotFoundException $exception) {
130
-				$icon = $this->iconBuilder->getFavicon($app);
131
-				$iconFile = $this->imageManager->setCachedImage('favIcon-' . $app, $icon);
132
-			}
133
-			if ($iconFile !== false) {
134
-				$response = new FileDisplayResponse($iconFile, Http::STATUS_OK, ['Content-Type' => 'image/x-icon']);
135
-				$response->cacheFor(86400);
136
-				$expires = new \DateTime();
137
-				$expires->setTimestamp($this->timeFactory->getTime());
138
-				$expires->add(new \DateInterval('PT24H'));
139
-				$response->addHeader('Expires', $expires->format(\DateTime::RFC2822));
140
-				$response->addHeader('Pragma', 'cache');
141
-				return $response;
142
-			}
143
-		}
144
-		return new NotFoundResponse();
145
-	}
116
+    /**
117
+     * Return a 32x32 favicon as png
118
+     *
119
+     * @PublicPage
120
+     * @NoCSRFRequired
121
+     *
122
+     * @param $app string app name
123
+     * @return FileDisplayResponse|NotFoundResponse
124
+     */
125
+    public function getFavicon($app = "core") {
126
+        if ($this->themingDefaults->shouldReplaceIcons()) {
127
+            try {
128
+                $iconFile = $this->imageManager->getCachedImage('favIcon-' . $app);
129
+            } catch (NotFoundException $exception) {
130
+                $icon = $this->iconBuilder->getFavicon($app);
131
+                $iconFile = $this->imageManager->setCachedImage('favIcon-' . $app, $icon);
132
+            }
133
+            if ($iconFile !== false) {
134
+                $response = new FileDisplayResponse($iconFile, Http::STATUS_OK, ['Content-Type' => 'image/x-icon']);
135
+                $response->cacheFor(86400);
136
+                $expires = new \DateTime();
137
+                $expires->setTimestamp($this->timeFactory->getTime());
138
+                $expires->add(new \DateInterval('PT24H'));
139
+                $response->addHeader('Expires', $expires->format(\DateTime::RFC2822));
140
+                $response->addHeader('Pragma', 'cache');
141
+                return $response;
142
+            }
143
+        }
144
+        return new NotFoundResponse();
145
+    }
146 146
 
147
-	/**
148
-	 * Return a 512x512 icon for touch devices
149
-	 *
150
-	 * @PublicPage
151
-	 * @NoCSRFRequired
152
-	 *
153
-	 * @param $app string app name
154
-	 * @return FileDisplayResponse|NotFoundResponse
155
-	 */
156
-	public function getTouchIcon($app = "core") {
157
-		if ($this->themingDefaults->shouldReplaceIcons()) {
158
-			try {
159
-				$iconFile = $this->imageManager->getCachedImage('touchIcon-' . $app);
160
-			} catch (NotFoundException $exception) {
161
-				$icon = $this->iconBuilder->getTouchIcon($app);
162
-				$iconFile = $this->imageManager->setCachedImage('touchIcon-' . $app, $icon);
163
-			}
164
-			if ($iconFile !== false) {
165
-				$response = new FileDisplayResponse($iconFile, Http::STATUS_OK, ['Content-Type' => 'image/png']);
166
-				$response->cacheFor(86400);
167
-				$expires = new \DateTime();
168
-				$expires->setTimestamp($this->timeFactory->getTime());
169
-				$expires->add(new \DateInterval('PT24H'));
170
-				$response->addHeader('Expires', $expires->format(\DateTime::RFC2822));
171
-				$response->addHeader('Pragma', 'cache');
172
-				return $response;
173
-			}
174
-		}
175
-		return new NotFoundResponse();
176
-	}
147
+    /**
148
+     * Return a 512x512 icon for touch devices
149
+     *
150
+     * @PublicPage
151
+     * @NoCSRFRequired
152
+     *
153
+     * @param $app string app name
154
+     * @return FileDisplayResponse|NotFoundResponse
155
+     */
156
+    public function getTouchIcon($app = "core") {
157
+        if ($this->themingDefaults->shouldReplaceIcons()) {
158
+            try {
159
+                $iconFile = $this->imageManager->getCachedImage('touchIcon-' . $app);
160
+            } catch (NotFoundException $exception) {
161
+                $icon = $this->iconBuilder->getTouchIcon($app);
162
+                $iconFile = $this->imageManager->setCachedImage('touchIcon-' . $app, $icon);
163
+            }
164
+            if ($iconFile !== false) {
165
+                $response = new FileDisplayResponse($iconFile, Http::STATUS_OK, ['Content-Type' => 'image/png']);
166
+                $response->cacheFor(86400);
167
+                $expires = new \DateTime();
168
+                $expires->setTimestamp($this->timeFactory->getTime());
169
+                $expires->add(new \DateInterval('PT24H'));
170
+                $response->addHeader('Expires', $expires->format(\DateTime::RFC2822));
171
+                $response->addHeader('Pragma', 'cache');
172
+                return $response;
173
+            }
174
+        }
175
+        return new NotFoundResponse();
176
+    }
177 177
 }
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -91,13 +91,13 @@  discard block
 block discarded – undo
91 91
 	 */
92 92
 	public function getThemedIcon($app, $image) {
93 93
 		try {
94
-			$iconFile = $this->imageManager->getCachedImage("icon-" . $app . '-' . str_replace("/","_",$image));
94
+			$iconFile = $this->imageManager->getCachedImage("icon-".$app.'-'.str_replace("/", "_", $image));
95 95
 		} catch (NotFoundException $exception) {
96 96
 			$icon = $this->iconBuilder->colorSvg($app, $image);
97 97
 			if ($icon === false || $icon === "") {
98 98
 				return new NotFoundResponse();
99 99
 			}
100
-			$iconFile = $this->imageManager->setCachedImage("icon-" . $app . '-' . str_replace("/","_",$image), $icon);
100
+			$iconFile = $this->imageManager->setCachedImage("icon-".$app.'-'.str_replace("/", "_", $image), $icon);
101 101
 		}
102 102
 		if ($iconFile !== false) {
103 103
 			$response = new FileDisplayResponse($iconFile, Http::STATUS_OK, ['Content-Type' => 'image/svg+xml']);
@@ -125,10 +125,10 @@  discard block
 block discarded – undo
125 125
 	public function getFavicon($app = "core") {
126 126
 		if ($this->themingDefaults->shouldReplaceIcons()) {
127 127
 			try {
128
-				$iconFile = $this->imageManager->getCachedImage('favIcon-' . $app);
128
+				$iconFile = $this->imageManager->getCachedImage('favIcon-'.$app);
129 129
 			} catch (NotFoundException $exception) {
130 130
 				$icon = $this->iconBuilder->getFavicon($app);
131
-				$iconFile = $this->imageManager->setCachedImage('favIcon-' . $app, $icon);
131
+				$iconFile = $this->imageManager->setCachedImage('favIcon-'.$app, $icon);
132 132
 			}
133 133
 			if ($iconFile !== false) {
134 134
 				$response = new FileDisplayResponse($iconFile, Http::STATUS_OK, ['Content-Type' => 'image/x-icon']);
@@ -156,10 +156,10 @@  discard block
 block discarded – undo
156 156
 	public function getTouchIcon($app = "core") {
157 157
 		if ($this->themingDefaults->shouldReplaceIcons()) {
158 158
 			try {
159
-				$iconFile = $this->imageManager->getCachedImage('touchIcon-' . $app);
159
+				$iconFile = $this->imageManager->getCachedImage('touchIcon-'.$app);
160 160
 			} catch (NotFoundException $exception) {
161 161
 				$icon = $this->iconBuilder->getTouchIcon($app);
162
-				$iconFile = $this->imageManager->setCachedImage('touchIcon-' . $app, $icon);
162
+				$iconFile = $this->imageManager->setCachedImage('touchIcon-'.$app, $icon);
163 163
 			}
164 164
 			if ($iconFile !== false) {
165 165
 				$response = new FileDisplayResponse($iconFile, Http::STATUS_OK, ['Content-Type' => 'image/png']);
Please login to merge, or discard this patch.
apps/theming/lib/IconBuilder.php 2 patches
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	 */
54 54
 	public function getFavicon($app) {
55 55
 		$icon = $this->renderAppIcon($app, 32);
56
-		if($icon === false) {
56
+		if ($icon === false) {
57 57
 			return false;
58 58
 		}
59 59
 		$icon->setImageFormat("png24");
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 	 */
69 69
 	public function getTouchIcon($app) {
70 70
 		$icon = $this->renderAppIcon($app, 512);
71
-		if($icon === false) {
71
+		if ($icon === false) {
72 72
 			return false;
73 73
 		}
74 74
 		$icon->setImageFormat("png24");
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 			return false;
94 94
 		}
95 95
 
96
-		if($appIconContent === false) {
96
+		if ($appIconContent === false) {
97 97
 			return false;
98 98
 		}
99 99
 
@@ -101,13 +101,13 @@  discard block
 block discarded – undo
101 101
 		$mime = mime_content_type($appIcon);
102 102
 
103 103
 		// generate background image with rounded corners
104
-		$background = '<?xml version="1.0" encoding="UTF-8"?>' .
105
-			'<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:cc="http://creativecommons.org/ns#" width="512" height="512" xmlns:xlink="http://www.w3.org/1999/xlink">' .
106
-			'<rect x="0" y="0" rx="100" ry="100" width="512" height="512" style="fill:' . $color . ';" />' .
104
+		$background = '<?xml version="1.0" encoding="UTF-8"?>'.
105
+			'<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:cc="http://creativecommons.org/ns#" width="512" height="512" xmlns:xlink="http://www.w3.org/1999/xlink">'.
106
+			'<rect x="0" y="0" rx="100" ry="100" width="512" height="512" style="fill:'.$color.';" />'.
107 107
 			'</svg>';
108 108
 		// resize svg magic as this seems broken in Imagemagick
109
-		if($mime === "image/svg+xml" || substr($appIconContent, 0, 4) === "<svg") {
110
-			if(substr($appIconContent, 0, 5) !== "<?xml") {
109
+		if ($mime === "image/svg+xml" || substr($appIconContent, 0, 4) === "<svg") {
110
+			if (substr($appIconContent, 0, 5) !== "<?xml") {
111 111
 				$svg = "<?xml version=\"1.0\"?>".$appIconContent;
112 112
 			} else {
113 113
 				$svg = $appIconContent;
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
 			$res = $tmp->getImageResolution();
120 120
 			$tmp->destroy();
121 121
 
122
-			if($x>$y) {
122
+			if ($x > $y) {
123 123
 				$max = $x;
124 124
 			} else {
125 125
 				$max = $y;
@@ -127,8 +127,8 @@  discard block
 block discarded – undo
127 127
 
128 128
 			// convert svg to resized image
129 129
 			$appIconFile = new Imagick();
130
-			$resX = (int)(512 * $res['x'] / $max * 2.53);
131
-			$resY = (int)(512 * $res['y'] / $max * 2.53);
130
+			$resX = (int) (512 * $res['x'] / $max * 2.53);
131
+			$resY = (int) (512 * $res['y'] / $max * 2.53);
132 132
 			$appIconFile->setResolution($resX, $resY);
133 133
 			$appIconFile->setBackgroundColor(new ImagickPixel('transparent'));
134 134
 			$appIconFile->readImageBlob($svg);
@@ -141,10 +141,10 @@  discard block
 block discarded – undo
141 141
 		}
142 142
 
143 143
 		// offset for icon positioning
144
-		$border_w = (int)($appIconFile->getImageWidth() * 0.05);
145
-		$border_h = (int)($appIconFile->getImageHeight() * 0.05);
146
-		$innerWidth = (int)($appIconFile->getImageWidth() - $border_w * 2);
147
-		$innerHeight = (int)($appIconFile->getImageHeight() - $border_h * 2);
144
+		$border_w = (int) ($appIconFile->getImageWidth() * 0.05);
145
+		$border_h = (int) ($appIconFile->getImageHeight() * 0.05);
146
+		$innerWidth = (int) ($appIconFile->getImageWidth() - $border_w * 2);
147
+		$innerHeight = (int) ($appIconFile->getImageHeight() - $border_h * 2);
148 148
 		$appIconFile->adaptiveResizeImage($innerWidth, $innerHeight);
149 149
 		// center icon
150 150
 		$offset_w = 512 / 2 - $innerWidth / 2;
Please login to merge, or discard this patch.
Indentation   +157 added lines, -157 removed lines patch added patch discarded remove patch
@@ -28,162 +28,162 @@
 block discarded – undo
28 28
 use OCP\App\AppPathNotFoundException;
29 29
 
30 30
 class IconBuilder {
31
-	/** @var ThemingDefaults */
32
-	private $themingDefaults;
33
-	/** @var Util */
34
-	private $util;
35
-
36
-	/**
37
-	 * IconBuilder constructor.
38
-	 *
39
-	 * @param ThemingDefaults $themingDefaults
40
-	 * @param Util $util
41
-	 */
42
-	public function __construct(
43
-		ThemingDefaults $themingDefaults,
44
-		Util $util
45
-	) {
46
-		$this->themingDefaults = $themingDefaults;
47
-		$this->util = $util;
48
-	}
49
-
50
-	/**
51
-	 * @param $app string app name
52
-	 * @return string|false image blob
53
-	 */
54
-	public function getFavicon($app) {
55
-		$icon = $this->renderAppIcon($app, 32);
56
-		if($icon === false) {
57
-			return false;
58
-		}
59
-		$icon->setImageFormat("png24");
60
-		$data = $icon->getImageBlob();
61
-		$icon->destroy();
62
-		return $data;
63
-	}
64
-
65
-	/**
66
-	 * @param $app string app name
67
-	 * @return string|false image blob
68
-	 */
69
-	public function getTouchIcon($app) {
70
-		$icon = $this->renderAppIcon($app, 512);
71
-		if($icon === false) {
72
-			return false;
73
-		}
74
-		$icon->setImageFormat("png24");
75
-		$data = $icon->getImageBlob();
76
-		$icon->destroy();
77
-		return $data;
78
-	}
79
-
80
-	/**
81
-	 * Render app icon on themed background color
82
-	 * fallback to logo
83
-	 *
84
-	 * @param $app string app name
85
-	 * @param $size int size of the icon in px
86
-	 * @return Imagick|false
87
-	 */
88
-	public function renderAppIcon($app, $size) {
89
-		try {
90
-			$appIcon = $this->util->getAppIcon($app);
91
-			$appIconContent = file_get_contents($appIcon);
92
-		} catch (AppPathNotFoundException $e) {
93
-			return false;
94
-		}
95
-
96
-		if($appIconContent === false) {
97
-			return false;
98
-		}
99
-
100
-		$color = $this->themingDefaults->getColorPrimary();
101
-		$mime = mime_content_type($appIcon);
102
-
103
-		// generate background image with rounded corners
104
-		$background = '<?xml version="1.0" encoding="UTF-8"?>' .
105
-			'<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:cc="http://creativecommons.org/ns#" width="512" height="512" xmlns:xlink="http://www.w3.org/1999/xlink">' .
106
-			'<rect x="0" y="0" rx="100" ry="100" width="512" height="512" style="fill:' . $color . ';" />' .
107
-			'</svg>';
108
-		// resize svg magic as this seems broken in Imagemagick
109
-		if($mime === "image/svg+xml" || substr($appIconContent, 0, 4) === "<svg") {
110
-			if(substr($appIconContent, 0, 5) !== "<?xml") {
111
-				$svg = "<?xml version=\"1.0\"?>".$appIconContent;
112
-			} else {
113
-				$svg = $appIconContent;
114
-			}
115
-			$tmp = new Imagick();
116
-			$tmp->readImageBlob($svg);
117
-			$x = $tmp->getImageWidth();
118
-			$y = $tmp->getImageHeight();
119
-			$res = $tmp->getImageResolution();
120
-			$tmp->destroy();
121
-
122
-			if($x>$y) {
123
-				$max = $x;
124
-			} else {
125
-				$max = $y;
126
-			}
127
-
128
-			// convert svg to resized image
129
-			$appIconFile = new Imagick();
130
-			$resX = (int)(512 * $res['x'] / $max * 2.53);
131
-			$resY = (int)(512 * $res['y'] / $max * 2.53);
132
-			$appIconFile->setResolution($resX, $resY);
133
-			$appIconFile->setBackgroundColor(new ImagickPixel('transparent'));
134
-			$appIconFile->readImageBlob($svg);
135
-			$appIconFile->scaleImage(512, 512, true);
136
-		} else {
137
-			$appIconFile = new Imagick();
138
-			$appIconFile->setBackgroundColor(new ImagickPixel('transparent'));
139
-			$appIconFile->readImageBlob(file_get_contents($appIcon));
140
-			$appIconFile->scaleImage(512, 512, true);
141
-		}
142
-
143
-		// offset for icon positioning
144
-		$border_w = (int)($appIconFile->getImageWidth() * 0.05);
145
-		$border_h = (int)($appIconFile->getImageHeight() * 0.05);
146
-		$innerWidth = (int)($appIconFile->getImageWidth() - $border_w * 2);
147
-		$innerHeight = (int)($appIconFile->getImageHeight() - $border_h * 2);
148
-		$appIconFile->adaptiveResizeImage($innerWidth, $innerHeight);
149
-		// center icon
150
-		$offset_w = 512 / 2 - $innerWidth / 2;
151
-		$offset_h = 512 / 2 - $innerHeight / 2;
152
-
153
-		$appIconFile->setImageFormat("png24");
154
-
155
-		$finalIconFile = new Imagick();
156
-		$finalIconFile->setBackgroundColor(new ImagickPixel('transparent'));
157
-		$finalIconFile->readImageBlob($background);
158
-		$finalIconFile->setImageVirtualPixelMethod(Imagick::VIRTUALPIXELMETHOD_TRANSPARENT);
159
-		$finalIconFile->setImageArtifact('compose:args', "1,0,-0.5,0.5");
160
-		$finalIconFile->compositeImage($appIconFile, Imagick::COMPOSITE_ATOP, $offset_w, $offset_h);
161
-		$finalIconFile->setImageFormat('png24');
162
-		if (defined("Imagick::INTERPOLATE_BICUBIC") === true) {
163
-			$filter = Imagick::INTERPOLATE_BICUBIC;
164
-		} else {
165
-			$filter = Imagick::FILTER_LANCZOS;
166
-		}
167
-		$finalIconFile->resizeImage($size, $size, $filter, 1, false);
168
-
169
-		$appIconFile->destroy();
170
-		return $finalIconFile;
171
-	}
172
-
173
-	public function colorSvg($app, $image) {
174
-		try {
175
-			$imageFile = $this->util->getAppImage($app, $image);
176
-		} catch (AppPathNotFoundException $e) {
177
-			return false;
178
-		}
179
-		$svg = file_get_contents($imageFile);
180
-		if ($svg !== false && $svg !== "") {
181
-			$color = $this->util->elementColor($this->themingDefaults->getColorPrimary());
182
-			$svg = $this->util->colorizeSvg($svg, $color);
183
-			return $svg;
184
-		} else {
185
-			return false;
186
-		}
187
-	}
31
+    /** @var ThemingDefaults */
32
+    private $themingDefaults;
33
+    /** @var Util */
34
+    private $util;
35
+
36
+    /**
37
+     * IconBuilder constructor.
38
+     *
39
+     * @param ThemingDefaults $themingDefaults
40
+     * @param Util $util
41
+     */
42
+    public function __construct(
43
+        ThemingDefaults $themingDefaults,
44
+        Util $util
45
+    ) {
46
+        $this->themingDefaults = $themingDefaults;
47
+        $this->util = $util;
48
+    }
49
+
50
+    /**
51
+     * @param $app string app name
52
+     * @return string|false image blob
53
+     */
54
+    public function getFavicon($app) {
55
+        $icon = $this->renderAppIcon($app, 32);
56
+        if($icon === false) {
57
+            return false;
58
+        }
59
+        $icon->setImageFormat("png24");
60
+        $data = $icon->getImageBlob();
61
+        $icon->destroy();
62
+        return $data;
63
+    }
64
+
65
+    /**
66
+     * @param $app string app name
67
+     * @return string|false image blob
68
+     */
69
+    public function getTouchIcon($app) {
70
+        $icon = $this->renderAppIcon($app, 512);
71
+        if($icon === false) {
72
+            return false;
73
+        }
74
+        $icon->setImageFormat("png24");
75
+        $data = $icon->getImageBlob();
76
+        $icon->destroy();
77
+        return $data;
78
+    }
79
+
80
+    /**
81
+     * Render app icon on themed background color
82
+     * fallback to logo
83
+     *
84
+     * @param $app string app name
85
+     * @param $size int size of the icon in px
86
+     * @return Imagick|false
87
+     */
88
+    public function renderAppIcon($app, $size) {
89
+        try {
90
+            $appIcon = $this->util->getAppIcon($app);
91
+            $appIconContent = file_get_contents($appIcon);
92
+        } catch (AppPathNotFoundException $e) {
93
+            return false;
94
+        }
95
+
96
+        if($appIconContent === false) {
97
+            return false;
98
+        }
99
+
100
+        $color = $this->themingDefaults->getColorPrimary();
101
+        $mime = mime_content_type($appIcon);
102
+
103
+        // generate background image with rounded corners
104
+        $background = '<?xml version="1.0" encoding="UTF-8"?>' .
105
+            '<svg xmlns="http://www.w3.org/2000/svg" version="1.1" xmlns:cc="http://creativecommons.org/ns#" width="512" height="512" xmlns:xlink="http://www.w3.org/1999/xlink">' .
106
+            '<rect x="0" y="0" rx="100" ry="100" width="512" height="512" style="fill:' . $color . ';" />' .
107
+            '</svg>';
108
+        // resize svg magic as this seems broken in Imagemagick
109
+        if($mime === "image/svg+xml" || substr($appIconContent, 0, 4) === "<svg") {
110
+            if(substr($appIconContent, 0, 5) !== "<?xml") {
111
+                $svg = "<?xml version=\"1.0\"?>".$appIconContent;
112
+            } else {
113
+                $svg = $appIconContent;
114
+            }
115
+            $tmp = new Imagick();
116
+            $tmp->readImageBlob($svg);
117
+            $x = $tmp->getImageWidth();
118
+            $y = $tmp->getImageHeight();
119
+            $res = $tmp->getImageResolution();
120
+            $tmp->destroy();
121
+
122
+            if($x>$y) {
123
+                $max = $x;
124
+            } else {
125
+                $max = $y;
126
+            }
127
+
128
+            // convert svg to resized image
129
+            $appIconFile = new Imagick();
130
+            $resX = (int)(512 * $res['x'] / $max * 2.53);
131
+            $resY = (int)(512 * $res['y'] / $max * 2.53);
132
+            $appIconFile->setResolution($resX, $resY);
133
+            $appIconFile->setBackgroundColor(new ImagickPixel('transparent'));
134
+            $appIconFile->readImageBlob($svg);
135
+            $appIconFile->scaleImage(512, 512, true);
136
+        } else {
137
+            $appIconFile = new Imagick();
138
+            $appIconFile->setBackgroundColor(new ImagickPixel('transparent'));
139
+            $appIconFile->readImageBlob(file_get_contents($appIcon));
140
+            $appIconFile->scaleImage(512, 512, true);
141
+        }
142
+
143
+        // offset for icon positioning
144
+        $border_w = (int)($appIconFile->getImageWidth() * 0.05);
145
+        $border_h = (int)($appIconFile->getImageHeight() * 0.05);
146
+        $innerWidth = (int)($appIconFile->getImageWidth() - $border_w * 2);
147
+        $innerHeight = (int)($appIconFile->getImageHeight() - $border_h * 2);
148
+        $appIconFile->adaptiveResizeImage($innerWidth, $innerHeight);
149
+        // center icon
150
+        $offset_w = 512 / 2 - $innerWidth / 2;
151
+        $offset_h = 512 / 2 - $innerHeight / 2;
152
+
153
+        $appIconFile->setImageFormat("png24");
154
+
155
+        $finalIconFile = new Imagick();
156
+        $finalIconFile->setBackgroundColor(new ImagickPixel('transparent'));
157
+        $finalIconFile->readImageBlob($background);
158
+        $finalIconFile->setImageVirtualPixelMethod(Imagick::VIRTUALPIXELMETHOD_TRANSPARENT);
159
+        $finalIconFile->setImageArtifact('compose:args', "1,0,-0.5,0.5");
160
+        $finalIconFile->compositeImage($appIconFile, Imagick::COMPOSITE_ATOP, $offset_w, $offset_h);
161
+        $finalIconFile->setImageFormat('png24');
162
+        if (defined("Imagick::INTERPOLATE_BICUBIC") === true) {
163
+            $filter = Imagick::INTERPOLATE_BICUBIC;
164
+        } else {
165
+            $filter = Imagick::FILTER_LANCZOS;
166
+        }
167
+        $finalIconFile->resizeImage($size, $size, $filter, 1, false);
168
+
169
+        $appIconFile->destroy();
170
+        return $finalIconFile;
171
+    }
172
+
173
+    public function colorSvg($app, $image) {
174
+        try {
175
+            $imageFile = $this->util->getAppImage($app, $image);
176
+        } catch (AppPathNotFoundException $e) {
177
+            return false;
178
+        }
179
+        $svg = file_get_contents($imageFile);
180
+        if ($svg !== false && $svg !== "") {
181
+            $color = $this->util->elementColor($this->themingDefaults->getColorPrimary());
182
+            $svg = $this->util->colorizeSvg($svg, $color);
183
+            return $svg;
184
+        } else {
185
+            return false;
186
+        }
187
+    }
188 188
 
189 189
 }
Please login to merge, or discard this patch.
apps/theming/lib/Settings/Section.php 1 patch
Indentation   +46 added lines, -46 removed lines patch added patch discarded remove patch
@@ -28,55 +28,55 @@
 block discarded – undo
28 28
 use OCP\Settings\IIconSection;
29 29
 
30 30
 class Section implements IIconSection {
31
-	/** @var IL10N */
32
-	private $l;
33
-	/** @var IURLGenerator */
34
-	private $url;
31
+    /** @var IL10N */
32
+    private $l;
33
+    /** @var IURLGenerator */
34
+    private $url;
35 35
 
36
-	/**
37
-	 * @param IURLGenerator $url
38
-	 * @param IL10N $l
39
-	 */
40
-	public function __construct(IURLGenerator $url, IL10N $l) {
41
-		$this->url = $url;
42
-		$this->l = $l;
43
-	}
36
+    /**
37
+     * @param IURLGenerator $url
38
+     * @param IL10N $l
39
+     */
40
+    public function __construct(IURLGenerator $url, IL10N $l) {
41
+        $this->url = $url;
42
+        $this->l = $l;
43
+    }
44 44
 
45
-	/**
46
-	 * returns the ID of the section. It is supposed to be a lower case string,
47
-	 * e.g. 'ldap'
48
-	 *
49
-	 * @returns string
50
-	 */
51
-	public function getID() {
52
-		return 'theming';
53
-	}
45
+    /**
46
+     * returns the ID of the section. It is supposed to be a lower case string,
47
+     * e.g. 'ldap'
48
+     *
49
+     * @returns string
50
+     */
51
+    public function getID() {
52
+        return 'theming';
53
+    }
54 54
 
55
-	/**
56
-	 * returns the translated name as it should be displayed, e.g. 'LDAP / AD
57
-	 * integration'. Use the L10N service to translate it.
58
-	 *
59
-	 * @return string
60
-	 */
61
-	public function getName() {
62
-		return $this->l->t('Theming');
63
-	}
55
+    /**
56
+     * returns the translated name as it should be displayed, e.g. 'LDAP / AD
57
+     * integration'. Use the L10N service to translate it.
58
+     *
59
+     * @return string
60
+     */
61
+    public function getName() {
62
+        return $this->l->t('Theming');
63
+    }
64 64
 
65
-	/**
66
-	 * @return int whether the form should be rather on the top or bottom of
67
-	 * the settings navigation. The sections are arranged in ascending order of
68
-	 * the priority values. It is required to return a value between 0 and 99.
69
-	 *
70
-	 * E.g.: 70
71
-	 */
72
-	public function getPriority() {
73
-		return 30;
74
-	}
65
+    /**
66
+     * @return int whether the form should be rather on the top or bottom of
67
+     * the settings navigation. The sections are arranged in ascending order of
68
+     * the priority values. It is required to return a value between 0 and 99.
69
+     *
70
+     * E.g.: 70
71
+     */
72
+    public function getPriority() {
73
+        return 30;
74
+    }
75 75
 
76
-	/**
77
-	 * {@inheritdoc}
78
-	 */
79
-	public function getIcon() {
80
-		return $this->url->imagePath('theming', 'app-dark.svg');
81
-	}
76
+    /**
77
+     * {@inheritdoc}
78
+     */
79
+    public function getIcon() {
80
+        return $this->url->imagePath('theming', 'app-dark.svg');
81
+    }
82 82
 }
Please login to merge, or discard this patch.