2019-02-06 18:34:51 +01:00
|
|
|
<?php
|
2022-07-01 15:10:30 +02:00
|
|
|
|
2019-02-06 18:34:51 +01: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
|
|
|
|
*/
|
|
|
|
|
2022-06-22 18:30:37 +02:00
|
|
|
class ListAction implements ActionInterface
|
|
|
|
{
|
2022-07-08 21:06:14 +02:00
|
|
|
public function execute(array $request)
|
2019-02-06 18:34:51 +01:00
|
|
|
{
|
2022-08-06 22:46:28 +02:00
|
|
|
$list = new \stdClass();
|
2019-02-06 18:34:51 +01:00
|
|
|
$list->bridges = [];
|
|
|
|
$list->total = 0;
|
2022-07-01 15:10:30 +02:00
|
|
|
|
2022-08-06 22:46:28 +02:00
|
|
|
$bridgeFactory = new BridgeFactory();
|
2022-07-01 15:10:30 +02:00
|
|
|
|
2022-07-08 12:54:23 +02:00
|
|
|
foreach ($bridgeFactory->getBridgeClassNames() as $bridgeClassName) {
|
|
|
|
$bridge = $bridgeFactory->create($bridgeClassName);
|
2022-07-01 15:10:30 +02:00
|
|
|
|
2022-07-08 12:54:23 +02:00
|
|
|
$list->bridges[$bridgeClassName] = [
|
2023-06-11 03:16:03 +02:00
|
|
|
'status' => $bridgeFactory->isEnabled($bridgeClassName) ? 'active' : 'inactive',
|
2019-02-06 18:34:51 +01:00
|
|
|
'uri' => $bridge->getURI(),
|
2021-06-25 21:45:25 +02:00
|
|
|
'donationUri' => $bridge->getDonationURI(),
|
2019-02-06 18:34:51 +01:00
|
|
|
'name' => $bridge->getName(),
|
|
|
|
'icon' => $bridge->getIcon(),
|
|
|
|
'parameters' => $bridge->getParameters(),
|
|
|
|
'maintainer' => $bridge->getMaintainer(),
|
|
|
|
'description' => $bridge->getDescription()
|
|
|
|
];
|
|
|
|
}
|
|
|
|
$list->total = count($list->bridges);
|
2022-11-07 18:22:54 +01:00
|
|
|
return new Response(Json::encode($list), 200, ['Content-Type' => 'application/json']);
|
2019-02-06 18:34:51 +01:00
|
|
|
}
|
|
|
|
}
|