]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/GContact.php
File and category aren't using "term" anymore
[friendica.git] / src / Model / GContact.php
index a13b719a9c3aae252083e2f7ab78dbb2795eeafc..becfd61b08e44105a9a4452d0b20154a327ad3ff 100644 (file)
@@ -43,6 +43,19 @@ use Friendica\Util\Strings;
  */
 class GContact
 {
+       /**
+        * No discovery of followers/followings
+        */
+       const DISCOVERY_NONE = 0;
+       /**
+        * Only discover followers/followings from direct contacts
+        */
+       const DISCOVERY_DIRECT = 1;
+       /**
+        * Recursive discovery of followers/followings
+        */
+       const DISCOVERY_RECURSIVE = 2;
+
        /**
         * Search global contact table by nick or name
         *
@@ -94,12 +107,13 @@ class GContact
 
                        // Ignore results that look strange.
                        // For historic reasons the gcontact table does contain some garbage.
-                       if (!empty($urlparts['query']) || !empty($urlparts['fragment'])) {
+                       if (empty($result['nurl']) || !empty($urlparts['query']) || !empty($urlparts['fragment'])) {
                                continue;
                        }
 
                        $gcontacts[] = Contact::getDetailsByURL($result['nurl'], local_user());
                }
+               DBA::close($results);
                return $gcontacts;
        }
 
@@ -550,6 +564,7 @@ class GContact
                                PortableContact::loadWorker(0, 0, 0, $base);
                        }
                }
+               DBA::close($contacts);
        }
 
        /**
@@ -871,11 +886,11 @@ class GContact
                        $items = $outbox['orderedItems'];
                } elseif (!empty($outbox['first']['orderedItems'])) {
                        $items = $outbox['first']['orderedItems'];
-               } elseif (!empty($outbox['first']['href'])) {
+               } elseif (!empty($outbox['first']['href']) && ($outbox['first']['href'] != $feed)) {
                        self::updateFromOutbox($outbox['first']['href'], $data);
                        return;
                } elseif (!empty($outbox['first'])) {
-                       if (is_string($outbox['first'])) {
+                       if (is_string($outbox['first']) && ($outbox['first'] != $feed)) {
                                self::updateFromOutbox($outbox['first'], $data);
                        } else {
                                Logger::warning('Unexpected data', ['outbox' => $outbox]);
@@ -1282,7 +1297,7 @@ class GContact
         * @param string $url URL of a profile
         * @return void
         */
-       public static function discoverFollowers(string $url, int $following_gcid = 0, int $follower_gcid = 0)
+       public static function discoverFollowers(string $url)
        {
                $gcontact = DBA::selectFirst('gcontact', ['id', 'last_discovery'], ['nurl' => Strings::normaliseLink(($url))]);
                if (!DBA::isResult($gcontact)) {
@@ -1296,16 +1311,6 @@ class GContact
 
                $gcid = $gcontact['id'];
 
-               if (!empty($following_gcid)) {
-                       $fields = ['gcid' => $following_gcid, 'follower-gcid' => $gcid];
-                       Logger::info('Set relation for followed gcontact', $fields);
-                       DBA::update('gfollower', ['deleted' => false], $fields, true);
-               } elseif (!empty($follower_gcid)) {
-                       $fields = ['gcid' => $gcid, 'follower-gcid' => $follower_gcid];
-                       Logger::info('Set relation for following gcontact', $fields);
-                       DBA::update('gfollower', ['deleted' => false], $fields, true);
-               }
-
                $apcontact = APContact::getByURL($url);
 
                if (!empty($apcontact['followers']) && is_string($apcontact['followers'])) {
@@ -1340,27 +1345,26 @@ class GContact
                        foreach ($contacts as $contact) {
                                $gcontact = DBA::selectFirst('gcontact', ['id'], ['nurl' => Strings::normaliseLink(($contact))]);
                                if (DBA::isResult($gcontact)) {
+                                       $fields = [];
                                        if (in_array($contact, $followers)) {
                                                $fields = ['gcid' => $gcid, 'follower-gcid' => $gcontact['id']];
                                        } elseif (in_array($contact, $followings)) {
                                                $fields = ['gcid' => $gcontact['id'], 'follower-gcid' => $gcid];
                                        }
-                                       Logger::info('Set relation between contacts', $fields);
-                                       DBA::update('gfollower', ['deleted' => false], $fields, true);
-                                       continue;
-                               }
-
-                               $follower_gcid = 0;
-                               $following_gcid = 0;
 
-                               if (in_array($contact, $followers)) {
-                                       $following_gcid = $gcid;
-                               } elseif (in_array($contact, $followings)) {
-                                       $follower_gcid = $gcid;
+                                       if (!empty($fields)) {
+                                               Logger::info('Set relation between contacts', $fields);
+                                               DBA::update('gfollower', ['deleted' => false], $fields, true);
+                                               continue;
+                                       }
                                }
 
-                               Logger::info('Discover new AP contact', ['url' => $contact]);
-                               Worker::add(PRIORITY_LOW, 'UpdateGContact', $contact, '', $following_gcid, $follower_gcid);
+                               if (!Network::isUrlBlocked($contact)) {
+                                       Logger::info('Discover new AP contact', ['url' => $contact]);
+                                       Worker::add(PRIORITY_LOW, 'UpdateGContact', $contact, 'nodiscover');
+                               } else {
+                                       Logger::info('No discovery, the URL is blocked.', ['url' => $contact]);
+                               }
                        }
                        if (!empty($followers)) {
                                // Delete all followers that aren't undeleted
@@ -1395,8 +1399,12 @@ class GContact
                                                if (DBA::exists('gcontact', ['nurl' => Strings::normaliseLink(($entry['value']))])) {
                                                        continue;
                                                }
-                                               Logger::info('Discover new PoCo contact', ['url' => $entry['value']]);
-                                               Worker::add(PRIORITY_LOW, 'UpdateGContact', $entry['value']);
+                                               if (!Network::isUrlBlocked($entry['value'])) {
+                                                       Logger::info('Discover new PoCo contact', ['url' => $entry['value']]);
+                                                       Worker::add(PRIORITY_LOW, 'UpdateGContact', $entry['value'], 'nodiscover');
+                                               } else {
+                                                       Logger::info('No discovery, the URL is blocked.', ['url' => $entry['value']]);
+                                               }
                                        }
                                }
                        }