mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-23 18:15:28 +03:00
0de1694371
* refactor: extract entry point into class * refactor: js * refactor: extract frontpage action
152 lines
4.2 KiB
PHP
152 lines
4.2 KiB
PHP
<?php
|
|
|
|
final class FrontpageAction implements ActionInterface
|
|
{
|
|
public function execute(array $request)
|
|
{
|
|
$showInactive = (bool) ($request['show_inactive'] ?? null);
|
|
|
|
$totalBridges = 0;
|
|
$totalActiveBridges = 0;
|
|
|
|
$html = self::getHead()
|
|
. self::getHeader()
|
|
. self::getSearchbar()
|
|
. self::getBridges($showInactive, $totalBridges, $totalActiveBridges)
|
|
. self::getFooter($totalBridges, $totalActiveBridges, $showInactive);
|
|
|
|
print $html;
|
|
}
|
|
|
|
private static function getHead()
|
|
{
|
|
return <<<EOD
|
|
<!DOCTYPE html><html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="RSS-Bridge" />
|
|
<title>RSS-Bridge</title>
|
|
<link href="static/style.css" rel="stylesheet">
|
|
<link rel="icon" type="image/png" href="static/favicon.png">
|
|
<script src="static/rss-bridge.js"></script>
|
|
<script>
|
|
document.addEventListener('DOMContentLoaded', rssbridge_toggle_bridge);
|
|
</script>
|
|
</head>
|
|
<body onload="rssbridge_list_search()">
|
|
EOD;
|
|
}
|
|
|
|
private static function getHeader()
|
|
{
|
|
$warning = '';
|
|
|
|
if (Debug::isEnabled()) {
|
|
if (!Debug::isSecure()) {
|
|
$warning .= <<<EOD
|
|
<section class="critical-warning">Warning : Debug mode is active from any location,
|
|
make sure only you can access RSS-Bridge.</section>
|
|
EOD;
|
|
} else {
|
|
$warning .= <<<EOD
|
|
<section class="warning">Warning : Debug mode is active from your IP address,
|
|
your requests will bypass the cache.</section>
|
|
EOD;
|
|
}
|
|
}
|
|
|
|
return <<<EOD
|
|
<header>
|
|
<div class="logo"></div>
|
|
{$warning}
|
|
</header>
|
|
EOD;
|
|
}
|
|
|
|
private static function getSearchbar()
|
|
{
|
|
$query = filter_input(INPUT_GET, 'q', \FILTER_SANITIZE_SPECIAL_CHARS);
|
|
|
|
return <<<EOD
|
|
<section class="searchbar">
|
|
<h3>Search</h3>
|
|
<input
|
|
type="text"
|
|
name="searchfield"
|
|
id="searchfield"
|
|
placeholder="Insert URL or bridge name"
|
|
onchange="rssbridge_list_search()"
|
|
onkeyup="rssbridge_list_search()"
|
|
value="{$query}"
|
|
>
|
|
</section>
|
|
EOD;
|
|
}
|
|
|
|
private static function getBridges($showInactive, &$totalBridges, &$totalActiveBridges)
|
|
{
|
|
$body = '';
|
|
$totalActiveBridges = 0;
|
|
$inactiveBridges = '';
|
|
|
|
$bridgeFactory = new BridgeFactory();
|
|
$bridgeClassNames = $bridgeFactory->getBridgeClassNames();
|
|
|
|
$formatFactory = new FormatFactory();
|
|
$formats = $formatFactory->getFormatNames();
|
|
|
|
$totalBridges = count($bridgeClassNames);
|
|
|
|
foreach ($bridgeClassNames as $bridgeClassName) {
|
|
if ($bridgeFactory->isWhitelisted($bridgeClassName)) {
|
|
$body .= BridgeCard::displayBridgeCard($bridgeClassName, $formats);
|
|
$totalActiveBridges++;
|
|
} elseif ($showInactive) {
|
|
$inactiveBridges .= BridgeCard::displayBridgeCard($bridgeClassName, $formats, false) . PHP_EOL;
|
|
}
|
|
}
|
|
|
|
$body .= $inactiveBridges;
|
|
|
|
return $body;
|
|
}
|
|
|
|
private static function getFooter($totalBridges, $totalActiveBridges, $showInactive)
|
|
{
|
|
$version = Configuration::getVersion();
|
|
|
|
$email = Configuration::getConfig('admin', 'email');
|
|
$admininfo = '';
|
|
if ($email) {
|
|
$admininfo = <<<EOD
|
|
<br />
|
|
<span>
|
|
You may email the administrator of this RSS-Bridge instance
|
|
at <a href="mailto:{$email}">{$email}</a>
|
|
</span>
|
|
EOD;
|
|
}
|
|
|
|
$inactive = '';
|
|
|
|
if ($totalActiveBridges !== $totalBridges) {
|
|
if ($showInactive) {
|
|
$inactive = '<a href="?show_inactive=0"><button class="small">Hide inactive bridges</button></a><br>';
|
|
} else {
|
|
$inactive = '<a href="?show_inactive=1"><button class="small">Show inactive bridges</button></a><br>';
|
|
}
|
|
}
|
|
|
|
return <<<EOD
|
|
<section class="footer">
|
|
<a href="https://github.com/rss-bridge/rss-bridge">RSS-Bridge ~ Public Domain</a><br>
|
|
<p class="version">{$version}</p>
|
|
{$totalActiveBridges}/{$totalBridges} active bridges.<br>
|
|
{$inactive}
|
|
{$admininfo}
|
|
</section>
|
|
</body></html>
|
|
EOD;
|
|
}
|
|
}
|