Avoid transmitting a deletion message when we don't have a key

This commit is contained in:
Michael 2019-03-04 06:52:43 +00:00
parent 888e2ce2a9
commit a911baf8e5
2 changed files with 12 additions and 2 deletions

View file

@ -1209,6 +1209,16 @@ class Transmitter
{
$owner = User::getOwnerDataById($uid);
if (empty($owner)) {
Logger::error('No owner data found, the deletion message cannot be processed.', ['user' => $uid]);
return false;
}
if (empty($owner['uprvkey'])) {
Logger::error('No private key for owner found, the deletion message cannot be processed.', ['user' => $uid]);
return false;
}
$data = ['@context' => ActivityPub::CONTEXT,
'id' => System::baseUrl() . '/activity/' . System::createGUID(),
'type' => 'Delete',