]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/OnePoll.php
Merge pull request #8820 from annando/fix-author-network
[friendica.git] / src / Worker / OnePoll.php
index 25402e3c3158d2890833656a71ca2efe16236171..fbe92215d1d30646d93f782ced55a731b772df2e 100644 (file)
@@ -1,16 +1,30 @@
 <?php
 /**
- * @file src/Worker/OnePoll.php
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
  */
+
 namespace Friendica\Worker;
 
-use Friendica\BaseObject;
-use Friendica\Content\Text\BBCode;
-use Friendica\Core\Config;
 use Friendica\Core\Logger;
-use Friendica\Core\PConfig;
 use Friendica\Core\Protocol;
 use Friendica\Database\DBA;
+use Friendica\DI;
 use Friendica\Model\Contact;
 use Friendica\Model\Item;
 use Friendica\Model\User;
@@ -40,9 +54,6 @@ class OnePoll
                        return;
                }
 
-               if ($force) {
-                       Contact::updateFromProbe($contact_id, true);
-               }
 
                $contact = DBA::selectFirst('contact', [], ['id' => $contact_id]);
                if (!DBA::isResult($contact)) {
@@ -50,6 +61,16 @@ class OnePoll
                        return;
                }
 
+               if (($contact['network'] != Protocol::MAIL) || $force) {
+                       Contact::updateFromProbe($contact_id, '', $force);
+               }
+
+               // Special treatment for wrongly detected local contacts
+               if (!$force && ($contact['network'] != Protocol::DFRN) && Contact::isLocalById($contact_id)) {
+                       Contact::updateFromProbe($contact_id, Protocol::DFRN, true);
+                       $contact = DBA::selectFirst('contact', [], ['id' => $contact_id]);
+               }
+
                if (($contact['network'] == Protocol::DFRN) && !Contact::isLegacyDFRNContact($contact)) {
                        $protocol = Protocol::ACTIVITYPUB;
                } else {
@@ -82,7 +103,7 @@ class OnePoll
                }
 
                // Don't poll if polling is deactivated (But we poll feeds and mails anyway)
-               if (!in_array($protocol, [Protocol::FEED, Protocol::MAIL]) && Config::get('system', 'disable_polling')) {
+               if (!in_array($protocol, [Protocol::FEED, Protocol::MAIL]) && DI::config()->get('system', 'disable_polling')) {
                        Logger::log('Polling is disabled');
 
                        // set the last-update so we don't keep polling
@@ -113,7 +134,7 @@ class OnePoll
                $xml = false;
 
                if ($contact['subhub']) {
-                       $poll_interval = Config::get('system', 'pushpoll_frequency', 3);
+                       $poll_interval = DI::config()->get('system', 'pushpoll_frequency', 3);
                        $contact['priority'] = intval($poll_interval);
                        $hub_update = false;
 
@@ -186,7 +207,7 @@ class OnePoll
                                                        continue;
                                                }
 
-                                               subscribe_to_hub($h, $importer, $contact, $hubmode);
+                                               self::subscribeToHub($h, $importer, $contact, $hubmode);
                                        }
                                }
                        }
@@ -214,7 +235,7 @@ class OnePoll
        }
 
        /**
-        * @brief Updates a personal contact entry and the public contact entry
+        * Updates a personal contact entry and the public contact entry
         *
         * @param array $contact The personal contact entry
         * @param array $fields  The fields that are updated
@@ -227,7 +248,7 @@ class OnePoll
        }
 
        /**
-        * @brief Poll DFRN contacts
+        * Poll DFRN contacts
         *
         * @param  array  $contact The personal contact entry
         * @param  string $updated The updated date
@@ -381,7 +402,7 @@ class OnePoll
        }
 
        /**
-        * @brief Poll Feed/OStatus contacts
+        * Poll Feed/OStatus contacts
         *
         * @param  array  $contact The personal contact entry
         * @param  string $protocol The used protocol of the contact
@@ -431,7 +452,7 @@ class OnePoll
        }
 
        /**
-        * @brief Poll Mail contacts
+        * Poll Mail contacts
         *
         * @param  array   $contact      The personal contact entry
         * @param  integer $importer_uid The UID of the importer
@@ -442,7 +463,7 @@ class OnePoll
        {
                Logger::log("Mail: Fetching for ".$contact['addr'], Logger::DEBUG);
 
-               $mail_disabled = ((function_exists('imap_open') && !Config::get('system', 'imap_disabled')) ? 0 : 1);
+               $mail_disabled = ((function_exists('imap_open') && !DI::config()->get('system', 'imap_disabled')) ? 0 : 1);
                if ($mail_disabled) {
                        // set the last-update so we don't keep polling
                        self::updateContact($contact, ['last-update' => $updated]);
@@ -562,7 +583,7 @@ class OnePoll
                                        }
 
                                        // Decoding the header
-                                       $subject = imap_mime_header_decode($meta->subject);
+                                       $subject = imap_mime_header_decode($meta->subject ?? '');
                                        $datarray['title'] = "";
                                        foreach ($subject as $subpart) {
                                                if ($subpart->charset != "default") {
@@ -636,11 +657,11 @@ class OnePoll
                                        $datarray['owner-avatar'] = $contact['photo'];
 
                                        if ($datarray['parent-uri'] === $datarray['uri']) {
-                                               $datarray['private'] = 1;
+                                               $datarray['private'] = Item::PRIVATE;
                                        }
 
-                                       if (!PConfig::get($importer_uid, 'system', 'allow_public_email_replies')) {
-                                               $datarray['private'] = 1;
+                                       if (!DI::pConfig()->get($importer_uid, 'system', 'allow_public_email_replies')) {
+                                               $datarray['private'] = Item::PRIVATE;
                                                $datarray['allow_cid'] = '<' . $contact['id'] . '>';
                                        }
 
@@ -683,4 +704,56 @@ class OnePoll
                Logger::log("Mail: closing connection for ".$mailconf['user']);
                imap_close($mbox);
        }
+
+
+       /**
+        * @param string $url
+        * @param array  $importer
+        * @param array  $contact
+        * @param string $hubmode
+        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
+        */
+       private static function subscribeToHub(string $url, array $importer, array $contact, $hubmode = 'subscribe')
+       {
+               /*
+                * Diaspora has different message-ids in feeds than they do
+                * through the direct Diaspora protocol. If we try and use
+                * the feed, we'll get duplicates. So don't.
+                */
+               if ($contact['network'] === Protocol::DIASPORA) {
+                       return;
+               }
+
+               // Without an importer we don't have a user id - so we quit
+               if (empty($importer)) {
+                       return;
+               }
+
+               $user = DBA::selectFirst('user', ['nickname'], ['uid' => $importer['uid']]);
+
+               // No user, no nickname, we quit
+               if (!DBA::isResult($user)) {
+                       return;
+               }
+
+               $push_url = DI::baseUrl() . '/pubsub/' . $user['nickname'] . '/' . $contact['id'];
+
+               // Use a single verify token, even if multiple hubs
+               $verify_token = ((strlen($contact['hub-verify'])) ? $contact['hub-verify'] : Strings::getRandomHex());
+
+               $params = 'hub.mode=' . $hubmode . '&hub.callback=' . urlencode($push_url) . '&hub.topic=' . urlencode($contact['poll']) . '&hub.verify=async&hub.verify_token=' . $verify_token;
+
+               Logger::log('subscribe_to_hub: ' . $hubmode . ' ' . $contact['name'] . ' to hub ' . $url . ' endpoint: ' . $push_url . ' with verifier ' . $verify_token);
+
+               if (!strlen($contact['hub-verify']) || ($contact['hub-verify'] != $verify_token)) {
+                       DBA::update('contact', ['hub-verify' => $verify_token], ['id' => $contact['id']]);
+               }
+
+               $postResult = Network::post($url, $params);
+
+               Logger::log('subscribe_to_hub: returns: ' . $postResult->getReturnCode(), Logger::DEBUG);
+
+               return;
+
+       }
 }