mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-26 11:26:31 +03:00
41df17bc46
* test: refactor test suite * docs * refactor * yup * docs
41 lines
1.2 KiB
PHP
41 lines
1.2 KiB
PHP
<?php
|
|
|
|
class DetectAction implements ActionInterface
|
|
{
|
|
public function execute(array $request)
|
|
{
|
|
$targetURL = $request['url'] ?? null;
|
|
$format = $request['format'] ?? null;
|
|
|
|
if (!$targetURL) {
|
|
throw new \Exception('You must specify a url!');
|
|
}
|
|
if (!$format) {
|
|
throw new \Exception('You must specify a format!');
|
|
}
|
|
|
|
$bridgeFactory = new BridgeFactory();
|
|
|
|
foreach ($bridgeFactory->getBridgeClassNames() as $bridgeClassName) {
|
|
if (!$bridgeFactory->isEnabled($bridgeClassName)) {
|
|
continue;
|
|
}
|
|
|
|
$bridge = $bridgeFactory->create($bridgeClassName);
|
|
|
|
$bridgeParams = $bridge->detectParameters($targetURL);
|
|
|
|
if (is_null($bridgeParams)) {
|
|
continue;
|
|
}
|
|
|
|
$bridgeParams['bridge'] = $bridgeClassName;
|
|
$bridgeParams['format'] = $format;
|
|
|
|
$url = '?action=display&' . http_build_query($bridgeParams);
|
|
return new Response('', 301, ['location' => $url]);
|
|
}
|
|
|
|
throw new \Exception('No bridge found for given URL: ' . $targetURL);
|
|
}
|
|
}
|