mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-07-26 19:30:13 +02:00
.github
actions
bridges
cache
caches
formats
lib
static
tests
vendor
.dockerignore
.gitattributes
.gitignore
.travis.yml
Dockerfile
README.md
UNLICENSE
config.default.ini.php
index.php
phpcompatibility.xml
phpcs.xml
phpunit.xml
scalingo.json
69 lines
1.5 KiB
PHP
69 lines
1.5 KiB
PHP
<?php
|
|
require_once __DIR__ . '/lib/rssbridge.php';
|
|
|
|
Configuration::verifyInstallation();
|
|
Configuration::loadConfiguration();
|
|
|
|
Authentication::showPromptIfNeeded();
|
|
|
|
date_default_timezone_set('UTC');
|
|
|
|
/*
|
|
Move the CLI arguments to the $_GET array, in order to be able to use
|
|
rss-bridge from the command line
|
|
*/
|
|
if (isset($argv)) {
|
|
parse_str(implode('&', array_slice($argv, 1)), $cliArgs);
|
|
$params = array_merge($_GET, $cliArgs);
|
|
} else {
|
|
$params = $_GET;
|
|
}
|
|
|
|
define('USER_AGENT',
|
|
'Mozilla/5.0 (X11; Linux x86_64; rv:30.0) Gecko/20121202 Firefox/30.0(rss-bridge/'
|
|
. Configuration::$VERSION
|
|
. ';+'
|
|
. REPOSITORY
|
|
. ')'
|
|
);
|
|
|
|
ini_set('user_agent', USER_AGENT);
|
|
|
|
// default whitelist
|
|
$whitelist_default = array(
|
|
'BandcampBridge',
|
|
'CryptomeBridge',
|
|
'DansTonChatBridge',
|
|
'DuckDuckGoBridge',
|
|
'FacebookBridge',
|
|
'FlickrBridge',
|
|
'GoogleSearchBridge',
|
|
'IdenticaBridge',
|
|
'InstagramBridge',
|
|
'OpenClassroomsBridge',
|
|
'PinterestBridge',
|
|
'ScmbBridge',
|
|
'TwitterBridge',
|
|
'WikipediaBridge',
|
|
'YoutubeBridge');
|
|
|
|
try {
|
|
|
|
Bridge::setWhitelist($whitelist_default);
|
|
$actionFac = new \ActionFactory();
|
|
$actionFac->setWorkingDir(PATH_LIB_ACTIONS);
|
|
|
|
if(array_key_exists('action', $params)) {
|
|
$action = $actionFac->create($params['action']);
|
|
$action->setUserData($params);
|
|
$action->execute();
|
|
} else {
|
|
$showInactive = filter_input(INPUT_GET, 'show_inactive', FILTER_VALIDATE_BOOLEAN);
|
|
echo BridgeList::create($showInactive);
|
|
}
|
|
} catch(\Exception $e) {
|
|
error_log($e);
|
|
header('Content-Type: text/plain', true, $e->getCode());
|
|
die($e->getMessage());
|
|
}
|