updateUserPassword method

Future<void> updateUserPassword({
  1. UserPassword? oldPassword,
  2. required UserPassword newPassword,
})

Updates password for the authenticated MyUser.

If MyUser has no password yet (when sets his password), then old password is not required. Otherwise (when changes his password), it's mandatory to specify the old one.

Implementation

Future<void> updateUserPassword({
  UserPassword? oldPassword,
  required UserPassword newPassword,
}) async {
  Log.debug('updateUserPassword(***, ***)', '$runtimeType');

  final bool locked = _passwordChangeGuard.isLocked;

  await _passwordChangeGuard.protect(() async {
    if (locked) {
      return;
    }

    await WebUtils.protect(() async {
      await _myUserRepository.updateUserPassword(oldPassword, newPassword);

      // TODO: Replace `unsafe` with something more granular and correct.
      await _authService.signIn(
        password: newPassword,
        num: myUser.value?.num,
        unsafe: true,
        force: true,
      );
    });
  });
}