Add hack for non positional arguments support in maubot

There is no concept of non-positional arguments in maubot, so we just use
"all" in case we want to skip something.
This commit is contained in:
Luca Beltrame 2022-01-23 11:36:46 +01:00
parent 32876558ae
commit ab006d8c2e
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

View file

@ -14,8 +14,6 @@ from maubot.handlers import command
from mautrix.util.config import BaseProxyConfig, ConfigUpdateHelper
API_URL = "https://api.opensuse.org"
HEADER_TEMPLATE = """
### Package status
@ -78,7 +76,8 @@ class OSCBot(Plugin):
username = self.config["username"]
password = self.config["password"]
api_call = f"{API_URL}/build/{project}/_result"
api_url = self.config["api_url"]
api_call = f"{api_url}/build/{project}/_result"
auth = aiohttp.BasicAuth(username, password)
@ -153,10 +152,16 @@ class OSCBot(Plugin):
repository: Optional[str] = None,
arch: Optional[str] = None) -> None:
# There is no concept of non-positional arguments in maubot
# So we just use "all" in case we want to skip something
if state == "all":
state = None
if package == "all":
package = None
if repository == "all":
repository = None
if arch == "all":
arch = None
response = await self.parse_status(project, package, state=state,
repo=repository, arch=arch)