2024-05-15 02:14:13 +00:00
|
|
|
from collections import defaultdict
|
2024-03-26 17:32:25 +00:00
|
|
|
import frontmatter
|
|
|
|
import pathlib
|
|
|
|
import textwrap
|
2024-05-15 02:14:13 +00:00
|
|
|
from typing import Any, Tuple
|
2024-05-15 02:54:11 +00:00
|
|
|
import dataclasses
|
|
|
|
import yaml
|
2024-03-26 17:32:25 +00:00
|
|
|
|
2024-05-15 02:54:11 +00:00
|
|
|
GH_ROOT = "https://github.com/"
|
|
|
|
GH_REPO_BASE = "https://github.com/NixOS/nix"
|
|
|
|
FORGEJO_REPO_BASE = "https://git.lix.systems/lix-project/lix"
|
|
|
|
FORGEJO_ROOT = "https://git.lix.systems/"
|
2024-03-26 17:32:25 +00:00
|
|
|
GERRIT_BASE = "https://gerrit.lix.systems/c/lix/+"
|
2024-05-15 02:14:13 +00:00
|
|
|
KNOWN_KEYS = ('synopsis', 'cls', 'issues', 'prs', 'significance', 'category', 'credits')
|
2024-03-26 17:32:25 +00:00
|
|
|
|
|
|
|
SIGNIFICANCECES = {
|
|
|
|
None: 0,
|
|
|
|
'significant': 10,
|
|
|
|
}
|
|
|
|
|
2024-05-15 02:14:13 +00:00
|
|
|
# This is just hardcoded for better validation. If you think there should be
|
|
|
|
# more of them, feel free to add more.
|
|
|
|
CATEGORIES = [
|
|
|
|
'Breaking Changes',
|
|
|
|
'Features',
|
|
|
|
'Improvements',
|
|
|
|
'Fixes',
|
|
|
|
'Packaging',
|
2024-06-06 09:08:20 +00:00
|
|
|
'Development',
|
2024-05-15 02:14:13 +00:00
|
|
|
'Miscellany',
|
|
|
|
]
|
|
|
|
|
2024-05-15 02:54:11 +00:00
|
|
|
|
|
|
|
@dataclasses.dataclass
|
|
|
|
class AuthorInfo:
|
|
|
|
name: str
|
|
|
|
github: str | None = None
|
|
|
|
forgejo: str | None = None
|
|
|
|
display_name: str | None = None
|
|
|
|
|
|
|
|
def show_name(self) -> str:
|
|
|
|
return self.display_name or self.name
|
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
if self.forgejo:
|
|
|
|
return f'[{self.show_name()}]({FORGEJO_ROOT}{self.forgejo})'
|
|
|
|
elif self.github:
|
|
|
|
return f'[{self.show_name()}]({GH_ROOT}{self.github})'
|
|
|
|
else:
|
|
|
|
return self.show_name()
|
|
|
|
|
|
|
|
|
|
|
|
class AuthorInfoDB:
|
|
|
|
def __init__(self, author_info: dict[str, dict], throw_on_missing: bool):
|
|
|
|
self.author_info = {name: AuthorInfo(name=name, **d) for (name, d) in author_info.items()}
|
|
|
|
self.throw_on_missing = throw_on_missing
|
|
|
|
|
|
|
|
def __getitem__(self, name) -> str:
|
|
|
|
if name in self.author_info:
|
|
|
|
return str(self.author_info[name])
|
|
|
|
else:
|
|
|
|
if self.throw_on_missing:
|
|
|
|
raise Exception(f'Missing author info for author {name}')
|
|
|
|
else:
|
|
|
|
return name
|
|
|
|
|
|
|
|
|
2024-03-26 17:32:25 +00:00
|
|
|
def format_link(ident: str, gh_part: str, fj_part: str) -> str:
|
|
|
|
# FIXME: deprecate github as default
|
|
|
|
if ident.isdigit():
|
2024-05-15 02:54:11 +00:00
|
|
|
num, link, base = int(ident), f"#{ident}", f"{GH_REPO_BASE}/{gh_part}"
|
2024-03-26 17:32:25 +00:00
|
|
|
elif ident.startswith("gh#"):
|
2024-05-15 02:54:11 +00:00
|
|
|
num, link, base = int(ident[3:]), ident, f"{GH_REPO_BASE}/{gh_part}"
|
2024-03-26 17:32:25 +00:00
|
|
|
elif ident.startswith("fj#"):
|
2024-05-15 02:54:11 +00:00
|
|
|
num, link, base = int(ident[3:]), ident, f"{FORGEJO_REPO_BASE}/{fj_part}"
|
2024-03-26 17:32:25 +00:00
|
|
|
else:
|
|
|
|
raise Exception("unrecognized reference format", ident)
|
|
|
|
return f"[{link}]({base}/{num})"
|
|
|
|
|
|
|
|
def format_issue(issue: str) -> str:
|
|
|
|
return format_link(issue, "issues", "issues")
|
|
|
|
def format_pr(pr: str) -> str:
|
|
|
|
return format_link(pr, "pull", "pulls")
|
2024-04-08 03:02:18 +00:00
|
|
|
def format_cl(clid: int) -> str:
|
2024-03-26 17:32:25 +00:00
|
|
|
return f"[cl/{clid}]({GERRIT_BASE}/{clid})"
|
|
|
|
|
2024-05-13 23:17:47 +00:00
|
|
|
def plural_list(strs: list[str]) -> str:
|
|
|
|
if len(strs) <= 1:
|
|
|
|
return ''.join(strs)
|
|
|
|
else:
|
|
|
|
comma = ',' if len(strs) >= 3 else ''
|
|
|
|
return '{}{} and {}'.format(', '.join(strs[:-1]), comma, strs[-1])
|
|
|
|
|
2024-05-15 02:14:13 +00:00
|
|
|
def listify(l: list | int) -> list:
|
|
|
|
if not isinstance(l, list):
|
|
|
|
return [l]
|
|
|
|
else:
|
|
|
|
return l
|
2024-04-08 03:02:18 +00:00
|
|
|
|
2024-05-15 02:54:11 +00:00
|
|
|
def do_category(author_info: AuthorInfoDB, entries: list[Tuple[pathlib.Path, Any]]):
|
2024-04-08 03:05:19 +00:00
|
|
|
for p, entry in sorted(entries, key=lambda e: (-SIGNIFICANCECES[e[1].metadata.get('significance')], e[0])):
|
|
|
|
try:
|
|
|
|
header = entry.metadata['synopsis']
|
|
|
|
links = []
|
|
|
|
links += [format_issue(str(s)) for s in listify(entry.metadata.get('issues', []))]
|
|
|
|
links += [format_pr(str(s)) for s in listify(entry.metadata.get('prs', []))]
|
|
|
|
links += [format_cl(cl) for cl in listify(entry.metadata.get('cls', []))]
|
|
|
|
if links != []:
|
|
|
|
header += " " + " ".join(links)
|
|
|
|
if header:
|
|
|
|
print(f"- {header}")
|
|
|
|
print()
|
|
|
|
print(textwrap.indent(entry.content, ' '))
|
2024-05-13 23:17:47 +00:00
|
|
|
if credits := listify(entry.metadata.get('credits', [])):
|
|
|
|
print()
|
2024-05-15 02:54:11 +00:00
|
|
|
print(textwrap.indent('Many thanks to {} for this.'.format(plural_list(list(author_info[c] for c in credits))), ' '))
|
2024-04-08 03:05:19 +00:00
|
|
|
except Exception as e:
|
|
|
|
e.add_note(f"in {p}")
|
|
|
|
raise
|
|
|
|
|
2024-05-15 02:14:13 +00:00
|
|
|
|
2024-05-15 02:54:11 +00:00
|
|
|
def run_on_dir(author_info: AuthorInfoDB, d):
|
2024-05-15 02:14:13 +00:00
|
|
|
d = pathlib.Path(d)
|
|
|
|
if not d.is_dir():
|
|
|
|
raise ValueError(f'provided path {d} is not a directory')
|
|
|
|
paths = pathlib.Path(d).glob('*.md')
|
|
|
|
entries = defaultdict(list)
|
|
|
|
for p in paths:
|
|
|
|
try:
|
|
|
|
e = frontmatter.load(p)
|
|
|
|
if 'synopsis' not in e.metadata:
|
|
|
|
raise Exception('missing synopsis')
|
|
|
|
unknownKeys = set(e.metadata.keys()) - set(KNOWN_KEYS)
|
|
|
|
if unknownKeys:
|
|
|
|
raise Exception('unknown keys', unknownKeys)
|
|
|
|
category = e.metadata.get('category', 'Miscellany')
|
|
|
|
if category not in CATEGORIES:
|
|
|
|
raise Exception('unknown category', category)
|
|
|
|
entries[category].append((p, e))
|
|
|
|
except Exception as e:
|
|
|
|
e.add_note(f"in {p}")
|
|
|
|
raise
|
|
|
|
|
|
|
|
for category in CATEGORIES:
|
|
|
|
if entries[category]:
|
2024-05-31 23:35:13 +00:00
|
|
|
print('\n##', category)
|
2024-05-15 02:54:11 +00:00
|
|
|
do_category(author_info, entries[category])
|
|
|
|
|
|
|
|
def main():
|
|
|
|
import argparse
|
|
|
|
|
|
|
|
ap = argparse.ArgumentParser()
|
|
|
|
ap.add_argument('--change-authors', help='File name of the change authors metadata YAML file', type=argparse.FileType('r'))
|
|
|
|
ap.add_argument('dirs', help='Directories to run on', nargs='+')
|
|
|
|
|
|
|
|
args = ap.parse_args()
|
|
|
|
|
|
|
|
author_info = AuthorInfoDB(yaml.safe_load(args.change_authors), throw_on_missing=True) \
|
|
|
|
if args.change_authors \
|
|
|
|
else AuthorInfoDB({}, throw_on_missing=False)
|
|
|
|
|
|
|
|
for d in args.dirs:
|
|
|
|
run_on_dir(author_info, d)
|
2024-05-15 02:14:13 +00:00
|
|
|
|
|
|
|
|
2024-04-08 03:05:19 +00:00
|
|
|
if __name__ == '__main__':
|
2024-05-15 02:54:11 +00:00
|
|
|
main()
|