3 * @copyright Copyright (C) 2010-2022, the Friendica project
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\Model;
27 use Friendica\Core\Logger;
28 use Friendica\Core\Protocol;
29 use Friendica\Core\System;
30 use Friendica\Core\Worker;
31 use Friendica\Database\Database;
32 use Friendica\Database\DBA;
34 use Friendica\Module\Register;
35 use Friendica\Network\HTTPClient\Client\HttpClientOptions;
36 use Friendica\Network\HTTPClient\Capability\ICanHandleHttpResponses;
37 use Friendica\Protocol\Relay;
38 use Friendica\Util\DateTimeFormat;
39 use Friendica\Util\Network;
40 use Friendica\Util\Strings;
41 use Friendica\Util\XML;
44 * This class handles GServer related functions
51 const DT_MASTODON = 2;
53 // Methods to detect server types
55 // Non endpoint specific methods
56 const DETECT_MANUAL = 0;
57 const DETECT_HEADER = 1;
58 const DETECT_BODY = 2;
60 // Implementation specific endpoints
61 const DETECT_FRIENDIKA = 10;
62 const DETECT_FRIENDICA = 11;
63 const DETECT_STATUSNET = 12;
64 const DETECT_GNUSOCIAL = 13;
65 const DETECT_CONFIG_JSON = 14; // Statusnet, GNU Social, Older Hubzilla/Redmatrix
66 const DETECT_SITEINFO_JSON = 15; // Newer Hubzilla
67 const DETECT_MASTODON_API = 16;
68 const DETECT_STATUS_PHP = 17; // Nextcloud
69 const DETECT_V1_CONFIG = 18;
70 const DETECT_PUMPIO = 19;
72 // Standardized endpoints
73 const DETECT_STATISTICS_JSON = 100;
74 const DETECT_NODEINFO_1 = 101;
75 const DETECT_NODEINFO_2 = 102;
78 * Check for the existance of a server and adds it in the background if not existant
81 * @param boolean $only_nodeinfo
84 public static function add(string $url, bool $only_nodeinfo = false)
86 if (self::getID($url, false)) {
90 Worker::add(PRIORITY_LOW, 'UpdateGServer', $url, $only_nodeinfo);
94 * Get the ID for the given server URL
97 * @param boolean $no_check Don't check if the server hadn't been found
98 * @return int gserver id
100 public static function getID(string $url, bool $no_check = false)
106 $url = self::cleanURL($url);
108 $gserver = DBA::selectFirst('gserver', ['id'], ['nurl' => Strings::normaliseLink($url)]);
109 if (DBA::isResult($gserver)) {
110 Logger::info('Got ID for URL', ['id' => $gserver['id'], 'url' => $url, 'callstack' => System::callstack(20)]);
111 return $gserver['id'];
114 if ($no_check || !self::check($url)) {
118 return self::getID($url, true);
122 * Retrieves all the servers which base domain are matching the provided domain pattern
124 * The pattern is a simple fnmatch() pattern with ? for single wildcard and * for multiple wildcard
126 * @param string $pattern
130 public static function listByDomainPattern(string $pattern): array
132 $likePattern = 'http://' . strtr($pattern, ['_' => '\_', '%' => '\%', '?' => '_', '*' => '%']);
134 // The SUBSTRING_INDEX returns everything before the eventual third /, which effectively trims an
135 // eventual server path and keep only the server domain which we're matching against the pattern.
136 $sql = "SELECT `gserver`.*, COUNT(*) AS `contacts`
138 LEFT JOIN `contact` ON `gserver`.`id` = `contact`.`gsid`
139 WHERE SUBSTRING_INDEX(`gserver`.`nurl`, '/', 3) LIKE ?
140 AND NOT `gserver`.`failed`
141 GROUP BY `gserver`.`id`";
143 $stmt = DI::dba()->p($sql, $likePattern);
145 return DI::dba()->toArray($stmt);
149 * Checks if the given server is reachable
151 * @param string $profile URL of the given profile
152 * @param string $server URL of the given server (If empty, taken from profile)
153 * @param string $network Network value that is used, when detection failed
154 * @param boolean $force Force an update.
156 * @return boolean 'true' if server seems vital
158 public static function reachable(string $profile, string $server = '', string $network = '', bool $force = false)
161 $contact = Contact::getByURL($profile, null, ['baseurl']);
162 if (!empty($contact['baseurl'])) {
163 $server = $contact['baseurl'];
171 return self::check($server, $network, $force);
174 public static function getNextUpdateDate(bool $success, string $created = '', string $last_contact = '')
176 // On successful contact process check again next week
178 return DateTimeFormat::utc('now +7 day');
181 $now = strtotime(DateTimeFormat::utcNow());
183 if ($created > $last_contact) {
184 $contact_time = strtotime($created);
186 $contact_time = strtotime($last_contact);
189 // If the last contact was less than 6 hours before then try again in 6 hours
190 if (($now - $contact_time) < (60 * 60 * 6)) {
191 return DateTimeFormat::utc('now +6 hour');
194 // If the last contact was less than 12 hours before then try again in 12 hours
195 if (($now - $contact_time) < (60 * 60 * 12)) {
196 return DateTimeFormat::utc('now +12 hour');
199 // If the last contact was less than 24 hours before then try tomorrow again
200 if (($now - $contact_time) < (60 * 60 * 24)) {
201 return DateTimeFormat::utc('now +1 day');
204 // If the last contact was less than a week before then try again in a week
205 if (($now - $contact_time) < (60 * 60 * 24 * 7)) {
206 return DateTimeFormat::utc('now +1 week');
209 // If the last contact was less than two weeks before then try again in two week
210 if (($now - $contact_time) < (60 * 60 * 24 * 14)) {
211 return DateTimeFormat::utc('now +2 week');
214 // If the last contact was less than a month before then try again in a month
215 if (($now - $contact_time) < (60 * 60 * 24 * 30)) {
216 return DateTimeFormat::utc('now +1 month');
219 // The system hadn't been successul contacted for more than a month, so try again in three months
220 return DateTimeFormat::utc('now +3 month');
224 * Checks the state of the given server.
226 * @param string $server_url URL of the given server
227 * @param string $network Network value that is used, when detection failed
228 * @param boolean $force Force an update.
229 * @param boolean $only_nodeinfo Only use nodeinfo for server detection
231 * @return boolean 'true' if server seems vital
233 public static function check(string $server_url, string $network = '', bool $force = false, bool $only_nodeinfo = false)
235 $server_url = self::cleanURL($server_url);
236 if ($server_url == '') {
240 $gserver = DBA::selectFirst('gserver', [], ['nurl' => Strings::normaliseLink($server_url)]);
241 if (DBA::isResult($gserver)) {
242 if ($gserver['created'] <= DBA::NULL_DATETIME) {
243 $fields = ['created' => DateTimeFormat::utcNow()];
244 $condition = ['nurl' => Strings::normaliseLink($server_url)];
245 DBA::update('gserver', $fields, $condition);
248 if (!$force && (strtotime($gserver['next_contact']) > time())) {
249 Logger::info('No update needed', ['server' => $server_url]);
250 return (!$gserver['failed']);
252 Logger::info('Server is outdated. Start discovery.', ['Server' => $server_url, 'Force' => $force]);
254 Logger::info('Server is unknown. Start discovery.', ['Server' => $server_url]);
257 return self::detect($server_url, $network, $only_nodeinfo);
261 * Set failed server status
265 public static function setFailure(string $url)
267 $gserver = DBA::selectFirst('gserver', [], ['nurl' => Strings::normaliseLink($url)]);
268 if (DBA::isResult($gserver)) {
269 $next_update = self::getNextUpdateDate(false, $gserver['created'], $gserver['last_contact']);
270 DBA::update('gserver', ['failed' => true, 'last_failure' => DateTimeFormat::utcNow(),
271 'next_contact' => $next_update, 'detection-method' => null],
272 ['nurl' => Strings::normaliseLink($url)]);
273 Logger::info('Set failed status for existing server', ['url' => $url]);
276 DBA::insert('gserver', ['url' => $url, 'nurl' => Strings::normaliseLink($url),
277 'network' => Protocol::PHANTOM, 'created' => DateTimeFormat::utcNow(),
278 'failed' => true, 'last_failure' => DateTimeFormat::utcNow()]);
279 Logger::info('Set failed status for new server', ['url' => $url]);
283 * Remove unwanted content from the given URL
286 * @return string cleaned URL
288 public static function cleanURL(string $url)
290 $url = trim($url, '/');
291 $url = str_replace('/index.php', '', $url);
293 $urlparts = parse_url($url);
294 unset($urlparts['user']);
295 unset($urlparts['pass']);
296 unset($urlparts['query']);
297 unset($urlparts['fragment']);
298 return Network::unparseURL($urlparts);
302 * Return the base URL
305 * @return string base URL
307 private static function getBaseURL(string $url)
309 $urlparts = parse_url(self::cleanURL($url));
310 unset($urlparts['path']);
311 return Network::unparseURL($urlparts);
315 * Detect server data (type, protocol, version number, ...)
316 * The detected data is then updated or inserted in the gserver table.
318 * @param string $url URL of the given server
319 * @param string $network Network value that is used, when detection failed
320 * @param boolean $only_nodeinfo Only use nodeinfo for server detection
322 * @return boolean 'true' if server could be detected
324 public static function detect(string $url, string $network = '', bool $only_nodeinfo = false)
326 Logger::info('Detect server type', ['server' => $url]);
327 $serverdata = ['detection-method' => self::DETECT_MANUAL];
329 $original_url = $url;
331 // Remove URL content that is not supposed to exist for a server url
332 $url = self::cleanURL($url);
335 $baseurl = self::getBaseURL($url);
337 // If the URL missmatches, then we mark the old entry as failure
338 if ($url != $original_url) {
339 /// @todo What to do with "next_contact" here?
340 DBA::update('gserver', ['failed' => true, 'last_failure' => DateTimeFormat::utcNow()],
341 ['nurl' => Strings::normaliseLink($original_url)]);
344 // When a nodeinfo is present, we don't need to dig further
345 $xrd_timeout = DI::config()->get('system', 'xrd_timeout');
346 $curlResult = DI::httpClient()->get($url . '/.well-known/nodeinfo', [HttpClientOptions::TIMEOUT => $xrd_timeout]);
347 if ($curlResult->isTimeout()) {
348 self::setFailure($url);
352 // On a redirect follow the new host but mark the old one as failure
353 if ($curlResult->isSuccess() && !empty($curlResult->getRedirectUrl()) && (parse_url($url, PHP_URL_HOST) != parse_url($curlResult->getRedirectUrl(), PHP_URL_HOST))) {
354 $curlResult = DI::httpClient()->get($url, [HttpClientOptions::TIMEOUT => $xrd_timeout]);
355 if (!empty($curlResult->getRedirectUrl()) && parse_url($url, PHP_URL_HOST) != parse_url($curlResult->getRedirectUrl(), PHP_URL_HOST)) {
356 Logger::info('Found redirect. Mark old entry as failure', ['old' => $url, 'new' => $curlResult->getRedirectUrl()]);
357 self::setFailure($url);
358 self::detect($curlResult->getRedirectUrl(), $network, $only_nodeinfo);
363 $nodeinfo = self::fetchNodeinfo($url, $curlResult);
364 if ($only_nodeinfo && empty($nodeinfo)) {
365 Logger::info('Invalid nodeinfo in nodeinfo-mode, server is marked as failure', ['url' => $url]);
366 self::setFailure($url);
370 // When nodeinfo isn't present, we use the older 'statistics.json' endpoint
371 if (empty($nodeinfo)) {
372 $nodeinfo = self::fetchStatistics($url);
375 // If that didn't work out well, we use some protocol specific endpoints
376 // For Friendica and Zot based networks we have to dive deeper to reveal more details
377 if (empty($nodeinfo['network']) || in_array($nodeinfo['network'], [Protocol::DFRN, Protocol::ZOT])) {
378 if (!empty($nodeinfo['detection-method'])) {
379 $serverdata['detection-method'] = $nodeinfo['detection-method'];
382 // Fetch the landing page, possibly it reveals some data
383 if (empty($nodeinfo['network'])) {
384 if ($baseurl == $url) {
385 $basedata = $serverdata;
387 $basedata = ['detection-method' => self::DETECT_MANUAL];
390 $curlResult = DI::httpClient()->get($baseurl, [HttpClientOptions::TIMEOUT => $xrd_timeout]);
391 if ($curlResult->isSuccess()) {
392 if (!empty($curlResult->getRedirectUrl()) && (parse_url($baseurl, PHP_URL_HOST) != parse_url($curlResult->getRedirectUrl(), PHP_URL_HOST))) {
393 Logger::info('Found redirect. Mark old entry as failure', ['old' => $url, 'new' => $curlResult->getRedirectUrl()]);
394 self::setFailure($url);
395 self::detect($curlResult->getRedirectUrl(), $network, $only_nodeinfo);
399 $basedata = self::analyseRootHeader($curlResult, $basedata);
400 $basedata = self::analyseRootBody($curlResult, $basedata, $baseurl);
403 if (!$curlResult->isSuccess() || empty($curlResult->getBody()) || self::invalidBody($curlResult->getBody())) {
404 self::setFailure($url);
408 if ($baseurl == $url) {
409 $serverdata = $basedata;
411 // When the base path doesn't seem to contain a social network we try the complete path.
412 // Most detectable system have to be installed in the root directory.
413 // We checked the base to avoid false positives.
414 $curlResult = DI::httpClient()->get($url, [HttpClientOptions::TIMEOUT => $xrd_timeout]);
415 if ($curlResult->isSuccess()) {
416 $urldata = self::analyseRootHeader($curlResult, $serverdata);
417 $urldata = self::analyseRootBody($curlResult, $urldata, $url);
419 $comparebase = $basedata;
420 unset($comparebase['info']);
421 unset($comparebase['site_name']);
422 $compareurl = $urldata;
423 unset($compareurl['info']);
424 unset($compareurl['site_name']);
426 // We assume that no one will install the identical system in the root and a subfolder
427 if (!empty(array_diff($comparebase, $compareurl))) {
428 $serverdata = $urldata;
434 if (empty($serverdata['network']) || ($serverdata['network'] == Protocol::ACTIVITYPUB)) {
435 $serverdata = self::detectMastodonAlikes($url, $serverdata);
438 // All following checks are done for systems that always have got a "host-meta" endpoint.
439 // With this check we don't have to waste time and ressources for dead systems.
440 // Also this hopefully prevents us from receiving abuse messages.
441 if (empty($serverdata['network']) && !self::validHostMeta($url)) {
442 self::setFailure($url);
446 if (empty($serverdata['network']) || in_array($serverdata['network'], [Protocol::DFRN, Protocol::ACTIVITYPUB])) {
447 $serverdata = self::detectFriendica($url, $serverdata);
450 // the 'siteinfo.json' is some specific endpoint of Hubzilla and Red
451 if (empty($serverdata['network']) || ($serverdata['network'] == Protocol::ZOT)) {
452 $serverdata = self::fetchSiteinfo($url, $serverdata);
455 // The 'siteinfo.json' doesn't seem to be present on older Hubzilla installations
456 if (empty($serverdata['network'])) {
457 $serverdata = self::detectHubzilla($url, $serverdata);
460 if (empty($serverdata['network']) || in_array($serverdata['detection-method'], [self::DETECT_MANUAL, self::DETECT_BODY])) {
461 $serverdata = self::detectPeertube($url, $serverdata);
464 if (empty($serverdata['network'])) {
465 $serverdata = self::detectNextcloud($url, $serverdata);
468 if (empty($serverdata['network'])) {
469 $serverdata = self::detectGNUSocial($url, $serverdata);
472 if (empty($serverdata['network'])) {
473 $serverdata = self::detectPumpIO($url, $serverdata);
476 $serverdata = array_merge($nodeinfo, $serverdata);
478 $serverdata = $nodeinfo;
481 // Detect the directory type
482 $serverdata['directory-type'] = self::DT_NONE;
483 $serverdata = self::checkPoCo($url, $serverdata);
484 $serverdata = self::checkMastodonDirectory($url, $serverdata);
486 // We can't detect the network type. Possibly it is some system that we don't know yet
487 if (empty($serverdata['network'])) {
488 $serverdata['network'] = Protocol::PHANTOM;
491 // When we hadn't been able to detect the network type, we use the hint from the parameter
492 if (($serverdata['network'] == Protocol::PHANTOM) && !empty($network)) {
493 $serverdata['network'] = $network;
496 $serverdata['url'] = $url;
497 $serverdata['nurl'] = Strings::normaliseLink($url);
499 if (in_array($serverdata['network'], [Protocol::PHANTOM, Protocol::FEED])) {
500 $serverdata = self::detectNetworkViaContacts($url, $serverdata);
503 $serverdata['registered-users'] = $serverdata['registered-users'] ?? 0;
505 // On an active server there has to be at least a single user
506 if (!in_array($serverdata['network'], [Protocol::PHANTOM, Protocol::FEED]) && ($serverdata['registered-users'] == 0)) {
507 $serverdata['registered-users'] = 1;
508 } elseif (in_array($serverdata['network'], [Protocol::PHANTOM, Protocol::FEED])) {
509 $serverdata['registered-users'] = 0;
512 $serverdata['next_contact'] = self::getNextUpdateDate(true);
514 $serverdata['last_contact'] = DateTimeFormat::utcNow();
515 $serverdata['failed'] = false;
517 $gserver = DBA::selectFirst('gserver', ['network'], ['nurl' => Strings::normaliseLink($url)]);
518 if (!DBA::isResult($gserver)) {
519 $serverdata['created'] = DateTimeFormat::utcNow();
520 $ret = DBA::insert('gserver', $serverdata);
521 $id = DBA::lastInsertId();
523 $ret = DBA::update('gserver', $serverdata, ['nurl' => $serverdata['nurl']]);
524 $gserver = DBA::selectFirst('gserver', ['id'], ['nurl' => $serverdata['nurl']]);
525 if (DBA::isResult($gserver)) {
526 $id = $gserver['id'];
530 // Count the number of known contacts from this server
531 if (!empty($id) && !in_array($serverdata['network'], [Protocol::PHANTOM, Protocol::FEED])) {
532 $apcontacts = DBA::count('apcontact', ['gsid' => $id]);
533 $contacts = DBA::count('contact', ['uid' => 0, 'gsid' => $id, 'failed' => false]);
534 $max_users = max($apcontacts, $contacts);
535 if ($max_users > $serverdata['registered-users']) {
536 Logger::info('Update registered users', ['id' => $id, 'url' => $serverdata['nurl'], 'registered-users' => $max_users]);
537 DBA::update('gserver', ['registered-users' => $max_users], ['id' => $id]);
541 if (!empty($serverdata['network']) && in_array($serverdata['network'], [Protocol::DFRN, Protocol::DIASPORA])) {
542 self::discoverRelay($url);
549 * Fetch relay data from a given server url
551 * @param string $server_url address of the server
552 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
554 private static function discoverRelay(string $server_url)
556 Logger::info('Discover relay data', ['server' => $server_url]);
558 $curlResult = DI::httpClient()->get($server_url . '/.well-known/x-social-relay');
559 if (!$curlResult->isSuccess()) {
563 $data = json_decode($curlResult->getBody(), true);
564 if (!is_array($data)) {
568 // Sanitize incoming data, see https://github.com/friendica/friendica/issues/8565
569 $data['subscribe'] = (bool)$data['subscribe'] ?? false;
571 if (!$data['subscribe'] || empty($data['scope']) || !in_array(strtolower($data['scope']), ['all', 'tags'])) {
573 $data['subscribe'] = false;
577 $gserver = DBA::selectFirst('gserver', ['id', 'url', 'network', 'relay-subscribe', 'relay-scope'], ['nurl' => Strings::normaliseLink($server_url)]);
578 if (!DBA::isResult($gserver)) {
582 if (($gserver['relay-subscribe'] != $data['subscribe']) || ($gserver['relay-scope'] != $data['scope'])) {
583 $fields = ['relay-subscribe' => $data['subscribe'], 'relay-scope' => $data['scope']];
584 DBA::update('gserver', $fields, ['id' => $gserver['id']]);
587 DBA::delete('gserver-tag', ['gserver-id' => $gserver['id']]);
589 if ($data['scope'] == 'tags') {
592 foreach ($data['tags'] as $tag) {
593 $tag = mb_strtolower($tag);
594 if (strlen($tag) < 100) {
599 foreach ($tags as $tag) {
600 DBA::insert('gserver-tag', ['gserver-id' => $gserver['id'], 'tag' => $tag], Database::INSERT_IGNORE);
604 // Create or update the relay contact
606 if (isset($data['protocols'])) {
607 if (isset($data['protocols']['diaspora'])) {
608 $fields['network'] = Protocol::DIASPORA;
610 if (isset($data['protocols']['diaspora']['receive'])) {
611 $fields['batch'] = $data['protocols']['diaspora']['receive'];
612 } elseif (is_string($data['protocols']['diaspora'])) {
613 $fields['batch'] = $data['protocols']['diaspora'];
617 if (isset($data['protocols']['dfrn'])) {
618 $fields['network'] = Protocol::DFRN;
620 if (isset($data['protocols']['dfrn']['receive'])) {
621 $fields['batch'] = $data['protocols']['dfrn']['receive'];
622 } elseif (is_string($data['protocols']['dfrn'])) {
623 $fields['batch'] = $data['protocols']['dfrn'];
627 if (isset($data['protocols']['activitypub'])) {
628 $fields['network'] = Protocol::ACTIVITYPUB;
630 if (!empty($data['protocols']['activitypub']['actor'])) {
631 $fields['url'] = $data['protocols']['activitypub']['actor'];
633 if (!empty($data['protocols']['activitypub']['receive'])) {
634 $fields['batch'] = $data['protocols']['activitypub']['receive'];
639 Logger::info('Discovery ended', ['server' => $server_url, 'data' => $fields]);
641 Relay::updateContact($gserver, $fields);
645 * Fetch server data from '/statistics.json' on the given server
647 * @param string $url URL of the given server
649 * @return array server data
651 private static function fetchStatistics(string $url)
653 $curlResult = DI::httpClient()->get($url . '/statistics.json');
654 if (!$curlResult->isSuccess()) {
658 $data = json_decode($curlResult->getBody(), true);
663 $serverdata = ['detection-method' => self::DETECT_STATISTICS_JSON];
665 if (!empty($data['version'])) {
666 $serverdata['version'] = $data['version'];
667 // Version numbers on statistics.json are presented with additional info, e.g.:
668 // 0.6.3.0-p1702cc1c, 0.6.99.0-p1b9ab160 or 3.4.3-2-1191.
669 $serverdata['version'] = preg_replace('=(.+)-(.{4,})=ism', '$1', $serverdata['version']);
672 if (!empty($data['name'])) {
673 $serverdata['site_name'] = $data['name'];
676 if (!empty($data['network'])) {
677 $serverdata['platform'] = strtolower($data['network']);
679 if ($serverdata['platform'] == 'diaspora') {
680 $serverdata['network'] = Protocol::DIASPORA;
681 } elseif ($serverdata['platform'] == 'friendica') {
682 $serverdata['network'] = Protocol::DFRN;
683 } elseif ($serverdata['platform'] == 'hubzilla') {
684 $serverdata['network'] = Protocol::ZOT;
685 } elseif ($serverdata['platform'] == 'redmatrix') {
686 $serverdata['network'] = Protocol::ZOT;
691 if (!empty($data['registrations_open'])) {
692 $serverdata['register_policy'] = Register::OPEN;
694 $serverdata['register_policy'] = Register::CLOSED;
701 * Detect server type by using the nodeinfo data
703 * @param string $url address of the server
704 * @param ICanHandleHttpResponses $httpResult
706 * @return array Server data
707 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
709 private static function fetchNodeinfo(string $url, ICanHandleHttpResponses $httpResult)
711 if (!$httpResult->isSuccess()) {
715 $nodeinfo = json_decode($httpResult->getBody(), true);
717 if (!is_array($nodeinfo) || empty($nodeinfo['links'])) {
724 foreach ($nodeinfo['links'] as $link) {
725 if (!is_array($link) || empty($link['rel']) || empty($link['href'])) {
726 Logger::info('Invalid nodeinfo format', ['url' => $url]);
729 if ($link['rel'] == 'http://nodeinfo.diaspora.software/ns/schema/1.0') {
730 $nodeinfo1_url = $link['href'];
731 } elseif ($link['rel'] == 'http://nodeinfo.diaspora.software/ns/schema/2.0') {
732 $nodeinfo2_url = $link['href'];
736 if ($nodeinfo1_url . $nodeinfo2_url == '') {
742 // When the nodeinfo url isn't on the same host, then there is obviously something wrong
743 if (!empty($nodeinfo2_url) && (parse_url($url, PHP_URL_HOST) == parse_url($nodeinfo2_url, PHP_URL_HOST))) {
744 $server = self::parseNodeinfo2($nodeinfo2_url);
747 // When the nodeinfo url isn't on the same host, then there is obviously something wrong
748 if (empty($server) && !empty($nodeinfo1_url) && (parse_url($url, PHP_URL_HOST) == parse_url($nodeinfo1_url, PHP_URL_HOST))) {
749 $server = self::parseNodeinfo1($nodeinfo1_url);
758 * @param string $nodeinfo_url address of the nodeinfo path
759 * @return array Server data
760 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
762 private static function parseNodeinfo1(string $nodeinfo_url)
764 $curlResult = DI::httpClient()->get($nodeinfo_url);
766 if (!$curlResult->isSuccess()) {
770 $nodeinfo = json_decode($curlResult->getBody(), true);
772 if (!is_array($nodeinfo)) {
776 $server = ['detection-method' => self::DETECT_NODEINFO_1,
777 'register_policy' => Register::CLOSED];
779 if (!empty($nodeinfo['openRegistrations'])) {
780 $server['register_policy'] = Register::OPEN;
783 if (is_array($nodeinfo['software'])) {
784 if (!empty($nodeinfo['software']['name'])) {
785 $server['platform'] = strtolower($nodeinfo['software']['name']);
788 if (!empty($nodeinfo['software']['version'])) {
789 $server['version'] = $nodeinfo['software']['version'];
790 // Version numbers on Nodeinfo are presented with additional info, e.g.:
791 // 0.6.3.0-p1702cc1c, 0.6.99.0-p1b9ab160 or 3.4.3-2-1191.
792 $server['version'] = preg_replace('=(.+)-(.{4,})=ism', '$1', $server['version']);
796 if (!empty($nodeinfo['metadata']['nodeName'])) {
797 $server['site_name'] = $nodeinfo['metadata']['nodeName'];
800 if (!empty($nodeinfo['usage']['users']['total'])) {
801 $server['registered-users'] = max($nodeinfo['usage']['users']['total'], 1);
804 if (!empty($nodeinfo['protocols']['inbound']) && is_array($nodeinfo['protocols']['inbound'])) {
806 foreach ($nodeinfo['protocols']['inbound'] as $protocol) {
807 $protocols[$protocol] = true;
810 if (!empty($protocols['friendica'])) {
811 $server['network'] = Protocol::DFRN;
812 } elseif (!empty($protocols['activitypub'])) {
813 $server['network'] = Protocol::ACTIVITYPUB;
814 } elseif (!empty($protocols['diaspora'])) {
815 $server['network'] = Protocol::DIASPORA;
816 } elseif (!empty($protocols['ostatus'])) {
817 $server['network'] = Protocol::OSTATUS;
818 } elseif (!empty($protocols['gnusocial'])) {
819 $server['network'] = Protocol::OSTATUS;
820 } elseif (!empty($protocols['zot'])) {
821 $server['network'] = Protocol::ZOT;
825 if (empty($server)) {
835 * @see https://git.feneas.org/jaywink/nodeinfo2
836 * @param string $nodeinfo_url address of the nodeinfo path
837 * @return array Server data
838 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
840 private static function parseNodeinfo2(string $nodeinfo_url)
842 $curlResult = DI::httpClient()->get($nodeinfo_url);
843 if (!$curlResult->isSuccess()) {
847 $nodeinfo = json_decode($curlResult->getBody(), true);
849 if (!is_array($nodeinfo)) {
853 $server = ['detection-method' => self::DETECT_NODEINFO_2,
854 'register_policy' => Register::CLOSED];
856 if (!empty($nodeinfo['openRegistrations'])) {
857 $server['register_policy'] = Register::OPEN;
860 if (is_array($nodeinfo['software'])) {
861 if (!empty($nodeinfo['software']['name'])) {
862 $server['platform'] = strtolower($nodeinfo['software']['name']);
865 if (!empty($nodeinfo['software']['version'])) {
866 $server['version'] = $nodeinfo['software']['version'];
867 // Version numbers on Nodeinfo are presented with additional info, e.g.:
868 // 0.6.3.0-p1702cc1c, 0.6.99.0-p1b9ab160 or 3.4.3-2-1191.
869 $server['version'] = preg_replace('=(.+)-(.{4,})=ism', '$1', $server['version']);
873 if (!empty($nodeinfo['metadata']['nodeName'])) {
874 $server['site_name'] = $nodeinfo['metadata']['nodeName'];
877 if (!empty($nodeinfo['usage']['users']['total'])) {
878 $server['registered-users'] = max($nodeinfo['usage']['users']['total'], 1);
881 if (!empty($nodeinfo['protocols'])) {
883 foreach ($nodeinfo['protocols'] as $protocol) {
884 if (is_string($protocol)) {
885 $protocols[$protocol] = true;
889 if (!empty($protocols['dfrn'])) {
890 $server['network'] = Protocol::DFRN;
891 } elseif (!empty($protocols['activitypub'])) {
892 $server['network'] = Protocol::ACTIVITYPUB;
893 } elseif (!empty($protocols['diaspora'])) {
894 $server['network'] = Protocol::DIASPORA;
895 } elseif (!empty($protocols['ostatus'])) {
896 $server['network'] = Protocol::OSTATUS;
897 } elseif (!empty($protocols['gnusocial'])) {
898 $server['network'] = Protocol::OSTATUS;
899 } elseif (!empty($protocols['zot'])) {
900 $server['network'] = Protocol::ZOT;
904 if (empty($server)) {
912 * Fetch server information from a 'siteinfo.json' file on the given server
914 * @param string $url URL of the given server
915 * @param array $serverdata array with server data
917 * @return array server data
919 private static function fetchSiteinfo(string $url, array $serverdata)
921 $curlResult = DI::httpClient()->get($url . '/siteinfo.json');
922 if (!$curlResult->isSuccess()) {
926 $data = json_decode($curlResult->getBody(), true);
931 if (in_array($serverdata['detection-method'], [self::DETECT_HEADER, self::DETECT_BODY, self::DETECT_MANUAL])) {
932 $serverdata['detection-method'] = self::DETECT_SITEINFO_JSON;
935 if (!empty($data['url'])) {
936 $serverdata['platform'] = strtolower($data['platform']);
937 $serverdata['version'] = $data['version'];
940 if (!empty($data['plugins'])) {
941 if (in_array('pubcrawl', $data['plugins'])) {
942 $serverdata['network'] = Protocol::ACTIVITYPUB;
943 } elseif (in_array('diaspora', $data['plugins'])) {
944 $serverdata['network'] = Protocol::DIASPORA;
945 } elseif (in_array('gnusoc', $data['plugins'])) {
946 $serverdata['network'] = Protocol::OSTATUS;
948 $serverdata['network'] = Protocol::ZOT;
952 if (!empty($data['site_name'])) {
953 $serverdata['site_name'] = $data['site_name'];
956 if (!empty($data['channels_total'])) {
957 $serverdata['registered-users'] = max($data['channels_total'], 1);
960 if (!empty($data['register_policy'])) {
961 switch ($data['register_policy']) {
962 case 'REGISTER_OPEN':
963 $serverdata['register_policy'] = Register::OPEN;
966 case 'REGISTER_APPROVE':
967 $serverdata['register_policy'] = Register::APPROVE;
970 case 'REGISTER_CLOSED':
972 $serverdata['register_policy'] = Register::CLOSED;
981 * Checks if the server contains a valid host meta file
983 * @param string $url URL of the given server
985 * @return boolean 'true' if the server seems to be vital
987 private static function validHostMeta(string $url)
989 $xrd_timeout = DI::config()->get('system', 'xrd_timeout');
990 $curlResult = DI::httpClient()->get($url . '/.well-known/host-meta', [HttpClientOptions::TIMEOUT => $xrd_timeout]);
991 if (!$curlResult->isSuccess()) {
995 $xrd = XML::parseString($curlResult->getBody());
996 if (!is_object($xrd)) {
1000 $elements = XML::elementToArray($xrd);
1001 if (empty($elements) || empty($elements['xrd']) || empty($elements['xrd']['link'])) {
1006 foreach ($elements['xrd']['link'] as $link) {
1007 // When there is more than a single "link" element, the array looks slightly different
1008 if (!empty($link['@attributes'])) {
1009 $link = $link['@attributes'];
1012 if (empty($link['rel']) || empty($link['template'])) {
1016 if ($link['rel'] == 'lrdd') {
1017 // When the webfinger host is the same like the system host, it should be ok.
1018 $valid = (parse_url($url, PHP_URL_HOST) == parse_url($link['template'], PHP_URL_HOST));
1026 * Detect the network of the given server via their known contacts
1028 * @param string $url URL of the given server
1029 * @param array $serverdata array with server data
1031 * @return array server data
1033 private static function detectNetworkViaContacts(string $url, array $serverdata)
1037 $apcontacts = DBA::select('apcontact', ['url'], ['baseurl' => [$url, $serverdata['nurl']]]);
1038 while ($apcontact = DBA::fetch($apcontacts)) {
1039 $contacts[Strings::normaliseLink($apcontact['url'])] = $apcontact['url'];
1041 DBA::close($apcontacts);
1043 $pcontacts = DBA::select('contact', ['url', 'nurl'], ['uid' => 0, 'baseurl' => [$url, $serverdata['nurl']]]);
1044 while ($pcontact = DBA::fetch($pcontacts)) {
1045 $contacts[$pcontact['nurl']] = $pcontact['url'];
1047 DBA::close($pcontacts);
1049 if (empty($contacts)) {
1054 foreach ($contacts as $contact) {
1055 $probed = Contact::getByURL($contact, true);
1056 if (!empty($probed) && !$probed['failed'] && in_array($probed['network'], Protocol::FEDERATED)) {
1057 $serverdata['network'] = $probed['network'];
1059 } elseif ((time() - $time) > 10) {
1060 // To reduce the stress on remote systems we probe a maximum of 10 seconds
1069 * Checks if the given server does have a '/poco' endpoint.
1070 * This is used for the 'PortableContact' functionality,
1071 * which is used by both Friendica and Hubzilla.
1073 * @param string $url URL of the given server
1074 * @param array $serverdata array with server data
1076 * @return array server data
1078 private static function checkPoCo(string $url, array $serverdata)
1080 $serverdata['poco'] = '';
1082 $curlResult = DI::httpClient()->get($url . '/poco');
1083 if (!$curlResult->isSuccess()) {
1087 $data = json_decode($curlResult->getBody(), true);
1092 if (!empty($data['totalResults'])) {
1093 $registeredUsers = $serverdata['registered-users'] ?? 0;
1094 $serverdata['registered-users'] = max($data['totalResults'], $registeredUsers, 1);
1095 $serverdata['directory-type'] = self::DT_POCO;
1096 $serverdata['poco'] = $url . '/poco';
1103 * Checks if the given server does have a Mastodon style directory endpoint.
1105 * @param string $url URL of the given server
1106 * @param array $serverdata array with server data
1108 * @return array server data
1110 public static function checkMastodonDirectory(string $url, array $serverdata)
1112 $curlResult = DI::httpClient()->get($url . '/api/v1/directory?limit=1');
1113 if (!$curlResult->isSuccess()) {
1117 $data = json_decode($curlResult->getBody(), true);
1122 if (count($data) == 1) {
1123 $serverdata['directory-type'] = self::DT_MASTODON;
1130 * Detects Peertube via their known endpoint
1132 * @param string $url URL of the given server
1133 * @param array $serverdata array with server data
1135 * @return array server data
1137 private static function detectPeertube(string $url, array $serverdata)
1139 $curlResult = DI::httpClient()->get($url . '/api/v1/config');
1141 if (!$curlResult->isSuccess() || ($curlResult->getBody() == '')) {
1145 $data = json_decode($curlResult->getBody(), true);
1150 if (!empty($data['instance']) && !empty($data['serverVersion'])) {
1151 $serverdata['platform'] = 'peertube';
1152 $serverdata['version'] = $data['serverVersion'];
1153 $serverdata['network'] = Protocol::ACTIVITYPUB;
1155 if (!empty($data['instance']['name'])) {
1156 $serverdata['site_name'] = $data['instance']['name'];
1159 if (!empty($data['instance']['shortDescription'])) {
1160 $serverdata['info'] = $data['instance']['shortDescription'];
1163 if (!empty($data['signup'])) {
1164 if (!empty($data['signup']['allowed'])) {
1165 $serverdata['register_policy'] = Register::OPEN;
1169 if (in_array($serverdata['detection-method'], [self::DETECT_HEADER, self::DETECT_BODY, self::DETECT_MANUAL])) {
1170 $serverdata['detection-method'] = self::DETECT_V1_CONFIG;
1178 * Detects the version number of a given server when it was a NextCloud installation
1180 * @param string $url URL of the given server
1181 * @param array $serverdata array with server data
1183 * @return array server data
1185 private static function detectNextcloud(string $url, array $serverdata)
1187 $curlResult = DI::httpClient()->get($url . '/status.php');
1189 if (!$curlResult->isSuccess() || ($curlResult->getBody() == '')) {
1193 $data = json_decode($curlResult->getBody(), true);
1198 if (!empty($data['version'])) {
1199 $serverdata['platform'] = 'nextcloud';
1200 $serverdata['version'] = $data['version'];
1201 $serverdata['network'] = Protocol::ACTIVITYPUB;
1203 if (in_array($serverdata['detection-method'], [self::DETECT_HEADER, self::DETECT_BODY, self::DETECT_MANUAL])) {
1204 $serverdata['detection-method'] = self::DETECT_STATUS_PHP;
1212 * Detects data from a given server url if it was a mastodon alike system
1214 * @param string $url URL of the given server
1215 * @param array $serverdata array with server data
1217 * @return array server data
1219 private static function detectMastodonAlikes(string $url, array $serverdata)
1221 $curlResult = DI::httpClient()->get($url . '/api/v1/instance');
1223 if (!$curlResult->isSuccess() || ($curlResult->getBody() == '')) {
1227 $data = json_decode($curlResult->getBody(), true);
1232 if (in_array($serverdata['detection-method'], [self::DETECT_HEADER, self::DETECT_BODY, self::DETECT_MANUAL])) {
1233 $serverdata['detection-method'] = self::DETECT_MASTODON_API;
1236 if (!empty($data['version'])) {
1237 $serverdata['platform'] = 'mastodon';
1238 $serverdata['version'] = $data['version'] ?? '';
1239 $serverdata['network'] = Protocol::ACTIVITYPUB;
1242 if (!empty($data['title'])) {
1243 $serverdata['site_name'] = $data['title'];
1246 if (!empty($data['title']) && empty($serverdata['platform']) && empty($serverdata['network'])) {
1247 $serverdata['platform'] = 'mastodon';
1248 $serverdata['network'] = Protocol::ACTIVITYPUB;
1251 if (!empty($data['description'])) {
1252 $serverdata['info'] = trim($data['description']);
1255 if (!empty($data['stats']['user_count'])) {
1256 $serverdata['registered-users'] = max($data['stats']['user_count'], 1);
1259 if (!empty($serverdata['version']) && preg_match('/.*?\(compatible;\s(.*)\s(.*)\)/ism', $serverdata['version'], $matches)) {
1260 $serverdata['platform'] = strtolower($matches[1]);
1261 $serverdata['version'] = $matches[2];
1264 if (!empty($serverdata['version']) && strstr(strtolower($serverdata['version']), 'pleroma')) {
1265 $serverdata['platform'] = 'pleroma';
1266 $serverdata['version'] = trim(str_ireplace('pleroma', '', $serverdata['version']));
1269 if (!empty($serverdata['platform']) && strstr($serverdata['platform'], 'pleroma')) {
1270 $serverdata['version'] = trim(str_ireplace('pleroma', '', $serverdata['platform']));
1271 $serverdata['platform'] = 'pleroma';
1278 * Detects data from typical Hubzilla endpoints
1280 * @param string $url URL of the given server
1281 * @param array $serverdata array with server data
1283 * @return array server data
1285 private static function detectHubzilla(string $url, array $serverdata)
1287 $curlResult = DI::httpClient()->get($url . '/api/statusnet/config.json');
1288 if (!$curlResult->isSuccess() || ($curlResult->getBody() == '')) {
1292 $data = json_decode($curlResult->getBody(), true);
1293 if (empty($data) || empty($data['site'])) {
1297 if (!empty($data['site']['name'])) {
1298 $serverdata['site_name'] = $data['site']['name'];
1301 if (!empty($data['site']['platform'])) {
1302 $serverdata['platform'] = strtolower($data['site']['platform']['PLATFORM_NAME']);
1303 $serverdata['version'] = $data['site']['platform']['STD_VERSION'];
1304 $serverdata['network'] = Protocol::ZOT;
1307 if (!empty($data['site']['hubzilla'])) {
1308 $serverdata['platform'] = strtolower($data['site']['hubzilla']['PLATFORM_NAME']);
1309 $serverdata['version'] = $data['site']['hubzilla']['RED_VERSION'];
1310 $serverdata['network'] = Protocol::ZOT;
1313 if (!empty($data['site']['redmatrix'])) {
1314 if (!empty($data['site']['redmatrix']['PLATFORM_NAME'])) {
1315 $serverdata['platform'] = strtolower($data['site']['redmatrix']['PLATFORM_NAME']);
1316 } elseif (!empty($data['site']['redmatrix']['RED_PLATFORM'])) {
1317 $serverdata['platform'] = strtolower($data['site']['redmatrix']['RED_PLATFORM']);
1320 $serverdata['version'] = $data['site']['redmatrix']['RED_VERSION'];
1321 $serverdata['network'] = Protocol::ZOT;
1325 $inviteonly = false;
1328 if (!empty($data['site']['closed'])) {
1329 $closed = self::toBoolean($data['site']['closed']);
1332 if (!empty($data['site']['private'])) {
1333 $private = self::toBoolean($data['site']['private']);
1336 if (!empty($data['site']['inviteonly'])) {
1337 $inviteonly = self::toBoolean($data['site']['inviteonly']);
1340 if (!$closed && !$private and $inviteonly) {
1341 $serverdata['register_policy'] = Register::APPROVE;
1342 } elseif (!$closed && !$private) {
1343 $serverdata['register_policy'] = Register::OPEN;
1345 $serverdata['register_policy'] = Register::CLOSED;
1348 if (!empty($serverdata['network']) && in_array($serverdata['detection-method'],
1349 [self::DETECT_HEADER, self::DETECT_BODY, self::DETECT_MANUAL])) {
1350 $serverdata['detection-method'] = self::DETECT_CONFIG_JSON;
1357 * Converts input value to a boolean value
1359 * @param string|integer $val
1363 private static function toBoolean($val)
1365 if (($val == 'true') || ($val == 1)) {
1367 } elseif (($val == 'false') || ($val == 0)) {
1375 * Detect if the URL belongs to a pump.io server
1377 * @param string $url URL of the given server
1378 * @param array $serverdata array with server data
1380 * @return array server data
1382 private static function detectPumpIO(string $url, array $serverdata)
1384 $curlResult = DI::httpClient()->get($url . '/.well-known/host-meta.json');
1385 if (!$curlResult->isSuccess()) {
1389 $data = json_decode($curlResult->getBody(), true);
1390 if (empty($data['links'])) {
1395 // We are looking for some endpoints that are typical for pump.io
1397 foreach ($data['links'] as $link) {
1398 if (empty($link['rel'])) {
1401 if (in_array($link['rel'], ['registration_endpoint', 'dialback', 'http://apinamespace.org/activitypub/whoami'])) {
1407 $serverdata['detection-method'] = self::DETECT_PUMPIO;
1409 $serverdata['platform'] = 'pumpio';
1410 $serverdata['version'] = '';
1411 $serverdata['network'] = Protocol::PUMPIO;
1413 $servers = $curlResult->getHeader('Server');
1414 foreach ($servers as $server) {
1415 if (preg_match("#pump.io/(.*)\s#U", $server, $matches)) {
1416 $serverdata['version'] = $matches[1];
1425 * Detect if the URL belongs to a GNU Social server
1427 * @param string $url URL of the given server
1428 * @param array $serverdata array with server data
1430 * @return array server data
1432 private static function detectGNUSocial(string $url, array $serverdata)
1434 // Test for GNU Social
1435 $curlResult = DI::httpClient()->get($url . '/api/gnusocial/version.json');
1436 if ($curlResult->isSuccess() && ($curlResult->getBody() != '{"error":"not implemented"}') &&
1437 ($curlResult->getBody() != '') && (strlen($curlResult->getBody()) < 30)) {
1438 $serverdata['platform'] = 'gnusocial';
1439 // Remove junk that some GNU Social servers return
1440 $serverdata['version'] = str_replace(chr(239) . chr(187) . chr(191), '', $curlResult->getBody());
1441 $serverdata['version'] = str_replace(["\r", "\n", "\t"], '', $serverdata['version']);
1442 $serverdata['version'] = trim($serverdata['version'], '"');
1443 $serverdata['network'] = Protocol::OSTATUS;
1445 if (in_array($serverdata['detection-method'], [self::DETECT_HEADER, self::DETECT_BODY, self::DETECT_MANUAL])) {
1446 $serverdata['detection-method'] = self::DETECT_GNUSOCIAL;
1452 // Test for Statusnet
1453 $curlResult = DI::httpClient()->get($url . '/api/statusnet/version.json');
1454 if ($curlResult->isSuccess() && ($curlResult->getBody() != '{"error":"not implemented"}') &&
1455 ($curlResult->getBody() != '') && (strlen($curlResult->getBody()) < 30)) {
1457 // Remove junk that some GNU Social servers return
1458 $serverdata['version'] = str_replace(chr(239).chr(187).chr(191), '', $curlResult->getBody());
1459 $serverdata['version'] = str_replace(["\r", "\n", "\t"], '', $serverdata['version']);
1460 $serverdata['version'] = trim($serverdata['version'], '"');
1462 if (!empty($serverdata['version']) && strtolower(substr($serverdata['version'], 0, 7)) == 'pleroma') {
1463 $serverdata['platform'] = 'pleroma';
1464 $serverdata['version'] = trim(str_ireplace('pleroma', '', $serverdata['version']));
1465 $serverdata['network'] = Protocol::ACTIVITYPUB;
1467 $serverdata['platform'] = 'statusnet';
1468 $serverdata['network'] = Protocol::OSTATUS;
1471 if (in_array($serverdata['detection-method'], [self::DETECT_HEADER, self::DETECT_BODY, self::DETECT_MANUAL])) {
1472 $serverdata['detection-method'] = self::DETECT_STATUSNET;
1480 * Detect if the URL belongs to a Friendica server
1482 * @param string $url URL of the given server
1483 * @param array $serverdata array with server data
1485 * @return array server data
1487 private static function detectFriendica(string $url, array $serverdata)
1489 $curlResult = DI::httpClient()->get($url . '/friendica/json');
1490 if (!$curlResult->isSuccess()) {
1491 $curlResult = DI::httpClient()->get($url . '/friendika/json');
1493 $platform = 'Friendika';
1496 $platform = 'Friendica';
1499 if (!$curlResult->isSuccess()) {
1503 $data = json_decode($curlResult->getBody(), true);
1504 if (empty($data) || empty($data['version'])) {
1508 if (in_array($serverdata['detection-method'], [self::DETECT_HEADER, self::DETECT_BODY, self::DETECT_MANUAL])) {
1509 $serverdata['detection-method'] = $friendika ? self::DETECT_FRIENDIKA : self::DETECT_FRIENDICA;
1512 $serverdata['network'] = Protocol::DFRN;
1513 $serverdata['version'] = $data['version'];
1515 if (!empty($data['no_scrape_url'])) {
1516 $serverdata['noscrape'] = $data['no_scrape_url'];
1519 if (!empty($data['site_name'])) {
1520 $serverdata['site_name'] = $data['site_name'];
1523 if (!empty($data['info'])) {
1524 $serverdata['info'] = trim($data['info']);
1527 $register_policy = ($data['register_policy'] ?? '') ?: 'REGISTER_CLOSED';
1528 switch ($register_policy) {
1529 case 'REGISTER_OPEN':
1530 $serverdata['register_policy'] = Register::OPEN;
1533 case 'REGISTER_APPROVE':
1534 $serverdata['register_policy'] = Register::APPROVE;
1537 case 'REGISTER_CLOSED':
1538 case 'REGISTER_INVITATION':
1539 $serverdata['register_policy'] = Register::CLOSED;
1542 Logger::info('Register policy is invalid', ['policy' => $register_policy, 'server' => $url]);
1543 $serverdata['register_policy'] = Register::CLOSED;
1547 $serverdata['platform'] = strtolower($data['platform'] ?? $platform);
1553 * Analyses the landing page of a given server for hints about type and system of that server
1555 * @param object $curlResult result of curl execution
1556 * @param array $serverdata array with server data
1557 * @param string $url Server URL
1559 * @return array server data
1561 private static function analyseRootBody($curlResult, array $serverdata, string $url)
1563 if (empty($curlResult->getBody())) {
1567 // Using only body information we cannot safely detect a lot of systems.
1568 // So we define a list of platforms that we can detect safely.
1569 $valid_platforms = ['friendica', 'friendika', 'diaspora', 'mastodon', 'hubzilla', 'misskey', 'peertube', 'wordpress', 'write.as'];
1571 $doc = new DOMDocument();
1572 @$doc->loadHTML($curlResult->getBody());
1573 $xpath = new DOMXPath($doc);
1575 $title = trim(XML::getFirstNodeValue($xpath, '//head/title/text()'));
1576 if (!empty($title)) {
1577 $serverdata['site_name'] = $title;
1580 $list = $xpath->query('//meta[@name]');
1582 foreach ($list as $node) {
1584 if ($node->attributes->length) {
1585 foreach ($node->attributes as $attribute) {
1586 $value = trim($attribute->value);
1587 if (empty($value)) {
1591 $attr[$attribute->name] = $value;
1594 if (empty($attr['name']) || empty($attr['content'])) {
1599 if ($attr['name'] == 'description') {
1600 $serverdata['info'] = $attr['content'];
1603 if (in_array($attr['name'], ['application-name', 'al:android:app_name', 'al:ios:app_name',
1604 'twitter:app:name:googleplay', 'twitter:app:name:iphone', 'twitter:app:name:ipad'])) {
1605 $serverdata['platform'] = strtolower($attr['content']);
1606 if (in_array($attr['content'], ['Misskey', 'Write.as'])) {
1607 $serverdata['network'] = Protocol::ACTIVITYPUB;
1610 if (($attr['name'] == 'generator') && (empty($serverdata['platform']) || (substr(strtolower($attr['content']), 0, 9) == 'wordpress'))) {
1611 $serverdata['platform'] = strtolower($attr['content']);
1612 $version_part = explode(' ', $attr['content']);
1614 if (count($version_part) == 2) {
1615 if (in_array($version_part[0], ['WordPress'])) {
1616 $serverdata['platform'] = 'wordpress';
1617 $serverdata['version'] = $version_part[1];
1619 // We still do need a reliable test if some AP plugin is activated
1620 // By now we just check in a later process for some known contacts
1621 $serverdata['network'] = Protocol::FEED;
1623 if ($serverdata['detection-method'] == self::DETECT_MANUAL) {
1624 $serverdata['detection-method'] = self::DETECT_BODY;
1627 if (in_array($version_part[0], ['Friendika', 'Friendica'])) {
1628 $serverdata['platform'] = strtolower($version_part[0]);
1629 $serverdata['version'] = $version_part[1];
1630 $serverdata['network'] = Protocol::DFRN;
1636 $list = $xpath->query('//meta[@property]');
1638 foreach ($list as $node) {
1640 if ($node->attributes->length) {
1641 foreach ($node->attributes as $attribute) {
1642 $value = trim($attribute->value);
1643 if (empty($value)) {
1647 $attr[$attribute->name] = $value;
1650 if (empty($attr['property']) || empty($attr['content'])) {
1655 if ($attr['property'] == 'og:site_name') {
1656 $serverdata['site_name'] = $attr['content'];
1659 if ($attr['property'] == 'og:description') {
1660 $serverdata['info'] = $attr['content'];
1663 if ($attr['property'] == 'og:platform') {
1664 $serverdata['platform'] = strtolower($attr['content']);
1666 if (in_array($attr['content'], ['PeerTube'])) {
1667 $serverdata['network'] = Protocol::ACTIVITYPUB;
1671 if ($attr['property'] == 'generator') {
1672 $serverdata['platform'] = strtolower($attr['content']);
1674 if (in_array($attr['content'], ['hubzilla'])) {
1675 // We later check which compatible protocol modules are loaded.
1676 $serverdata['network'] = Protocol::ZOT;
1681 if (!empty($serverdata['platform']) && in_array($serverdata['detection-method'], [self::DETECT_MANUAL, self::DETECT_BODY]) && !in_array($serverdata['platform'], $valid_platforms)) {
1682 $serverdata['network'] = Protocol::PHANTOM;
1683 $serverdata['version'] = '';
1684 $serverdata['detection-method'] = self::DETECT_MANUAL;
1685 } elseif (!empty($serverdata['network']) && ($serverdata['detection-method'] == self::DETECT_MANUAL)) {
1686 $serverdata['detection-method'] = self::DETECT_BODY;
1693 * Analyses the header data of a given server for hints about type and system of that server
1695 * @param object $curlResult result of curl execution
1696 * @param array $serverdata array with server data
1698 * @return array server data
1700 private static function analyseRootHeader($curlResult, array $serverdata)
1702 if ($curlResult->getHeader('server') == 'Mastodon') {
1703 $serverdata['platform'] = 'mastodon';
1704 $serverdata['network'] = Protocol::ACTIVITYPUB;
1705 } elseif ($curlResult->inHeader('x-diaspora-version')) {
1706 $serverdata['platform'] = 'diaspora';
1707 $serverdata['network'] = Protocol::DIASPORA;
1708 $serverdata['version'] = $curlResult->getHeader('x-diaspora-version')[0] ?? '';
1709 } elseif ($curlResult->inHeader('x-friendica-version')) {
1710 $serverdata['platform'] = 'friendica';
1711 $serverdata['network'] = Protocol::DFRN;
1712 $serverdata['version'] = $curlResult->getHeader('x-friendica-version')[0] ?? '';
1717 if ($serverdata['detection-method'] == self::DETECT_MANUAL) {
1718 $serverdata['detection-method'] = self::DETECT_HEADER;
1725 * Test if the body contains valid content
1727 * @param string $body
1730 private static function invalidBody(string $body)
1732 // Currently we only test for a HTML element.
1733 // Possibly we enhance this in the future.
1734 return !strpos($body, '>');
1738 * Update GServer entries
1740 public static function discover()
1742 // Update the server list
1743 self::discoverFederation();
1747 $requery_days = intval(DI::config()->get('system', 'poco_requery_days'));
1749 if ($requery_days == 0) {
1753 $last_update = date('c', time() - (60 * 60 * 24 * $requery_days));
1755 $gservers = DBA::select('gserver', ['id', 'url', 'nurl', 'network', 'poco', 'directory-type'],
1756 ["NOT `failed` AND `directory-type` != ? AND `last_poco_query` < ?", GServer::DT_NONE, $last_update],
1757 ['order' => ['RAND()']]);
1759 while ($gserver = DBA::fetch($gservers)) {
1760 Logger::info('Update peer list', ['server' => $gserver['url'], 'id' => $gserver['id']]);
1761 Worker::add(PRIORITY_LOW, 'UpdateServerPeers', $gserver['url']);
1763 Logger::info('Update directory', ['server' => $gserver['url'], 'id' => $gserver['id']]);
1764 Worker::add(PRIORITY_LOW, 'UpdateServerDirectory', $gserver);
1766 $fields = ['last_poco_query' => DateTimeFormat::utcNow()];
1767 DBA::update('gserver', $fields, ['nurl' => $gserver['nurl']]);
1769 if (--$no_of_queries == 0) {
1774 DBA::close($gservers);
1778 * Discover federated servers
1780 private static function discoverFederation()
1782 $last = DI::config()->get('poco', 'last_federation_discovery');
1785 $next = $last + (24 * 60 * 60);
1787 if ($next > time()) {
1792 // Discover federated servers
1793 $protocols = ['activitypub', 'diaspora', 'dfrn', 'ostatus'];
1794 foreach ($protocols as $protocol) {
1795 $query = '{nodes(protocol:"' . $protocol . '"){host}}';
1796 $curlResult = DI::httpClient()->fetch('https://the-federation.info/graphql?query=' . urlencode($query));
1797 if (!empty($curlResult)) {
1798 $data = json_decode($curlResult, true);
1799 if (!empty($data['data']['nodes'])) {
1800 foreach ($data['data']['nodes'] as $server) {
1801 // Using "only_nodeinfo" since servers that are listed on that page should always have it.
1802 self::add('https://' . $server['host'], true);
1808 // Disvover Mastodon servers
1809 $accesstoken = DI::config()->get('system', 'instances_social_key');
1811 if (!empty($accesstoken)) {
1812 $api = 'https://instances.social/api/1.0/instances/list?count=0';
1813 $curlResult = DI::httpClient()->get($api, [HttpClientOptions::HEADERS => ['Authorization' => ['Bearer ' . $accesstoken]]]);
1815 if ($curlResult->isSuccess()) {
1816 $servers = json_decode($curlResult->getBody(), true);
1818 foreach ($servers['instances'] as $server) {
1819 $url = (is_null($server['https_score']) ? 'http' : 'https') . '://' . $server['name'];
1825 DI::config()->set('poco', 'last_federation_discovery', time());
1829 * Set the protocol for the given server
1831 * @param int $gsid Server id
1832 * @param int $protocol Protocol id
1836 public static function setProtocol(int $gsid, int $protocol)
1842 $gserver = DBA::selectFirst('gserver', ['protocol', 'url'], ['id' => $gsid]);
1843 if (!DBA::isResult($gserver)) {
1847 $old = $gserver['protocol'];
1849 if (!is_null($old)) {
1851 The priority for the protocols is:
1853 2. DFRN via Diaspora
1859 // We don't need to change it when nothing is to be changed
1860 if ($old == $protocol) {
1864 // We don't want to mark a server as OStatus when it had been marked with any other protocol before
1865 if ($protocol == Post\DeliveryData::OSTATUS) {
1869 // If the server is marked as ActivityPub then we won't change it to anything different
1870 if ($old == Post\DeliveryData::ACTIVITYPUB) {
1874 // Don't change it to anything lower than DFRN if the new one wasn't ActivityPub
1875 if (($old == Post\DeliveryData::DFRN) && ($protocol != Post\DeliveryData::ACTIVITYPUB)) {
1879 // Don't change it to Diaspora when it is a legacy DFRN server
1880 if (($old == Post\DeliveryData::LEGACY_DFRN) && ($protocol == Post\DeliveryData::DIASPORA)) {
1885 Logger::info('Protocol for server', ['protocol' => $protocol, 'old' => $old, 'id' => $gsid, 'url' => $gserver['url'], 'callstack' => System::callstack(20)]);
1886 DBA::update('gserver', ['protocol' => $protocol], ['id' => $gsid]);
1890 * Fetch the protocol of the given server
1892 * @param int $gsid Server id
1896 public static function getProtocol(int $gsid)
1902 $gserver = DBA::selectFirst('gserver', ['protocol'], ['id' => $gsid]);
1903 if (DBA::isResult($gserver)) {
1904 return $gserver['protocol'];