2016-06-09 22:46:30 +03:00
|
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* @copyright Copyright (c) 2016 Bjoern Schiessle <bjoern@schiessle.org>
|
2017-04-07 15:51:05 +03:00
|
|
|
|
* @copyright Copyright (c) 2017 Lukas Reschke <lukas@statuscode.ch>
|
2016-07-21 17:49:16 +03:00
|
|
|
|
*
|
2016-06-09 22:46:30 +03:00
|
|
|
|
* @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 <http://www.gnu.org/licenses/>.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace OCA\Theming;
|
|
|
|
|
|
2016-08-12 16:30:35 +03:00
|
|
|
|
|
2017-04-07 15:51:05 +03:00
|
|
|
|
use OCP\Files\IAppData;
|
2016-10-14 15:57:58 +03:00
|
|
|
|
use OCP\ICacheFactory;
|
2016-06-09 22:46:30 +03:00
|
|
|
|
use OCP\IConfig;
|
|
|
|
|
use OCP\IL10N;
|
|
|
|
|
use OCP\IURLGenerator;
|
|
|
|
|
|
2016-08-12 16:30:35 +03:00
|
|
|
|
class ThemingDefaults extends \OC_Defaults {
|
|
|
|
|
|
2016-06-09 22:46:30 +03:00
|
|
|
|
/** @var IConfig */
|
|
|
|
|
private $config;
|
2016-07-28 17:07:23 +03:00
|
|
|
|
/** @var IL10N */
|
2016-06-09 22:46:30 +03:00
|
|
|
|
private $l;
|
|
|
|
|
/** @var IURLGenerator */
|
|
|
|
|
private $urlGenerator;
|
2017-04-07 15:51:05 +03:00
|
|
|
|
/** @var IAppData */
|
|
|
|
|
private $appData;
|
2016-10-14 15:57:58 +03:00
|
|
|
|
/** @var ICacheFactory */
|
|
|
|
|
private $cacheFactory;
|
2016-06-09 22:46:30 +03:00
|
|
|
|
/** @var string */
|
|
|
|
|
private $name;
|
|
|
|
|
/** @var string */
|
|
|
|
|
private $url;
|
|
|
|
|
/** @var string */
|
|
|
|
|
private $slogan;
|
|
|
|
|
/** @var string */
|
|
|
|
|
private $color;
|
2017-02-17 18:42:07 +03:00
|
|
|
|
/** @var Util */
|
|
|
|
|
private $util;
|
2016-06-09 22:46:30 +03:00
|
|
|
|
|
|
|
|
|
/**
|
2016-08-12 17:00:39 +03:00
|
|
|
|
* ThemingDefaults constructor.
|
2016-06-09 22:46:30 +03:00
|
|
|
|
*
|
|
|
|
|
* @param IConfig $config
|
|
|
|
|
* @param IL10N $l
|
|
|
|
|
* @param IURLGenerator $urlGenerator
|
2016-06-21 22:21:46 +03:00
|
|
|
|
* @param \OC_Defaults $defaults
|
2017-04-07 15:51:05 +03:00
|
|
|
|
* @param IAppData $appData
|
2016-11-04 20:55:00 +03:00
|
|
|
|
* @param ICacheFactory $cacheFactory
|
2017-02-17 18:42:07 +03:00
|
|
|
|
* @param Util $util
|
2016-06-09 22:46:30 +03:00
|
|
|
|
*/
|
|
|
|
|
public function __construct(IConfig $config,
|
|
|
|
|
IL10N $l,
|
|
|
|
|
IURLGenerator $urlGenerator,
|
2017-04-07 15:51:05 +03:00
|
|
|
|
IAppData $appData,
|
2017-02-17 18:42:07 +03:00
|
|
|
|
ICacheFactory $cacheFactory,
|
|
|
|
|
Util $util
|
2016-06-09 22:46:30 +03:00
|
|
|
|
) {
|
2017-04-28 19:08:51 +03:00
|
|
|
|
parent::__construct();
|
2016-06-09 22:46:30 +03:00
|
|
|
|
$this->config = $config;
|
|
|
|
|
$this->l = $l;
|
|
|
|
|
$this->urlGenerator = $urlGenerator;
|
2017-04-07 15:51:05 +03:00
|
|
|
|
$this->appData = $appData;
|
2016-10-14 15:57:58 +03:00
|
|
|
|
$this->cacheFactory = $cacheFactory;
|
2017-02-17 18:42:07 +03:00
|
|
|
|
$this->util = $util;
|
2016-06-09 22:46:30 +03:00
|
|
|
|
|
2017-04-28 19:08:51 +03:00
|
|
|
|
$this->name = parent::getName();
|
|
|
|
|
$this->url = parent::getBaseUrl();
|
|
|
|
|
$this->slogan = parent::getSlogan();
|
|
|
|
|
$this->color = parent::getColorPrimary();
|
2016-06-09 22:46:30 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getName() {
|
2017-03-16 17:01:50 +03:00
|
|
|
|
return strip_tags($this->config->getAppValue('theming', 'name', $this->name));
|
2016-06-09 22:46:30 +03:00
|
|
|
|
}
|
2016-06-21 22:21:46 +03:00
|
|
|
|
|
2016-07-15 09:45:55 +03:00
|
|
|
|
public function getHTMLName() {
|
|
|
|
|
return $this->config->getAppValue('theming', 'name', $this->name);
|
|
|
|
|
}
|
|
|
|
|
|
2016-07-11 20:36:26 +03:00
|
|
|
|
public function getTitle() {
|
2017-03-16 17:01:50 +03:00
|
|
|
|
return $this->getName();
|
2016-07-11 20:36:26 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-21 22:21:46 +03:00
|
|
|
|
public function getEntity() {
|
2017-03-16 17:01:50 +03:00
|
|
|
|
return $this->getName();
|
2016-06-21 22:21:46 +03:00
|
|
|
|
}
|
2016-08-12 16:30:35 +03:00
|
|
|
|
|
2016-06-21 22:21:46 +03:00
|
|
|
|
public function getBaseUrl() {
|
2016-06-09 22:46:30 +03:00
|
|
|
|
return $this->config->getAppValue('theming', 'url', $this->url);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getSlogan() {
|
2017-02-17 18:42:07 +03:00
|
|
|
|
return \OCP\Util::sanitizeHTML($this->config->getAppValue('theming', 'slogan', $this->slogan));
|
2016-06-09 22:46:30 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-07-15 09:45:55 +03:00
|
|
|
|
public function getShortFooter() {
|
|
|
|
|
$slogan = $this->getSlogan();
|
|
|
|
|
$footer = '<a href="'. $this->getBaseUrl() . '" target="_blank"' .
|
|
|
|
|
' rel="noreferrer">' .$this->getEntity() . '</a>'.
|
|
|
|
|
($slogan !== '' ? ' – ' . $slogan : '');
|
|
|
|
|
|
|
|
|
|
return $footer;
|
|
|
|
|
}
|
|
|
|
|
|
2016-06-27 11:48:23 +03:00
|
|
|
|
/**
|
|
|
|
|
* Color that is used for the header as well as for mail headers
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2017-03-28 02:37:47 +03:00
|
|
|
|
public function getColorPrimary() {
|
2016-06-09 22:46:30 +03:00
|
|
|
|
return $this->config->getAppValue('theming', 'color', $this->color);
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-23 23:02:28 +03:00
|
|
|
|
/**
|
|
|
|
|
* Themed logo url
|
|
|
|
|
*
|
2017-05-08 15:51:55 +03:00
|
|
|
|
* @param bool $useSvg Whether to point to the SVG image or a fallback
|
2016-08-23 23:02:28 +03:00
|
|
|
|
* @return string
|
|
|
|
|
*/
|
2017-05-08 15:51:55 +03:00
|
|
|
|
public function getLogo($useSvg = true) {
|
2017-02-17 18:42:07 +03:00
|
|
|
|
$logo = $this->config->getAppValue('theming', 'logoMime', false);
|
2017-04-07 15:51:05 +03:00
|
|
|
|
|
|
|
|
|
$logoExists = true;
|
|
|
|
|
try {
|
|
|
|
|
$this->appData->getFolder('images')->getFile('logo');
|
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
|
$logoExists = false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-04-09 04:48:57 +03:00
|
|
|
|
$cacheBusterCounter = $this->config->getAppValue('theming', 'cachebuster', '0');
|
|
|
|
|
|
2017-04-07 15:51:05 +03:00
|
|
|
|
if(!$logo || !$logoExists) {
|
2017-05-08 15:51:55 +03:00
|
|
|
|
if($useSvg) {
|
|
|
|
|
$logo = $this->urlGenerator->imagePath('core', 'logo.svg');
|
|
|
|
|
} else {
|
|
|
|
|
$logo = $this->urlGenerator->imagePath('core', 'logo.png');
|
|
|
|
|
}
|
|
|
|
|
return $logo . '?v=' . $cacheBusterCounter;
|
2016-08-23 23:02:28 +03:00
|
|
|
|
}
|
2017-04-07 15:51:05 +03:00
|
|
|
|
|
2017-04-24 13:15:28 +03:00
|
|
|
|
return $this->urlGenerator->linkToRoute('theming.Theming.getLogo') . '?v=' . $cacheBusterCounter;
|
2016-08-23 23:02:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Themed background image url
|
|
|
|
|
*
|
|
|
|
|
* @return string
|
|
|
|
|
*/
|
|
|
|
|
public function getBackground() {
|
2017-02-17 18:42:07 +03:00
|
|
|
|
$backgroundLogo = $this->config->getAppValue('theming', 'backgroundMime',false);
|
2017-04-07 15:51:05 +03:00
|
|
|
|
|
|
|
|
|
$backgroundExists = true;
|
|
|
|
|
try {
|
|
|
|
|
$this->appData->getFolder('images')->getFile('background');
|
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
|
$backgroundExists = false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-05 06:32:32 +03:00
|
|
|
|
$cacheBusterCounter = $this->config->getAppValue('theming', 'cachebuster', '0');
|
|
|
|
|
|
2017-04-07 15:51:05 +03:00
|
|
|
|
if(!$backgroundLogo || !$backgroundExists) {
|
2017-05-05 06:32:32 +03:00
|
|
|
|
return $this->urlGenerator->imagePath('core','background.jpg') . '?v=' . $cacheBusterCounter;
|
2016-08-23 23:02:28 +03:00
|
|
|
|
}
|
2017-04-07 15:51:05 +03:00
|
|
|
|
|
2017-05-05 06:32:32 +03:00
|
|
|
|
return $this->urlGenerator->linkToRoute('theming.Theming.getLoginBackground') . '?v=' . $cacheBusterCounter;
|
2016-08-23 23:02:28 +03:00
|
|
|
|
}
|
|
|
|
|
|
2017-02-17 18:42:07 +03:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @return array scss variables to overwrite
|
|
|
|
|
*/
|
|
|
|
|
public function getScssVariables() {
|
|
|
|
|
$cache = $this->cacheFactory->create('theming');
|
|
|
|
|
if ($value = $cache->get('getScssVariables')) {
|
|
|
|
|
return $value;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$variables = [
|
|
|
|
|
'theming-cachebuster' => "'" . $this->config->getAppValue('theming', 'cachebuster', '0') . "'",
|
2017-05-19 17:11:42 +03:00
|
|
|
|
'theming-logo-mime' => "'" . $this->config->getAppValue('theming', 'logoMime', '') . "'",
|
|
|
|
|
'theming-background-mime' => "'" . $this->config->getAppValue('theming', 'backgroundMime', '') . "'"
|
2017-02-17 18:42:07 +03:00
|
|
|
|
];
|
|
|
|
|
|
2017-04-24 13:15:28 +03:00
|
|
|
|
$variables['image-logo'] = "'".$this->urlGenerator->getAbsoluteURL($this->getLogo())."'";
|
|
|
|
|
$variables['image-login-background'] = "'".$this->urlGenerator->getAbsoluteURL($this->getBackground())."'";
|
2016-10-12 17:45:07 +03:00
|
|
|
|
$variables['image-login-plain'] = 'false';
|
2017-02-17 18:42:07 +03:00
|
|
|
|
|
|
|
|
|
if ($this->config->getAppValue('theming', 'color', null) !== null) {
|
|
|
|
|
if ($this->util->invertTextColor($this->getColorPrimary())) {
|
|
|
|
|
$colorPrimaryText = '#000000';
|
|
|
|
|
} else {
|
|
|
|
|
$colorPrimaryText = '#ffffff';
|
|
|
|
|
}
|
|
|
|
|
$variables['color-primary'] = $this->getColorPrimary();
|
|
|
|
|
$variables['color-primary-text'] = $colorPrimaryText;
|
|
|
|
|
}
|
2016-10-12 17:45:07 +03:00
|
|
|
|
|
|
|
|
|
if ($this->config->getAppValue('theming', 'backgroundMime', null) === 'backgroundColor') {
|
|
|
|
|
$variables['image-login-plain'] = 'true';
|
|
|
|
|
}
|
2017-02-17 18:42:07 +03:00
|
|
|
|
$cache->set('getScssVariables', $variables);
|
|
|
|
|
return $variables;
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-30 10:03:06 +03:00
|
|
|
|
/**
|
|
|
|
|
* Check if Imagemagick is enabled and if SVG is supported
|
|
|
|
|
* otherwise we can't render custom icons
|
|
|
|
|
*
|
|
|
|
|
* @return bool
|
|
|
|
|
*/
|
|
|
|
|
public function shouldReplaceIcons() {
|
2016-10-14 15:57:58 +03:00
|
|
|
|
$cache = $this->cacheFactory->create('theming');
|
2016-10-14 22:42:25 +03:00
|
|
|
|
if($value = $cache->get('shouldReplaceIcons')) {
|
|
|
|
|
return (bool)$value;
|
2016-10-14 15:57:58 +03:00
|
|
|
|
}
|
|
|
|
|
$value = false;
|
2016-08-30 10:03:06 +03:00
|
|
|
|
if(extension_loaded('imagick')) {
|
|
|
|
|
$checkImagick = new \Imagick();
|
|
|
|
|
if (count($checkImagick->queryFormats('SVG')) >= 1) {
|
2016-10-14 15:57:58 +03:00
|
|
|
|
$value = true;
|
2016-08-30 10:03:06 +03:00
|
|
|
|
}
|
|
|
|
|
$checkImagick->clear();
|
|
|
|
|
}
|
2016-10-14 15:57:58 +03:00
|
|
|
|
$cache->set('shouldReplaceIcons', $value);
|
|
|
|
|
return $value;
|
2016-08-30 10:03:06 +03:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-21 22:21:46 +03:00
|
|
|
|
/**
|
|
|
|
|
* Increases the cache buster key
|
|
|
|
|
*/
|
|
|
|
|
private function increaseCacheBuster() {
|
|
|
|
|
$cacheBusterKey = $this->config->getAppValue('theming', 'cachebuster', '0');
|
|
|
|
|
$this->config->setAppValue('theming', 'cachebuster', (int)$cacheBusterKey+1);
|
2017-02-17 18:42:07 +03:00
|
|
|
|
$this->cacheFactory->create('theming')->clear('getScssVariables');
|
2016-06-09 22:46:30 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2016-06-21 22:21:46 +03:00
|
|
|
|
* Update setting in the database
|
2016-06-09 22:46:30 +03:00
|
|
|
|
*
|
2016-06-21 22:21:46 +03:00
|
|
|
|
* @param string $setting
|
|
|
|
|
* @param string $value
|
2016-06-09 22:46:30 +03:00
|
|
|
|
*/
|
|
|
|
|
public function set($setting, $value) {
|
|
|
|
|
$this->config->setAppValue('theming', $setting, $value);
|
2016-06-21 22:21:46 +03:00
|
|
|
|
$this->increaseCacheBuster();
|
2016-06-09 22:46:30 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2016-06-21 22:21:46 +03:00
|
|
|
|
* Revert settings to the default value
|
2016-06-09 22:46:30 +03:00
|
|
|
|
*
|
|
|
|
|
* @param string $setting setting which should be reverted
|
|
|
|
|
* @return string default value
|
|
|
|
|
*/
|
|
|
|
|
public function undo($setting) {
|
2016-06-21 22:21:46 +03:00
|
|
|
|
$this->config->deleteAppValue('theming', $setting);
|
|
|
|
|
$this->increaseCacheBuster();
|
|
|
|
|
|
|
|
|
|
switch ($setting) {
|
|
|
|
|
case 'name':
|
|
|
|
|
$returnValue = $this->getEntity();
|
|
|
|
|
break;
|
|
|
|
|
case 'url':
|
|
|
|
|
$returnValue = $this->getBaseUrl();
|
|
|
|
|
break;
|
|
|
|
|
case 'slogan':
|
|
|
|
|
$returnValue = $this->getSlogan();
|
|
|
|
|
break;
|
|
|
|
|
case 'color':
|
2017-03-28 02:37:47 +03:00
|
|
|
|
$returnValue = $this->getColorPrimary();
|
2016-06-21 22:21:46 +03:00
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
$returnValue = '';
|
|
|
|
|
break;
|
2016-06-09 22:46:30 +03:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return $returnValue;
|
|
|
|
|
}
|
2016-08-12 16:30:35 +03:00
|
|
|
|
|
2016-06-09 22:46:30 +03:00
|
|
|
|
}
|