mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-24 14:07:45 -05:00
* Housekeeping lib_rss.php `lib_rss.php` had become much too large, especially after https://github.com/FreshRSS/FreshRSS/pull/7924 Moved most functions to other places. Mostly no change of code otherwise (see comments). * Extension: composer run-script phpstan-third-party
361 lines
12 KiB
PHP
361 lines
12 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* The controller to manage extensions.
|
|
*
|
|
* @phpstan-type ExtensionFullMetadata array{name:string,entrypoint:string,author:string,description:string,version:string,type:'system'|'user',url:string,method:string,directory:string,compatibility:string}
|
|
*/
|
|
class FreshRSS_extension_Controller extends FreshRSS_ActionController {
|
|
/**
|
|
* This action is called before every other action in that class. It is
|
|
* the common boiler plate for every action. It is triggered by the
|
|
* underlying framework.
|
|
*/
|
|
#[\Override]
|
|
public function firstAction(): void {
|
|
if (!FreshRSS_Auth::hasAccess()) {
|
|
Minz_Error::error(403);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This action lists all the extensions available to the current user.
|
|
*/
|
|
public function indexAction(): void {
|
|
FreshRSS_View::prependTitle(_t('admin.extensions.title') . ' · ');
|
|
$this->view->extension_list = [
|
|
'system' => [],
|
|
'user' => [],
|
|
];
|
|
|
|
$this->view->extensions_installed = [];
|
|
|
|
$extensions = Minz_ExtensionManager::listExtensions();
|
|
foreach ($extensions as $ext) {
|
|
$this->view->extension_list[$ext->getType()][] = $ext;
|
|
$this->view->extensions_installed[$ext->getEntrypoint()] = $ext->getVersion();
|
|
}
|
|
|
|
$this->view->available_extensions = $this->getAvailableExtensionList();
|
|
}
|
|
|
|
/**
|
|
* Fetch extension list from GitHub
|
|
* @phpstan-return list<ExtensionFullMetadata>
|
|
*/
|
|
protected function getAvailableExtensionList(): array {
|
|
$extensionListUrl = 'https://raw.githubusercontent.com/FreshRSS/Extensions/refs/heads/main/extensions.json';
|
|
|
|
$cacheFile = CACHE_PATH . '/extension_list.json';
|
|
if (FreshRSS_Context::userConf()->retrieve_extension_list === true) {
|
|
if (!file_exists($cacheFile) || (time() - (filemtime($cacheFile) ?: 0) > 86400)) {
|
|
$json = FreshRSS_http_Util::httpGet($extensionListUrl, $cacheFile, 'json')['body'];
|
|
} else {
|
|
$json = @file_get_contents($cacheFile) ?: '';
|
|
}
|
|
} else {
|
|
Minz_Log::warning('The extension list retrieval is disabled in privacy configuration');
|
|
return [];
|
|
}
|
|
|
|
// we ran into problems, simply ignore them
|
|
if ($json === '') {
|
|
Minz_Log::error('Could not fetch available extension from GitHub');
|
|
return [];
|
|
}
|
|
|
|
// fetch the list as an array
|
|
/** @var array<string,mixed> $list*/
|
|
$list = json_decode($json, true);
|
|
if (!is_array($list) || empty($list['extensions']) || !is_array($list['extensions'])) {
|
|
Minz_Log::warning('Failed to convert extension file list');
|
|
return [];
|
|
}
|
|
|
|
// By now, all the needed data is kept in the main extension file.
|
|
// In the future we could fetch detail information from the extensions metadata.json, but I tend to stick with
|
|
// the current implementation for now, unless it becomes too much effort maintain the extension list manually
|
|
$extensions = [];
|
|
foreach ($list['extensions'] as $extension) {
|
|
if (!is_array($extension)) {
|
|
continue;
|
|
}
|
|
if (isset($extension['version']) && is_numeric($extension['version'])) {
|
|
$extension['version'] = (string)$extension['version'];
|
|
}
|
|
if (!array_key_exists('compatibility', $extension)) {
|
|
$extension['compatibility'] = '✔';
|
|
}
|
|
$keys = ['author', 'description', 'directory', 'entrypoint', 'method', 'name', 'type', 'url', 'version', 'compatibility'];
|
|
$extension = array_intersect_key($extension, array_flip($keys)); // Keep only valid keys
|
|
$extension = array_filter($extension, 'is_string');
|
|
foreach ($keys as $key) {
|
|
if (empty($extension[$key])) {
|
|
continue 2;
|
|
}
|
|
}
|
|
if (!in_array($extension['type'], ['system', 'user'], true) || trim($extension['name']) === '') {
|
|
continue;
|
|
}
|
|
/** @var ExtensionFullMetadata $extension */
|
|
$extensions[] = $extension;
|
|
}
|
|
|
|
return array_map(static function (array $extension) {
|
|
if ($extension['compatibility'] !== '✔') {
|
|
$extension['compatibility'] = version_compare($extension['compatibility'], FRESHRSS_VERSION, '>=') ? '✔' : '✘';
|
|
}
|
|
return $extension;
|
|
}, $extensions);
|
|
}
|
|
|
|
/**
|
|
* This action handles configuration of a given extension.
|
|
*
|
|
* Only administrator can configure a system extension.
|
|
*
|
|
* Parameters are:
|
|
* - e: the extension name (urlencoded)
|
|
* - additional parameters which should be handle by the extension
|
|
* handleConfigureAction() method (POST request).
|
|
*/
|
|
public function configureAction(): void {
|
|
if (Minz_Request::paramBoolean('ajax')) {
|
|
$this->view->_layout(null);
|
|
} elseif (Minz_Request::paramBoolean('slider')) {
|
|
$this->indexAction();
|
|
$this->view->_path('extension/index.phtml');
|
|
}
|
|
|
|
$ext_name = urldecode(Minz_Request::paramString('e'));
|
|
$ext = Minz_ExtensionManager::findExtension($ext_name);
|
|
|
|
if ($ext === null) {
|
|
Minz_Error::error(404);
|
|
return;
|
|
}
|
|
if ($ext->getType() === 'system' && !FreshRSS_Auth::hasAccess('admin')) {
|
|
Minz_Error::error(403);
|
|
return;
|
|
}
|
|
|
|
FreshRSS_View::prependTitle($ext->getName() . ' · ' . _t('admin.extensions.title') . ' · ');
|
|
$this->view->extension = $ext;
|
|
try {
|
|
$this->view->extension->handleConfigureAction();
|
|
} catch (Minz_Exception $e) { // @phpstan-ignore catch.neverThrown (Thrown by extensions)
|
|
Minz_Log::error('Error while configuring extension ' . $ext->getName() . ': ' . $e->getMessage());
|
|
Minz_Request::bad(_t('feedback.extensions.enable.ko', $ext_name, _url('index', 'logs')), ['c' => 'extension', 'a' => 'index']);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This action enables a disabled extension for the current user.
|
|
*
|
|
* System extensions can only be enabled by an administrator.
|
|
* This action must be reached by a POST request.
|
|
*
|
|
* Parameter is:
|
|
* - e: the extension name (urlencoded).
|
|
*/
|
|
public function enableAction(): void {
|
|
$url_redirect = ['c' => 'extension', 'a' => 'index'];
|
|
|
|
if (Minz_Request::isPost()) {
|
|
$ext_name = urldecode(Minz_Request::paramString('e'));
|
|
$ext = Minz_ExtensionManager::findExtension($ext_name);
|
|
|
|
if (is_null($ext)) {
|
|
Minz_Request::bad(_t('feedback.extensions.not_found', $ext_name), $url_redirect);
|
|
return;
|
|
}
|
|
|
|
if ($ext->isEnabled()) {
|
|
Minz_Request::bad(_t('feedback.extensions.already_enabled', $ext_name), $url_redirect);
|
|
}
|
|
|
|
$type = $ext->getType();
|
|
if ($type !== 'user' && !FreshRSS_Auth::hasAccess('admin')) {
|
|
Minz_Request::bad(_t('feedback.extensions.no_access', $ext_name), $url_redirect);
|
|
return;
|
|
}
|
|
|
|
$conf = null;
|
|
if ($type === 'system') {
|
|
$conf = FreshRSS_Context::systemConf();
|
|
} elseif ($type === 'user') {
|
|
$conf = FreshRSS_Context::userConf();
|
|
}
|
|
|
|
$res = $ext->install();
|
|
|
|
if ($conf !== null && $res === true) {
|
|
$ext_list = $conf->extensions_enabled;
|
|
$ext_list = array_filter($ext_list, static function (string $key) use ($type) {
|
|
// Remove from list the extensions that have disappeared or changed type
|
|
$extension = Minz_ExtensionManager::findExtension($key);
|
|
return $extension !== null && $extension->getType() === $type;
|
|
}, ARRAY_FILTER_USE_KEY);
|
|
|
|
$ext_list[$ext_name] = true;
|
|
$conf->extensions_enabled = $ext_list;
|
|
$conf->save();
|
|
|
|
Minz_Request::good(
|
|
_t('feedback.extensions.enable.ok', $ext_name),
|
|
$url_redirect,
|
|
showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
|
|
);
|
|
} else {
|
|
Minz_Log::warning('Cannot enable extension ' . $ext_name . ': ' . $res);
|
|
Minz_Request::bad(_t('feedback.extensions.enable.ko', $ext_name, _url('index', 'logs')), $url_redirect);
|
|
}
|
|
}
|
|
|
|
Minz_Request::forward($url_redirect, true);
|
|
}
|
|
|
|
/**
|
|
* This action disables an enabled extension for the current user.
|
|
*
|
|
* System extensions can only be disabled by an administrator.
|
|
* This action must be reached by a POST request.
|
|
*
|
|
* Parameter is:
|
|
* - e: the extension name (urlencoded).
|
|
*/
|
|
public function disableAction(): void {
|
|
$url_redirect = ['c' => 'extension', 'a' => 'index'];
|
|
|
|
if (Minz_Request::isPost()) {
|
|
$ext_name = urldecode(Minz_Request::paramString('e'));
|
|
$ext = Minz_ExtensionManager::findExtension($ext_name);
|
|
|
|
if (is_null($ext)) {
|
|
Minz_Request::bad(_t('feedback.extensions.not_found', $ext_name), $url_redirect);
|
|
return;
|
|
}
|
|
|
|
if (!$ext->isEnabled()) {
|
|
Minz_Request::bad(_t('feedback.extensions.not_enabled', $ext_name), $url_redirect);
|
|
}
|
|
|
|
$type = $ext->getType();
|
|
if ($type !== 'user' && !FreshRSS_Auth::hasAccess('admin')) {
|
|
Minz_Request::bad(_t('feedback.extensions.no_access', $ext_name), $url_redirect);
|
|
return;
|
|
}
|
|
|
|
$conf = null;
|
|
if ($type === 'system') {
|
|
$conf = FreshRSS_Context::systemConf();
|
|
} elseif ($type === 'user') {
|
|
$conf = FreshRSS_Context::userConf();
|
|
}
|
|
|
|
$res = $ext->uninstall();
|
|
|
|
if ($conf !== null && $res === true) {
|
|
$ext_list = $conf->extensions_enabled;
|
|
$ext_list = array_filter($ext_list, static function (string $key) use ($type) {
|
|
// Remove from list the extensions that have disappeared or changed type
|
|
$extension = Minz_ExtensionManager::findExtension($key);
|
|
return $extension !== null && $extension->getType() === $type;
|
|
}, ARRAY_FILTER_USE_KEY);
|
|
|
|
$ext_list[$ext_name] = false;
|
|
$conf->extensions_enabled = $ext_list;
|
|
$conf->save();
|
|
|
|
Minz_Request::good(
|
|
_t('feedback.extensions.disable.ok', $ext_name),
|
|
$url_redirect,
|
|
showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
|
|
);
|
|
} else {
|
|
Minz_Log::warning('Cannot disable extension ' . $ext_name . ': ' . $res);
|
|
Minz_Request::bad(_t('feedback.extensions.disable.ko', $ext_name, _url('index', 'logs')), $url_redirect);
|
|
}
|
|
}
|
|
|
|
Minz_Request::forward($url_redirect, true);
|
|
}
|
|
|
|
/**
|
|
* This action handles deletion of an extension.
|
|
*
|
|
* Only administrator can remove an extension.
|
|
* This action must be reached by a POST request.
|
|
*
|
|
* Parameter is:
|
|
* -e: extension name (urlencoded)
|
|
*/
|
|
public function removeAction(): void {
|
|
if (!FreshRSS_Auth::hasAccess('admin')) {
|
|
Minz_Error::error(403);
|
|
}
|
|
|
|
$url_redirect = ['c' => 'extension', 'a' => 'index'];
|
|
|
|
if (Minz_Request::isPost()) {
|
|
$ext_name = urldecode(Minz_Request::paramString('e'));
|
|
$ext = Minz_ExtensionManager::findExtension($ext_name);
|
|
|
|
if (is_null($ext)) {
|
|
Minz_Request::bad(_t('feedback.extensions.not_found', $ext_name), $url_redirect);
|
|
return;
|
|
}
|
|
|
|
$res = recursive_unlink($ext->getPath());
|
|
if ($res) {
|
|
Minz_Request::good(
|
|
_t('feedback.extensions.removed', $ext_name),
|
|
$url_redirect,
|
|
showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
|
|
);
|
|
} else {
|
|
Minz_Request::bad(_t('feedback.extensions.cannot_remove', $ext_name), $url_redirect);
|
|
}
|
|
}
|
|
|
|
Minz_Request::forward($url_redirect, true);
|
|
}
|
|
|
|
// Supported types with their associated content type
|
|
public const MIME_TYPES = [
|
|
'css' => 'text/css; charset=UTF-8',
|
|
'gif' => 'image/gif',
|
|
'jpeg' => 'image/jpeg',
|
|
'jpg' => 'image/jpeg',
|
|
'js' => 'application/javascript; charset=UTF-8',
|
|
'png' => 'image/png',
|
|
'svg' => 'image/svg+xml',
|
|
];
|
|
|
|
public function serveAction(): void {
|
|
$extensionName = Minz_Request::paramString('x');
|
|
$filename = Minz_Request::paramString('f');
|
|
$mimeType = pathinfo($filename, PATHINFO_EXTENSION);
|
|
if ($extensionName === '' || $filename === '' || $mimeType === '' || empty(self::MIME_TYPES[$mimeType])) {
|
|
header('HTTP/1.1 400 Bad Request');
|
|
die('Bad Request!');
|
|
}
|
|
$extension = Minz_ExtensionManager::findExtension($extensionName);
|
|
if ($extension === null || !$extension->isEnabled() || ($mtime = $extension->mtimeFile($filename)) === null) {
|
|
header('HTTP/1.1 404 Not Found');
|
|
die('Not Found!');
|
|
}
|
|
|
|
$this->view->_layout(null);
|
|
|
|
$content_type = self::MIME_TYPES[$mimeType];
|
|
header("Content-Type: {$content_type}");
|
|
header("Content-Disposition: inline; filename='{$filename}'");
|
|
header('Referrer-Policy: same-origin');
|
|
if (file_exists(DATA_PATH . '/no-cache.txt') || !httpConditional($mtime, cacheSeconds: 604800, cachePrivacy: 2)) {
|
|
echo $extension->getFile($filename);
|
|
}
|
|
}
|
|
}
|