1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:35:56 +00:00

update autoloader to consider namespaces for third party libraries: placed and loaded from vendor/namespace/classpath.php

update readability to a newer implementation based on Readability.js (https://github.com/andreskrey/readability.php)
add vendor/Psr/Log interface required for the above
This commit is contained in:
Andrew Dolgov
2018-06-20 14:58:09 +03:00
parent d00d515320
commit 2aaefbfa54
30 changed files with 3494 additions and 19 deletions

View File

@@ -2,12 +2,21 @@
require_once "functions.php";
spl_autoload_register(function($class) {
$class_file = str_replace("_", "/", strtolower(basename($class)));
list ($namespace, $class_name) = explode('\\', $class, 2);
$file = dirname(__FILE__)."/../classes/$class_file.php";
$root_dir = dirname(__DIR__); // we're in tt-rss/include
if (file_exists($file)) {
require $file;
// 1. third party libraries with namespaces are loaded from vendor/
// 2. internal tt-rss classes are loaded from classes/ and use special naming logic instead of namespaces
// 3. plugin classes are loaded by PluginHandler from plugins.local/ and plugins/ (TODO: use generic autoloader?)
if ($namespace && $class_name) {
$class_file = "$root_dir/vendor/$namespace/" . str_replace('\\', '/', $class_name) . ".php";
} else {
$class_file = "$root_dir/classes/" . str_replace("_", "/", strtolower($class)) . ".php";
}
if (file_exists($class_file))
include $class_file;
});