mirror of
https://github.com/friendica/friendica
synced 2025-04-25 07:50:10 +00:00
Takahē and Wildebeest added, Nomad detection improved
This commit is contained in:
parent
759e76cae6
commit
9c1516feb2
2 changed files with 25 additions and 3 deletions
|
@ -1503,6 +1503,10 @@ class GServer
|
|||
$generator = explode(' ', JsonLD::fetchElement($actor['as:generator'], 'as:name', '@value'));
|
||||
$serverdata['platform'] = strtolower(array_shift($generator));
|
||||
$serverdata['detection-method'] = self::DETECT_SYSTEM_ACTOR;
|
||||
if (self::isNomad($actor['@id'])) {
|
||||
$serverdata['version'] = $serverdata['platform'];
|
||||
$serverdata['platform'] = 'nomad';
|
||||
}
|
||||
} else {
|
||||
$serverdata['detection-method'] = self::DETECT_AP_ACTOR;
|
||||
}
|
||||
|
@ -1525,6 +1529,22 @@ class GServer
|
|||
return ['server' => $serverdata, 'actor' => ''];
|
||||
}
|
||||
|
||||
/**
|
||||
* Detect if the given url belongs to a nomad account
|
||||
*
|
||||
* @param string $url
|
||||
* @return boolean
|
||||
*/
|
||||
private static function isNomad(string $url): bool
|
||||
{
|
||||
foreach (Probe::lrdd($url) as $attribute) {
|
||||
if ((($attribute['@attributes']['rel'] ?? '') == 'http://purl.org/nomad') && (($attribute['@attributes']['type'] ?? '') == 'application/x-nomad+json')) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if the server contains a valid host meta file
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue