From b0358dea18c799ed1cbc6659ebd5de601973d52a Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sun, 23 Jan 2022 17:08:28 +0100 Subject: [PATCH] Add support for custom api_url and implement configuration migration --- base-config.yaml | 1 + oscbot/__init__.py | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/base-config.yaml b/base-config.yaml index 1eb4044..351a0ef 100644 --- a/base-config.yaml +++ b/base-config.yaml @@ -1,2 +1,3 @@ +api_url: https://api.opensuse.org username: changeme password: changeme diff --git a/oscbot/__init__.py b/oscbot/__init__.py index 57f87b9..555bed7 100644 --- a/oscbot/__init__.py +++ b/oscbot/__init__.py @@ -45,6 +45,11 @@ class BuildRepository: class Config(BaseProxyConfig): def do_update(self, helper: ConfigUpdateHelper) -> None: + + if "api_url" not in self: + helper.base["api_url"] = "https://api.opensuse.org" + else: + helper.copy("api_url") helper.copy("username") helper.copy("password")