2013-05-08 00:16:02 +04:00
|
|
|
<?php
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2018-01-12 13:52:06 +03:00
|
|
|
declare(strict_types=1);
|
2019-12-03 21:57:53 +03:00
|
|
|
|
2013-05-08 00:16:02 +04:00
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Andreas Fischer <bantu@owncloud.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Arthur Schiwon <blizzz@arthur-schiwon.de>
|
2020-03-31 11:49:10 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2017-11-06 22:15:27 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Joas Schilling <coding@schilljs.com>
|
2016-05-26 20:56:05 +03:00
|
|
|
* @author Lukas Reschke <lukas@statuscode.ch>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Markus Goetz <markus@woboq.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Robin McCorkell <robin@mccorkell.me.uk>
|
2016-07-21 18:07:57 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2020-12-16 16:54:15 +03:00
|
|
|
* @author Vincent Petry <vincent@nextcloud.com>
|
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,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2013-05-08 00:16:02 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-05-08 00:16:02 +04:00
|
|
|
namespace OC;
|
|
|
|
|
2015-09-05 18:50:02 +03:00
|
|
|
use \OCP\AutoloadNotAllowedException;
|
2018-04-25 16:22:28 +03:00
|
|
|
use OCP\ILogger;
|
2015-09-05 18:50:02 +03:00
|
|
|
|
2013-05-08 00:16:02 +04:00
|
|
|
class Autoloader {
|
2015-10-26 01:45:07 +03:00
|
|
|
/** @var bool */
|
2013-05-08 00:24:47 +04:00
|
|
|
private $useGlobalClassPath = true;
|
2015-10-26 01:45:07 +03:00
|
|
|
/** @var array */
|
2015-08-18 16:35:02 +03:00
|
|
|
private $validRoots = [];
|
|
|
|
|
2013-10-21 16:04:07 +04:00
|
|
|
/**
|
|
|
|
* Optional low-latency memory cache for class to path mapping.
|
2015-08-18 16:35:02 +03:00
|
|
|
*
|
2013-10-21 16:04:07 +04:00
|
|
|
* @var \OC\Memcache\Cache
|
|
|
|
*/
|
|
|
|
protected $memoryCache;
|
|
|
|
|
2015-08-18 16:35:02 +03:00
|
|
|
/**
|
|
|
|
* Autoloader constructor.
|
|
|
|
*
|
|
|
|
* @param string[] $validRoots
|
|
|
|
*/
|
|
|
|
public function __construct(array $validRoots) {
|
2015-09-16 12:47:46 +03:00
|
|
|
foreach ($validRoots as $root) {
|
|
|
|
$this->validRoots[$root] = true;
|
|
|
|
}
|
2015-08-18 16:35:02 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a path to the list of valid php roots for auto loading
|
|
|
|
*
|
|
|
|
* @param string $root
|
|
|
|
*/
|
2018-01-12 13:52:06 +03:00
|
|
|
public function addValidRoot(string $root) {
|
2015-09-16 12:47:46 +03:00
|
|
|
$root = stream_resolve_include_path($root);
|
|
|
|
$this->validRoots[$root] = true;
|
2015-08-18 16:35:02 +03:00
|
|
|
}
|
|
|
|
|
2013-05-08 00:24:47 +04:00
|
|
|
/**
|
|
|
|
* disable the usage of the global classpath \OC::$CLASSPATH
|
|
|
|
*/
|
|
|
|
public function disableGlobalClassPath() {
|
|
|
|
$this->useGlobalClassPath = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* enable the usage of the global classpath \OC::$CLASSPATH
|
|
|
|
*/
|
|
|
|
public function enableGlobalClassPath() {
|
|
|
|
$this->useGlobalClassPath = true;
|
|
|
|
}
|
|
|
|
|
2013-05-08 00:19:00 +04:00
|
|
|
/**
|
2013-05-08 00:26:55 +04:00
|
|
|
* get the possible paths for a class
|
2013-05-08 00:19:00 +04:00
|
|
|
*
|
|
|
|
* @param string $class
|
2018-01-12 13:52:06 +03:00
|
|
|
* @return array an array of possible paths
|
2013-05-08 00:19:00 +04:00
|
|
|
*/
|
2018-01-12 13:52:06 +03:00
|
|
|
public function findClass(string $class): array {
|
2013-05-08 00:16:02 +04:00
|
|
|
$class = trim($class, '\\');
|
|
|
|
|
2018-01-12 13:52:06 +03:00
|
|
|
$paths = [];
|
2015-10-26 01:45:07 +03:00
|
|
|
if ($this->useGlobalClassPath && array_key_exists($class, \OC::$CLASSPATH)) {
|
2013-05-08 00:21:59 +04:00
|
|
|
$paths[] = \OC::$CLASSPATH[$class];
|
2013-05-08 00:19:00 +04:00
|
|
|
/**
|
|
|
|
* @TODO: Remove this when necessary
|
2016-05-19 16:38:16 +03:00
|
|
|
* Remove "apps/" from inclusion path for smooth migration to multi app dir
|
2013-05-08 00:16:02 +04:00
|
|
|
*/
|
2013-05-08 00:24:47 +04:00
|
|
|
if (strpos(\OC::$CLASSPATH[$class], 'apps/') === 0) {
|
2018-04-25 16:22:28 +03:00
|
|
|
\OCP\Util::writeLog('core', 'include path for class "' . $class . '" starts with "apps/"', ILogger::DEBUG);
|
2013-05-08 00:26:55 +04:00
|
|
|
$paths[] = str_replace('apps/', '', \OC::$CLASSPATH[$class]);
|
2013-05-08 00:16:02 +04:00
|
|
|
}
|
|
|
|
} elseif (strpos($class, 'OC_') === 0) {
|
2015-11-06 15:36:19 +03:00
|
|
|
$paths[] = \OC::$SERVERROOT . '/lib/private/legacy/' . strtolower(str_replace('_', '/', substr($class, 3)) . '.php');
|
2013-05-08 00:16:02 +04:00
|
|
|
} elseif (strpos($class, 'OCA\\') === 0) {
|
2013-05-08 02:50:33 +04:00
|
|
|
list(, $app, $rest) = explode('\\', $class, 3);
|
|
|
|
$app = strtolower($app);
|
2014-06-04 13:34:09 +04:00
|
|
|
$appPath = \OC_App::getAppPath($app);
|
2014-06-06 11:33:34 +04:00
|
|
|
if ($appPath && stream_resolve_include_path($appPath)) {
|
2014-06-04 13:34:09 +04:00
|
|
|
$paths[] = $appPath . '/' . strtolower(str_replace('\\', '/', $rest) . '.php');
|
|
|
|
// If not found in the root of the app directory, insert '/lib' after app id and try again.
|
|
|
|
$paths[] = $appPath . '/lib/' . strtolower(str_replace('\\', '/', $rest) . '.php');
|
2013-05-08 00:16:02 +04:00
|
|
|
}
|
2016-05-19 16:45:34 +03:00
|
|
|
} elseif ($class === 'Test\\TestCase') {
|
|
|
|
// This File is considered public API, so we make sure that the class
|
|
|
|
// can still be loaded, although the PSR-4 paths have not been loaded.
|
|
|
|
$paths[] = \OC::$SERVERROOT . '/tests/lib/TestCase.php';
|
2013-05-08 00:16:02 +04:00
|
|
|
}
|
2013-05-08 00:26:55 +04:00
|
|
|
return $paths;
|
|
|
|
}
|
|
|
|
|
2015-10-26 01:45:07 +03:00
|
|
|
/**
|
|
|
|
* @param string $fullPath
|
|
|
|
* @return bool
|
2018-01-12 13:52:06 +03:00
|
|
|
* @throws AutoloadNotAllowedException
|
2015-10-26 01:45:07 +03:00
|
|
|
*/
|
2018-01-12 13:52:06 +03:00
|
|
|
protected function isValidPath(string $fullPath): bool {
|
2015-09-16 12:47:46 +03:00
|
|
|
foreach ($this->validRoots as $root => $true) {
|
2015-08-18 16:35:02 +03:00
|
|
|
if (substr($fullPath, 0, strlen($root) + 1) === $root . '/') {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2015-09-05 18:50:02 +03:00
|
|
|
throw new AutoloadNotAllowedException($fullPath);
|
2015-08-18 16:35:02 +03:00
|
|
|
}
|
|
|
|
|
2013-05-08 00:26:55 +04:00
|
|
|
/**
|
|
|
|
* Load the specified class
|
|
|
|
*
|
|
|
|
* @param string $class
|
|
|
|
* @return bool
|
2018-01-12 13:52:06 +03:00
|
|
|
* @throws AutoloadNotAllowedException
|
2013-05-08 00:26:55 +04:00
|
|
|
*/
|
2018-01-12 13:52:06 +03:00
|
|
|
public function load(string $class): bool {
|
2013-10-21 16:04:07 +04:00
|
|
|
$pathsToRequire = null;
|
2013-08-17 18:01:37 +04:00
|
|
|
if ($this->memoryCache) {
|
|
|
|
$pathsToRequire = $this->memoryCache->get($class);
|
|
|
|
}
|
2013-05-08 00:16:02 +04:00
|
|
|
|
2020-04-10 15:19:56 +03:00
|
|
|
if (class_exists($class, false)) {
|
2016-03-22 18:15:02 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-10-21 16:04:07 +04:00
|
|
|
if (!is_array($pathsToRequire)) {
|
|
|
|
// No cache or cache miss
|
2020-03-26 11:30:18 +03:00
|
|
|
$pathsToRequire = [];
|
2013-10-21 16:04:07 +04:00
|
|
|
foreach ($this->findClass($class) as $path) {
|
2015-11-29 12:54:29 +03:00
|
|
|
$fullPath = stream_resolve_include_path($path);
|
2015-08-18 16:35:02 +03:00
|
|
|
if ($fullPath && $this->isValidPath($fullPath)) {
|
2013-08-17 18:01:37 +04:00
|
|
|
$pathsToRequire[] = $fullPath;
|
2013-05-08 00:26:55 +04:00
|
|
|
}
|
2013-05-08 00:21:59 +04:00
|
|
|
}
|
2013-08-17 18:01:37 +04:00
|
|
|
|
2013-10-21 17:35:52 +04:00
|
|
|
if ($this->memoryCache) {
|
|
|
|
$this->memoryCache->set($class, $pathsToRequire, 60); // cache 60 sec
|
|
|
|
}
|
2013-10-21 16:04:07 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($pathsToRequire as $fullPath) {
|
|
|
|
require_once $fullPath;
|
2013-05-08 00:16:02 +04:00
|
|
|
}
|
2013-10-21 16:04:07 +04:00
|
|
|
|
2013-05-08 00:16:02 +04:00
|
|
|
return false;
|
|
|
|
}
|
2013-10-21 16:04:07 +04:00
|
|
|
|
|
|
|
/**
|
2014-05-19 19:50:53 +04:00
|
|
|
* Sets the optional low-latency cache for class to path mapping.
|
2015-08-18 16:35:02 +03:00
|
|
|
*
|
2013-10-21 16:04:07 +04:00
|
|
|
* @param \OC\Memcache\Cache $memoryCache Instance of memory cache.
|
|
|
|
*/
|
2013-10-22 13:16:08 +04:00
|
|
|
public function setMemoryCache(\OC\Memcache\Cache $memoryCache = null) {
|
2013-10-21 16:04:07 +04:00
|
|
|
$this->memoryCache = $memoryCache;
|
|
|
|
}
|
2013-05-08 00:16:02 +04:00
|
|
|
}
|