Don't probe non existing local contacts
This commit is contained in:
parent
aa6313dee6
commit
01abea7c25
1 changed files with 24 additions and 30 deletions
|
@ -2201,39 +2201,33 @@ class Probe
|
||||||
*/
|
*/
|
||||||
private static function localProbe(string $url)
|
private static function localProbe(string $url)
|
||||||
{
|
{
|
||||||
$uid = User::getIdForURL($url);
|
if ($uid = User::getIdForURL($url)) {
|
||||||
if (empty($uid)) {
|
$profile = User::getOwnerDataById($uid);
|
||||||
return [];
|
$approfile = ActivityPub\Transmitter::getProfile($uid);
|
||||||
}
|
|
||||||
|
|
||||||
$profile = User::getOwnerDataById($uid);
|
if (empty($profile['gsid'])) {
|
||||||
if (empty($profile)) {
|
$profile['gsid'] = GServer::getID($approfile['generator']['url']);
|
||||||
return [];
|
}
|
||||||
}
|
|
||||||
|
|
||||||
$approfile = ActivityPub\Transmitter::getProfile($uid);
|
$data = ['name' => $profile['name'], 'nick' => $profile['nick'], 'guid' => $approfile['diaspora:guid'] ?? '',
|
||||||
if (empty($approfile)) {
|
'url' => $profile['url'], 'addr' => $profile['addr'], 'alias' => $profile['alias'],
|
||||||
return [];
|
'photo' => Contact::getAvatarUrlForId($profile['id'], $profile['updated']),
|
||||||
|
'header' => $profile['header'] ? Contact::getHeaderUrlForId($profile['id'], $profile['updated']) : '',
|
||||||
|
'account-type' => $profile['contact-type'], 'community' => ($profile['contact-type'] == User::ACCOUNT_TYPE_COMMUNITY),
|
||||||
|
'keywords' => $profile['keywords'], 'location' => $profile['location'], 'about' => $profile['about'],
|
||||||
|
'hide' => !$profile['net-publish'], 'batch' => '', 'notify' => $profile['notify'],
|
||||||
|
'poll' => $profile['poll'], 'request' => $profile['request'], 'confirm' => $profile['confirm'],
|
||||||
|
'subscribe' => $approfile['generator']['url'] . '/follow?url={uri}', 'poco' => $profile['poco'],
|
||||||
|
'following' => $approfile['following'], 'followers' => $approfile['followers'],
|
||||||
|
'inbox' => $approfile['inbox'], 'outbox' => $approfile['outbox'],
|
||||||
|
'sharedinbox' => $approfile['endpoints']['sharedInbox'], 'network' => Protocol::DFRN,
|
||||||
|
'pubkey' => $profile['upubkey'], 'baseurl' => $approfile['generator']['url'], 'gsid' => $profile['gsid'],
|
||||||
|
'manually-approve' => in_array($profile['page-flags'], [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_PRVGROUP])];
|
||||||
|
} else {
|
||||||
|
// Default values for non existing targets
|
||||||
|
$data = ['name' => $url, 'nick' => $url, 'url' => $url, 'network' => Protocol::PHANTOM,
|
||||||
|
'photo' => DI::baseUrl() . Contact::DEFAULT_AVATAR_PHOTO];
|
||||||
}
|
}
|
||||||
|
|
||||||
if (empty($profile['gsid'])) {
|
|
||||||
$profile['gsid'] = GServer::getID($approfile['generator']['url']);
|
|
||||||
}
|
|
||||||
|
|
||||||
$data = ['name' => $profile['name'], 'nick' => $profile['nick'], 'guid' => $approfile['diaspora:guid'] ?? '',
|
|
||||||
'url' => $profile['url'], 'addr' => $profile['addr'], 'alias' => $profile['alias'],
|
|
||||||
'photo' => Contact::getAvatarUrlForId($profile['id'], $profile['updated']),
|
|
||||||
'header' => $profile['header'] ? Contact::getHeaderUrlForId($profile['id'], $profile['updated']) : '',
|
|
||||||
'account-type' => $profile['contact-type'], 'community' => ($profile['contact-type'] == User::ACCOUNT_TYPE_COMMUNITY),
|
|
||||||
'keywords' => $profile['keywords'], 'location' => $profile['location'], 'about' => $profile['about'],
|
|
||||||
'hide' => !$profile['net-publish'], 'batch' => '', 'notify' => $profile['notify'],
|
|
||||||
'poll' => $profile['poll'], 'request' => $profile['request'], 'confirm' => $profile['confirm'],
|
|
||||||
'subscribe' => $approfile['generator']['url'] . '/follow?url={uri}', 'poco' => $profile['poco'],
|
|
||||||
'following' => $approfile['following'], 'followers' => $approfile['followers'],
|
|
||||||
'inbox' => $approfile['inbox'], 'outbox' => $approfile['outbox'],
|
|
||||||
'sharedinbox' => $approfile['endpoints']['sharedInbox'], 'network' => Protocol::DFRN,
|
|
||||||
'pubkey' => $profile['upubkey'], 'baseurl' => $approfile['generator']['url'], 'gsid' => $profile['gsid'],
|
|
||||||
'manually-approve' => in_array($profile['page-flags'], [User::PAGE_FLAGS_NORMAL, User::PAGE_FLAGS_PRVGROUP])];
|
|
||||||
return self::rearrangeData($data);
|
return self::rearrangeData($data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue