summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Johnston <erik@matrix.org>2020-10-21 15:55:07 +0100
committerErik Johnston <erik@matrix.org>2020-10-21 16:53:40 +0100
commita4b03bf1837b59f9b9f34cef26cd0c78c856accb (patch)
tree9125188edba585a854292a9fa8b56ae4d0cffdb8
parentAdd admin API for logging in as a user (diff)
downloadsynapse-a4b03bf1837b59f9b9f34cef26cd0c78c856accb.tar.xz
Privacy policy applies to authenticated entity
-rw-r--r--synapse/handlers/message.py12
-rw-r--r--tests/rest/admin/test_user.py36
2 files changed, 44 insertions, 4 deletions
diff --git a/synapse/handlers/message.py b/synapse/handlers/message.py

index d6855c60ea..2137d2461e 100644 --- a/synapse/handlers/message.py +++ b/synapse/handlers/message.py
@@ -620,7 +620,13 @@ class EventCreationHandler: if requester.app_service is not None: return - user_id = requester.user.to_string() + user_id = requester.authenticated_entity + if not user_id.startswith("@"): + # The authenticated entity might not be a user, e.g. if it's the + # server puppetting the user. + return + + user = UserID.from_string(user_id) # exempt the system notices user if ( @@ -640,9 +646,7 @@ class EventCreationHandler: if u["consent_version"] == self.config.user_consent_version: return - consent_uri = self._consent_uri_builder.build_user_consent_uri( - requester.user.localpart - ) + consent_uri = self._consent_uri_builder.build_user_consent_uri(user.localpart) msg = self._block_events_without_consent_error % {"consent_uri": consent_uri} raise ConsentNotGivenError(msg=msg, consent_uri=consent_uri) diff --git a/tests/rest/admin/test_user.py b/tests/rest/admin/test_user.py
index 3aa7414787..754d13f179 100644 --- a/tests/rest/admin/test_user.py +++ b/tests/rest/admin/test_user.py
@@ -1289,3 +1289,39 @@ class UserTokenRestTestCase(unittest.HomeserverTestCase): ) self.render(request) self.assertEqual(200, int(channel.result["code"]), msg=channel.result["body"]) + + @unittest.override_config( + { + "public_baseurl": "https://example.org/", + "user_consent": { + "version": "1.0", + "policy_name": "My Cool Privacy Policy", + "template_dir": "/", + "require_at_registration": True, + "block_events_error": "You should accept the policy", + }, + "form_secret": "123secret", + } + ) + def test_consent(self): + """Test that sending a message is not subject to the privacy policies. + """ + # Have the admin user accept the terms. + self.get_success(self.store.user_set_consent_version(self.admin_user, "1.0")) + + # First, cheekily accept the terms and create a room + self.get_success(self.store.user_set_consent_version(self.other_user, "1.0")) + room_id = self.helper.create_room_as(self.other_user, tok=self.other_user_tok) + self.helper.send_event(room_id, "com.example.test", tok=self.other_user_tok) + + # Now unaccept it and check that we can't send an event + self.get_success(self.store.user_set_consent_version(self.other_user, "0.0")) + self.helper.send_event( + room_id, "com.example.test", tok=self.other_user_tok, expect_code=403 + ) + + # Login in as the user + puppet_token = self._get_token() + + # Sending an event on their behalf should work fine + self.helper.send_event(room_id, "com.example.test", tok=puppet_token)