mirror of
https://github.com/nextcloud/server.git
synced 2026-07-16 13:23:11 -04:00
Merge pull request #48491 from nextcloud/backport/48484/stable29
[stable29] fix(Auth): ignore missing token when trying to set password-unconfirm…
This commit is contained in:
commit
a15a378e0d
1 changed files with 14 additions and 6 deletions
|
|
@ -38,12 +38,15 @@
|
|||
|
||||
use OC\Authentication\Token\IProvider;
|
||||
use OC\User\LoginException;
|
||||
use OCP\Authentication\Exceptions\InvalidTokenException;
|
||||
use OCP\Authentication\Exceptions\WipeTokenException;
|
||||
use OCP\EventDispatcher\IEventDispatcher;
|
||||
use OCP\IGroupManager;
|
||||
use OCP\ISession;
|
||||
use OCP\IUser;
|
||||
use OCP\IUserManager;
|
||||
use OCP\Server;
|
||||
use OCP\Session\Exceptions\SessionNotAvailableException;
|
||||
use OCP\User\Events\BeforeUserLoggedInEvent;
|
||||
use OCP\User\Events\UserLoggedInEvent;
|
||||
use Psr\Log\LoggerInterface;
|
||||
|
|
@ -201,12 +204,17 @@ class OC_User {
|
|||
|
||||
if (empty($password)) {
|
||||
$tokenProvider = \OC::$server->get(IProvider::class);
|
||||
$token = $tokenProvider->getToken($userSession->getSession()->getId());
|
||||
$token->setScope([
|
||||
'password-unconfirmable' => true,
|
||||
'filesystem' => true,
|
||||
]);
|
||||
$tokenProvider->updateToken($token);
|
||||
try {
|
||||
$token = $tokenProvider->getToken($userSession->getSession()->getId());
|
||||
$token->setScope([
|
||||
'password-unconfirmable' => true,
|
||||
'filesystem' => true,
|
||||
]);
|
||||
$tokenProvider->updateToken($token);
|
||||
} catch (InvalidTokenException|WipeTokenException|SessionNotAvailableException) {
|
||||
// swallow the exceptions as we do not deal with them here
|
||||
// simply skip updating the token when is it missing
|
||||
}
|
||||
}
|
||||
|
||||
// setup the filesystem
|
||||
|
|
|
|||
Loading…
Reference in a new issue