2013-03-17 02:02:51 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Axel Helmert <axel.helmert@luka.de>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Kyle Fazzari <kyrofa@ubuntu.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2017-11-06 17:56:42 +03:00
|
|
|
* @author tux-rampage <tux-rampage@users.noreply.github.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* 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, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2013-03-17 02:02:51 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-03-17 02:02:51 +04:00
|
|
|
namespace OC\Template;
|
|
|
|
|
2016-11-30 18:30:04 +03:00
|
|
|
use OCP\ILogger;
|
|
|
|
|
2013-03-17 02:02:51 +04:00
|
|
|
class CSSResourceLocator extends ResourceLocator {
|
2016-11-09 13:18:43 +03:00
|
|
|
|
2016-12-01 00:09:36 +03:00
|
|
|
/** @var SCSSCacher */
|
|
|
|
protected $scssCacher;
|
2016-11-09 13:18:43 +03:00
|
|
|
|
2016-11-09 15:39:08 +03:00
|
|
|
/**
|
2016-11-30 18:30:04 +03:00
|
|
|
* @param ILogger $logger
|
2016-11-09 15:39:08 +03:00
|
|
|
* @param string $theme
|
|
|
|
* @param array $core_map
|
|
|
|
* @param array $party_map
|
2017-01-02 19:07:37 +03:00
|
|
|
* @param SCSSCacher $scssCacher
|
2016-11-09 15:39:08 +03:00
|
|
|
*/
|
2017-01-10 12:39:52 +03:00
|
|
|
public function __construct(ILogger $logger, $theme, $core_map, $party_map, $scssCacher) {
|
2016-12-01 00:09:36 +03:00
|
|
|
$this->scssCacher = $scssCacher;
|
2016-11-10 18:16:33 +03:00
|
|
|
|
2016-11-09 13:18:43 +03:00
|
|
|
parent::__construct($logger, $theme, $core_map, $party_map);
|
|
|
|
}
|
|
|
|
|
2015-03-04 15:24:24 +03:00
|
|
|
/**
|
|
|
|
* @param string $style
|
|
|
|
*/
|
|
|
|
public function doFind($style) {
|
2017-01-22 21:33:45 +03:00
|
|
|
$app = substr($style, 0, strpos($style, '/'));
|
2013-03-17 02:02:51 +04:00
|
|
|
if (strpos($style, '3rdparty') === 0
|
|
|
|
&& $this->appendIfExist($this->thirdpartyroot, $style.'.css')
|
2017-01-22 21:33:45 +03:00
|
|
|
|| $this->cacheAndAppendScssIfExist($this->serverroot, $style.'.scss', $app)
|
2016-12-01 00:09:36 +03:00
|
|
|
|| $this->cacheAndAppendScssIfExist($this->serverroot, 'core/'.$style.'.scss')
|
2013-03-17 02:02:51 +04:00
|
|
|
|| $this->appendIfExist($this->serverroot, $style.'.css')
|
|
|
|
|| $this->appendIfExist($this->serverroot, 'core/'.$style.'.css')
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
2020-10-05 16:12:57 +03:00
|
|
|
$style = substr($style, strpos($style, '/') + 1);
|
2013-07-18 01:27:25 +04:00
|
|
|
$app_path = \OC_App::getAppPath($app);
|
2014-02-20 16:27:46 +04:00
|
|
|
$app_url = \OC_App::getAppWebPath($app);
|
2017-05-19 12:28:40 +03:00
|
|
|
|
|
|
|
if ($app_path === false && $app_url === false) {
|
|
|
|
$this->logger->error('Could not find resource {resource} to load', [
|
|
|
|
'resource' => $app . '/' . $style . '.css',
|
|
|
|
'app' => 'cssresourceloader',
|
|
|
|
]);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-04 09:03:34 +03:00
|
|
|
// Account for the possibility of having symlinks in app path. Doing
|
|
|
|
// this here instead of above as an empty argument to realpath gets
|
|
|
|
// turned into cwd.
|
|
|
|
$app_path = realpath($app_path);
|
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if (!$this->cacheAndAppendScssIfExist($app_path, $style.'.scss', $app)) {
|
2017-01-22 21:33:45 +03:00
|
|
|
$this->append($app_path, $style.'.css', $app_url);
|
|
|
|
}
|
2013-03-17 02:02:51 +04:00
|
|
|
}
|
|
|
|
|
2015-03-04 15:24:24 +03:00
|
|
|
/**
|
|
|
|
* @param string $style
|
|
|
|
*/
|
|
|
|
public function doFindTheme($style) {
|
2013-03-17 02:02:51 +04:00
|
|
|
$theme_dir = 'themes/'.$this->theme.'/';
|
2014-11-12 14:37:50 +03:00
|
|
|
$this->appendIfExist($this->serverroot, $theme_dir.'apps/'.$style.'.css')
|
2013-03-17 02:02:51 +04:00
|
|
|
|| $this->appendIfExist($this->serverroot, $theme_dir.$style.'.css')
|
|
|
|
|| $this->appendIfExist($this->serverroot, $theme_dir.'core/'.$style.'.css');
|
|
|
|
}
|
2016-11-30 18:30:04 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* cache and append the scss $file if exist at $root
|
|
|
|
*
|
|
|
|
* @param string $root path to check
|
|
|
|
* @param string $file the filename
|
|
|
|
* @return bool True if the resource was found and cached, false otherwise
|
|
|
|
*/
|
2017-01-24 19:27:35 +03:00
|
|
|
protected function cacheAndAppendScssIfExist($root, $file, $app = 'core') {
|
2016-11-30 18:30:04 +03:00
|
|
|
if (is_file($root.'/'.$file)) {
|
2020-04-10 15:19:56 +03:00
|
|
|
if ($this->scssCacher !== null) {
|
|
|
|
if ($this->scssCacher->process($root, $file, $app)) {
|
2020-09-02 18:13:24 +03:00
|
|
|
$this->append($this->serverroot, $this->scssCacher->getCachedSCSS($app, $file), \OC::$WEBROOT, true, true);
|
2017-01-10 12:39:52 +03:00
|
|
|
return true;
|
|
|
|
} else {
|
2017-02-03 15:09:33 +03:00
|
|
|
$this->logger->warning('Failed to compile and/or save '.$root.'/'.$file, ['app' => 'core']);
|
2017-01-10 12:39:52 +03:00
|
|
|
return false;
|
|
|
|
}
|
2016-11-30 18:30:04 +03:00
|
|
|
} else {
|
2017-01-10 12:39:52 +03:00
|
|
|
return true;
|
2016-11-30 18:30:04 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2017-03-10 21:13:44 +03:00
|
|
|
|
|
|
|
public function append($root, $file, $webRoot = null, $throw = true, $scss = false) {
|
|
|
|
if (!$scss) {
|
|
|
|
parent::append($root, $file, $webRoot, $throw);
|
|
|
|
} else {
|
|
|
|
if (!$webRoot) {
|
2017-09-06 22:28:45 +03:00
|
|
|
$webRoot = $this->findWebRoot($root);
|
|
|
|
|
2017-09-19 18:08:30 +03:00
|
|
|
if ($webRoot === null) {
|
2017-09-06 22:28:45 +03:00
|
|
|
$webRoot = '';
|
|
|
|
$this->logger->error('ResourceLocator can not find a web root (root: {root}, file: {file}, webRoot: {webRoot}, throw: {throw})', [
|
|
|
|
'app' => 'lib',
|
|
|
|
'root' => $root,
|
|
|
|
'file' => $file,
|
|
|
|
'webRoot' => $webRoot,
|
|
|
|
'throw' => $throw ? 'true' : 'false'
|
|
|
|
]);
|
2017-03-10 21:13:44 +03:00
|
|
|
|
2017-09-14 09:41:10 +03:00
|
|
|
if ($throw && $root === '/') {
|
2017-09-12 13:14:27 +03:00
|
|
|
throw new ResourceNotFoundException($file, $webRoot);
|
|
|
|
}
|
|
|
|
}
|
2017-03-10 21:13:44 +03:00
|
|
|
}
|
|
|
|
|
2020-09-02 18:13:24 +03:00
|
|
|
$this->resources[] = [$webRoot ?: \OC::$WEBROOT, $webRoot, $file];
|
2017-03-10 21:13:44 +03:00
|
|
|
}
|
|
|
|
}
|
2013-03-17 02:02:51 +04:00
|
|
|
}
|