Move user tombstone activity data to ActivityPub\Transmitter

This commit is contained in:
Hypolite Petovan 2019-04-04 07:38:40 -04:00
parent d51b9226a6
commit 5b12bccb45
2 changed files with 18 additions and 8 deletions

View file

@ -247,6 +247,23 @@ class Transmitter
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
*