2020-03-02 11:36:32 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
#
|
|
|
|
# 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.
|
2020-04-09 13:28:13 -04:00
|
|
|
import os
|
2020-03-02 11:36:32 -05:00
|
|
|
from typing import Any, Dict
|
|
|
|
|
|
|
|
import pkg_resources
|
|
|
|
|
2020-03-03 05:54:44 -05:00
|
|
|
from ._base import Config
|
2020-03-02 11:36:32 -05:00
|
|
|
|
|
|
|
|
|
|
|
class SSOConfig(Config):
|
|
|
|
"""SSO Configuration
|
|
|
|
"""
|
|
|
|
|
|
|
|
section = "sso"
|
|
|
|
|
|
|
|
def read_config(self, config, **kwargs):
|
|
|
|
sso_config = config.get("sso") or {} # type: Dict[str, Any]
|
|
|
|
|
|
|
|
# Pick a template directory in order of:
|
|
|
|
# * The sso-specific template_dir
|
|
|
|
# * /path/to/synapse/install/res/templates
|
|
|
|
template_dir = sso_config.get("template_dir")
|
|
|
|
if not template_dir:
|
|
|
|
template_dir = pkg_resources.resource_filename("synapse", "res/templates",)
|
|
|
|
|
2020-05-08 08:30:40 -04:00
|
|
|
self.sso_template_dir = template_dir
|
2020-04-09 13:28:13 -04:00
|
|
|
self.sso_account_deactivated_template = self.read_file(
|
2020-05-08 08:30:40 -04:00
|
|
|
os.path.join(self.sso_template_dir, "sso_account_deactivated.html"),
|
2020-04-09 13:28:13 -04:00
|
|
|
"sso_account_deactivated_template",
|
|
|
|
)
|
2020-04-17 13:34:55 -04:00
|
|
|
self.sso_auth_success_template = self.read_file(
|
2020-05-08 08:30:40 -04:00
|
|
|
os.path.join(self.sso_template_dir, "sso_auth_success.html"),
|
2020-04-17 13:34:55 -04:00
|
|
|
"sso_auth_success_template",
|
|
|
|
)
|
2020-03-02 11:36:32 -05:00
|
|
|
|
2020-03-02 12:05:09 -05:00
|
|
|
self.sso_client_whitelist = sso_config.get("client_whitelist") or []
|
|
|
|
|
2020-03-27 16:24:52 -04:00
|
|
|
# Attempt to also whitelist the server's login fallback, since that fallback sets
|
|
|
|
# the redirect URL to itself (so it can process the login token then return
|
|
|
|
# gracefully to the client). This would make it pointless to ask the user for
|
|
|
|
# confirmation, since the URL the confirmation page would be showing wouldn't be
|
|
|
|
# the client's.
|
|
|
|
# public_baseurl is an optional setting, so we only add the fallback's URL to the
|
|
|
|
# list if it's provided (because we can't figure out what that URL is otherwise).
|
|
|
|
if self.public_baseurl:
|
|
|
|
login_fallback_url = self.public_baseurl + "_matrix/static/client/login"
|
|
|
|
self.sso_client_whitelist.append(login_fallback_url)
|
|
|
|
|
2020-03-02 11:36:32 -05:00
|
|
|
def generate_config_section(self, **kwargs):
|
|
|
|
return """\
|
|
|
|
# Additional settings to use with single-sign on systems such as SAML2 and CAS.
|
|
|
|
#
|
|
|
|
sso:
|
2020-03-02 12:05:09 -05:00
|
|
|
# A list of client URLs which are whitelisted so that the user does not
|
|
|
|
# have to confirm giving access to their account to the URL. Any client
|
|
|
|
# whose URL starts with an entry in the following list will not be subject
|
|
|
|
# to an additional confirmation step after the SSO login is completed.
|
|
|
|
#
|
|
|
|
# WARNING: An entry such as "https://my.client" is insecure, because it
|
|
|
|
# will also match "https://my.client.evil.site", exposing your users to
|
|
|
|
# phishing attacks from evil.site. To avoid this, include a slash after the
|
|
|
|
# hostname: "https://my.client/".
|
|
|
|
#
|
2020-03-27 16:24:52 -04:00
|
|
|
# If public_baseurl is set, then the login fallback page (used by clients
|
|
|
|
# that don't natively support the required login flows) is whitelisted in
|
|
|
|
# addition to any URLs in this list.
|
|
|
|
#
|
2020-03-02 12:05:09 -05:00
|
|
|
# By default, this list is empty.
|
|
|
|
#
|
|
|
|
#client_whitelist:
|
|
|
|
# - https://riot.im/develop
|
|
|
|
# - https://my.custom.client/
|
|
|
|
|
2020-03-02 11:36:32 -05:00
|
|
|
# Directory in which Synapse will try to find the template files below.
|
|
|
|
# If not set, default templates from within the Synapse package will be used.
|
|
|
|
#
|
|
|
|
# DO NOT UNCOMMENT THIS SETTING unless you want to customise the templates.
|
|
|
|
# If you *do* uncomment it, you will need to make sure that all the templates
|
|
|
|
# below are in the directory.
|
|
|
|
#
|
|
|
|
# Synapse will look for the following templates in this directory:
|
|
|
|
#
|
|
|
|
# * HTML page for a confirmation step before redirecting back to the client
|
|
|
|
# with the login token: 'sso_redirect_confirm.html'.
|
|
|
|
#
|
|
|
|
# When rendering, this template is given three variables:
|
|
|
|
# * redirect_url: the URL the user is about to be redirected to. Needs
|
|
|
|
# manual escaping (see
|
|
|
|
# https://jinja.palletsprojects.com/en/2.11.x/templates/#html-escaping).
|
|
|
|
#
|
|
|
|
# * display_url: the same as `redirect_url`, but with the query
|
|
|
|
# parameters stripped. The intention is to have a
|
|
|
|
# human-readable URL to show to users, not to use it as
|
|
|
|
# the final address to redirect to. Needs manual escaping
|
|
|
|
# (see https://jinja.palletsprojects.com/en/2.11.x/templates/#html-escaping).
|
|
|
|
#
|
|
|
|
# * server_name: the homeserver's name.
|
|
|
|
#
|
2020-04-24 15:03:49 -04:00
|
|
|
# * HTML page which notifies the user that they are authenticating to confirm
|
|
|
|
# an operation on their account during the user interactive authentication
|
|
|
|
# process: 'sso_auth_confirm.html'.
|
|
|
|
#
|
|
|
|
# When rendering, this template is given the following variables:
|
|
|
|
# * redirect_url: the URL the user is about to be redirected to. Needs
|
|
|
|
# manual escaping (see
|
|
|
|
# https://jinja.palletsprojects.com/en/2.11.x/templates/#html-escaping).
|
|
|
|
#
|
|
|
|
# * description: the operation which the user is being asked to confirm
|
|
|
|
#
|
|
|
|
# * HTML page shown after a successful user interactive authentication session:
|
|
|
|
# 'sso_auth_success.html'.
|
|
|
|
#
|
|
|
|
# Note that this page must include the JavaScript which notifies of a successful authentication
|
|
|
|
# (see https://matrix.org/docs/spec/client_server/r0.6.0#fallback).
|
|
|
|
#
|
|
|
|
# This template has no additional variables.
|
|
|
|
#
|
|
|
|
# * HTML page shown during single sign-on if a deactivated user (according to Synapse's database)
|
|
|
|
# attempts to login: 'sso_account_deactivated.html'.
|
|
|
|
#
|
|
|
|
# This template has no additional variables.
|
|
|
|
#
|
2020-05-08 08:30:40 -04:00
|
|
|
# * HTML page to display to users if something goes wrong during the
|
|
|
|
# OpenID Connect authentication process: 'sso_error.html'.
|
|
|
|
#
|
|
|
|
# When rendering, this template is given two variables:
|
|
|
|
# * error: the technical name of the error
|
|
|
|
# * error_description: a human-readable message for the error
|
|
|
|
#
|
2020-03-02 11:36:32 -05:00
|
|
|
# You can see the default templates at:
|
|
|
|
# https://github.com/matrix-org/synapse/tree/master/synapse/res/templates
|
|
|
|
#
|
|
|
|
#template_dir: "res/templates"
|
|
|
|
"""
|