WIP: Add IssueCards #67

Draft
cswimr wants to merge 4 commits from issuecards/init into main
Showing only changes of commit 58ce685b61 - Show all commits

View file

@ -58,17 +58,16 @@ class IssueCards(commands.Cog):
url_pattern = r"(?P<base_url>https?:\/\/[^\/]+)\/(?P<author>[^\/]+)\/(?P<repository_name>[^\/]+)(?:\/-)?\/(?P<type>issues|discussions|pull|pulls|merge_requests)\/(?P<number>\d+)" url_pattern = r"(?P<base_url>https?:\/\/[^\/]+)\/(?P<author>[^\/]+)\/(?P<repository_name>[^\/]+)(?:\/-)?\/(?P<type>issues|discussions|pull|pulls|merge_requests)\/(?P<number>\d+)"
matches = [] matches = []
for match in re.finditer(identifier_pattern, message.content): matches.extend(
matches.append(
{ {
"match_type": "identifier", "match_type": "identifier",
"prefix": match.group("prefix"), "prefix": match.group("prefix"),
"gitlab_issue_type": match.group("gitlab_issue_type"), "gitlab_issue_type": match.group("gitlab_issue_type"),
"issue_number": match.group("issue_number"), "issue_number": match.group("issue_number"),
}, }
for match in re.finditer(identifier_pattern, message.content)
) )
for match in re.finditer(url_pattern, message.content): matches.extend(
matches.append(
{ {
"match_type": "url", "match_type": "url",
"base_url": match.group("base_url"), "base_url": match.group("base_url"),
@ -76,7 +75,8 @@ class IssueCards(commands.Cog):
"repository_name": match.group("repository_name"), "repository_name": match.group("repository_name"),
"type": match.group("type"), "type": match.group("type"),
"number": match.group("number"), "number": match.group("number"),
}, }
for match in re.finditer(url_pattern, message.content)
) )
if not matches: if not matches: