-
Notifications
You must be signed in to change notification settings - Fork 1
/
release_manager.py
47 lines (38 loc) · 2.16 KB
/
release_manager.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import urllib.request
import html
import re
import typing
def get_content(string: str, tag_name: str) -> str:
PATTERN_STRING = f"<{tag_name}(| type=\".*?\")>.*?</{tag_name}>"
PATTERN = re.compile(PATTERN_STRING, re.MULTILINE | re.DOTALL)
result = re.search(PATTERN, string)
if(result):
return re.sub(f"(<(|/){tag_name}(| type=\".*?\")>)", "", result.group())
else:
return "Not Found"
def get_latest_version(channel: typing.Literal["stable", "develop"]) -> str:
RSS_URL = "https://github.com/Robot-Inventor/ORIZIN-Agent-HTML/tags.atom"
atom_file = html.unescape(urllib.request.urlopen(RSS_URL).read().decode())
if channel == "stable":
if(latest_version := re.search("<title>v(\d|\.).*?(?<!dev)-\w*?</title>", atom_file)):
return latest_version.group().replace("<title>", "").replace("</title>", "")
else:
raise ValueError("指定されたチャンネルの最新バージョンを取得できませんでした。")
elif channel == "develop":
if(latest_version := re.search("<title>v(\d|\.).*?dev-\w*?</title>", atom_file)):
return latest_version.group().replace("<title>", "").replace("</title>", "")
else:
raise ValueError("指定されたチャンネルの最新バージョンを取得できませんでした。")
else:
raise ValueError(
f"引数として不正なチャンネル「{channel}」が指定されました。「stable」または「develop」を指定してください。")
def get_release(channel: typing.Literal["stable", "develop"], version: str = "") -> str:
RSS_URL = "https://github.com/Robot-Inventor/ORIZIN-Agent-HTML/releases.atom"
PATTERN_STRING = f"<title>{version if version else get_latest_version(channel)}</title>.*?</entry>"
PATTERN = re.compile(PATTERN_STRING, re.MULTILINE | re.DOTALL)
atom_file = html.unescape(
urllib.request.urlopen(RSS_URL).read().decode("utf-8"))
if(latest_release := re.search(PATTERN, atom_file)):
return get_content(latest_release.group(), "content")
else:
raise ValueError("最新のリリースを取得できませんでした。")