2013-03-17 02:02:51 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
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,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
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;
|
|
|
|
|
|
|
|
abstract class ResourceLocator {
|
|
|
|
protected $theme;
|
|
|
|
|
|
|
|
protected $mapping;
|
|
|
|
protected $serverroot;
|
|
|
|
protected $thirdpartyroot;
|
|
|
|
protected $webroot;
|
|
|
|
|
|
|
|
protected $resources = array();
|
|
|
|
|
2015-03-04 15:24:24 +03:00
|
|
|
/** @var \OCP\ILogger */
|
|
|
|
protected $logger;
|
|
|
|
|
2014-02-06 19:30:58 +04:00
|
|
|
/**
|
2015-03-04 15:24:24 +03:00
|
|
|
* @param \OCP\ILogger $logger
|
2014-02-06 19:30:58 +04:00
|
|
|
* @param string $theme
|
2015-03-04 15:24:24 +03:00
|
|
|
* @param array $core_map
|
|
|
|
* @param array $party_map
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2015-03-04 15:24:24 +03:00
|
|
|
public function __construct(\OCP\ILogger $logger, $theme, $core_map, $party_map) {
|
|
|
|
$this->logger = $logger;
|
2013-03-17 02:02:51 +04:00
|
|
|
$this->theme = $theme;
|
|
|
|
$this->mapping = $core_map + $party_map;
|
|
|
|
$this->serverroot = key($core_map);
|
|
|
|
$this->thirdpartyroot = key($party_map);
|
|
|
|
$this->webroot = $this->mapping[$this->serverroot];
|
|
|
|
}
|
|
|
|
|
2015-03-04 15:24:24 +03:00
|
|
|
/**
|
|
|
|
* @param string $resource
|
|
|
|
*/
|
|
|
|
abstract public function doFind($resource);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $resource
|
|
|
|
*/
|
|
|
|
abstract public function doFindTheme($resource);
|
2013-03-17 02:02:51 +04:00
|
|
|
|
2015-03-04 15:24:24 +03:00
|
|
|
/**
|
|
|
|
* Finds the resources and adds them to the list
|
|
|
|
*
|
|
|
|
* @param array $resources
|
|
|
|
*/
|
|
|
|
public function find($resources) {
|
|
|
|
foreach ($resources as $resource) {
|
|
|
|
try {
|
2013-03-17 02:02:51 +04:00
|
|
|
$this->doFind($resource);
|
2015-03-04 15:24:24 +03:00
|
|
|
} catch (ResourceNotFoundException $e) {
|
|
|
|
$resourceApp = substr($resource, 0, strpos($resource, '/'));
|
|
|
|
$this->logger->error('Could not find resource file "' . $e->getResourcePath() . '"', ['app' => $resourceApp]);
|
2013-03-17 02:02:51 +04:00
|
|
|
}
|
2015-03-04 15:24:24 +03:00
|
|
|
}
|
|
|
|
if (!empty($this->theme)) {
|
|
|
|
foreach ($resources as $resource) {
|
|
|
|
try {
|
2013-03-17 02:02:51 +04:00
|
|
|
$this->doFindTheme($resource);
|
2015-03-04 15:24:24 +03:00
|
|
|
} catch (ResourceNotFoundException $e) {
|
|
|
|
$resourceApp = substr($resource, 0, strpos($resource, '/'));
|
|
|
|
$this->logger->error('Could not find resource file "' . $e->getResourcePath() . '"', ['app' => $resourceApp]);
|
2013-03-17 02:02:51 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-04 15:24:24 +03:00
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* append the $file resource if exist at $root
|
2015-03-04 15:24:24 +03:00
|
|
|
*
|
2014-05-12 00:51:30 +04:00
|
|
|
* @param string $root path to check
|
|
|
|
* @param string $file the filename
|
2015-03-04 15:24:24 +03:00
|
|
|
* @param string|null $webRoot base for path, default map $root to $webRoot
|
|
|
|
* @return bool True if the resource was found, false otherwise
|
2014-02-06 19:30:58 +04:00
|
|
|
*/
|
2015-03-04 15:24:24 +03:00
|
|
|
protected function appendIfExist($root, $file, $webRoot = null) {
|
2013-03-17 02:02:51 +04:00
|
|
|
if (is_file($root.'/'.$file)) {
|
2015-03-04 15:24:24 +03:00
|
|
|
$this->append($root, $file, $webRoot, false);
|
2013-03-17 02:02:51 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-03-04 15:24:24 +03:00
|
|
|
/**
|
|
|
|
* append the $file resource at $root
|
|
|
|
*
|
|
|
|
* @param string $root path to check
|
|
|
|
* @param string $file the filename
|
|
|
|
* @param string|null $webRoot base for path, default map $root to $webRoot
|
|
|
|
* @param bool $throw Throw an exception, when the route does not exist
|
|
|
|
* @throws ResourceNotFoundException Only thrown when $throw is true and the resource is missing
|
|
|
|
*/
|
|
|
|
protected function append($root, $file, $webRoot = null, $throw = true) {
|
|
|
|
if (!$webRoot) {
|
|
|
|
$webRoot = $this->mapping[$root];
|
|
|
|
}
|
|
|
|
$this->resources[] = array($root, $webRoot, $file);
|
|
|
|
|
|
|
|
if ($throw && !is_file($root . '/' . $file)) {
|
|
|
|
throw new ResourceNotFoundException($file, $webRoot);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the list of all resources that should be loaded
|
|
|
|
* @return array
|
|
|
|
*/
|
2013-03-17 02:02:51 +04:00
|
|
|
public function getResources() {
|
|
|
|
return $this->resources;
|
|
|
|
}
|
|
|
|
}
|