diff --git a/artbotlib/brew_list.py b/artbotlib/brew_list.py index e569c67..642b6a0 100644 --- a/artbotlib/brew_list.py +++ b/artbotlib/brew_list.py @@ -3,7 +3,6 @@ import json import logging import re -import urllib.request from typing import cast, Dict from urllib.parse import quote @@ -12,9 +11,8 @@ import yaml import artbotlib.exectools - +from artbotlib import constants from . import util -from .constants import RHCOS_BASE_URL from .rhcos import RHCOSBuildInfo logger = logging.getLogger(__name__) @@ -108,7 +106,7 @@ async def get_tag_specs(so, tag_spec, data_type, sem) -> str: component_release = component_labels.get('release', '?') component_upstream_commit_url = component_labels.get('io.openshift.build.commit.url', '?') component_distgit_commit = component_labels.get('vcs-ref', '?') - component_rhcc_url = component_labels.get('url', '?') + logger.info(f"COMPONENT_NAME: {component_name}") result = f'{release_component_name}=' if data_type.startswith('nvr'): @@ -120,17 +118,59 @@ async def get_tag_specs(so, tag_spec, data_type, sem) -> str: distgit_name = component_name.rstrip('container') distgit_name = distgit_name.rstrip("-") - result += f'https://pkgs.devel.redhat.com/cgit/containers/{distgit_name}/commit/?id={component_distgit_commit}' + result += f'{constants.DISTGIT_URL}/{distgit_name}/commit/?id={component_distgit_commit}' + elif data_type.startswith('commit'): result += f'{component_upstream_commit_url}' elif data_type.startswith('catalog'): - result += f'{component_rhcc_url}' + image_type = 'distgit' + suffix = "-container" + catalog_name = "" + if suffix in component_name: + catalog_name = component_name.rstrip('container') + catalog_name = catalog_name.rstrip("-") + version = component_version.strip('v') + version = version[:4] + data_info = catalog_api_query(so, image_type, catalog_name, version) + + try: + for item in data_info: + cat_id, cat_name = item + result += f"{constants.CATALOG_URL}/{cat_name}/{cat_id}\n" + except Exception as e: + # Handle any exceptions that might occur within the try block + print("Payload is empty:", e) + elif data_type.startswith('image'): result += release_component_image logger.debug('Tag specs for %s: %s', data_type, result) return result +def catalog_api_query(so,image_type,catalog_name,version): + url = f"{constants.ART_DASH_API_ROUTE}/" \ + f"pipeline-image?starting_from={image_type}&name={catalog_name}&version={version}" + logger.info(f"URL: {url}") + response = requests.get(url) + + if response.status_code != 200: + logger.error(f"API Server error. Status code: {response.status_code}") + so.say("API server error. Contact ART Team.") + so.monitoring_say("ERROR: API server error.") + return + + try: + catalogs_info = response.json() + except Exception as e: + logger.error(f"JSON Error: {e}") + so.say("Error. Contact ART Team") + so.monitoring_say(f"JSON Error: {e}") + return + + catalog_data = [(repo['delivery']['delivery_repo_id'], repo['delivery']['delivery_repo_name']) for dg in catalogs_info["payload"]["distgit"] for repo in dg["brew"]["cdn"]] + #logger.info(f"CATALOG_DATA: {catalog_data}") + + return catalog_data def list_component_data_for_release_tag(so, data_type, release_tag): data_type = data_type.lower() diff --git a/artbotlib/constants.py b/artbotlib/constants.py index 1373b0e..3072c5b 100644 --- a/artbotlib/constants.py +++ b/artbotlib/constants.py @@ -19,10 +19,14 @@ BREW_URL = 'https://brewweb.engineering.redhat.com/brew' +CATALOG_URL = 'https://catalog.redhat.com/software/containers' + CGIT_URL = 'https://pkgs.devel.redhat.com/cgit' COMET_URL = 'https://comet.engineering.redhat.com/containers/repositories' +DISTGIT_URL = 'https://pkgs.devel.redhat.com/cgit/containers' + ERRATA_TOOL_URL = 'https://errata.devel.redhat.com' GITHUB_API_REPO_URL = "https://api.github.com/repos"