mirror of
https://github.com/maubot/maubot.git
synced 2024-10-01 01:06:10 -04:00
Add warning if webapp is disabled when using @web decorators. Fixes #65
This commit is contained in:
parent
b7f6c08b2b
commit
8f806a2594
@ -55,6 +55,7 @@ class Plugin(ABC):
|
||||
self._handlers_at_startup = []
|
||||
|
||||
def register_handler_class(self, obj) -> None:
|
||||
warned_webapp = False
|
||||
for key in dir(obj):
|
||||
val = getattr(obj, key)
|
||||
try:
|
||||
@ -65,10 +66,17 @@ class Plugin(ABC):
|
||||
pass
|
||||
try:
|
||||
web_handlers = val.__mb_web_handler__
|
||||
for method, path, kwargs in web_handlers:
|
||||
self.webapp.add_route(method=method, path=path, handler=val, **kwargs)
|
||||
except AttributeError:
|
||||
pass
|
||||
else:
|
||||
if len(web_handlers) > 0 and self.webapp is None:
|
||||
if not warned_webapp:
|
||||
self.log.warning(f"{type(obj).__name__} has web handlers, but the webapp"
|
||||
" feature isn't enabled in the plugin's maubot.yaml")
|
||||
warned_webapp = True
|
||||
continue
|
||||
for method, path, kwargs in web_handlers:
|
||||
self.webapp.add_route(method=method, path=path, handler=val, **kwargs)
|
||||
|
||||
async def pre_start(self) -> None:
|
||||
pass
|
||||
|
Loading…
Reference in New Issue
Block a user