mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-08-02 05:56:04 -04:00
Merge branch 'neilj/admin_email' of github.com:matrix-org/synapse into neilj/fix_off_by_1+maus
This commit is contained in:
commit
9b5bf3d858
8 changed files with 46 additions and 22 deletions
|
@ -784,7 +784,9 @@ class Auth(object):
|
|||
"""
|
||||
if self.hs.config.hs_disabled:
|
||||
raise AuthError(
|
||||
403, self.hs.config.hs_disabled_message, errcode=Codes.HS_DISABLED
|
||||
403, self.hs.config.hs_disabled_message,
|
||||
errcode=Codes.HS_DISABLED,
|
||||
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
|
||||
|
@ -796,5 +798,7 @@ class Auth(object):
|
|||
current_mau = yield self.store.get_monthly_active_count()
|
||||
if current_mau >= self.hs.config.max_mau_value:
|
||||
raise AuthError(
|
||||
403, "MAU Limit Exceeded", errcode=Codes.MAU_LIMIT_EXCEEDED
|
||||
403, "MAU Limit Exceeded",
|
||||
admin_email=self.hs.config.admin_email,
|
||||
errcode=Codes.MAU_LIMIT_EXCEEDED
|
||||
)
|
||||
|
|
|
@ -225,11 +225,20 @@ class NotFoundError(SynapseError):
|
|||
|
||||
class AuthError(SynapseError):
|
||||
"""An error raised when there was a problem authorising an event."""
|
||||
|
||||
def __init__(self, *args, **kwargs):
|
||||
if "errcode" not in kwargs:
|
||||
kwargs["errcode"] = Codes.FORBIDDEN
|
||||
super(AuthError, self).__init__(*args, **kwargs)
|
||||
self.admin_email = kwargs.get('admin_email')
|
||||
self.msg = kwargs.get('msg')
|
||||
self.errcode = kwargs.get('errcode')
|
||||
super(AuthError, self).__init__(*args, errcode=kwargs["errcode"])
|
||||
|
||||
def error_dict(self):
|
||||
return cs_error(
|
||||
self.msg,
|
||||
self.errcode,
|
||||
admin_email=self.admin_email,
|
||||
)
|
||||
|
||||
|
||||
class EventSizeError(SynapseError):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue