This repository was archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Collect terms consent from the user during SSO registration #9276
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Improve the user experience of setting up an account via single-sign on. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>SSO redirect confirmation</title> | ||
<meta name="viewport" content="width=device-width, user-scalable=no"> | ||
<style type="text/css"> | ||
{% include "sso.css" without context %} | ||
|
||
#consent_form { | ||
margin-top: 56px; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Your account is nearly ready</h1> | ||
<p>Agree to the terms to create your account.</p> | ||
</header> | ||
<main> | ||
<!-- {% if user_profile.avatar_url and user_profile.display_name %} --> | ||
<div class="profile"> | ||
<img src="{{ user_profile.avatar_url | mxc_to_http(64, 64) }}" class="avatar" /> | ||
<div class="profile-details"> | ||
<div class="display-name">{{ user_profile.display_name }}</div> | ||
<div class="user-id">{{ user_id }}</div> | ||
</div> | ||
</div> | ||
<!-- {% endif %} --> | ||
<form method="post" action="{{my_url}}" id="consent_form"> | ||
<p> | ||
<input id="accepted_version" type="checkbox" name="accepted_version" value="{{ consent_version }}" required> | ||
<label for="accepted_version">I have read and agree to the <a href="{{ terms_url }}" target="_blank">terms and conditions</a>.</label> | ||
</p> | ||
<input type="submit" class="primary-button" value="Continue"/> | ||
</form> | ||
</main> | ||
</body> | ||
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
# -*- coding: utf-8 -*- | ||
# Copyright 2021 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. | ||
import logging | ||
from typing import TYPE_CHECKING | ||
|
||
from twisted.web.http import Request | ||
|
||
from synapse.api.errors import SynapseError | ||
from synapse.handlers.sso import get_username_mapping_session_cookie_from_request | ||
from synapse.http.server import DirectServeHtmlResource, respond_with_html | ||
from synapse.http.servlet import parse_string | ||
from synapse.types import UserID | ||
from synapse.util.templates import build_jinja_env | ||
|
||
if TYPE_CHECKING: | ||
from synapse.server import HomeServer | ||
|
||
logger = logging.getLogger(__name__) | ||
|
||
|
||
class NewUserConsentResource(DirectServeHtmlResource): | ||
"""A resource which collects consent to the server's terms from a new user | ||
|
||
This resource gets mounted at /_synapse/client/new_user_consent, and is shown | ||
when we are automatically creating a new user due to an SSO login. | ||
|
||
It shows a template which prompts the user to go and read the Ts and Cs, and click | ||
a clickybox if they have done so. | ||
""" | ||
|
||
def __init__(self, hs: "HomeServer"): | ||
super().__init__() | ||
self._sso_handler = hs.get_sso_handler() | ||
self._server_name = hs.hostname | ||
self._consent_version = hs.config.consent.user_consent_version | ||
|
||
def template_search_dirs(): | ||
if hs.config.sso.sso_template_dir: | ||
yield hs.config.sso.sso_template_dir | ||
yield hs.config.sso.default_template_dir | ||
|
||
self._jinja_env = build_jinja_env(template_search_dirs(), hs.config) | ||
|
||
async def _async_render_GET(self, request: Request) -> None: | ||
try: | ||
session_id = get_username_mapping_session_cookie_from_request(request) | ||
session = self._sso_handler.get_mapping_session(session_id) | ||
except SynapseError as e: | ||
logger.warning("Error fetching session: %s", e) | ||
self._sso_handler.render_error(request, "bad_session", e.msg, code=e.code) | ||
return | ||
|
||
user_id = UserID(session.chosen_localpart, self._server_name) | ||
user_profile = { | ||
"display_name": session.display_name, | ||
} | ||
|
||
template_params = { | ||
"user_id": user_id.to_string(), | ||
"user_profile": user_profile, | ||
"consent_version": self._consent_version, | ||
"terms_url": "/_matrix/consent?v=%s" % (self._consent_version,), | ||
} | ||
|
||
template = self._jinja_env.get_template("sso_new_user_consent.html") | ||
html = template.render(template_params) | ||
respond_with_html(request, 200, html) | ||
|
||
async def _async_render_POST(self, request: Request): | ||
try: | ||
session_id = get_username_mapping_session_cookie_from_request(request) | ||
except SynapseError as e: | ||
logger.warning("Error fetching session cookie: %s", e) | ||
self._sso_handler.render_error(request, "bad_session", e.msg, code=e.code) | ||
return | ||
|
||
try: | ||
accepted_version = parse_string(request, "accepted_version", required=True) | ||
except SynapseError as e: | ||
self._sso_handler.render_error(request, "bad_param", e.msg, code=e.code) | ||
return | ||
|
||
await self._sso_handler.handle_terms_accepted( | ||
request, session_id, accepted_version | ||
) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was this just not getting called before?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
indeed it wasn't. It didn't matter, because the only thing it does other than register consent is registering 3pids, which we do in
_register_mapped_user
anyway.doing it this way feels horrible, because I'm basically having to pretend that we're doing a UIA registration here, but I don't want to get into refactoring all that right now. I don't really understand why
post_registration_actions
is separate fromregister_user
anyway. (It seems to have arrived in #4682: any thoughts?)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I probably did it like that because there was some logic/processing that could be done on the workers between the two calls, or something. I can't really remember if I'm honest.