mirror of
https://github.com/friendica/friendica
synced 2024-11-10 07:02:54 +00:00
Don't create notify for deleted user accounts
This commit is contained in:
parent
48b1dceb19
commit
cbe8d463b1
1 changed files with 13 additions and 3 deletions
|
@ -230,7 +230,7 @@ class Notify extends BaseRepository
|
||||||
}
|
}
|
||||||
|
|
||||||
// Ensure that the important fields are set at any time
|
// Ensure that the important fields are set at any time
|
||||||
$fields = ['nickname', 'account-type', 'notify-flags', 'language', 'username', 'email'];
|
$fields = ['nickname', 'account-type', 'notify-flags', 'language', 'username', 'email', 'account_removed', 'account_expired'];
|
||||||
$user = DBA::selectFirst('user', $fields, ['uid' => $params['uid']]);
|
$user = DBA::selectFirst('user', $fields, ['uid' => $params['uid']]);
|
||||||
|
|
||||||
if (!DBA::isResult($user)) {
|
if (!DBA::isResult($user)) {
|
||||||
|
@ -238,6 +238,10 @@ class Notify extends BaseRepository
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ($user['account_removed'] || $user['account_expired']) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// There is no need to create notifications for forum accounts
|
// There is no need to create notifications for forum accounts
|
||||||
if ($user['account-type'] == Model\User::ACCOUNT_TYPE_COMMUNITY) {
|
if ($user['account-type'] == Model\User::ACCOUNT_TYPE_COMMUNITY) {
|
||||||
return false;
|
return false;
|
||||||
|
@ -525,8 +529,11 @@ class Notify extends BaseRepository
|
||||||
$parent_uri_id = $params['item']['parent-uri-id'] ?? null;
|
$parent_uri_id = $params['item']['parent-uri-id'] ?? null;
|
||||||
|
|
||||||
// Ensure that the important fields are set at any time
|
// Ensure that the important fields are set at any time
|
||||||
$fields = ['nickname'];
|
$fields = ['nickname', 'account_removed', 'account_expired'];
|
||||||
$user = Model\User::getById($params['uid'], $fields);
|
$user = Model\User::getById($params['uid'], $fields);
|
||||||
|
if ($user['account_removed'] || $user['user_expired']) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
$sitename = $this->config->get('config', 'sitename');
|
$sitename = $this->config->get('config', 'sitename');
|
||||||
|
|
||||||
|
@ -711,6 +718,9 @@ class Notify extends BaseRepository
|
||||||
$params['otype'] = Model\Notification\ObjectType::ITEM;
|
$params['otype'] = Model\Notification\ObjectType::ITEM;
|
||||||
|
|
||||||
$user = Model\User::getById($Notification->uid);
|
$user = Model\User::getById($Notification->uid);
|
||||||
|
if ($user['account_removed'] || $user['account_expired']) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
$params['notify_flags'] = $user['notify-flags'];
|
$params['notify_flags'] = $user['notify-flags'];
|
||||||
$params['language'] = $user['language'];
|
$params['language'] = $user['language'];
|
||||||
|
|
Loading…
Reference in a new issue