Merge pull request #6957 from MrPetovan/bug/6943-add-tombstone
Send AP Tombstone activity on deleted profiles
This commit is contained in:
commit
c439cb656a
|
@ -7,6 +7,7 @@ Version 2019.06 (UNRELEASED) (2019-06-?)
|
||||||
Fixed tag completion painfully slow [AlfredSK]
|
Fixed tag completion painfully slow [AlfredSK]
|
||||||
Fixed a regression in notifications [MrPetovan]
|
Fixed a regression in notifications [MrPetovan]
|
||||||
Fixed an issue with smilies and code blocks [MrPetovan]
|
Fixed an issue with smilies and code blocks [MrPetovan]
|
||||||
|
Fixed an AP issue with unavailable local profiles [MrPetovan]
|
||||||
General Code cleaning and restructuring [nupplaphil]
|
General Code cleaning and restructuring [nupplaphil]
|
||||||
Added frio color scheme sharing [JeroenED]
|
Added frio color scheme sharing [JeroenED]
|
||||||
Added syslog and stream Logger [nupplaphil]
|
Added syslog and stream Logger [nupplaphil]
|
||||||
|
@ -14,7 +15,7 @@ Version 2019.06 (UNRELEASED) (2019-06-?)
|
||||||
Added collapsible panel for connector permission fields [MrPetovan]
|
Added collapsible panel for connector permission fields [MrPetovan]
|
||||||
|
|
||||||
Closed Issues:
|
Closed Issues:
|
||||||
6303, 6478, 6319, 6921, 6903
|
6303, 6478, 6319, 6921, 6903, 6943
|
||||||
|
|
||||||
Version 2019.03 (2019-03-22)
|
Version 2019.03 (2019-03-22)
|
||||||
Friendica Core:
|
Friendica Core:
|
||||||
|
|
|
@ -54,15 +54,21 @@ class Profile extends BaseModule
|
||||||
{
|
{
|
||||||
if (ActivityPub::isRequest()) {
|
if (ActivityPub::isRequest()) {
|
||||||
$user = DBA::selectFirst('user', ['uid'], ['nickname' => self::$which]);
|
$user = DBA::selectFirst('user', ['uid'], ['nickname' => self::$which]);
|
||||||
|
$data = [];
|
||||||
if (DBA::isResult($user)) {
|
if (DBA::isResult($user)) {
|
||||||
$data = ActivityPub\Transmitter::getProfile($user['uid']);
|
$data = ActivityPub\Transmitter::getProfile($user['uid']);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!empty($data)) {
|
||||||
System::jsonExit($data, 'application/activity+json');
|
System::jsonExit($data, 'application/activity+json');
|
||||||
} elseif (DBA::exists('userd', ['username' => self::$which])) {
|
} elseif (DBA::exists('userd', ['username' => self::$which])) {
|
||||||
// Known deleted user
|
// Known deleted user
|
||||||
System::httpExit(410);
|
$data = ActivityPub\Transmitter::getDeletedUser(self::$which);
|
||||||
|
|
||||||
|
System::jsonError(410, $data);
|
||||||
} else {
|
} else {
|
||||||
// Unknown user
|
// Any other case (unknown, blocked, unverified, expired, no profile, no self contact)
|
||||||
System::httpExit(404);
|
System::jsonError(404, $data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -247,6 +247,23 @@ class Transmitter
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $username
|
||||||
|
* @return array
|
||||||
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
||||||
|
*/
|
||||||
|
public static function getDeletedUser($username)
|
||||||
|
{
|
||||||
|
return [
|
||||||
|
'@context' => ActivityPub::CONTEXT,
|
||||||
|
'id' => System::baseUrl() . '/profile/' . $username,
|
||||||
|
'type' => 'Tombstone',
|
||||||
|
'published' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
|
||||||
|
'updated' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
|
||||||
|
'deleted' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns an array with permissions of a given item array
|
* Returns an array with permissions of a given item array
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue