2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 10:10:52 -04:00
|
|
|
#
|
|
|
|
# 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.
|
2014-08-12 22:14:34 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
import logging
|
2020-12-11 11:33:31 -05:00
|
|
|
from typing import TYPE_CHECKING, Awaitable, Callable, Dict, Optional
|
2017-03-14 09:37:36 -04:00
|
|
|
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.api.errors import Codes, LoginError, SynapseError
|
2019-03-15 13:46:16 -04:00
|
|
|
from synapse.api.ratelimiting import Ratelimiter
|
2020-09-18 09:55:13 -04:00
|
|
|
from synapse.appservice import ApplicationService
|
2018-07-09 02:09:20 -04:00
|
|
|
from synapse.http.server import finish_request
|
2018-12-07 07:10:07 -05:00
|
|
|
from synapse.http.servlet import (
|
|
|
|
RestServlet,
|
|
|
|
parse_json_object_from_request,
|
|
|
|
parse_string,
|
|
|
|
)
|
2020-03-26 15:05:26 -04:00
|
|
|
from synapse.http.site import SynapseRequest
|
2019-06-03 07:28:59 -04:00
|
|
|
from synapse.rest.client.v2_alpha._base import client_patterns
|
2018-12-24 04:44:33 -05:00
|
|
|
from synapse.rest.well_known import WellKnownBuilder
|
2020-07-06 08:31:51 -04:00
|
|
|
from synapse.types import JsonDict, UserID
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2020-12-11 11:33:31 -05:00
|
|
|
if TYPE_CHECKING:
|
|
|
|
from synapse.server import HomeServer
|
|
|
|
|
2015-07-09 03:28:15 -04:00
|
|
|
logger = logging.getLogger(__name__)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
class LoginRestServlet(RestServlet):
|
|
|
|
PATTERNS = client_patterns("/login$", v1=True)
|
2015-10-07 09:45:57 -04:00
|
|
|
CAS_TYPE = "m.login.cas"
|
2018-11-27 02:51:52 -05:00
|
|
|
SSO_TYPE = "m.login.sso"
|
2015-11-05 09:01:12 -05:00
|
|
|
TOKEN_TYPE = "m.login.token"
|
2020-06-24 05:23:55 -04:00
|
|
|
JWT_TYPE = "org.matrix.login.jwt"
|
|
|
|
JWT_TYPE_DEPRECATED = "m.login.jwt"
|
2020-09-18 09:55:13 -04:00
|
|
|
APPSERVICE_TYPE = "uk.half-shot.msc2778.login.application_service"
|
2015-07-07 08:10:30 -04:00
|
|
|
|
2020-12-11 11:33:31 -05:00
|
|
|
def __init__(self, hs: "HomeServer"):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2019-06-03 07:28:59 -04:00
|
|
|
self.hs = hs
|
2020-07-14 07:16:43 -04:00
|
|
|
|
|
|
|
# JWT configuration variables.
|
2016-03-28 15:33:40 -04:00
|
|
|
self.jwt_enabled = hs.config.jwt_enabled
|
|
|
|
self.jwt_secret = hs.config.jwt_secret
|
|
|
|
self.jwt_algorithm = hs.config.jwt_algorithm
|
2020-07-14 07:16:43 -04:00
|
|
|
self.jwt_issuer = hs.config.jwt_issuer
|
|
|
|
self.jwt_audiences = hs.config.jwt_audiences
|
|
|
|
|
|
|
|
# SSO configuration.
|
2019-06-02 12:13:20 -04:00
|
|
|
self.saml2_enabled = hs.config.saml2_enabled
|
2015-10-07 09:45:57 -04:00
|
|
|
self.cas_enabled = hs.config.cas_enabled
|
2020-05-08 08:30:40 -04:00
|
|
|
self.oidc_enabled = hs.config.oidc_enabled
|
2020-07-14 07:16:43 -04:00
|
|
|
|
2020-09-18 09:55:13 -04:00
|
|
|
self.auth = hs.get_auth()
|
|
|
|
|
2016-06-02 08:31:45 -04:00
|
|
|
self.auth_handler = self.hs.get_auth_handler()
|
2019-02-20 02:47:31 -05:00
|
|
|
self.registration_handler = hs.get_registration_handler()
|
2018-12-24 04:44:33 -05:00
|
|
|
self._well_known_builder = WellKnownBuilder(hs)
|
2020-06-05 05:47:20 -04:00
|
|
|
self._address_ratelimiter = Ratelimiter(
|
|
|
|
clock=hs.get_clock(),
|
|
|
|
rate_hz=self.hs.config.rc_login_address.per_second,
|
|
|
|
burst_count=self.hs.config.rc_login_address.burst_count,
|
|
|
|
)
|
|
|
|
self._account_ratelimiter = Ratelimiter(
|
|
|
|
clock=hs.get_clock(),
|
|
|
|
rate_hz=self.hs.config.rc_login_account.per_second,
|
|
|
|
burst_count=self.hs.config.rc_login_account.burst_count,
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-07-06 08:31:51 -04:00
|
|
|
def on_GET(self, request: SynapseRequest):
|
2015-10-22 05:37:04 -04:00
|
|
|
flows = []
|
2016-03-28 15:33:40 -04:00
|
|
|
if self.jwt_enabled:
|
|
|
|
flows.append({"type": LoginRestServlet.JWT_TYPE})
|
2020-06-24 05:23:55 -04:00
|
|
|
flows.append({"type": LoginRestServlet.JWT_TYPE_DEPRECATED})
|
2020-05-08 08:30:40 -04:00
|
|
|
|
2015-10-07 09:45:57 -04:00
|
|
|
if self.cas_enabled:
|
2018-11-27 02:51:52 -05:00
|
|
|
# we advertise CAS for backwards compat, though MSC1721 renamed it
|
|
|
|
# to SSO.
|
2015-10-07 09:45:57 -04:00
|
|
|
flows.append({"type": LoginRestServlet.CAS_TYPE})
|
2015-11-20 09:05:22 -05:00
|
|
|
|
2020-06-04 06:49:51 -04:00
|
|
|
if self.cas_enabled or self.saml2_enabled or self.oidc_enabled:
|
|
|
|
flows.append({"type": LoginRestServlet.SSO_TYPE})
|
2015-11-20 09:05:22 -05:00
|
|
|
# While its valid for us to advertise this login type generally,
|
|
|
|
# synapse currently only gives out these tokens as part of the
|
2020-06-04 06:49:51 -04:00
|
|
|
# SSO login flow.
|
2015-11-20 09:05:22 -05:00
|
|
|
# Generally we don't want to advertise login flows that clients
|
|
|
|
# don't know how to implement, since they (currently) will always
|
|
|
|
# fall back to the fallback API if they don't understand one of the
|
|
|
|
# login flow types returned.
|
2015-11-19 11:16:49 -05:00
|
|
|
flows.append({"type": LoginRestServlet.TOKEN_TYPE})
|
2017-10-31 06:38:40 -04:00
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
flows.extend(
|
|
|
|
({"type": t} for t in self.auth_handler.get_supported_login_types())
|
|
|
|
)
|
2015-11-19 11:16:49 -05:00
|
|
|
|
2020-10-19 13:03:55 -04:00
|
|
|
flows.append({"type": LoginRestServlet.APPSERVICE_TYPE})
|
|
|
|
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, {"flows": flows}
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-07-06 08:31:51 -04:00
|
|
|
async def on_POST(self, request: SynapseRequest):
|
2016-03-09 06:26:26 -05:00
|
|
|
login_submission = parse_json_object_from_request(request)
|
2020-09-18 09:55:13 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
try:
|
2020-09-18 09:55:13 -04:00
|
|
|
if login_submission["type"] == LoginRestServlet.APPSERVICE_TYPE:
|
|
|
|
appservice = self.auth.get_appservice_by_req(request)
|
2020-12-11 11:33:31 -05:00
|
|
|
|
|
|
|
if appservice.is_rate_limited():
|
|
|
|
self._address_ratelimiter.ratelimit(request.getClientIP())
|
|
|
|
|
2020-09-18 09:55:13 -04:00
|
|
|
result = await self._do_appservice_login(login_submission, appservice)
|
|
|
|
elif self.jwt_enabled and (
|
2019-06-20 05:32:02 -04:00
|
|
|
login_submission["type"] == LoginRestServlet.JWT_TYPE
|
2020-06-24 05:23:55 -04:00
|
|
|
or login_submission["type"] == LoginRestServlet.JWT_TYPE_DEPRECATED
|
2019-06-20 05:32:02 -04:00
|
|
|
):
|
2020-12-11 11:33:31 -05:00
|
|
|
self._address_ratelimiter.ratelimit(request.getClientIP())
|
2020-07-06 08:31:51 -04:00
|
|
|
result = await self._do_jwt_login(login_submission)
|
2015-11-05 09:01:12 -05:00
|
|
|
elif login_submission["type"] == LoginRestServlet.TOKEN_TYPE:
|
2020-12-11 11:33:31 -05:00
|
|
|
self._address_ratelimiter.ratelimit(request.getClientIP())
|
2020-07-06 08:31:51 -04:00
|
|
|
result = await self._do_token_login(login_submission)
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
2020-12-11 11:33:31 -05:00
|
|
|
self._address_ratelimiter.ratelimit(request.getClientIP())
|
2019-12-05 10:53:06 -05:00
|
|
|
result = await self._do_other_login(login_submission)
|
2014-08-12 10:10:52 -04:00
|
|
|
except KeyError:
|
|
|
|
raise SynapseError(400, "Missing JSON keys.")
|
|
|
|
|
2018-12-24 04:44:33 -05:00
|
|
|
well_known_data = self._well_known_builder.get_well_known()
|
|
|
|
if well_known_data:
|
|
|
|
result["well_known"] = well_known_data
|
2019-08-30 11:28:26 -04:00
|
|
|
return 200, result
|
2018-12-24 04:44:33 -05:00
|
|
|
|
2020-09-18 09:55:13 -04:00
|
|
|
async def _do_appservice_login(
|
|
|
|
self, login_submission: JsonDict, appservice: ApplicationService
|
|
|
|
):
|
2020-11-30 14:20:56 -05:00
|
|
|
identifier = login_submission.get("identifier")
|
|
|
|
logger.info("Got appservice login request with identifier: %r", identifier)
|
|
|
|
|
|
|
|
if not isinstance(identifier, dict):
|
|
|
|
raise SynapseError(
|
|
|
|
400, "Invalid identifier in login submission", Codes.INVALID_PARAM
|
|
|
|
)
|
|
|
|
|
|
|
|
# this login flow only supports identifiers of type "m.id.user".
|
|
|
|
if identifier.get("type") != "m.id.user":
|
|
|
|
raise SynapseError(
|
|
|
|
400, "Unknown login identifier type", Codes.INVALID_PARAM
|
|
|
|
)
|
|
|
|
|
|
|
|
user = identifier.get("user")
|
|
|
|
if not isinstance(user, str):
|
|
|
|
raise SynapseError(400, "Invalid user in identifier", Codes.INVALID_PARAM)
|
|
|
|
|
|
|
|
if user.startswith("@"):
|
|
|
|
qualified_user_id = user
|
|
|
|
else:
|
|
|
|
qualified_user_id = UserID(user, self.hs.hostname).to_string()
|
2020-09-18 09:55:13 -04:00
|
|
|
|
|
|
|
if not appservice.is_interested_in_user(qualified_user_id):
|
|
|
|
raise LoginError(403, "Invalid access_token", errcode=Codes.FORBIDDEN)
|
|
|
|
|
2020-12-11 11:33:31 -05:00
|
|
|
return await self._complete_login(
|
|
|
|
qualified_user_id, login_submission, ratelimit=appservice.is_rate_limited()
|
|
|
|
)
|
2020-09-18 09:55:13 -04:00
|
|
|
|
2020-07-06 08:31:51 -04:00
|
|
|
async def _do_other_login(self, login_submission: JsonDict) -> Dict[str, str]:
|
2017-10-31 06:38:40 -04:00
|
|
|
"""Handle non-token/saml/jwt logins
|
|
|
|
|
|
|
|
Args:
|
|
|
|
login_submission:
|
2017-03-13 13:27:51 -04:00
|
|
|
|
2017-10-31 06:38:40 -04:00
|
|
|
Returns:
|
2020-07-06 08:31:51 -04:00
|
|
|
HTTP response
|
2017-10-31 06:38:40 -04:00
|
|
|
"""
|
2017-11-01 09:58:01 -04:00
|
|
|
# Log the request we got, but only certain fields to minimise the chance of
|
|
|
|
# logging someone's password (even if they accidentally put it in the wrong
|
|
|
|
# field)
|
|
|
|
logger.info(
|
|
|
|
"Got login request with identifier: %r, medium: %r, address: %r, user: %r",
|
2019-06-20 05:32:02 -04:00
|
|
|
login_submission.get("identifier"),
|
|
|
|
login_submission.get("medium"),
|
|
|
|
login_submission.get("address"),
|
|
|
|
login_submission.get("user"),
|
2017-11-01 10:02:52 -04:00
|
|
|
)
|
2020-12-01 12:42:26 -05:00
|
|
|
canonical_user_id, callback = await self.auth_handler.validate_login(
|
|
|
|
login_submission, ratelimit=True
|
2017-10-31 06:38:40 -04:00
|
|
|
)
|
2019-12-05 10:53:06 -05:00
|
|
|
result = await self._complete_login(
|
2019-06-20 05:32:02 -04:00
|
|
|
canonical_user_id, login_submission, callback
|
2019-03-26 13:48:30 -04:00
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return result
|
2019-03-26 13:48:30 -04:00
|
|
|
|
2019-12-05 10:53:06 -05:00
|
|
|
async def _complete_login(
|
2020-07-06 08:31:51 -04:00
|
|
|
self,
|
|
|
|
user_id: str,
|
|
|
|
login_submission: JsonDict,
|
2020-09-30 13:02:43 -04:00
|
|
|
callback: Optional[Callable[[Dict[str, str]], Awaitable[None]]] = None,
|
2020-07-06 08:31:51 -04:00
|
|
|
create_non_existent_users: bool = False,
|
2020-12-11 11:33:31 -05:00
|
|
|
ratelimit: bool = True,
|
2020-07-06 08:31:51 -04:00
|
|
|
) -> Dict[str, str]:
|
2019-11-05 12:39:16 -05:00
|
|
|
"""Called when we've successfully authed the user and now need to
|
|
|
|
actually login them in (e.g. create devices). This gets called on
|
2020-07-06 08:31:51 -04:00
|
|
|
all successful logins.
|
2019-11-05 12:39:16 -05:00
|
|
|
|
2020-07-06 08:31:51 -04:00
|
|
|
Applies the ratelimiting for successful login attempts against an
|
2019-11-05 12:39:16 -05:00
|
|
|
account.
|
2019-03-26 13:48:30 -04:00
|
|
|
|
|
|
|
Args:
|
2020-07-06 08:31:51 -04:00
|
|
|
user_id: ID of the user to register.
|
|
|
|
login_submission: Dictionary of login information.
|
2020-09-30 13:02:43 -04:00
|
|
|
callback: Callback function to run after login.
|
2020-07-06 08:31:51 -04:00
|
|
|
create_non_existent_users: Whether to create the user if they don't
|
|
|
|
exist. Defaults to False.
|
2020-12-11 11:33:31 -05:00
|
|
|
ratelimit: Whether to ratelimit the login request.
|
2019-03-26 13:48:30 -04:00
|
|
|
|
|
|
|
Returns:
|
2020-09-30 13:02:43 -04:00
|
|
|
result: Dictionary of account information after successful login.
|
2019-03-26 13:48:30 -04:00
|
|
|
"""
|
2019-11-05 12:39:16 -05:00
|
|
|
|
|
|
|
# Before we actually log them in we check if they've already logged in
|
|
|
|
# too often. This happens here rather than before as we don't
|
|
|
|
# necessarily know the user before now.
|
2020-12-11 11:33:31 -05:00
|
|
|
if ratelimit:
|
|
|
|
self._account_ratelimiter.ratelimit(user_id.lower())
|
2019-11-05 12:39:16 -05:00
|
|
|
|
2020-06-01 12:55:07 -04:00
|
|
|
if create_non_existent_users:
|
|
|
|
canonical_uid = await self.auth_handler.check_user_exists(user_id)
|
|
|
|
if not canonical_uid:
|
|
|
|
canonical_uid = await self.registration_handler.register_user(
|
2019-11-05 12:39:16 -05:00
|
|
|
localpart=UserID.from_string(user_id).localpart
|
|
|
|
)
|
2020-06-01 12:55:07 -04:00
|
|
|
user_id = canonical_uid
|
2019-11-05 12:39:16 -05:00
|
|
|
|
2019-02-18 11:49:38 -05:00
|
|
|
device_id = login_submission.get("device_id")
|
|
|
|
initial_display_name = login_submission.get("initial_device_display_name")
|
2019-12-05 10:53:06 -05:00
|
|
|
device_id, access_token = await self.registration_handler.register_device(
|
2019-06-20 05:32:02 -04:00
|
|
|
user_id, device_id, initial_display_name
|
2016-07-15 07:34:23 -04:00
|
|
|
)
|
2017-10-31 06:38:40 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
result = {
|
2019-03-26 13:48:30 -04:00
|
|
|
"user_id": user_id,
|
2015-08-20 11:21:35 -04:00
|
|
|
"access_token": access_token,
|
2014-08-12 10:10:52 -04:00
|
|
|
"home_server": self.hs.hostname,
|
2016-07-15 08:19:07 -04:00
|
|
|
"device_id": device_id,
|
2014-08-12 10:10:52 -04:00
|
|
|
}
|
|
|
|
|
2017-10-31 11:15:51 -04:00
|
|
|
if callback is not None:
|
2019-12-05 10:53:06 -05:00
|
|
|
await callback(result)
|
2017-10-31 11:15:51 -04:00
|
|
|
|
2019-07-23 09:00:55 -04:00
|
|
|
return result
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-07-06 08:31:51 -04:00
|
|
|
async def _do_token_login(self, login_submission: JsonDict) -> Dict[str, str]:
|
2020-09-30 13:02:43 -04:00
|
|
|
"""
|
|
|
|
Handle the final stage of SSO login.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
login_submission: The JSON request body.
|
|
|
|
|
|
|
|
Returns:
|
|
|
|
The body of the JSON response.
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
token = login_submission["token"]
|
2016-06-02 08:31:45 -04:00
|
|
|
auth_handler = self.auth_handler
|
2019-12-05 10:53:06 -05:00
|
|
|
user_id = await auth_handler.validate_short_term_login_token_and_get_user_id(
|
2019-10-31 11:43:24 -04:00
|
|
|
token
|
2015-11-05 09:01:12 -05:00
|
|
|
)
|
2019-02-18 11:49:38 -05:00
|
|
|
|
2020-09-30 13:02:43 -04:00
|
|
|
return await self._complete_login(
|
|
|
|
user_id, login_submission, self.auth_handler._sso_login_callback
|
|
|
|
)
|
2015-11-05 09:01:12 -05:00
|
|
|
|
2020-07-06 08:31:51 -04:00
|
|
|
async def _do_jwt_login(self, login_submission: JsonDict) -> Dict[str, str]:
|
2016-04-01 13:04:28 -04:00
|
|
|
token = login_submission.get("token", None)
|
2016-03-28 15:33:40 -04:00
|
|
|
if token is None:
|
2016-04-25 09:30:15 -04:00
|
|
|
raise LoginError(
|
2020-07-15 07:10:21 -04:00
|
|
|
403, "Token field for JWT is missing", errcode=Codes.FORBIDDEN
|
2016-04-25 09:30:15 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
import jwt
|
2016-03-28 15:33:40 -04:00
|
|
|
|
|
|
|
try:
|
2019-06-20 05:32:02 -04:00
|
|
|
payload = jwt.decode(
|
2020-07-14 07:16:43 -04:00
|
|
|
token,
|
|
|
|
self.jwt_secret,
|
|
|
|
algorithms=[self.jwt_algorithm],
|
|
|
|
issuer=self.jwt_issuer,
|
|
|
|
audience=self.jwt_audiences,
|
|
|
|
)
|
|
|
|
except jwt.PyJWTError as e:
|
|
|
|
# A JWT error occurred, return some info back to the client.
|
|
|
|
raise LoginError(
|
2020-07-15 07:10:21 -04:00
|
|
|
403, "JWT validation failed: %s" % (str(e),), errcode=Codes.FORBIDDEN,
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2016-03-28 15:33:40 -04:00
|
|
|
|
2016-04-01 13:04:28 -04:00
|
|
|
user = payload.get("sub", None)
|
2016-03-28 15:33:40 -04:00
|
|
|
if user is None:
|
2020-07-15 07:10:21 -04:00
|
|
|
raise LoginError(403, "Invalid JWT", errcode=Codes.FORBIDDEN)
|
2016-03-28 15:33:40 -04:00
|
|
|
|
2017-10-20 11:33:15 -04:00
|
|
|
user_id = UserID(user, self.hs.hostname).to_string()
|
2019-12-05 10:53:06 -05:00
|
|
|
result = await self._complete_login(
|
2020-06-01 12:55:07 -04:00
|
|
|
user_id, login_submission, create_non_existent_users=True
|
2019-11-20 04:29:48 -05:00
|
|
|
)
|
2019-07-23 09:00:55 -04:00
|
|
|
return result
|
2016-03-28 15:33:40 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2019-06-26 19:46:57 -04:00
|
|
|
class BaseSSORedirectServlet(RestServlet):
|
2019-06-10 19:03:57 -04:00
|
|
|
"""Common base class for /login/sso/redirect impls"""
|
2019-06-26 17:34:41 -04:00
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
PATTERNS = client_patterns("/login/(cas|sso)/redirect", v1=True)
|
2015-11-05 09:01:12 -05:00
|
|
|
|
2020-05-15 12:26:02 -04:00
|
|
|
async def on_GET(self, request: SynapseRequest):
|
2019-06-10 19:03:57 -04:00
|
|
|
args = request.args
|
|
|
|
if b"redirectUrl" not in args:
|
|
|
|
return 400, "Redirect URL not specified for SSO auth"
|
|
|
|
client_redirect_url = args[b"redirectUrl"][0]
|
2020-05-15 12:26:02 -04:00
|
|
|
sso_url = await self.get_sso_url(request, client_redirect_url)
|
2019-06-10 19:03:57 -04:00
|
|
|
request.redirect(sso_url)
|
|
|
|
finish_request(request)
|
|
|
|
|
2020-05-15 12:26:02 -04:00
|
|
|
async def get_sso_url(
|
|
|
|
self, request: SynapseRequest, client_redirect_url: bytes
|
|
|
|
) -> bytes:
|
2019-06-10 19:03:57 -04:00
|
|
|
"""Get the URL to redirect to, to perform SSO auth
|
|
|
|
|
|
|
|
Args:
|
2020-05-15 12:26:02 -04:00
|
|
|
request: The client request to redirect.
|
2020-03-26 15:05:26 -04:00
|
|
|
client_redirect_url: the URL that we should redirect the
|
2019-06-10 19:03:57 -04:00
|
|
|
client to when everything is done
|
|
|
|
|
|
|
|
Returns:
|
2020-03-26 15:05:26 -04:00
|
|
|
URL to redirect to
|
2019-06-10 19:03:57 -04:00
|
|
|
"""
|
|
|
|
# to be implemented by subclasses
|
|
|
|
raise NotImplementedError()
|
|
|
|
|
|
|
|
|
2019-06-26 19:46:57 -04:00
|
|
|
class CasRedirectServlet(BaseSSORedirectServlet):
|
2015-11-05 09:01:12 -05:00
|
|
|
def __init__(self, hs):
|
2020-03-26 15:05:26 -04:00
|
|
|
self._cas_handler = hs.get_cas_handler()
|
2015-11-05 09:01:12 -05:00
|
|
|
|
2020-05-15 12:26:02 -04:00
|
|
|
async def get_sso_url(
|
|
|
|
self, request: SynapseRequest, client_redirect_url: bytes
|
|
|
|
) -> bytes:
|
2020-04-03 15:35:05 -04:00
|
|
|
return self._cas_handler.get_redirect_url(
|
|
|
|
{"redirectUrl": client_redirect_url}
|
|
|
|
).encode("ascii")
|
2015-11-05 09:01:12 -05:00
|
|
|
|
|
|
|
|
2019-06-03 07:28:59 -04:00
|
|
|
class CasTicketServlet(RestServlet):
|
|
|
|
PATTERNS = client_patterns("/login/cas/ticket", v1=True)
|
2015-11-05 09:01:12 -05:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2020-09-18 09:56:44 -04:00
|
|
|
super().__init__()
|
2020-03-26 15:05:26 -04:00
|
|
|
self._cas_handler = hs.get_cas_handler()
|
2015-11-05 09:01:12 -05:00
|
|
|
|
2020-03-26 15:05:26 -04:00
|
|
|
async def on_GET(self, request: SynapseRequest) -> None:
|
2020-04-03 15:35:05 -04:00
|
|
|
client_redirect_url = parse_string(request, "redirectUrl")
|
2020-03-26 15:05:26 -04:00
|
|
|
ticket = parse_string(request, "ticket", required=True)
|
2020-04-03 15:35:05 -04:00
|
|
|
|
|
|
|
# Maybe get a session ID (if this ticket is from user interactive
|
|
|
|
# authentication).
|
|
|
|
session = parse_string(request, "session")
|
|
|
|
|
|
|
|
# Either client_redirect_url or session must be provided.
|
|
|
|
if not client_redirect_url and not session:
|
|
|
|
message = "Missing string query parameter redirectUrl or session"
|
|
|
|
raise SynapseError(400, message, errcode=Codes.MISSING_PARAM)
|
|
|
|
|
|
|
|
await self._cas_handler.handle_ticket(
|
|
|
|
request, ticket, client_redirect_url, session
|
2017-02-02 05:53:36 -05:00
|
|
|
)
|
2015-11-05 09:01:12 -05:00
|
|
|
|
|
|
|
|
2019-06-26 19:46:57 -04:00
|
|
|
class SAMLRedirectServlet(BaseSSORedirectServlet):
|
2019-06-10 15:28:08 -04:00
|
|
|
PATTERNS = client_patterns("/login/sso/redirect", v1=True)
|
2019-06-02 12:13:20 -04:00
|
|
|
|
|
|
|
def __init__(self, hs):
|
2019-06-26 17:52:02 -04:00
|
|
|
self._saml_handler = hs.get_saml_handler()
|
2019-06-02 12:13:20 -04:00
|
|
|
|
2020-05-15 12:26:02 -04:00
|
|
|
async def get_sso_url(
|
|
|
|
self, request: SynapseRequest, client_redirect_url: bytes
|
|
|
|
) -> bytes:
|
2019-06-26 17:52:02 -04:00
|
|
|
return self._saml_handler.handle_redirect_request(client_redirect_url)
|
2019-06-02 12:13:20 -04:00
|
|
|
|
|
|
|
|
2020-05-15 12:26:02 -04:00
|
|
|
class OIDCRedirectServlet(BaseSSORedirectServlet):
|
2020-05-08 08:30:40 -04:00
|
|
|
"""Implementation for /login/sso/redirect for the OIDC login flow."""
|
|
|
|
|
|
|
|
PATTERNS = client_patterns("/login/sso/redirect", v1=True)
|
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
self._oidc_handler = hs.get_oidc_handler()
|
|
|
|
|
2020-05-15 12:26:02 -04:00
|
|
|
async def get_sso_url(
|
|
|
|
self, request: SynapseRequest, client_redirect_url: bytes
|
|
|
|
) -> bytes:
|
|
|
|
return await self._oidc_handler.handle_redirect_request(
|
|
|
|
request, client_redirect_url
|
|
|
|
)
|
2020-05-08 08:30:40 -04:00
|
|
|
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def register_servlets(hs, http_server):
|
|
|
|
LoginRestServlet(hs).register(http_server)
|
2015-10-07 09:45:57 -04:00
|
|
|
if hs.config.cas_enabled:
|
2015-11-05 09:01:12 -05:00
|
|
|
CasRedirectServlet(hs).register(http_server)
|
|
|
|
CasTicketServlet(hs).register(http_server)
|
2019-06-10 19:03:57 -04:00
|
|
|
elif hs.config.saml2_enabled:
|
|
|
|
SAMLRedirectServlet(hs).register(http_server)
|
2020-05-08 08:30:40 -04:00
|
|
|
elif hs.config.oidc_enabled:
|
|
|
|
OIDCRedirectServlet(hs).register(http_server)
|