From a17b8e0ef53a7a68560f0379c4b25b04c050325a Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Tue, 25 Jun 2024 12:23:05 -0500 Subject: [PATCH] write executable version checking script --- .../private_bin/executable_check-exe-versions | 63 +++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 home/private_bin/executable_check-exe-versions diff --git a/home/private_bin/executable_check-exe-versions b/home/private_bin/executable_check-exe-versions new file mode 100644 index 0000000..2b9e031 --- /dev/null +++ b/home/private_bin/executable_check-exe-versions @@ -0,0 +1,63 @@ +#!/usr/bin/env python3 + +import json +import subprocess +from typing import List + + +class Exe: + def __init__(self, owner: str, name: str, exe: str | None = None) -> None: + self.owner = owner + self.name = name + self.exe = name if exe is None else exe + self.repo = f"{owner}/{name}" + + def fetch_tags(self) -> List[str]: + output = subprocess.check_output( + [ + "gh", + "api", + "-H", + "Accept: application/vnd.github+json", + "-H", + "X-GitHub-Api-Version: 2022-11-28", + "--paginate", + f"repos/{self.owner}/{self.name}/tags", + ], + text=True, + ) + if self.name == "ripgrep": + tags = [n for o in json.loads(output) if (n := o["name"])[0].isdigit()] + else: + tags = [n for o in json.loads(output) if (n := o["name"]).startswith("v")] + if not tags: + print(f"recieved no tags for {self.owner}/{self.name}") + return tags + + def current_version(self) -> str: + return subprocess.check_output([self.exe, "--version"], text=True) + + def display(self) -> None: + print(f""" +name: {self.owner}/{self.name} +latest: {self.fetch_tags()[0]} +current: +""") + + print("\n".join([f" | {line} " for line in self.current_version().splitlines()])) + + +EXECUTABLES = [ + Exe(*args) + for args in ( + ("sharkdp", "fd"), + ("BurntSushi", "ripgrep", "rg"), + ("cli", "cli", "gh"), + ("jesseduffield", "lazygit"), + ("neovim", "neovim", "nvim"), + ) +] + + +for exe in EXECUTABLES: + exe.display()