Browse Source

reset verification state if max tries are reached

Signed-off-by: Bjoern Schiessle <bjoern@schiessle.org>
tags/v12.0.0beta2
Bjoern Schiessle 7 years ago
parent
commit
327cddc157
No account linked to committer's email address
1 changed files with 15 additions and 0 deletions
  1. 15
    0
      settings/BackgroundJobs/VerifyUserData.php

+ 15
- 0
settings/BackgroundJobs/VerifyUserData.php View File

@@ -96,6 +96,8 @@ class VerifyUserData extends Job {
$jobList->remove($this, $this->argument);
if ($this->retainJob) {
$this->reAddJob($jobList, $this->argument);
} else {
$this->resetVerificationState();
}
}

@@ -270,4 +272,17 @@ class VerifyUserData extends Job {
return ((time() - $lastRun) > $this->interval);
}


/**
* reset verification state after max tries are reached
*/
protected function resetVerificationState() {
$user = $this->userManager->get($this->argument['uid']);
if ($user !== null) {
$accountData = $this->accountManager->getUser($user);
$accountData[$this->argument['type']]['verified'] = AccountManager::NOT_VERIFIED;
$this->accountManager->updateUser($user, $accountData);
}
}

}

Loading…
Cancel
Save