nextcloud/lib/autoloader.php

96 lines
3.1 KiB
PHP
Raw Normal View History

2013-05-08 00:16:02 +04:00
<?php
/**
* Copyright (c) 2013 Robin Appelman <icewind@owncloud.com>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
namespace OC;
class Autoloader {
private $useGlobalClassPath = true;
2013-05-08 00:19:00 +04:00
private $classPaths = array();
/**
* Add a custom classpath to the autoloader
*
* @param string $class
* @param string $path
*/
public function registerClass($class, $path) {
$this->classPaths[$class] = $path;
}
/**
* 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
/**
* Load the specified class
*
* @param string $class
* @return bool
*/
2013-05-08 00:16:02 +04:00
public function load($class) {
$class = trim($class, '\\');
$paths = array();
2013-05-08 00:19:00 +04:00
if (array_key_exists($class, $this->classPaths)) {
$paths[] = $this->classPaths[$class];
} else if ($this->useGlobalClassPath and array_key_exists($class, \OC::$CLASSPATH)) {
$paths[] = \OC::$CLASSPATH[$class];
2013-05-08 00:19:00 +04:00
/**
* @TODO: Remove this when necessary
* Remove "apps/" from inclusion path for smooth migration to mutli app dir
2013-05-08 00:16:02 +04:00
*/
if (strpos(\OC::$CLASSPATH[$class], 'apps/') === 0) {
2013-05-08 00:16:02 +04:00
\OC_Log::write('core', 'include path for class "' . $class . '" starts with "apps/"', \OC_Log::DEBUG);
$path = str_replace('apps/', '', \OC::$CLASSPATH[$class]);
2013-05-08 00:16:02 +04:00
}
} elseif (strpos($class, 'OC_') === 0) {
$paths[] = strtolower(str_replace('_', '/', substr($class, 3)) . '.php');
2013-05-08 00:16:02 +04:00
} elseif (strpos($class, 'OC\\') === 0) {
$paths[] = strtolower(str_replace('\\', '/', substr($class, 3)) . '.php');
2013-05-08 00:16:02 +04:00
} elseif (strpos($class, 'OCP\\') === 0) {
$paths[] = 'public/' . strtolower(str_replace('\\', '/', substr($class, 3)) . '.php');
2013-05-08 00:16:02 +04:00
} elseif (strpos($class, 'OCA\\') === 0) {
foreach (\OC::$APPSROOTS as $appDir) {
$paths[] = $appDir['path'] . '/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php');
2013-05-08 00:16:02 +04:00
// If not found in the root of the app directory, insert '/lib' after app id and try again.
$paths[] = $appDir['path'] . '/lib/' . strtolower(str_replace('\\', '/', substr($class, 4)) . '.php');
2013-05-08 00:16:02 +04:00
}
} elseif (strpos($class, 'Sabre_') === 0) {
$paths[] = str_replace('_', '/', $class) . '.php';
2013-05-08 00:16:02 +04:00
} elseif (strpos($class, 'Symfony\\Component\\Routing\\') === 0) {
$paths[] = 'symfony/routing/' . str_replace('\\', '/', $class) . '.php';
2013-05-08 00:16:02 +04:00
} elseif (strpos($class, 'Sabre\\VObject') === 0) {
$paths[] = str_replace('\\', '/', $class) . '.php';
2013-05-08 00:16:02 +04:00
} elseif (strpos($class, 'Test_') === 0) {
$paths[] = 'tests/lib/' . strtolower(str_replace('_', '/', substr($class, 5)) . '.php');
2013-05-08 00:16:02 +04:00
} elseif (strpos($class, 'Test\\') === 0) {
$paths[] = 'tests/lib/' . strtolower(str_replace('\\', '/', substr($class, 5)) . '.php');
2013-05-08 00:16:02 +04:00
} else {
return false;
}
foreach ($paths as $path) {
if ($fullPath = stream_resolve_include_path($path)) {
require_once $fullPath;
}
2013-05-08 00:16:02 +04:00
}
return false;
}
}