mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-09-08 11:43:20 -04:00
WebSub: Use hash instead of base64 to handle long URLs (#4282)
* WebSub: Use hash instead of base64 to handle long URLs * Use 410 Gone (Part of the WebSub specification https://www.w3.org/TR/websub/ )
This commit is contained in:
1 parent
b0a63355b6
commit
e8af54a476
3 files changed
+20
-34
No files matched your search
+5
-5
@@ -837,7 +837,7 @@ class FreshRSS_Feed extends Minz_Model {
|
||||
|
||||
public function pubSubHubbubEnabled(): bool {
|
||||
$url = $this->selfUrl ? $this->selfUrl : $this->url;
|
||||
$hubFilename = PSHB_PATH . '/feeds/' . base64url_encode($url) . '/!hub.json';
|
||||
$hubFilename = PSHB_PATH . '/feeds/' . sha1($url) . '/!hub.json';
|
||||
if ($hubFile = @file_get_contents($hubFilename)) {
|
||||
$hubJson = json_decode($hubFile, true);
|
||||
if ($hubJson && empty($hubJson['error']) &&
|
||||
@@ -850,7 +850,7 @@ class FreshRSS_Feed extends Minz_Model {
|
||||
|
||||
public function pubSubHubbubError(bool $error = true): bool {
|
||||
$url = $this->selfUrl ? $this->selfUrl : $this->url;
|
||||
$hubFilename = PSHB_PATH . '/feeds/' . base64url_encode($url) . '/!hub.json';
|
||||
$hubFilename = PSHB_PATH . '/feeds/' . sha1($url) . '/!hub.json';
|
||||
$hubFile = @file_get_contents($hubFilename);
|
||||
$hubJson = $hubFile ? json_decode($hubFile, true) : array();
|
||||
if (!isset($hubJson['error']) || $hubJson['error'] !== (bool)$error) {
|
||||
@@ -868,7 +868,7 @@ class FreshRSS_Feed extends Minz_Model {
|
||||
$key = '';
|
||||
if (Minz_Request::serverIsPublic(FreshRSS_Context::$system_conf->base_url) &&
|
||||
$this->hubUrl && $this->selfUrl && @is_dir(PSHB_PATH)) {
|
||||
$path = PSHB_PATH . '/feeds/' . base64url_encode($this->selfUrl);
|
||||
$path = PSHB_PATH . '/feeds/' . sha1($this->selfUrl);
|
||||
$hubFilename = $path . '/!hub.json';
|
||||
if ($hubFile = @file_get_contents($hubFilename)) {
|
||||
$hubJson = json_decode($hubFile, true);
|
||||
@@ -898,7 +898,7 @@ class FreshRSS_Feed extends Minz_Model {
|
||||
);
|
||||
file_put_contents($hubFilename, json_encode($hubJson));
|
||||
@mkdir(PSHB_PATH . '/keys/');
|
||||
file_put_contents(PSHB_PATH . '/keys/' . $key . '.txt', base64url_encode($this->selfUrl));
|
||||
file_put_contents(PSHB_PATH . '/keys/' . $key . '.txt', $this->selfUrl);
|
||||
$text = 'WebSub prepared for ' . $this->url;
|
||||
Minz_Log::debug($text);
|
||||
Minz_Log::debug($text, PSHB_LOG);
|
||||
@@ -919,7 +919,7 @@ class FreshRSS_Feed extends Minz_Model {
|
||||
$url = $this->url; //Always use current URL during unsubscribe
|
||||
}
|
||||
if ($url && (Minz_Request::serverIsPublic(FreshRSS_Context::$system_conf->base_url) || !$state)) {
|
||||
$hubFilename = PSHB_PATH . '/feeds/' . base64url_encode($url) . '/!hub.json';
|
||||
$hubFilename = PSHB_PATH . '/feeds/' . sha1($url) . '/!hub.json';
|
||||
$hubFile = @file_get_contents($hubFilename);
|
||||
if ($hubFile === false) {
|
||||
Minz_Log::warning('JSON not found for WebSub: ' . $this->url);
|
||||
|
||||
@@ -700,15 +700,6 @@ function remove_query_by_get($get, $queries) {
|
||||
return $final_queries;
|
||||
}
|
||||
|
||||
//RFC 4648
|
||||
function base64url_encode($data) {
|
||||
return strtr(rtrim(base64_encode($data), '='), '+/', '-_');
|
||||
}
|
||||
//RFC 4648
|
||||
function base64url_decode($data) {
|
||||
return base64_decode(strtr($data, '-_', '+/'));
|
||||
}
|
||||
|
||||
function _i($icon, $url_only = false) {
|
||||
return FreshRSS_Themes::icon($icon, $url_only);
|
||||
}
|
||||
|
||||
+15
-20
@@ -20,28 +20,24 @@ if (!ctype_xdigit($key)) {
|
||||
die('Invalid feed key format!');
|
||||
}
|
||||
chdir(PSHB_PATH);
|
||||
$canonical64 = @file_get_contents('keys/' . $key . '.txt');
|
||||
if ($canonical64 === false) {
|
||||
$canonical = @file_get_contents('keys/' . $key . '.txt');
|
||||
if ($canonical === false) {
|
||||
if (!empty($_REQUEST['hub_mode']) && $_REQUEST['hub_mode'] === 'unsubscribe') {
|
||||
Minz_Log::warning('Warning: Accept unknown unsubscribe', PSHB_LOG);
|
||||
header('Connection: close');
|
||||
exit(isset($_REQUEST['hub_challenge']) ? $_REQUEST['hub_challenge'] : '');
|
||||
}
|
||||
header('HTTP/1.1 404 Not Found');
|
||||
header('HTTP/1.1 410 Gone');
|
||||
Minz_Log::warning('Warning: Feed key not found!: ' . $key, PSHB_LOG);
|
||||
die('Feed key not found!');
|
||||
}
|
||||
$canonical64 = trim($canonical64);
|
||||
if (!preg_match('/^[A-Za-z0-9_-]+$/D', $canonical64)) {
|
||||
header('HTTP/1.1 500 Internal Server Error');
|
||||
Minz_Log::error('Error: Invalid key reference!: ' . $canonical64, PSHB_LOG);
|
||||
die('Invalid key reference!');
|
||||
}
|
||||
$hubFile = @file_get_contents('feeds/' . $canonical64 . '/!hub.json');
|
||||
$canonical = trim($canonical);
|
||||
$canonicalHash = sha1($canonical);
|
||||
$hubFile = @file_get_contents('feeds/' . $canonicalHash . '/!hub.json');
|
||||
if ($hubFile === false) {
|
||||
header('HTTP/1.1 404 Not Found');
|
||||
header('HTTP/1.1 410 Gone');
|
||||
unlink('keys/' . $key . '.txt');
|
||||
Minz_Log::error('Error: Feed info not found!: ' . $canonical64, PSHB_LOG);
|
||||
Minz_Log::error('Error: Feed info not found!: ' . $canonical, PSHB_LOG);
|
||||
die('Feed info not found!');
|
||||
}
|
||||
$hubJson = json_decode($hubFile, true);
|
||||
@@ -50,18 +46,17 @@ if (!$hubJson || empty($hubJson['key']) || $hubJson['key'] !== $key) {
|
||||
Minz_Log::error('Error: Invalid key cross-check!: ' . $key, PSHB_LOG);
|
||||
die('Invalid key cross-check!');
|
||||
}
|
||||
chdir('feeds/' . $canonical64);
|
||||
chdir('feeds/' . $canonicalHash);
|
||||
$users = glob('*.txt', GLOB_NOSORT);
|
||||
if (empty($users)) {
|
||||
header('HTTP/1.1 410 Gone');
|
||||
$url = base64url_decode($canonical64);
|
||||
Minz_Log::warning('Warning: Nobody subscribes to this feed anymore!: ' . $url, PSHB_LOG);
|
||||
Minz_Log::warning('Warning: Nobody subscribes to this feed anymore!: ' . $canonical, PSHB_LOG);
|
||||
unlink('../../keys/' . $key . '.txt');
|
||||
$feed = new FreshRSS_Feed($url);
|
||||
$feed = new FreshRSS_Feed($canonical);
|
||||
$feed->pubSubHubbubSubscribe(false);
|
||||
unlink('!hub.json');
|
||||
chdir('..');
|
||||
recursive_unlink($canonical64);
|
||||
recursive_unlink('feeds/' . $canonicalHash);
|
||||
die('Nobody subscribes to this feed anymore!');
|
||||
}
|
||||
|
||||
@@ -104,11 +99,11 @@ unset($ORIGINAL_INPUT);
|
||||
$links = $simplePie->get_links('self');
|
||||
$self = isset($links[0]) ? $links[0] : null;
|
||||
|
||||
if ($self !== base64url_decode($canonical64)) {
|
||||
if ($self !== $canonical) {
|
||||
//header('HTTP/1.1 422 Unprocessable Entity');
|
||||
Minz_Log::warning('Warning: Self URL [' . $self . '] does not match registered canonical URL!: ' . base64url_decode($canonical64), PSHB_LOG);
|
||||
Minz_Log::warning('Warning: Self URL [' . $self . '] does not match registered canonical URL!: ' . $canonical, PSHB_LOG);
|
||||
//die('Self URL does not match registered canonical URL!');
|
||||
$self = base64url_decode($canonical64);
|
||||
$self = $canonical;
|
||||
}
|
||||
|
||||
Minz_ExtensionManager::init();
|
||||
|
||||
Reference in new issue
Block a user