Merge pull request #12637 from annando/ostatus-subscription

OStatus: Fix PubSubHubBub subscription
This commit is contained in:
Hypolite Petovan
2023-01-08 07:58:22 -05:00
committed by GitHub
4 changed files with 12 additions and 7 deletions

View File

@@ -58,6 +58,7 @@ class PubSub extends \Friendica\BaseModule
$this->logger->info('Feed arrived.', ['from' => $this->request->getRemoteAddress(), 'for' => $this->args->getCommand(), 'user-agent' => $this->server['HTTP_USER_AGENT']]);
$this->logger->debug('Data stream.', ['xml' => $xml]);
$this->logger->debug('Got request data.', ['request' => $request]);
$nickname = $this->parameters['nickname'] ?? '';
$contact_id = $this->parameters['cid'] ?? 0;

View File

@@ -71,6 +71,8 @@ class PubSubHubBub extends \Friendica\BaseModule
throw new HTTPException\ForbiddenException();
}
$this->logger->debug('Got request data.', ['request' => $request]);
// Subscription request from subscriber
// https://pubsubhubbub.github.io/PubSubHubbub/pubsubhubbub-core-0.4.html#rfc.section.5.1
// Example from GNU Social:

View File

@@ -62,9 +62,10 @@ class Salmon extends \Friendica\BaseModule
* @throws HTTPException\OKException
* @throws \ImagickException
*/
protected function rawContent(array $request = [])
protected function post(array $request = [])
{
$xml = Network::postdata();
$this->logger->debug('Got request data.', ['request' => $request]);
$nickname = $this->parameters['nickname'] ?? '';
if (empty($nickname)) {