* * @author Julius Haertl * * @license GNU AGPL version 3 or any later version * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as * published by the Free Software Foundation, either version 3 of the * License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see . * */ namespace OCA\Theming\Controller; use OCA\Theming\IconBuilder; use OCA\Theming\ThemingDefaults; use OCP\AppFramework\Controller; use OCP\AppFramework\Http; use OCP\AppFramework\Http\DataDisplayResponse; use OCP\AppFramework\Utility\ITimeFactory; use OCP\IRequest; use OCA\Theming\Util; class IconController extends Controller { /** @var ThemingDefaults */ private $themingDefaults; /** @var Util */ private $util; /** @var ITimeFactory */ private $timeFactory; /** @var IconBuilder */ private $iconBuilder; /** * IconController constructor. * * @param string $appName * @param IRequest $request * @param ThemingDefaults $themingDefaults * @param Util $util * @param ITimeFactory $timeFactory * @param IconBuilder $iconBuilder */ public function __construct( $appName, IRequest $request, ThemingDefaults $themingDefaults, Util $util, ITimeFactory $timeFactory, IconBuilder $iconBuilder ) { parent::__construct($appName, $request); $this->themingDefaults = $themingDefaults; $this->util = $util; $this->timeFactory = $timeFactory; $this->iconBuilder = $iconBuilder; } /** * @PublicPage * @NoCSRFRequired * * @param $app string app name * @param $image string image file name (svg required) * @return DataDisplayResponse */ public function getThemedIcon($app, $image) { $image = $this->util->getAppImage($app, $image); $svg = file_get_contents($image); $color = $this->util->elementColor($this->themingDefaults->getMailHeaderColor()); $svg = $this->util->colorizeSvg($svg, $color); $response = new DataDisplayResponse($svg, Http::STATUS_OK, ['Content-Type' => 'image/svg+xml']); $response->cacheFor(86400); $response->addHeader('Expires', date(\DateTime::RFC2822, $this->timeFactory->getTime())); $response->addHeader('Pragma', 'cache'); return $response; } /** * Return a 32x32 favicon as png * * @PublicPage * @NoCSRFRequired * * @param $app string app name * @return DataDisplayResponse */ public function getFavicon($app="core") { if($this->themingDefaults->shouldReplaceIcons()) { $icon = $this->iconBuilder->getFavicon($app); $response = new DataDisplayResponse($icon, Http::STATUS_OK, ['Content-Type' => 'image/x-icon']); } else { $response = new DataDisplayResponse(null, Http::STATUS_NOT_FOUND); } $response->cacheFor(86400); $response->addHeader('Expires', date(\DateTime::RFC2822, $this->timeFactory->getTime())); $response->addHeader('Pragma', 'cache'); return $response; } /** * Return a 512x512 icon for touch devices * * @PublicPage * @NoCSRFRequired * * @param $app string app name * @return DataDisplayResponse */ public function getTouchIcon($app="core") { if($this->themingDefaults->shouldReplaceIcons()) { $icon = $this->iconBuilder->getTouchIcon($app); $response = new DataDisplayResponse($icon, Http::STATUS_OK, ['Content-Type' => 'image/png']); } else { $response = new DataDisplayResponse(null, Http::STATUS_NOT_FOUND); } $response->cacheFor(86400); $response->addHeader('Expires', date(\DateTime::RFC2822, $this->timeFactory->getTime())); $response->addHeader('Pragma', 'cache'); return $response; } }