Merge pull request #10061 from annando/issue-10050-again
Issue 10050: Ensure to not create contacts for expired users
This commit is contained in:
commit
fd1ae3f1fb
|
@ -571,7 +571,8 @@ class Contact
|
|||
return true;
|
||||
}
|
||||
|
||||
$user = DBA::selectFirst('user', ['uid', 'username', 'nickname', 'pubkey', 'prvkey'], ['uid' => $uid]);
|
||||
$user = DBA::selectFirst('user', ['uid', 'username', 'nickname', 'pubkey', 'prvkey'],
|
||||
['uid' => $uid, 'account_expired' => false]);
|
||||
if (!DBA::isResult($user)) {
|
||||
return false;
|
||||
}
|
||||
|
@ -624,7 +625,7 @@ class Contact
|
|||
}
|
||||
|
||||
$fields = ['nickname', 'page-flags', 'account-type', 'prvkey', 'pubkey'];
|
||||
$user = DBA::selectFirst('user', $fields, ['uid' => $uid]);
|
||||
$user = DBA::selectFirst('user', $fields, ['uid' => $uid, 'account_expired' => false]);
|
||||
if (!DBA::isResult($user)) {
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -399,7 +399,7 @@ class User
|
|||
return false;
|
||||
}
|
||||
|
||||
if (!$repairMissing) {
|
||||
if (!$repairMissing || $owner['account_expired']) {
|
||||
return $owner;
|
||||
}
|
||||
|
||||
|
@ -1367,6 +1367,9 @@ class User
|
|||
// unique), so it cannot be re-registered in the future.
|
||||
DBA::insert('userd', ['username' => $user['nickname']]);
|
||||
|
||||
// Remove all personal settings, especially connector settings
|
||||
DBA::delete('pconfig', ['uid' => $uid]);
|
||||
|
||||
// The user and related data will be deleted in Friendica\Worker\ExpireAndRemoveUsers
|
||||
DBA::update('user', ['account_removed' => true, 'account_expires_on' => DateTimeFormat::utc('now + 7 day')], ['uid' => $uid]);
|
||||
Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::REMOVAL, $uid);
|
||||
|
|
Loading…
Reference in New Issue
Block a user