@@ -34,44 +34,44 @@ |
||
| 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 | } |
@@ -69,7 +69,7 @@ |
||
| 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 | } |
@@ -25,6 +25,6 @@ |
||
| 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 | ]]); |
@@ -23,33 +23,33 @@ |
||
| 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 | } |
@@ -22,7 +22,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -1,6 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - |
|
| 4 | 3 | * |
| 5 | 4 | * @author Bjoern Schiessle <[email protected]> |
| 6 | 5 | * @author Jan-Christoph Borchardt <[email protected]> |
@@ -81,7 +81,7 @@ |
||
| 81 | 81 | </form> |
| 82 | 82 | </div> |
| 83 | 83 | |
| 84 | - <div id="theming-preview" style="background-color:<?php p($_['color']);?>; background-image:url(<?php p($_['background']); ?>);"> |
|
| 84 | + <div id="theming-preview" style="background-color:<?php p($_['color']); ?>; background-image:url(<?php p($_['background']); ?>);"> |
|
| 85 | 85 | <img src="<?php p($_['logo']); ?>" id="theming-preview-logo" /> |
| 86 | 86 | </div> |
| 87 | 87 | <?php } ?> |
@@ -91,13 +91,13 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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']); |
@@ -36,142 +36,142 @@ |
||
| 36 | 36 | use OCP\IConfig; |
| 37 | 37 | |
| 38 | 38 | class IconController extends Controller { |
| 39 | - /** @var Defaults */ |
|
| 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 Defaults */ |
|
| 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 Defaults $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 | - Defaults $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 Defaults $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 | + Defaults $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 | } |
@@ -53,7 +53,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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; |
@@ -28,162 +28,162 @@ |
||
| 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 | } |
@@ -28,55 +28,55 @@ |
||
| 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 | } |
@@ -25,58 +25,58 @@ |
||
| 25 | 25 | */ |
| 26 | 26 | |
| 27 | 27 | return ['routes' => [ |
| 28 | - [ |
|
| 29 | - 'name' => 'Theming#updateStylesheet', |
|
| 30 | - 'url' => '/ajax/updateStylesheet', |
|
| 31 | - 'verb' => 'POST' |
|
| 32 | - ], |
|
| 33 | - [ |
|
| 34 | - 'name' => 'Theming#undo', |
|
| 35 | - 'url' => '/ajax/undoChanges', |
|
| 36 | - 'verb' => 'POST' |
|
| 37 | - ], |
|
| 38 | - [ |
|
| 39 | - 'name' => 'Theming#updateLogo', |
|
| 40 | - 'url' => '/ajax/updateLogo', |
|
| 41 | - 'verb' => 'POST' |
|
| 42 | - ], |
|
| 43 | - [ |
|
| 44 | - 'name' => 'Theming#getStylesheet', |
|
| 45 | - 'url' => '/styles', |
|
| 46 | - 'verb' => 'GET', |
|
| 47 | - ], |
|
| 48 | - [ |
|
| 49 | - 'name' => 'Theming#getLogo', |
|
| 50 | - 'url' => '/logo', |
|
| 51 | - 'verb' => 'GET', |
|
| 52 | - ], |
|
| 53 | - [ |
|
| 54 | - 'name' => 'Theming#getLoginBackground', |
|
| 55 | - 'url' => '/loginbackground', |
|
| 56 | - 'verb' => 'GET', |
|
| 57 | - ], |
|
| 58 | - [ |
|
| 59 | - 'name' => 'Theming#getJavascript', |
|
| 60 | - 'url' => '/js/theming', |
|
| 61 | - 'verb' => 'GET', |
|
| 62 | - ], |
|
| 63 | - [ |
|
| 64 | - 'name' => 'Icon#getFavicon', |
|
| 65 | - 'url' => '/favicon/{app}', |
|
| 66 | - 'verb' => 'GET', |
|
| 67 | - 'defaults' => array('app' => 'core'), |
|
| 68 | - ], |
|
| 69 | - [ |
|
| 70 | - 'name' => 'Icon#getTouchIcon', |
|
| 71 | - 'url' => '/icon/{app}', |
|
| 72 | - 'verb' => 'GET', |
|
| 73 | - 'defaults' => array('app' => 'core'), |
|
| 74 | - ], |
|
| 75 | - [ |
|
| 76 | - 'name' => 'Icon#getThemedIcon', |
|
| 77 | - 'url' => '/img/{app}/{image}', |
|
| 78 | - 'verb' => 'GET', |
|
| 79 | - 'requirements' => array('image' => '.+') |
|
| 80 | - ], |
|
| 28 | + [ |
|
| 29 | + 'name' => 'Theming#updateStylesheet', |
|
| 30 | + 'url' => '/ajax/updateStylesheet', |
|
| 31 | + 'verb' => 'POST' |
|
| 32 | + ], |
|
| 33 | + [ |
|
| 34 | + 'name' => 'Theming#undo', |
|
| 35 | + 'url' => '/ajax/undoChanges', |
|
| 36 | + 'verb' => 'POST' |
|
| 37 | + ], |
|
| 38 | + [ |
|
| 39 | + 'name' => 'Theming#updateLogo', |
|
| 40 | + 'url' => '/ajax/updateLogo', |
|
| 41 | + 'verb' => 'POST' |
|
| 42 | + ], |
|
| 43 | + [ |
|
| 44 | + 'name' => 'Theming#getStylesheet', |
|
| 45 | + 'url' => '/styles', |
|
| 46 | + 'verb' => 'GET', |
|
| 47 | + ], |
|
| 48 | + [ |
|
| 49 | + 'name' => 'Theming#getLogo', |
|
| 50 | + 'url' => '/logo', |
|
| 51 | + 'verb' => 'GET', |
|
| 52 | + ], |
|
| 53 | + [ |
|
| 54 | + 'name' => 'Theming#getLoginBackground', |
|
| 55 | + 'url' => '/loginbackground', |
|
| 56 | + 'verb' => 'GET', |
|
| 57 | + ], |
|
| 58 | + [ |
|
| 59 | + 'name' => 'Theming#getJavascript', |
|
| 60 | + 'url' => '/js/theming', |
|
| 61 | + 'verb' => 'GET', |
|
| 62 | + ], |
|
| 63 | + [ |
|
| 64 | + 'name' => 'Icon#getFavicon', |
|
| 65 | + 'url' => '/favicon/{app}', |
|
| 66 | + 'verb' => 'GET', |
|
| 67 | + 'defaults' => array('app' => 'core'), |
|
| 68 | + ], |
|
| 69 | + [ |
|
| 70 | + 'name' => 'Icon#getTouchIcon', |
|
| 71 | + 'url' => '/icon/{app}', |
|
| 72 | + 'verb' => 'GET', |
|
| 73 | + 'defaults' => array('app' => 'core'), |
|
| 74 | + ], |
|
| 75 | + [ |
|
| 76 | + 'name' => 'Icon#getThemedIcon', |
|
| 77 | + 'url' => '/img/{app}/{image}', |
|
| 78 | + 'verb' => 'GET', |
|
| 79 | + 'requirements' => array('image' => '.+') |
|
| 80 | + ], |
|
| 81 | 81 | ]]; |
| 82 | 82 | |
@@ -24,31 +24,31 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | |
| 26 | 26 | $linkToCSS = \OC::$server->getURLGenerator()->linkToRoute( |
| 27 | - 'theming.Theming.getStylesheet', |
|
| 28 | - [ |
|
| 29 | - 'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'), |
|
| 30 | - ] |
|
| 27 | + 'theming.Theming.getStylesheet', |
|
| 28 | + [ |
|
| 29 | + 'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'), |
|
| 30 | + ] |
|
| 31 | 31 | ); |
| 32 | 32 | \OCP\Util::addHeader( |
| 33 | - 'link', |
|
| 34 | - [ |
|
| 35 | - 'rel' => 'stylesheet', |
|
| 36 | - 'href' => $linkToCSS, |
|
| 37 | - ] |
|
| 33 | + 'link', |
|
| 34 | + [ |
|
| 35 | + 'rel' => 'stylesheet', |
|
| 36 | + 'href' => $linkToCSS, |
|
| 37 | + ] |
|
| 38 | 38 | ); |
| 39 | 39 | |
| 40 | 40 | $linkToJs = \OC::$server->getURLGenerator()->linkToRoute( |
| 41 | - 'theming.Theming.getJavascript', |
|
| 42 | - [ |
|
| 43 | - 'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'), |
|
| 44 | - ] |
|
| 41 | + 'theming.Theming.getJavascript', |
|
| 42 | + [ |
|
| 43 | + 'v' => \OC::$server->getConfig()->getAppValue('theming', 'cachebuster', '0'), |
|
| 44 | + ] |
|
| 45 | 45 | ); |
| 46 | 46 | \OCP\Util::addHeader( |
| 47 | - 'script', |
|
| 48 | - [ |
|
| 49 | - 'src' => $linkToJs, |
|
| 50 | - 'nonce' => \OC::$server->getContentSecurityPolicyNonceManager()->getNonce() |
|
| 51 | - ], '' |
|
| 47 | + 'script', |
|
| 48 | + [ |
|
| 49 | + 'src' => $linkToJs, |
|
| 50 | + 'nonce' => \OC::$server->getContentSecurityPolicyNonceManager()->getNonce() |
|
| 51 | + ], '' |
|
| 52 | 52 | ); |
| 53 | 53 | |
| 54 | 54 | $app = new \OCP\AppFramework\App('theming'); |