2013-03-16 18:02:51 -04:00
|
|
|
<?php
|
2024-05-23 03:26:56 -04:00
|
|
|
|
2025-09-29 06:10:56 -04:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2013-03-16 18:02:51 -04:00
|
|
|
/**
|
2025-09-29 06:10:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016-2025 Nextcloud GmbH and Nextcloud contributors
|
2024-05-23 03:26:56 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-03-16 18:02:51 -04:00
|
|
|
*/
|
2025-09-29 06:10:56 -04:00
|
|
|
|
2013-03-16 18:02:51 -04:00
|
|
|
namespace OC\Template;
|
|
|
|
|
|
2025-09-29 06:10:56 -04:00
|
|
|
use OCP\App\AppPathNotFoundException;
|
|
|
|
|
use OCP\App\IAppManager;
|
|
|
|
|
use OCP\IConfig;
|
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 {
|
2025-09-29 06:10:56 -04:00
|
|
|
public function __construct(
|
|
|
|
|
LoggerInterface $logger,
|
|
|
|
|
IConfig $config,
|
|
|
|
|
protected IAppManager $appManager,
|
|
|
|
|
) {
|
|
|
|
|
parent::__construct($logger, $config);
|
2016-11-09 05:18:43 -05:00
|
|
|
}
|
|
|
|
|
|
2025-09-29 06:10:56 -04:00
|
|
|
public function doFind(string $resource): void {
|
|
|
|
|
$parts = explode('/', $resource, 2);
|
|
|
|
|
if (count($parts) < 2) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
[$app,$subpath] = $parts;
|
|
|
|
|
if ($this->appendIfExist($this->serverroot, $resource . '.css')
|
|
|
|
|
|| $this->appendIfExist($this->serverroot, 'core/' . $resource . '.css')
|
2013-03-16 18:02:51 -04:00
|
|
|
) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2025-09-29 06:10:56 -04:00
|
|
|
try {
|
|
|
|
|
$app_path = $this->appManager->getAppPath($app);
|
|
|
|
|
$app_url = $this->appManager->getAppWebPath($app);
|
|
|
|
|
} catch (AppPathNotFoundException $e) {
|
2017-05-19 05:28:40 -04:00
|
|
|
$this->logger->error('Could not find resource {resource} to load', [
|
2025-09-29 06:10:56 -04:00
|
|
|
'resource' => $app . '/' . $subpath . '.css',
|
2017-05-19 05:28:40 -04:00
|
|
|
'app' => 'cssresourceloader',
|
2025-09-29 06:10:56 -04:00
|
|
|
'exception' => $e,
|
2017-05-19 05:28:40 -04:00
|
|
|
]);
|
|
|
|
|
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);
|
|
|
|
|
|
2025-09-29 06:10:56 -04:00
|
|
|
$this->append($app_path, $subpath . '.css', $app_url);
|
2013-03-16 18:02:51 -04:00
|
|
|
}
|
|
|
|
|
|
2025-09-29 06:10:56 -04:00
|
|
|
public function doFindTheme(string $resource): void {
|
2024-09-19 05:10:31 -04:00
|
|
|
$theme_dir = 'themes/' . $this->theme . '/';
|
2025-09-29 06:10:56 -04:00
|
|
|
$this->appendIfExist($this->serverroot, $theme_dir . 'apps/' . $resource . '.css')
|
|
|
|
|
|| $this->appendIfExist($this->serverroot, $theme_dir . $resource . '.css')
|
|
|
|
|
|| $this->appendIfExist($this->serverroot, $theme_dir . 'core/' . $resource . '.css');
|
2013-03-16 18:02:51 -04:00
|
|
|
}
|
2016-11-30 10:30:04 -05:00
|
|
|
|
2025-09-29 06:10:56 -04:00
|
|
|
public function append(string $root, string $file, ?string $webRoot = null, bool $throw = true, bool $scss = false): void {
|
2017-03-10 13:13:44 -05:00
|
|
|
if (!$scss) {
|
|
|
|
|
parent::append($root, $file, $webRoot, $throw);
|
|
|
|
|
} else {
|
2025-09-29 06:10:56 -04:00
|
|
|
if ($webRoot === null || $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
|
|
|
}
|