Merge pull request #4695 from nextcloud/reset-verify-state

reset verification state if max tries are reached
This commit is contained in:
Lukas Reschke 2017-05-08 17:51:07 +02:00 committed by GitHub
commit 9bc77f2914
1 changed files with 15 additions and 0 deletions

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);
}
}
}