2013-03-16 18:02:51 -04:00
|
|
|
<?php
|
2024-05-23 03:26:56 -04:00
|
|
|
|
2013-03-16 18:02:51 -04:00
|
|
|
/**
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
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
|
|
|
}
|