2022-04-03 16:54:43 -04:00
|
|
|
import os
|
|
|
|
import re
|
|
|
|
import sys
|
2023-07-11 03:51:22 -04:00
|
|
|
import json
|
|
|
|
from urllib.error import HTTPError
|
2022-04-03 16:54:43 -04:00
|
|
|
|
2023-07-11 03:51:22 -04:00
|
|
|
main_repo_url = "https://github.com/eried/portapack-mayhem.git"
|
|
|
|
main_repo_identifier = "eried/portapack-mayhem"
|
|
|
|
# ^^&^ change these if main repo changed
|
|
|
|
|
|
|
|
os.system('gh repo set-default ' + main_repo_url)
|
|
|
|
|
|
|
|
raw_git = os.popen('git log next --since="1200 hours" --pretty=format:"- ^%h^ - {USERNAME}*_%al_%an*: %s"').read()
|
|
|
|
|
|
|
|
|
|
|
|
# ^ as github's rule, a real username can contains "-" but not "_" and "*", so use these two to seperate things.
|
|
|
|
# ^ during test at 2023-07-10, %al could return 3 different types of values:
|
|
|
|
# : 123+abc <<<< abc is real username
|
|
|
|
# : def <<<< def is 3rd level domain of unhidden email, drop this, fetch info from github cli client
|
|
|
|
# : note that github will probably change in the future
|
2022-04-03 16:54:43 -04:00
|
|
|
|
|
|
|
|
|
|
|
def compute_username(line):
|
2023-07-11 03:51:22 -04:00
|
|
|
line_org = line
|
|
|
|
stripped = re.search(r'(?<=\*)(.*?)(?=\*)', line).group(0) # get the string between "*" and "*"
|
|
|
|
now_item_hash = re.search(r'(?<=\^)(.*?)(?=\^)', line).group(0) # get the string between "*" and "*"
|
|
|
|
stripped_org = stripped
|
|
|
|
stripped = re.search(r'(?<=\_)(.*?)(?=\_)', stripped).group(0) # get the string between "_" and "_"
|
|
|
|
stripped_fallback = stripped
|
|
|
|
# now it's like "123+abc" or "def"
|
|
|
|
|
|
|
|
if ("+" in stripped): # 123+abc
|
|
|
|
stripped = re.sub(r'^.*?\+', "", stripped)
|
|
|
|
elif not ("+" in stripped): # maybe not real username, dropped, fetch from github cli client
|
|
|
|
fetched_now_item_json = os.popen(
|
|
|
|
'gh search commits repo:' + main_repo_identifier + ' --json author --hash ' + now_item_hash).read()
|
|
|
|
stripped = extract_first_login(fetched_now_item_json)
|
|
|
|
if stripped is False: # 403
|
|
|
|
return "@" + stripped_fallback
|
|
|
|
elif stripped == "app/": # user did their commit with github app
|
|
|
|
return "@" + stripped_fallback
|
|
|
|
else: # exception and edge cases
|
|
|
|
return "@" + stripped_fallback
|
|
|
|
|
|
|
|
if stripped is None: # if commit hash can't find AKA commit is only in fork
|
|
|
|
return "@" + stripped_fallback
|
|
|
|
|
2022-04-03 16:54:43 -04:00
|
|
|
return "@" + stripped
|
|
|
|
|
|
|
|
|
|
|
|
def compile_line(line):
|
|
|
|
username = compute_username(line)
|
|
|
|
line = re.sub(r'[*].*[*]', "", line)
|
|
|
|
line = line.replace("{USERNAME}", username)
|
2023-07-11 03:51:22 -04:00
|
|
|
line = re.sub(r'\^', '', line, count=2)
|
|
|
|
|
2022-04-03 16:54:43 -04:00
|
|
|
return line
|
|
|
|
|
|
|
|
|
2023-07-11 03:51:22 -04:00
|
|
|
def extract_first_login(json_data):
|
|
|
|
if not json_data: # if returned null
|
|
|
|
return None
|
|
|
|
|
|
|
|
try:
|
|
|
|
data = json.loads(json_data)
|
|
|
|
|
|
|
|
if isinstance(data, list) and len(data) > 0:
|
|
|
|
first_object = data[0]
|
|
|
|
if 'author' in first_object and 'login' in first_object['author']:
|
|
|
|
return first_object['author']['login']
|
|
|
|
|
|
|
|
except HTTPError as e:
|
|
|
|
if e.code == 403 and "API rate limit exceeded" in str(e):
|
|
|
|
return False
|
|
|
|
except json.decoder.JSONDecodeError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2022-04-03 16:54:43 -04:00
|
|
|
for row in raw_git.splitlines():
|
|
|
|
print(compile_line(row))
|