2013-03-16 18:02:51 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
2016-07-21 11:07:57 -04:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
|
*
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Axel Helmert <axel.helmert@luka.de>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2020-03-31 04:49:10 -04:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2016-07-21 11:07:57 -04:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2021-06-04 15:52:51 -04:00
|
|
|
* @author John Molakvoæ <skjnldsv@protonmail.com>
|
2019-12-03 13:57:53 -05:00
|
|
|
* @author Kyle Fazzari <kyrofa@ubuntu.com>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
|
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2015-03-26 06:44:34 -04:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2017-11-06 09:56:42 -05:00
|
|
|
* @author tux-rampage <tux-rampage@users.noreply.github.com>
|
2015-03-26 06:44:34 -04: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 13:57:53 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 06:44:34 -04:00
|
|
|
*
|
2013-03-16 18:02:51 -04:00
|
|
|
*/
|
|
|
|
|
namespace OC\Template;
|
|
|
|
|
|
2022-03-17 11:42:53 -04:00
|
|
|
use Psr\Log\LoggerInterface;
|
2016-11-30 10:30:04 -05:00
|
|
|
|
2013-03-16 18:02:51 -04:00
|
|
|
class CSSResourceLocator extends ResourceLocator {
|
2022-11-17 02:32:16 -05:00
|
|
|
public function __construct(LoggerInterface $logger) {
|
|
|
|
|
parent::__construct($logger);
|
2016-11-09 05:18:43 -05:00
|
|
|
}
|
|
|
|
|
|
2015-03-04 07:24:24 -05:00
|
|
|
/**
|
|
|
|
|
* @param string $style
|
|
|
|
|
*/
|
|
|
|
|
public function doFind($style) {
|
2017-01-22 13:33:45 -05:00
|
|
|
$app = substr($style, 0, strpos($style, '/'));
|
2023-02-20 03:28:30 -05:00
|
|
|
if ($this->appendIfExist($this->serverroot, $style.'.css')
|
2013-03-16 18:02:51 -04:00
|
|
|
|| $this->appendIfExist($this->serverroot, 'core/'.$style.'.css')
|
|
|
|
|
) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-10-05 09:12:57 -04:00
|
|
|
$style = substr($style, strpos($style, '/') + 1);
|
2013-07-17 17:27:25 -04:00
|
|
|
$app_path = \OC_App::getAppPath($app);
|
2014-02-20 07:27:46 -05:00
|
|
|
$app_url = \OC_App::getAppWebPath($app);
|
2017-05-19 05:28:40 -04: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 02:03:34 -04: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);
|
|
|
|
|
|
2022-05-04 02:48:33 -04:00
|
|
|
$this->append($app_path, $style.'.css', $app_url);
|
2013-03-16 18:02:51 -04:00
|
|
|
}
|
|
|
|
|
|
2015-03-04 07:24:24 -05:00
|
|
|
/**
|
|
|
|
|
* @param string $style
|
|
|
|
|
*/
|
|
|
|
|
public function doFindTheme($style) {
|
2013-03-16 18:02:51 -04:00
|
|
|
$theme_dir = 'themes/'.$this->theme.'/';
|
2014-11-12 06:37:50 -05:00
|
|
|
$this->appendIfExist($this->serverroot, $theme_dir.'apps/'.$style.'.css')
|
2013-03-16 18:02:51 -04:00
|
|
|
|| $this->appendIfExist($this->serverroot, $theme_dir.$style.'.css')
|
|
|
|
|
|| $this->appendIfExist($this->serverroot, $theme_dir.'core/'.$style.'.css');
|
|
|
|
|
}
|
2016-11-30 10:30:04 -05:00
|
|
|
|
2017-03-10 13:13:44 -05: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 15:28:45 -04:00
|
|
|
$webRoot = $this->findWebRoot($root);
|
|
|
|
|
|
2017-09-19 11:08:30 -04:00
|
|
|
if ($webRoot === null) {
|
2017-09-06 15:28:45 -04: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 13:13:44 -05:00
|
|
|
|
2017-09-14 02:41:10 -04:00
|
|
|
if ($throw && $root === '/') {
|
2017-09-12 06:14:27 -04:00
|
|
|
throw new ResourceNotFoundException($file, $webRoot);
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-03-10 13:13:44 -05:00
|
|
|
}
|
|
|
|
|
|
2020-09-02 11:13:24 -04:00
|
|
|
$this->resources[] = [$webRoot ?: \OC::$WEBROOT, $webRoot, $file];
|
2017-03-10 13:13:44 -05:00
|
|
|
}
|
|
|
|
|
}
|
2013-03-16 18:02:51 -04:00
|
|
|
}
|