Socialhome added

This commit is contained in:
Michael 2020-03-25 17:25:23 +00:00
parent 6249b674dc
commit 1e9d793d74
1 changed files with 6 additions and 6 deletions

View File

@ -1616,13 +1616,8 @@ class Diaspora
$platform = strtolower($gserver['platform']);
Logger::info('Detected platform', ['platform' => $platform, 'url' => $contact['url']]);
}
if ($platform == 'socialhome') {
// Socialhome doesn't offer an item endpoint that we could use
Logger::info('Ignoring Socialhome', ['platform' => $platform, 'url' => $contact['url']]);
return '';
}
if (!in_array($platform, ['diaspora', 'friendica', 'hubzilla'])) {
if (!in_array($platform, ['diaspora', 'friendica', 'hubzilla', 'socialhome'])) {
if (self::isHubzilla($contact['url'])) {
Logger::info('Detected unknown platform as Hubzilla', ['platform' => $platform, 'url' => $contact['url']]);
$platform = 'hubzilla';
@ -1640,6 +1635,11 @@ class Diaspora
return $contact['baseurl'] . '/item/' . $guid;
}
if ($platform == 'socialhome') {
// This doesn't really seem to work on Socialhome
return $contact['baseurl'] . '/content/' . $guid;
}
if ($platform != 'diaspora') {
Logger::info('Unknown platform', ['platform' => $platform, 'url' => $contact['url']]);
return '';