From 41946884d336960071354d99a88161b651b1f6c1 Mon Sep 17 00:00:00 2001 From: Denys Konovalov Date: Fri, 20 Oct 2023 19:59:00 +0200 Subject: [PATCH] environments.py aktualisiert --- environments.py | 91 +++++++++++++++++++++++-------------------------- 1 file changed, 43 insertions(+), 48 deletions(-) diff --git a/environments.py b/environments.py index 5a02654..d1e9e30 100644 --- a/environments.py +++ b/environments.py @@ -1,48 +1,43 @@ -class Environment: - '''Class containing all the necessary variables for building and sending notification''' - def __init__( - self, - chat_id, - token, - status, - commit, - include_commit_info, - docker_tags, - custom_message, - github_workflow, - github_repository, - github_sha, - github_actor, - github_run_id, - tag - ): - self.chat_id = chat_id - self.token = token - self.status = status - self.commit = self.__fix_commit_message(commit) - self.include_commit_info = include_commit_info - self.docker_tags = docker_tags - self.custom_message = custom_message - self.github_workflow = github_workflow - self.github_repository = github_repository - self.github_sha = github_sha - self.github_actor = github_actor - self.github_run_id = github_run_id - self.tag = tag - - def get_link(self): - '''Get link for sending message''' - return f'https://api.telegram.org/bot{self.token}/sendMessage' - def get_commit_link(self): - '''Get link to commit''' - return f'https://git.cantorgymnasium.de/{self.github_repository}/commit/{self.github_sha}' - def __fix_commit_message(self, message): - '''Replacing unsupported characters''' - replace_dict = {'<':'(', '>':')', '\n':'\n '} - result = ''.join(i if i not in replace_dict else replace_dict[i] for i in message) - return result - def get_version(self): - '''GITHUB_REF contain "refs/tags/v0.0.2" or "refs/heads/main". If second part is "tags", - return tag with version number, else - None''' - tags = self.tag.split("/") - return tags[2] if tags[1] == "tags" else None +class Environment: + '''Class containing all the necessary variables for building and sending notification''' + def __init__( + self, + chat_id, + token, + status, + commit, + include_commit_info, + docker_tags, + custom_message, + github_workflow, + github_repository, + github_sha, + github_actor, + github_run_id, + tag + ): + self.chat_id = chat_id + self.token = token + self.status = status + self.commit = self.__fix_commit_message(commit) + self.include_commit_info = include_commit_info + self.docker_tags = docker_tags + self.custom_message = custom_message + self.github_workflow = github_workflow + self.github_repository = github_repository + self.github_sha = github_sha + self.github_actor = github_actor + self.github_run_id = github_run_id + self.tag = tag + + def get_link(self): + '''Get link for sending message''' + return f'https://api.telegram.org/bot{self.token}/sendMessage' + def get_commit_link(self): + '''Get link to commit''' + return f'https://git.cantorgymnasium.de/{self.github_repository}/commit/{self.github_sha}' + def __fix_commit_message(self, message): + '''Replacing unsupported characters''' + replace_dict = {'<':'(', '>':')', '\n':'\n '} + result = ''.join(i if i not in replace_dict else replace_dict[i] for i in message) + return result \ No newline at end of file