diff options
author | Robin Appelman <icewind@owncloud.com> | 2013-05-07 22:16:02 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2013-05-07 22:16:17 +0200 |
commit | 0b5f6b9c13f5516c2d16fb938e77c9168a74b76d (patch) | |
tree | 5dcc266e4a4b7e621d0707a3b608cc058d09f7ae /lib | |
parent | 175633d380e2073ce2f17108701df2b65e3c7e75 (diff) | |
download | nextcloud-server-0b5f6b9c13f5516c2d16fb938e77c9168a74b76d.tar.gz nextcloud-server-0b5f6b9c13f5516c2d16fb938e77c9168a74b76d.zip |
Move autoloader to it's own class
Diffstat (limited to 'lib')
-rw-r--r-- | lib/autoloader.php | 65 | ||||
-rw-r--r-- | lib/base.php | 62 |
2 files changed, 71 insertions, 56 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php new file mode 100644 index 00000000000..27052e60a79 --- /dev/null +++ b/lib/autoloader.php @@ -0,0 +1,65 @@ +<?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 { + public function load($class) { + $class = trim($class, '\\'); + + if (array_key_exists($class, \OC::$CLASSPATH)) { + $path = \OC::$CLASSPATH[$class]; + /** @TODO: Remove this when necessary + Remove "apps/" from inclusion path for smooth migration to mutli app dir + */ + if (strpos($path, 'apps/') === 0) { + \OC_Log::write('core', 'include path for class "' . $class . '" starts with "apps/"', \OC_Log::DEBUG); + $path = str_replace('apps/', '', $path); + } + } elseif (strpos($class, 'OC_') === 0) { + $path = strtolower(str_replace('_', '/', substr($class, 3)) . '.php'); + } elseif (strpos($class, 'OC\\') === 0) { + $path = strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); + } elseif (strpos($class, 'OCP\\') === 0) { + $path = 'public/' . strtolower(str_replace('\\', '/', substr($class, 3)) . '.php'); + } elseif (strpos($class, 'OCA\\') === 0) { + foreach (\OC::$APPSROOTS as $appDir) { + $path = strtolower(str_replace('\\', '/', substr($class, 4)) . '.php'); + $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $path); + if (file_exists($fullPath)) { + require_once $fullPath; + return false; + } + // If not found in the root of the app directory, insert '/lib' after app id and try again. + $libpath = substr($path, 0, strpos($path, '/')) . '/lib' . substr($path, strpos($path, '/')); + $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $libpath); + if (file_exists($fullPath)) { + require_once $fullPath; + return false; + } + } + } elseif (strpos($class, 'Sabre_') === 0) { + $path = str_replace('_', '/', $class) . '.php'; + } elseif (strpos($class, 'Symfony\\Component\\Routing\\') === 0) { + $path = 'symfony/routing/' . str_replace('\\', '/', $class) . '.php'; + } elseif (strpos($class, 'Sabre\\VObject') === 0) { + $path = str_replace('\\', '/', $class) . '.php'; + } elseif (strpos($class, 'Test_') === 0) { + $path = 'tests/lib/' . strtolower(str_replace('_', '/', substr($class, 5)) . '.php'); + } elseif (strpos($class, 'Test\\') === 0) { + $path = 'tests/lib/' . strtolower(str_replace('\\', '/', substr($class, 5)) . '.php'); + } else { + return false; + } + + if ($fullPath = stream_resolve_include_path($path)) { + require_once $fullPath; + } + return false; + } +} diff --git a/lib/base.php b/lib/base.php index 8633ae9b637..eb3bd410d3b 100644 --- a/lib/base.php +++ b/lib/base.php @@ -75,61 +75,9 @@ class OC { protected static $router = null; /** - * SPL autoload + * @var \OC\Autoloader $loader */ - public static function autoload($className) { - $className = trim($className, '\\'); - - if (array_key_exists($className, OC::$CLASSPATH)) { - $path = OC::$CLASSPATH[$className]; - /** @TODO: Remove this when necessary - Remove "apps/" from inclusion path for smooth migration to mutli app dir - */ - if (strpos($path, 'apps/') === 0) { - OC_Log::write('core', 'include path for class "' . $className . '" starts with "apps/"', OC_Log::DEBUG); - $path = str_replace('apps/', '', $path); - } - } elseif (strpos($className, 'OC_') === 0) { - $path = strtolower(str_replace('_', '/', substr($className, 3)) . '.php'); - } elseif (strpos($className, 'OC\\') === 0) { - $path = strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); - } elseif (strpos($className, 'OCP\\') === 0) { - $path = 'public/' . strtolower(str_replace('\\', '/', substr($className, 3)) . '.php'); - } elseif (strpos($className, 'OCA\\') === 0) { - foreach (self::$APPSROOTS as $appDir) { - $path = strtolower(str_replace('\\', '/', substr($className, 4)) . '.php'); - $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $path); - if (file_exists($fullPath)) { - require_once $fullPath; - return false; - } - // If not found in the root of the app directory, insert '/lib' after app id and try again. - $libpath = substr($path, 0, strpos($path, '/')) . '/lib' . substr($path, strpos($path, '/')); - $fullPath = stream_resolve_include_path($appDir['path'] . '/' . $libpath); - if (file_exists($fullPath)) { - require_once $fullPath; - return false; - } - } - } elseif (strpos($className, 'Sabre_') === 0) { - $path = str_replace('_', '/', $className) . '.php'; - } elseif (strpos($className, 'Symfony\\Component\\Routing\\') === 0) { - $path = 'symfony/routing/' . str_replace('\\', '/', $className) . '.php'; - } elseif (strpos($className, 'Sabre\\VObject') === 0) { - $path = str_replace('\\', '/', $className) . '.php'; - } elseif (strpos($className, 'Test_') === 0) { - $path = 'tests/lib/' . strtolower(str_replace('_', '/', substr($className, 5)) . '.php'); - } elseif (strpos($className, 'Test\\') === 0) { - $path = 'tests/lib/' . strtolower(str_replace('\\', '/', substr($className, 5)) . '.php'); - } else { - return false; - } - - if ($fullPath = stream_resolve_include_path($path)) { - require_once $fullPath; - } - return false; - } + public static $loader = null; public static function initPaths() { // calculate the root directories @@ -396,7 +344,9 @@ class OC { public static function init() { // register autoloader - spl_autoload_register(array('OC', 'autoload')); + require_once 'autoloader.php'; + self::$loader=new \OC\Autoloader(); + spl_autoload_register(array(self::$loader, 'load')); OC_Util::issetlocaleworking(); // set some stuff @@ -643,7 +593,7 @@ class OC { // Deny the redirect if the URL contains a @ // This prevents unvalidated redirects like ?redirect_url=:user@domain.com - if (strpos($location, '@') === FALSE) { + if (strpos($location, '@') === false) { header('Location: ' . $location); return; } |