mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-09-13 05:58:03 -04:00
* Fix all broken links in the entire repository * Update docs/CHANGELOG-old2.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update config.default.php Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update README.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update docs/i18n/freshrss.fr.po Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update docs/i18n/templates/freshrss.pot Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update README.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update docs/fr/users/01_Installation.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update docs/fr/users/01_Installation.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Update docs/en/internationalization.md Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr> * Manual fixes, preferences * Prefer canonical when known, prefer shorter, prefer roots, prefer URLs with content negotation (e.g. language preference) * Keep 302, 307 unchanged * Use only `.example`, `example.net` or similarly reserved domains for URL examples * Fix language negotiation for developer.mozilla.org * Restore a Stackoverflow 302 * Fix some example.com --------- Co-authored-by: Alexandre Alapetite <alexandre@alapetite.fr>
71 lines
2.1 KiB
PHP
71 lines
2.1 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
/**
|
|
* API entry point for FreshRSS extensions on
|
|
* `/api/misc.php/Extension%20name/` or `/api/misc.php?ext=Extension%20name`
|
|
*/
|
|
|
|
require dirname(__DIR__, 2) . '/constants.php';
|
|
require LIB_PATH . '/lib_rss.php'; //Includes class autoloader
|
|
|
|
$extensionName = is_string($_GET['ext'] ?? null) ? $_GET['ext'] : '';
|
|
|
|
if ($extensionName === '') {
|
|
$pathInfo = '';
|
|
if (empty($_SERVER['PATH_INFO']) || !is_string($_SERVER['PATH_INFO'] ?? null)) {
|
|
if (!empty($_SERVER['ORIG_PATH_INFO']) && is_string($_SERVER['ORIG_PATH_INFO'])) {
|
|
// Compatibility https://www.php.net/reserved.variables.server
|
|
$pathInfo = $_SERVER['ORIG_PATH_INFO'];
|
|
}
|
|
} else {
|
|
$pathInfo = $_SERVER['PATH_INFO'];
|
|
}
|
|
$pathInfo = rawurldecode($pathInfo);
|
|
$pathInfo = preg_replace('%^(/api)?(/misc\.php)?%', '', $pathInfo); //Discard common errors
|
|
if ($pathInfo !== '' && is_string($pathInfo)) {
|
|
$pathInfos = explode('/', $pathInfo, limit: 3);
|
|
if (count($pathInfos) > 1) {
|
|
$extensionName = $pathInfos[1];
|
|
}
|
|
}
|
|
}
|
|
|
|
if ($extensionName === '') {
|
|
header('HTTP/1.1 400 Bad Request');
|
|
header('Content-Type: text/plain; charset=UTF-8');
|
|
die('Bad Request!');
|
|
}
|
|
|
|
Minz_Session::init('FreshRSS', volatile: true);
|
|
|
|
FreshRSS_Context::initSystem();
|
|
if (!FreshRSS_Context::hasSystemConf()) {
|
|
header('HTTP/1.1 500 Internal Server Error');
|
|
header('Content-Type: text/plain; charset=UTF-8');
|
|
die('Internal Server Error!');
|
|
}
|
|
|
|
if (!FreshRSS_Context::systemConf()->api_enabled) {
|
|
header('HTTP/1.1 503 Service Unavailable');
|
|
header('Content-Type: text/plain; charset=UTF-8');
|
|
die('Service Unavailable!');
|
|
}
|
|
|
|
if (empty(FreshRSS_Context::systemConf()->extensions_enabled[$extensionName])) {
|
|
header('HTTP/1.1 404 Not Found');
|
|
header('Content-Type: text/plain; charset=UTF-8');
|
|
die('Not Found!');
|
|
}
|
|
|
|
// Only enable the extension that is being called
|
|
FreshRSS_Context::systemConf()->extensions_enabled = [$extensionName => true];
|
|
Minz_ExtensionManager::init();
|
|
|
|
Minz_Translate::init();
|
|
|
|
if (!Minz_ExtensionManager::callHookUnique(Minz_HookType::ApiMisc)) {
|
|
header('HTTP/1.1 501 Not Implemented');
|
|
header('Content-Type: text/plain; charset=UTF-8');
|
|
die('Not Implemented!');
|
|
}
|