X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fpubsub.php;h=fe5bb3c0b61e1b2575bec54a036722136a930069;hb=a69e128fe4d202296582f3810239ebc4635d8b6a;hp=4c1c2759d8a62fb0e3b8478aaf3dd87a66f991df;hpb=03038e7a3bb74bdab497d26b7f829a5c3036d1c2;p=friendica.git diff --git a/mod/pubsub.php b/mod/pubsub.php index 4c1c2759d8..fe5bb3c0b6 100644 --- a/mod/pubsub.php +++ b/mod/pubsub.php @@ -1,14 +1,35 @@ . + * + */ use Friendica\App; use Friendica\Core\Logger; use Friendica\Core\Protocol; use Friendica\Database\DBA; +use Friendica\DI; use Friendica\Model\Contact; use Friendica\Protocol\OStatus; use Friendica\Util\Strings; use Friendica\Util\Network; -use Friendica\Core\System; +use Friendica\Model\GServer; +use Friendica\Model\Post; function hub_return($valid, $body) { @@ -113,25 +134,24 @@ function pubsub_post(App $a) } } + if (!empty($contact['gsid'])) { + GServer::setProtocol($contact['gsid'], Post\DeliveryData::OSTATUS); + } + if (!in_array($contact['rel'], [Contact::SHARING, Contact::FRIEND]) && ($contact['network'] != Protocol::FEED)) { Logger::log('Contact ' . $contact['id'] . ' is not expected to share with us - ignored.'); hub_post_return(); } - // We import feeds from OStatus, Friendica and ATOM/RSS. - /// @todo Check if Friendica posts really arrive here - otherwise we can discard some stuff - if (!in_array($contact['network'], [Protocol::OSTATUS, Protocol::DFRN, Protocol::FEED])) { + // We only import feeds from OStatus here + if ($contact['network'] != Protocol::OSTATUS) { + Logger::warning('Unexpected network', ['contact' => $contact]); hub_post_return(); } Logger::log('Import item for ' . $nick . ' from ' . $contact['nick'] . ' (' . $contact['id'] . ')'); $feedhub = ''; - consume_feed($xml, $importer, $contact, $feedhub); - - // do it a second time for DFRN so that any children find their parents. - if ($contact['network'] === Protocol::DFRN) { - consume_feed($xml, $importer, $contact, $feedhub); - } + OStatus::import($xml, $importer, $contact, $feedhub); hub_post_return(); }