3 * @copyright Copyright (C) 2020, Friendica
5 * @license GNU AGPL version 3 or any later version
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Affero General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU Affero General Public License for more details.
17 * You should have received a copy of the GNU Affero General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
22 namespace Friendica\Worker;
24 use Friendica\Core\Logger;
25 use Friendica\Core\Protocol;
26 use Friendica\Database\DBA;
28 use Friendica\Model\Contact;
29 use Friendica\Model\Item;
30 use Friendica\Model\User;
31 use Friendica\Protocol\Activity;
32 use Friendica\Protocol\ActivityPub;
33 use Friendica\Protocol\Email;
34 use Friendica\Protocol\Feed;
35 use Friendica\Util\DateTimeFormat;
36 use Friendica\Util\Strings;
37 use Friendica\Util\XML;
41 public static function execute($contact_id = 0, $command = '')
43 Logger::log('Start for contact ' . $contact_id);
47 if ($command == "force") {
52 Logger::log('no contact');
57 $contact = DBA::selectFirst('contact', [], ['id' => $contact_id]);
58 if (!DBA::isResult($contact)) {
59 Logger::log('Contact not found or cannot be used.');
63 if (($contact['network'] != Protocol::MAIL) || $force) {
64 Contact::updateFromProbe($contact_id, '', $force);
67 // Special treatment for wrongly detected local contacts
68 if (!$force && ($contact['network'] != Protocol::DFRN) && Contact::isLocalById($contact_id)) {
69 Contact::updateFromProbe($contact_id, Protocol::DFRN, true);
70 $contact = DBA::selectFirst('contact', [], ['id' => $contact_id]);
73 if (($contact['network'] == Protocol::DFRN) && !Contact::isLegacyDFRNContact($contact)) {
74 $protocol = Protocol::ACTIVITYPUB;
76 $protocol = $contact['network'];
79 $importer_uid = $contact['uid'];
81 $updated = DateTimeFormat::utcNow();
83 if ($importer_uid == 0) {
84 Logger::log('Ignore public contacts');
86 // set the last-update so we don't keep polling
87 DBA::update('contact', ['last-update' => $updated], ['id' => $contact['id']]);
91 // Possibly switch the remote contact to AP
92 if ($protocol === Protocol::OSTATUS) {
93 ActivityPub\Receiver::switchContact($contact['id'], $importer_uid, $contact['url']);
94 $contact = DBA::selectFirst('contact', [], ['id' => $contact_id]);
97 // Don't poll if polling is deactivated (But we poll feeds and mails anyway)
98 if (!in_array($protocol, [Protocol::FEED, Protocol::MAIL]) && DI::config()->get('system', 'disable_polling')) {
99 Logger::log('Polling is disabled');
101 // set the last-update so we don't keep polling
102 DBA::update('contact', ['last-update' => $updated], ['id' => $contact['id']]);
106 // We don't poll AP contacts by now
107 if ($protocol === Protocol::ACTIVITYPUB) {
108 Logger::log("Don't poll AP contact");
110 // set the last-update so we don't keep polling
111 DBA::update('contact', ['last-update' => $updated], ['id' => $contact['id']]);
115 $importer = User::getOwnerDataById($importer_uid);
117 if (empty($importer)) {
118 Logger::log('No self contact for user '.$importer_uid);
120 // set the last-update so we don't keep polling
121 DBA::update('contact', ['last-update' => $updated], ['id' => $contact['id']]);
128 if ($contact['subhub']) {
129 $poll_interval = DI::config()->get('system', 'pushpoll_frequency', 3);
130 $contact['priority'] = intval($poll_interval);
133 if (DateTimeFormat::utcNow() > DateTimeFormat::utc($contact['last-update'] . " + 1 day")) {
140 Logger::log("poll: ({$protocol}-{$contact['id']}) IMPORTER: {$importer['name']}, CONTACT: {$contact['name']}");
144 if ($protocol === Protocol::DFRN) {
145 $xml = self::pollDFRN($contact, $updated);
146 } elseif (($protocol === Protocol::OSTATUS)
147 || ($protocol === Protocol::DIASPORA)
148 || ($protocol === Protocol::FEED)) {
149 $xml = self::pollFeed($contact, $protocol, $updated);
150 } elseif ($protocol === Protocol::MAIL) {
151 self::pollMail($contact, $importer_uid, $updated);
155 Logger::log('received xml : ' . $xml, Logger::DATA);
156 if (!strstr($xml, '<')) {
157 Logger::log('post_handshake: response from ' . $url . ' did not contain XML.');
159 $fields = ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated];
160 self::updateContact($contact, $fields);
161 Contact::markForArchival($contact);
166 Logger::log("Consume feed of contact ".$contact['id']);
168 Feed::consume($xml, $importer, $contact, $hub);
170 // do it a second time for DFRN so that any children find their parents.
171 if ($protocol === Protocol::DFRN) {
172 Feed::consume($xml, $importer, $contact, $hub);
175 $hubmode = 'subscribe';
176 if ($protocol === Protocol::DFRN || $contact['blocked']) {
177 $hubmode = 'unsubscribe';
180 if (($protocol === Protocol::OSTATUS || $protocol == Protocol::FEED) && (! $contact['hub-verify'])) {
188 Logger::log("Contact ".$contact['id']." returned hub: ".$hub." Network: ".$protocol." Relation: ".$contact['rel']." Update: ".$hub_update);
190 if (strlen($hub) && $hub_update && (($contact['rel'] != Contact::FOLLOWER) || $protocol == Protocol::FEED)) {
191 Logger::log('hub ' . $hubmode . ' : ' . $hub . ' contact name : ' . $contact['name'] . ' local user : ' . $importer['name']);
192 $hubs = explode(',', $hub);
195 foreach ($hubs as $h) {
202 self::subscribeToHub($h, $importer, $contact, $hubmode);
207 self::updateContact($contact, ['failed' => false, 'last-update' => $updated, 'success_update' => $updated]);
208 Contact::unmarkForArchival($contact);
209 } elseif (in_array($contact["network"], [Protocol::DFRN, Protocol::DIASPORA, Protocol::OSTATUS, Protocol::FEED])) {
210 self::updateContact($contact, ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated]);
211 Contact::markForArchival($contact);
213 self::updateContact($contact, ['last-update' => $updated]);
220 private static function RemoveReply($subject)
222 while (in_array(strtolower(substr($subject, 0, 3)), ["re:", "aw:"])) {
223 $subject = trim(substr($subject, 4));
230 * Updates a personal contact entry and the public contact entry
232 * @param array $contact The personal contact entry
233 * @param array $fields The fields that are updated
236 private static function updateContact(array $contact, array $fields)
238 // Update the user's contact
239 DBA::update('contact', $fields, ['id' => $contact['id']]);
241 // Update the public contact
242 DBA::update('contact', $fields, ['uid' => 0, 'nurl' => $contact['nurl']]);
244 // Update the rest of the contacts that aren't polled
245 DBA::update('contact', $fields, ['rel' => Contact::FOLLOWER, 'nurl' => $contact['nurl']]);
251 * @param array $contact The personal contact entry
252 * @param string $updated The updated date
253 * @return string polled XML
256 private static function pollDFRN(array $contact, $updated)
258 $idtosend = $orig_id = (($contact['dfrn-id']) ? $contact['dfrn-id'] : $contact['issued-id']);
259 if (intval($contact['duplex']) && $contact['dfrn-id']) {
260 $idtosend = '0:' . $orig_id;
262 if (intval($contact['duplex']) && $contact['issued-id']) {
263 $idtosend = '1:' . $orig_id;
266 // they have permission to write to us. We already filtered this in the contact query.
269 // But this may be our first communication, so set the writable flag if it isn't set already.
270 if (!intval($contact['writable'])) {
271 $fields = ['writable' => true];
272 DBA::update('contact', $fields, ['id' => $contact['id']]);
275 $last_update = (($contact['last-update'] <= DBA::NULL_DATETIME)
276 ? DateTimeFormat::utc('now - 7 days', DateTimeFormat::ATOM)
277 : DateTimeFormat::utc($contact['last-update'], DateTimeFormat::ATOM)
280 $url = $contact['poll'] . '?dfrn_id=' . $idtosend
281 . '&dfrn_version=' . DFRN_PROTOCOL_VERSION
282 . '&type=data&last_update=' . $last_update
285 $curlResult = DI::httpRequest()->get($url);
287 if (!$curlResult->isSuccess() && ($curlResult->getErrorNumber() == CURLE_OPERATION_TIMEDOUT)) {
288 // set the last-update so we don't keep polling
289 self::updateContact($contact, ['failed' => true, 'last-update' => $updated]);
290 Contact::markForArchival($contact);
291 Logger::log('Contact archived');
295 $handshake_xml = $curlResult->getBody();
296 $html_code = $curlResult->getReturnCode();
298 Logger::log('handshake with url ' . $url . ' returns xml: ' . $handshake_xml, Logger::DATA);
300 if (!strlen($handshake_xml) || ($html_code >= 400) || !$html_code) {
301 // dead connection - might be a transient event, or this might
302 // mean the software was uninstalled or the domain expired.
303 // Will keep trying for one month.
304 Logger::log("$url appears to be dead - marking for death ");
306 // set the last-update so we don't keep polling
307 $fields = ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated];
308 self::updateContact($contact, $fields);
309 Contact::markForArchival($contact);
313 if (!strstr($handshake_xml, '<')) {
314 Logger::log('response from ' . $url . ' did not contain XML.');
316 $fields = ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated];
317 self::updateContact($contact, $fields);
318 Contact::markForArchival($contact);
322 $res = XML::parseString($handshake_xml);
324 if (!is_object($res)) {
325 Logger::info('Unparseable response', ['url' => $url]);
327 $fields = ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated];
328 self::updateContact($contact, $fields);
329 Contact::markForArchival($contact);
333 if (intval($res->status) == 1) {
334 // we may not be friends anymore. Will keep trying for one month.
335 Logger::log("$url replied status 1 - marking for death ");
337 // set the last-update so we don't keep polling
338 $fields = ['failed' => true, 'last-update' => $updated, 'failure_update' => $updated];
339 self::updateContact($contact, $fields);
340 Contact::markForArchival($contact);
341 } elseif ($contact['term-date'] > DBA::NULL_DATETIME) {
342 Contact::unmarkForArchival($contact);
345 if ((intval($res->status) != 0) || !strlen($res->challenge) || !strlen($res->dfrn_id)) {
346 // set the last-update so we don't keep polling
347 DBA::update('contact', ['last-update' => $updated], ['id' => $contact['id']]);
348 Logger::log('Contact status is ' . $res->status);
352 if (((float)$res->dfrn_version > 2.21) && ($contact['poco'] == '')) {
353 $fields = ['poco' => str_replace('/profile/', '/poco/', $contact['url'])];
354 DBA::update('contact', $fields, ['id' => $contact['id']]);
359 $sent_dfrn_id = hex2bin((string) $res->dfrn_id);
360 $challenge = hex2bin((string) $res->challenge);
364 if ($contact['duplex'] && strlen($contact['prvkey'])) {
365 openssl_private_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['prvkey']);
366 openssl_private_decrypt($challenge, $postvars['challenge'], $contact['prvkey']);
368 openssl_public_decrypt($sent_dfrn_id, $final_dfrn_id, $contact['pubkey']);
369 openssl_public_decrypt($challenge, $postvars['challenge'], $contact['pubkey']);
372 $final_dfrn_id = substr($final_dfrn_id, 0, strpos($final_dfrn_id, '.'));
374 if (strpos($final_dfrn_id, ':') == 1) {
375 $final_dfrn_id = substr($final_dfrn_id, 2);
378 // There are issues with the legacy DFRN transport layer.
379 // Since we mostly don't use it anyway, we won't dig into it deeper, but simply ignore it.
380 if (empty($final_dfrn_id) || empty($orig_id)) {
381 Logger::log('Contact has got no ID - quitting');
385 if ($final_dfrn_id != $orig_id) {
386 // did not decode properly - cannot trust this site
387 Logger::log('ID did not decode: ' . $contact['id'] . ' orig: ' . $orig_id . ' final: ' . $final_dfrn_id);
389 // set the last-update so we don't keep polling
390 DBA::update('contact', ['last-update' => $updated], ['id' => $contact['id']]);
391 Contact::markForArchival($contact);
395 $postvars['dfrn_id'] = $idtosend;
396 $postvars['dfrn_version'] = DFRN_PROTOCOL_VERSION;
397 $postvars['perm'] = 'rw';
399 return DI::httpRequest()->post($contact['poll'], $postvars)->getBody();
403 * Poll Feed/OStatus contacts
405 * @param array $contact The personal contact entry
406 * @param string $protocol The used protocol of the contact
407 * @param string $updated The updated date
408 * @return string polled XML
411 private static function pollFeed(array $contact, $protocol, $updated)
413 // Upgrading DB fields from an older Friendica version
414 // Will only do this once per notify-enabled OStatus contact
415 // or if relationship changes
417 $stat_writeable = $contact['notify'] && ($contact['rel'] == Contact::FOLLOWER || $contact['rel'] == Contact::FRIEND);
419 // Contacts from OStatus are always writable
420 if ($protocol === Protocol::OSTATUS) {
424 if ($stat_writeable != $contact['writable']) {
425 $fields = ['writable' => $stat_writeable];
426 DBA::update('contact', $fields, ['id' => $contact['id']]);
429 // Are we allowed to import from this person?
430 if ($contact['rel'] == Contact::FOLLOWER || $contact['blocked']) {
431 // set the last-update so we don't keep polling
432 DBA::update('contact', ['last-update' => $updated], ['id' => $contact['id']]);
433 Logger::log('Contact is blocked or only a follower');
437 $cookiejar = tempnam(get_temppath(), 'cookiejar-onepoll-');
438 $curlResult = DI::httpRequest()->get($contact['poll'], false, ['cookiejar' => $cookiejar]);
441 if ($curlResult->isTimeout()) {
442 // set the last-update so we don't keep polling
443 self::updateContact($contact, ['failed' => true, 'last-update' => $updated]);
444 Contact::markForArchival($contact);
445 Logger::log('Contact archived');
449 return $curlResult->getBody();
455 * @param array $contact The personal contact entry
456 * @param integer $importer_uid The UID of the importer
457 * @param string $updated The updated date
460 private static function pollMail(array $contact, $importer_uid, $updated)
462 Logger::log("Mail: Fetching for ".$contact['addr'], Logger::DEBUG);
464 $mail_disabled = ((function_exists('imap_open') && !DI::config()->get('system', 'imap_disabled')) ? 0 : 1);
465 if ($mail_disabled) {
466 // set the last-update so we don't keep polling
467 self::updateContact($contact, ['failed' => true, 'last-update' => $updated]);
468 Contact::markForArchival($contact);
469 Logger::log('Contact archived');
473 Logger::log("Mail: Enabled", Logger::DEBUG);
476 $user = DBA::selectFirst('user', ['prvkey'], ['uid' => $importer_uid]);
478 $condition = ["`server` != '' AND `uid` = ?", $importer_uid];
479 $mailconf = DBA::selectFirst('mailacct', [], $condition);
480 if (DBA::isResult($user) && DBA::isResult($mailconf)) {
481 $mailbox = Email::constructMailboxName($mailconf);
483 openssl_private_decrypt(hex2bin($mailconf['pass']), $password, $user['prvkey']);
484 $mbox = Email::connect($mailbox, $mailconf['user'], $password);
486 Logger::log("Mail: Connect to " . $mailconf['user']);
488 $fields = ['last_check' => $updated];
489 DBA::update('mailacct', $fields, ['id' => $mailconf['id']]);
490 Logger::log("Mail: Connected to " . $mailconf['user']);
492 Logger::log("Mail: Connection error ".$mailconf['user']." ".print_r(imap_errors(), true));
500 $msgs = Email::poll($mbox, $contact['addr']);
503 Logger::log("Mail: Parsing ".count($msgs)." mails from ".$contact['addr']." for ".$mailconf['user'], Logger::DEBUG);
505 $metas = Email::messageMeta($mbox, implode(',', $msgs));
507 if (count($metas) != count($msgs)) {
508 Logger::log("for " . $mailconf['user'] . " there are ". count($msgs) . " messages but received " . count($metas) . " metas", Logger::DEBUG);
510 $msgs = array_combine($msgs, $metas);
512 foreach ($msgs as $msg_uid => $meta) {
513 Logger::log("Mail: Parsing mail ".$msg_uid, Logger::DATA);
516 $datarray['uid'] = $importer_uid;
517 $datarray['contact-id'] = $contact['id'];
518 $datarray['verb'] = Activity::POST;
519 $datarray['object-type'] = Activity\ObjectType::NOTE;
520 $datarray['network'] = Protocol::MAIL;
521 // $meta = Email::messageMeta($mbox, $msg_uid);
523 $datarray['uri'] = Email::msgid2iri(trim($meta->message_id, '<>'));
525 // Have we seen it before?
526 $fields = ['deleted', 'id'];
527 $condition = ['uid' => $importer_uid, 'uri' => $datarray['uri']];
528 $item = Item::selectFirst($fields, $condition);
529 if (DBA::isResult($item)) {
530 Logger::log("Mail: Seen before ".$msg_uid." for ".$mailconf['user']." UID: ".$importer_uid." URI: ".$datarray['uri'],Logger::DEBUG);
532 // Only delete when mails aren't automatically moved or deleted
533 if (($mailconf['action'] != 1) && ($mailconf['action'] != 3))
534 if ($meta->deleted && ! $item['deleted']) {
535 $fields = ['deleted' => true, 'changed' => $updated];
536 Item::update($fields, ['id' => $item['id']]);
539 switch ($mailconf['action']) {
541 Logger::log("Mail: Seen before ".$msg_uid." for ".$mailconf['user'].". Doing nothing.", Logger::DEBUG);
544 Logger::log("Mail: Deleting ".$msg_uid." for ".$mailconf['user']);
545 imap_delete($mbox, $msg_uid, FT_UID);
548 Logger::log("Mail: Mark as seen ".$msg_uid." for ".$mailconf['user']);
549 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
552 Logger::log("Mail: Moving ".$msg_uid." to ".$mailconf['movetofolder']." for ".$mailconf['user']);
553 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
554 if ($mailconf['movetofolder'] != "") {
555 imap_mail_move($mbox, $msg_uid, $mailconf['movetofolder'], FT_UID);
562 // look for a 'references' or an 'in-reply-to' header and try to match with a parent item we have locally.
563 $raw_refs = (property_exists($meta, 'references') ? str_replace("\t", '', $meta->references) : '');
564 if (!trim($raw_refs)) {
565 $raw_refs = (property_exists($meta, 'in_reply_to') ? str_replace("\t", '', $meta->in_reply_to) : '');
567 $raw_refs = trim($raw_refs); // Don't allow a blank reference in $refs_arr
570 $refs_arr = explode(' ', $raw_refs);
571 if (count($refs_arr)) {
572 for ($x = 0; $x < count($refs_arr); $x ++) {
573 $refs_arr[$x] = Email::msgid2iri(str_replace(['<', '>', ' '],['', '', ''], $refs_arr[$x]));
576 $condition = ['uri' => $refs_arr, 'uid' => $importer_uid];
577 $parent = Item::selectFirst(['parent-uri'], $condition);
578 if (DBA::isResult($parent)) {
579 $datarray['parent-uri'] = $parent['parent-uri']; // Set the parent as the top-level item
583 // Decoding the header
584 $subject = imap_mime_header_decode($meta->subject ?? '');
585 $datarray['title'] = "";
586 foreach ($subject as $subpart) {
587 if ($subpart->charset != "default") {
588 $datarray['title'] .= iconv($subpart->charset, 'UTF-8//IGNORE', $subpart->text);
590 $datarray['title'] .= $subpart->text;
593 $datarray['title'] = Strings::escapeTags(trim($datarray['title']));
595 //$datarray['title'] = Strings::escapeTags(trim($meta->subject));
596 $datarray['created'] = DateTimeFormat::utc($meta->date);
599 $reply = ((substr(strtolower($datarray['title']), 0, 3) == "re:") ||
600 (substr(strtolower($datarray['title']), 0, 3) == "re-") ||
603 // Remove Reply-signs in the subject
604 $datarray['title'] = self::RemoveReply($datarray['title']);
606 // If it seems to be a reply but a header couldn't be found take the last message with matching subject
607 if (empty($datarray['parent-uri']) && $reply) {
608 $condition = ['title' => $datarray['title'], 'uid' => $importer_uid, 'network' => Protocol::MAIL];
609 $params = ['order' => ['created' => true]];
610 $parent = Item::selectFirst(['parent-uri'], $condition, $params);
611 if (DBA::isResult($parent)) {
612 $datarray['parent-uri'] = $parent['parent-uri'];
616 if (empty($datarray['parent-uri'])) {
617 $datarray['parent-uri'] = $datarray['uri'];
620 $headers = imap_headerinfo($mbox, $meta->msgno);
624 if (!empty($headers->from)) {
625 $object['from'] = $headers->from;
628 if (!empty($headers->to)) {
629 $object['to'] = $headers->to;
632 if (!empty($headers->reply_to)) {
633 $object['reply_to'] = $headers->reply_to;
636 if (!empty($headers->sender)) {
637 $object['sender'] = $headers->sender;
640 if (!empty($object)) {
641 $datarray['object'] = json_encode($object);
644 $fromname = $frommail = $headers->from[0]->mailbox . '@' . $headers->from[0]->host;
645 if (!empty($headers->from[0]->personal)) {
646 $fromname = $headers->from[0]->personal;
649 $datarray['author-name'] = $fromname;
650 $datarray['author-link'] = "mailto:".$frommail;
651 $datarray['author-avatar'] = $contact['photo'];
653 $datarray['owner-name'] = $contact['name'];
654 $datarray['owner-link'] = "mailto:".$contact['addr'];
655 $datarray['owner-avatar'] = $contact['photo'];
657 if ($datarray['parent-uri'] === $datarray['uri']) {
658 $datarray['private'] = Item::PRIVATE;
661 if (!DI::pConfig()->get($importer_uid, 'system', 'allow_public_email_replies')) {
662 $datarray['private'] = Item::PRIVATE;
663 $datarray['allow_cid'] = '<' . $contact['id'] . '>';
666 $datarray = Email::getMessage($mbox, $msg_uid, $reply, $datarray);
667 if (empty($datarray['body'])) {
668 Logger::log("Mail: can't fetch msg ".$msg_uid." for ".$mailconf['user']);
672 Logger::log("Mail: Importing ".$msg_uid." for ".$mailconf['user']);
674 Item::insert($datarray);
676 switch ($mailconf['action']) {
678 Logger::log("Mail: Seen before ".$msg_uid." for ".$mailconf['user'].". Doing nothing.", Logger::DEBUG);
681 Logger::log("Mail: Deleting ".$msg_uid." for ".$mailconf['user']);
682 imap_delete($mbox, $msg_uid, FT_UID);
685 Logger::log("Mail: Mark as seen ".$msg_uid." for ".$mailconf['user']);
686 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
689 Logger::log("Mail: Moving ".$msg_uid." to ".$mailconf['movetofolder']." for ".$mailconf['user']);
690 imap_setflag_full($mbox, $msg_uid, "\\Seen", ST_UID);
691 if ($mailconf['movetofolder'] != "") {
692 imap_mail_move($mbox, $msg_uid, $mailconf['movetofolder'], FT_UID);
699 Logger::log("Mail: no mails for ".$mailconf['user']);
702 Logger::log("Mail: closing connection for ".$mailconf['user']);
709 * @param array $importer
710 * @param array $contact
711 * @param string $hubmode
712 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
714 private static function subscribeToHub(string $url, array $importer, array $contact, $hubmode = 'subscribe')
717 * Diaspora has different message-ids in feeds than they do
718 * through the direct Diaspora protocol. If we try and use
719 * the feed, we'll get duplicates. So don't.
721 if ($contact['network'] === Protocol::DIASPORA) {
725 // Without an importer we don't have a user id - so we quit
726 if (empty($importer)) {
730 $user = DBA::selectFirst('user', ['nickname'], ['uid' => $importer['uid']]);
732 // No user, no nickname, we quit
733 if (!DBA::isResult($user)) {
737 $push_url = DI::baseUrl() . '/pubsub/' . $user['nickname'] . '/' . $contact['id'];
739 // Use a single verify token, even if multiple hubs
740 $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : Strings::getRandomHex());
742 $params = 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
744 Logger::log('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: ' . $push_url . ' with verifier ' . $verify_token);
746 if (!strlen($contact['hub-verify']) || ($contact['hub-verify'] != $verify_token)) {
747 DBA::update('contact', ['hub-verify' => $verify_token], ['id' => $contact['id']]);
750 $postResult = DI::httpRequest()->post($url, $params);
752 Logger::log('subscribe_to_hub: returns: ' . $postResult->getReturnCode(), Logger::DEBUG);