summary refs log tree commit diff
path: root/synapse/api/errors.py
diff options
context:
space:
mode:
authorNeil Johnson <neil@matrix.org>2018-08-13 18:00:23 +0100
committerNeil Johnson <neil@matrix.org>2018-08-13 18:00:23 +0100
commit0d43f991a19840a224d3dac78d79f13d78212ee6 (patch)
tree778eca81a206707ccf0d8596f8744f71f25233f9 /synapse/api/errors.py
parentRun tests under PostgreSQL (#3423) (diff)
downloadsynapse-0d43f991a19840a224d3dac78d79f13d78212ee6.tar.xz
support admin_email config and pass through into blocking errors, return AuthError in all cases
Diffstat (limited to 'synapse/api/errors.py')
-rw-r--r--synapse/api/errors.py13
1 files changed, 11 insertions, 2 deletions
diff --git a/synapse/api/errors.py b/synapse/api/errors.py

index dc3bed5fcb..d74848159e 100644 --- a/synapse/api/errors.py +++ b/synapse/api/errors.py
@@ -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):