mirror of
https://github.com/friendica/friendica
synced 2024-11-10 09:42:54 +00:00
Move user tombstone activity data to ActivityPub\Transmitter
This commit is contained in:
parent
d51b9226a6
commit
5b12bccb45
2 changed files with 18 additions and 8 deletions
|
@ -63,14 +63,7 @@ class Profile extends BaseModule
|
||||||
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
|
||||||
$data = [
|
$data = ActivityPub\Transmitter::getDeletedUser(self::$which);
|
||||||
'@context' => ActivityPub::CONTEXT,
|
|
||||||
'id' => self::getApp()->getBaseUrl() . '/profile/' . self::$which,
|
|
||||||
'type' => 'Tombstone',
|
|
||||||
'published' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
|
|
||||||
'updated' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
|
|
||||||
'deleted' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
|
|
||||||
];
|
|
||||||
|
|
||||||
System::jsonError(410, $data);
|
System::jsonError(410, $data);
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -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