summaryrefslogtreecommitdiff
path: root/ATRI/plugins/github.py
diff options
context:
space:
mode:
Diffstat (limited to 'ATRI/plugins/github.py')
-rw-r--r--ATRI/plugins/github.py15
1 files changed, 8 insertions, 7 deletions
diff --git a/ATRI/plugins/github.py b/ATRI/plugins/github.py
index e7c0d80..27c5328 100644
--- a/ATRI/plugins/github.py
+++ b/ATRI/plugins/github.py
@@ -4,7 +4,7 @@ from nonebot.adapters.cqhttp import Bot, MessageEvent
from ATRI.service import Service as sv
from ATRI.utils.request import get_bytes
-from ATRI.exceptions import RequestTimeOut
+from ATRI.exceptions import RequestError
URL = "https://api.github.com/repos/{owner}/{repo}/issues/{issue_number}"
@@ -12,7 +12,6 @@ URL = "https://api.github.com/repos/{owner}/{repo}/issues/{issue_number}"
github_issues = sv.on_message()
-
@github_issues.handle()
async def _github_issues(bot: Bot, event: MessageEvent) -> None:
msg = str(event.message)
@@ -20,19 +19,21 @@ async def _github_issues(bot: Bot, event: MessageEvent) -> None:
need_info = re.findall(patt, msg)
if not need_info:
return
-
+
for i in need_info:
need_info = list(i)
owner = need_info[0]
repo = need_info[1]
issue_number = need_info[2]
- url = URL.format(owner=owner, repo=repo, issue_number=issue_number)
-
+ url = URL.format(owner=owner,
+ repo=repo,
+ issue_number=issue_number)
+
try:
data = await get_bytes(url)
- except RequestTimeOut:
+ except RequestError:
return
-
+
data = json.loads(data)
msg0 = (
f"{repo}: #{issue_number} {data['state']}\n"