2013-03-18 17:32:32 -04:00
|
|
|
<?php
|
2024-05-23 03:26:56 -04:00
|
|
|
|
2025-03-06 09:47:59 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2013-03-18 17:32:32 -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-18 17:32:32 -04:00
|
|
|
*/
|
2025-03-06 09:47:59 -05:00
|
|
|
|
2013-03-18 17:32:32 -04:00
|
|
|
namespace OC\Template;
|
|
|
|
|
|
2025-03-06 09:47:59 -05:00
|
|
|
use OCP\Template\TemplateNotFoundException;
|
2013-03-18 17:32:32 -04:00
|
|
|
|
2025-03-06 09:47:59 -05:00
|
|
|
class TemplateFileLocator {
|
2014-02-06 10:30:58 -05:00
|
|
|
/**
|
|
|
|
|
* @param string[] $dirs
|
|
|
|
|
*/
|
2025-03-06 09:47:59 -05:00
|
|
|
public function __construct(
|
|
|
|
|
private array $dirs,
|
|
|
|
|
) {
|
2013-03-18 17:32:32 -04:00
|
|
|
}
|
|
|
|
|
|
2014-02-06 10:30:58 -05:00
|
|
|
/**
|
2025-03-06 09:47:59 -05:00
|
|
|
* @return array{string,string} Directory path and filename
|
|
|
|
|
* @throws TemplateNotFoundException
|
2014-02-06 10:30:58 -05:00
|
|
|
*/
|
2025-03-06 09:47:59 -05:00
|
|
|
public function find(string $template): array {
|
2013-07-19 11:40:07 -04:00
|
|
|
if ($template === '') {
|
2013-03-18 17:32:32 -04:00
|
|
|
throw new \InvalidArgumentException('Empty template name');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach ($this->dirs as $dir) {
|
|
|
|
|
$file = $dir . $template . '.php';
|
|
|
|
|
if (is_file($file)) {
|
2025-03-06 09:47:59 -05:00
|
|
|
return [$dir,$file];
|
2013-03-18 17:32:32 -04:00
|
|
|
}
|
|
|
|
|
}
|
2025-03-06 09:47:59 -05:00
|
|
|
throw new TemplateNotFoundException('template file not found: template:' . $template);
|
2013-03-18 17:32:32 -04:00
|
|
|
}
|
|
|
|
|
}
|