diff options
author | Neil Johnson <neil@matrix.org> | 2018-08-14 17:44:46 +0100 |
---|---|---|
committer | Neil Johnson <neil@matrix.org> | 2018-08-14 17:44:46 +0100 |
commit | 19b433e3f42d29bbc22ccf919b5dbdb0e88e5fdc (patch) | |
tree | 6b3fc312c783390b2d984ddf30310a996ddd276e /synapse/api | |
parent | remove blank line (diff) | |
parent | Merge pull request #3692 from matrix-org/neil/fix_postgres_test_initialise_re... (diff) | |
download | synapse-19b433e3f42d29bbc22ccf919b5dbdb0e88e5fdc.tar.xz |
Merge branch 'develop' of github.com:matrix-org/synapse into neilj/admin_email
Diffstat (limited to 'synapse/api')
-rw-r--r-- | synapse/api/auth.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/synapse/api/auth.py b/synapse/api/auth.py index 4f028078fa..108ea0ea09 100644 --- a/synapse/api/auth.py +++ b/synapse/api/auth.py @@ -775,9 +775,13 @@ class Auth(object): ) @defer.inlineCallbacks - def check_auth_blocking(self): + def check_auth_blocking(self, user_id=None): """Checks if the user should be rejected for some external reason, such as monthly active user limiting or global disable flag + + Args: + user_id(str|None): If present, checks for presence against existing + MAU cohort """ if self.hs.config.hs_disabled: raise AuthError( @@ -786,6 +790,12 @@ class Auth(object): admin_email=self.hs.config.admin_email, ) if self.hs.config.limit_usage_by_mau is True: + # If the user is already part of the MAU cohort + if user_id: + timestamp = yield self.store.user_last_seen_monthly_active(user_id) + if timestamp: + return + # Else if there is no room in the MAU bucket, bail current_mau = yield self.store.get_monthly_active_count() if current_mau >= self.hs.config.max_mau_value: raise AuthError( |