From ab006d8c2ea25b363b4c14e9eb3c0723417ea81f Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sun, 23 Jan 2022 11:36:46 +0100 Subject: [PATCH] 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. --- oscbot/__init__.py | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/oscbot/__init__.py b/oscbot/__init__.py index 27d4c40..57f87b9 100644 --- a/oscbot/__init__.py +++ b/oscbot/__init__.py @@ -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)