Takahē and Wildebeest added, Nomad detection improved

This commit is contained in:
Michael 2023-03-18 11:43:29 +00:00
parent 759e76cae6
commit 9c1516feb2
2 changed files with 25 additions and 3 deletions

View file

@ -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
*