From 356fedb09ae0876cc85abc67c56bcbbb1b648cdf Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sun, 23 Jan 2022 18:13:31 +0100 Subject: [PATCH] Add a link to the latest build log in the status output --- oscbot/__init__.py | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/oscbot/__init__.py b/oscbot/__init__.py index 8514352..c5de94d 100644 --- a/oscbot/__init__.py +++ b/oscbot/__init__.py @@ -1,8 +1,6 @@ # (C) -import asyncio from dataclasses import dataclass -import sys from typing import Optional, List, Type import aiohttp @@ -19,13 +17,20 @@ HEADER_TEMPLATE = """ {% if state %} Only showing packages with {{ state }} state. + {% endif %}""" REPO_TEMPLATE = """ #### {{ repo.name }} - {{ repo.arch }} {% for package in repo.packages %} +{%if package.status != "disabled" %} +{% set build_log_url = "{0}/public/build/{1}/{2}/{3}/{4}/_log".format( + base_url,project, repo.name, repo.arch, package.name) %} +- {{ package.name }} - *[{{ package.status }}]({{ build_log_url }})* +{% else %} - {{ package.name }} - *{{ package.status }}* +{% endif %} {% endfor %} """ @@ -50,6 +55,12 @@ class Config(BaseProxyConfig): helper.base["api_url"] = "https://api.opensuse.org" else: helper.copy("api_url") + + if "token" not in self: + helper.base["token"] = "CHANGEME" + else: + helper.copy("token") + helper.copy("username") helper.copy("password") @@ -206,8 +217,12 @@ class OSCBot(Plugin): header = self.template.from_string(HEADER_TEMPLATE) message = header.render(state=state) await evt.reply(message, markdown=True) + + base_url = "https://build.opensuse.org" # TODO: Configure this + for repository in response: body = self.template.from_string(REPO_TEMPLATE) - message = body.render(repo=repository) + message = body.render(repo=repository, project=project, + base_url=base_url) await evt.respond(message, markdown=True)