diff options
author | Amber H. Brown <hawkowl@atleastfornow.net> | 2019-07-02 18:31:29 +1000 |
---|---|---|
committer | Amber H. Brown <hawkowl@atleastfornow.net> | 2019-07-02 18:31:29 +1000 |
commit | 4689408a35e6ff9b7b18a5940e79d15e6b846913 (patch) | |
tree | 4bf2c4347abb712bf7cad0040809409cc8cd6c72 /synapse/api/urls.py | |
parent | release shhs on tags (diff) | |
parent | fix async/await consentresource (#5585) (diff) | |
download | synapse-4689408a35e6ff9b7b18a5940e79d15e6b846913.tar.xz |
Merge remote-tracking branch 'origin/develop' into shhs
Diffstat (limited to 'synapse/api/urls.py')
-rw-r--r-- | synapse/api/urls.py | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/synapse/api/urls.py b/synapse/api/urls.py index e16c386a14..ff1f39e86c 100644 --- a/synapse/api/urls.py +++ b/synapse/api/urls.py @@ -42,13 +42,9 @@ class ConsentURIBuilder(object): hs_config (synapse.config.homeserver.HomeServerConfig): """ if hs_config.form_secret is None: - raise ConfigError( - "form_secret not set in config", - ) + raise ConfigError("form_secret not set in config") if hs_config.public_baseurl is None: - raise ConfigError( - "public_baseurl not set in config", - ) + raise ConfigError("public_baseurl not set in config") self._hmac_secret = hs_config.form_secret.encode("utf-8") self._public_baseurl = hs_config.public_baseurl @@ -64,15 +60,10 @@ class ConsentURIBuilder(object): (str) the URI where the user can do consent """ mac = hmac.new( - key=self._hmac_secret, - msg=user_id.encode('ascii'), - digestmod=sha256, + key=self._hmac_secret, msg=user_id.encode("ascii"), digestmod=sha256 ).hexdigest() consent_uri = "%s_matrix/consent?%s" % ( self._public_baseurl, - urlencode({ - "u": user_id, - "h": mac - }), + urlencode({"u": user_id, "h": mac}), ) return consent_uri |