Add "require_consent" parameter for registration

This commit is contained in:
Half-Shot 2019-08-22 14:17:57 +01:00
parent 1b09cf8658
commit 3320aaab3a
3 changed files with 18 additions and 3 deletions

View file

@ -525,6 +525,9 @@ class RegisterRestServlet(RestServlet):
# downcased one in `username` for the mac calculation
user = body["username"].encode("utf-8")
# do not require consent for this user (for example, bots)
require_consent = body.get("require_consent", True)
# str() because otherwise hmac complains that 'unicode' does not
# have the buffer interface
got_mac = str(body["mac"])
@ -542,7 +545,7 @@ class RegisterRestServlet(RestServlet):
raise SynapseError(403, "HMAC incorrect")
user_id = yield self.registration_handler.register_user(
localpart=username, password=password
localpart=username, password=password, require_consent=require_consent,
)
result = yield self._create_registration_details(user_id, body)