2013-08-11 15:30:41 +04:00
|
|
|
<?php
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2018-11-15 22:52:17 +03:00
|
|
|
/**
|
|
|
|
* This file is part of RSS-Bridge, a PHP project capable of generating RSS and
|
|
|
|
* Atom feeds for websites that don't have one.
|
|
|
|
*
|
|
|
|
* For the full license information, please view the UNLICENSE file distributed
|
|
|
|
* with this source code.
|
|
|
|
*
|
|
|
|
* @package Core
|
|
|
|
* @license http://unlicense.org/ UNLICENSE
|
|
|
|
* @link https://github.com/rss-bridge/rss-bridge
|
|
|
|
*/
|
2013-08-11 15:30:41 +04:00
|
|
|
|
2018-11-15 22:52:17 +03:00
|
|
|
/** Path to the root folder of RSS-Bridge (where index.php is located) */
|
|
|
|
define('PATH_ROOT', __DIR__ . '/../');
|
|
|
|
|
|
|
|
/** Path to the core library */
|
2019-06-07 20:51:00 +03:00
|
|
|
define('PATH_LIB', PATH_ROOT . 'lib/');
|
2018-11-15 22:52:17 +03:00
|
|
|
|
|
|
|
/** Path to the vendor library */
|
2019-06-07 20:51:00 +03:00
|
|
|
define('PATH_LIB_VENDOR', PATH_ROOT . 'vendor/');
|
2018-11-15 22:52:17 +03:00
|
|
|
|
|
|
|
/** Path to the bridges library */
|
2019-06-07 20:51:00 +03:00
|
|
|
define('PATH_LIB_BRIDGES', PATH_ROOT . 'bridges/');
|
2018-11-15 22:52:17 +03:00
|
|
|
|
|
|
|
/** Path to the formats library */
|
2019-06-07 20:51:00 +03:00
|
|
|
define('PATH_LIB_FORMATS', PATH_ROOT . 'formats/');
|
2018-11-15 22:52:17 +03:00
|
|
|
|
|
|
|
/** Path to the caches library */
|
2019-06-07 20:51:00 +03:00
|
|
|
define('PATH_LIB_CACHES', PATH_ROOT . 'caches/');
|
2018-11-15 22:52:17 +03:00
|
|
|
|
2019-02-06 20:34:51 +03:00
|
|
|
/** Path to the actions library */
|
2019-06-07 20:51:00 +03:00
|
|
|
define('PATH_LIB_ACTIONS', PATH_ROOT . 'actions/');
|
2019-02-06 20:34:51 +03:00
|
|
|
|
2018-11-15 22:52:17 +03:00
|
|
|
/** Path to the cache folder */
|
2019-06-07 20:51:00 +03:00
|
|
|
define('PATH_CACHE', PATH_ROOT . 'cache/');
|
2018-11-15 22:52:17 +03:00
|
|
|
|
|
|
|
/** Path to the whitelist file */
|
2019-06-07 20:51:00 +03:00
|
|
|
define('WHITELIST', PATH_ROOT . 'whitelist.txt');
|
2018-11-15 22:52:17 +03:00
|
|
|
|
2019-06-06 21:53:44 +03:00
|
|
|
/** Path to the default whitelist file */
|
2019-06-07 20:51:00 +03:00
|
|
|
define('WHITELIST_DEFAULT', PATH_ROOT . 'whitelist.default.txt');
|
2019-06-06 21:53:44 +03:00
|
|
|
|
2019-06-07 20:45:47 +03:00
|
|
|
/** Path to the configuration file */
|
|
|
|
define('FILE_CONFIG', PATH_ROOT . 'config.ini.php');
|
|
|
|
|
|
|
|
/** Path to the default configuration file */
|
|
|
|
define('FILE_CONFIG_DEFAULT', PATH_ROOT . 'config.default.ini.php');
|
|
|
|
|
2018-11-15 22:52:17 +03:00
|
|
|
/** URL to the RSS-Bridge repository */
|
2018-11-06 20:53:35 +03:00
|
|
|
define('REPOSITORY', 'https://github.com/RSS-Bridge/rss-bridge/');
|
2018-11-06 20:24:05 +03:00
|
|
|
|
2022-07-08 21:39:13 +03:00
|
|
|
// Files
|
2018-11-06 20:44:45 +03:00
|
|
|
require_once PATH_LIB . 'html.php';
|
|
|
|
require_once PATH_LIB . 'error.php';
|
|
|
|
require_once PATH_LIB . 'contents.php';
|
2021-10-29 23:06:04 +03:00
|
|
|
require_once PATH_LIB . 'php8backports.php';
|
2013-08-11 15:30:41 +04:00
|
|
|
|
2018-11-06 20:29:00 +03:00
|
|
|
// Vendor
|
2019-01-14 00:02:59 +03:00
|
|
|
define('MAX_FILE_SIZE', 10000000); /* Allow larger files for simple_html_dom */
|
2020-10-09 21:29:02 +03:00
|
|
|
require_once PATH_LIB_VENDOR . 'parsedown/Parsedown.php';
|
2018-11-06 20:44:45 +03:00
|
|
|
require_once PATH_LIB_VENDOR . 'php-urljoin/src/urljoin.php';
|
2020-10-09 21:29:02 +03:00
|
|
|
require_once PATH_LIB_VENDOR . 'simplehtmldom/simple_html_dom.php';
|
2022-04-13 22:04:10 +03:00
|
|
|
|
2022-04-26 01:57:59 +03:00
|
|
|
spl_autoload_register(function ($className) {
|
|
|
|
$folders = [
|
|
|
|
__DIR__ . '/../actions/',
|
|
|
|
__DIR__ . '/../bridges/',
|
|
|
|
__DIR__ . '/../caches/',
|
|
|
|
__DIR__ . '/../formats/',
|
|
|
|
__DIR__ . '/../lib/',
|
|
|
|
];
|
|
|
|
foreach ($folders as $folder) {
|
|
|
|
$file = $folder . $className . '.php';
|
|
|
|
if (is_file($file)) {
|
|
|
|
require $file;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|