diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2020-01-13 12:42:44 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-13 12:42:44 +0000 |
commit | 8039685051c08354b64890abb2522f2535c784b8 (patch) | |
tree | 5fd33e568d121640ade5f038eef9da2098f2547e | |
parent | Fix exceptions on requests for non-ascii urls (#6682) (diff) | |
download | synapse-8039685051c08354b64890abb2522f2535c784b8.tar.xz |
Allow additional_resources to implement Resource directly (#6686)
AdditionalResource really doesn't add any value, and it gets in the way for resources which want to support child resources or the like. So, if the resource object already implements the IResource interface, don't bother wrapping it.
-rw-r--r-- | changelog.d/6686.misc | 1 | ||||
-rw-r--r-- | synapse/app/homeserver.py | 13 |
2 files changed, 12 insertions, 2 deletions
diff --git a/changelog.d/6686.misc b/changelog.d/6686.misc new file mode 100644 index 0000000000..4070f2e563 --- /dev/null +++ b/changelog.d/6686.misc @@ -0,0 +1 @@ +Allow additional_resources to implement IResource directly. diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py index e5b44a5eed..c2a334a2b0 100644 --- a/synapse/app/homeserver.py +++ b/synapse/app/homeserver.py @@ -31,7 +31,7 @@ from prometheus_client import Gauge from twisted.application import service from twisted.internet import defer, reactor from twisted.python.failure import Failure -from twisted.web.resource import EncodingResourceWrapper, NoResource +from twisted.web.resource import EncodingResourceWrapper, IResource, NoResource from twisted.web.server import GzipEncoderFactory from twisted.web.static import File @@ -109,7 +109,16 @@ class SynapseHomeServer(HomeServer): for path, resmodule in additional_resources.items(): handler_cls, config = load_module(resmodule) handler = handler_cls(config, module_api) - resources[path] = AdditionalResource(self, handler.handle_request) + if IResource.providedBy(handler): + resource = handler + elif hasattr(handler, "handle_request"): + resource = AdditionalResource(self, handler.handle_request) + else: + raise ConfigError( + "additional_resource %s does not implement a known interface" + % (resmodule["module"],) + ) + resources[path] = resource # try to find something useful to redirect '/' to if WEB_CLIENT_PREFIX in resources: |