2017-11-29 09:10:46 -05:00
|
|
|
# Copyright 2017 New Vector Ltd
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
import logging
|
2021-01-26 10:50:21 -05:00
|
|
|
from typing import TYPE_CHECKING, Optional
|
2017-11-29 09:10:46 -05:00
|
|
|
|
|
|
|
from synapse.api.errors import Codes, StoreError, SynapseError
|
2022-11-22 14:08:04 -05:00
|
|
|
from synapse.handlers.device import DeviceHandler
|
2020-03-18 07:50:00 -04:00
|
|
|
from synapse.types import Requester
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2021-01-26 10:50:21 -05:00
|
|
|
if TYPE_CHECKING:
|
2021-03-23 07:12:48 -04:00
|
|
|
from synapse.server import HomeServer
|
2021-01-26 10:50:21 -05:00
|
|
|
|
2017-11-29 09:10:46 -05:00
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2021-10-08 07:44:43 -04:00
|
|
|
class SetPasswordHandler:
|
2017-11-29 09:10:46 -05:00
|
|
|
"""Handler which deals with changing user account passwords"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2021-01-26 10:50:21 -05:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2022-02-23 06:04:02 -05:00
|
|
|
self.store = hs.get_datastores().main
|
2017-11-29 09:10:46 -05:00
|
|
|
self._auth_handler = hs.get_auth_handler()
|
2022-11-22 14:08:04 -05:00
|
|
|
# This can only be instantiated on the main process.
|
|
|
|
device_handler = hs.get_device_handler()
|
|
|
|
assert isinstance(device_handler, DeviceHandler)
|
|
|
|
self._device_handler = device_handler
|
2017-11-29 09:10:46 -05:00
|
|
|
|
2020-04-15 12:40:18 -04:00
|
|
|
async def set_password(
|
2020-03-18 07:50:00 -04:00
|
|
|
self,
|
|
|
|
user_id: str,
|
2020-05-20 09:48:03 -04:00
|
|
|
password_hash: str,
|
2020-03-18 07:50:00 -04:00
|
|
|
logout_devices: bool,
|
|
|
|
requester: Optional[Requester] = None,
|
2021-01-26 10:50:21 -05:00
|
|
|
) -> None:
|
2021-03-18 12:54:08 -04:00
|
|
|
if not self._auth_handler.can_change_password():
|
2019-06-27 13:37:29 -04:00
|
|
|
raise SynapseError(403, "Password change disabled", errcode=Codes.FORBIDDEN)
|
|
|
|
|
2017-11-29 09:10:46 -05:00
|
|
|
try:
|
2020-04-15 12:40:18 -04:00
|
|
|
await self.store.user_set_password_hash(user_id, password_hash)
|
2017-11-29 09:10:46 -05:00
|
|
|
except StoreError as e:
|
|
|
|
if e.code == 404:
|
|
|
|
raise SynapseError(404, "Unknown user", Codes.NOT_FOUND)
|
|
|
|
raise e
|
2017-11-29 10:44:59 -05:00
|
|
|
|
2020-03-18 07:50:00 -04:00
|
|
|
# Optionally, log out all of the user's other sessions.
|
|
|
|
if logout_devices:
|
|
|
|
except_device_id = requester.device_id if requester else None
|
|
|
|
except_access_token_id = requester.access_token_id if requester else None
|
|
|
|
|
|
|
|
# First delete all of their other devices.
|
2020-04-15 12:40:18 -04:00
|
|
|
await self._device_handler.delete_all_devices_for_user(
|
2020-03-18 07:50:00 -04:00
|
|
|
user_id, except_device_id=except_device_id
|
|
|
|
)
|
|
|
|
|
|
|
|
# and now delete any access tokens which weren't associated with
|
|
|
|
# devices (or were associated with this device).
|
2020-04-15 12:40:18 -04:00
|
|
|
await self._auth_handler.delete_access_tokens_for_user(
|
2020-03-18 07:50:00 -04:00
|
|
|
user_id, except_token_id=except_access_token_id
|
|
|
|
)
|