]> git.mxchange.org Git - friendica.git/commitdiff
Improvements for relais like relay.fedi.buzz
authorMichael <heluecht@pirati.ca>
Sun, 30 Jul 2023 17:46:37 +0000 (17:46 +0000)
committerMichael <heluecht@pirati.ca>
Sun, 30 Jul 2023 17:46:37 +0000 (17:46 +0000)
src/Console/Relay.php
src/Model/APContact.php
src/Protocol/Relay.php

index 52682241e69c63941ec84610a70445fad4287b7b..11d1dbf8215a9871dbc4ffae535d8904a3f1ff94 100644 (file)
@@ -23,8 +23,8 @@ namespace Friendica\Console;
 
 use Asika\SimpleConsole\CommandArgsException;
 use Friendica\Model\APContact;
-use Friendica\Model\Contact;
 use Friendica\Protocol\ActivityPub\Transmitter;
+use Friendica\Protocol\Relay as ProtocolRelay;
 
 /**
  * tool to control the list of ActivityPub relay servers from the CLI
@@ -90,13 +90,9 @@ HELP;
                }
 
                if ((count($this->args) == 1) && ($this->getArgument(0) == 'list')) {
-                       $contacts = $this->dba->select('apcontact', ['url'],
-                       ["`type` IN (?, ?) AND `url` IN (SELECT `url` FROM `contact` WHERE `uid` = ? AND `rel` = ?)",
-                               'Application', 'Service', 0, Contact::FRIEND]);
-                       while ($contact = $this->dba->fetch($contacts)) {
+                       foreach (ProtocolRelay::getList(['url']) as $contact) {
                                $this->out($contact['url']);
                        }
-                       $this->dba->close($contacts);
                } elseif (count($this->args) == 0) {
                        throw new CommandArgsException('too few arguments');
                } elseif (count($this->args) == 1) {
index 2a5b89928f80597cddaf7ba8908d2f9fcf35cde8..c49017b595b120d3730e3d885417a7d4fedc4e27 100644 (file)
@@ -584,6 +584,14 @@ class APContact
         */
        public static function isRelay(array $apcontact): bool
        {
+               if (in_array($apcontact['type'], ['Person', 'Organization'])) {
+                       return false;
+               }
+
+               if (($apcontact['type'] == 'Service') && empty($apcontact['outbox']) && empty($apcontact['sharedinbox']) && empty($apcontact['following']) && empty($apcontact['followers']) && empty($apcontact['statuses_count'])) {
+                       return true;
+               }
+
                if (empty($apcontact['nick']) || $apcontact['nick'] != 'relay') {
                        return false;
                }
index c5131fb3fd75eb82b915dcb9c86e10219493e0f3..ae8ecbbb24c0c207776cd9f0bcff85e20c784188 100644 (file)
@@ -354,7 +354,7 @@ class Relay
        public static function getList(array $fields = []): array
        {
                return DBA::selectToArray('apcontact', $fields,
-                       ["`type` = ? AND `url` IN (SELECT `url` FROM `contact` WHERE `uid` = ? AND `rel` = ?)", 'Application', 0, Contact::FRIEND]);
+                       ["`type` IN (?, ?) AND `url` IN (SELECT `url` FROM `contact` WHERE `uid` = ? AND `rel` = ?)", 'Application', 'Service', 0, Contact::FRIEND]);
        }
 
        /**