Newer
Older
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import argparse
import requests
GITLAB_URL = "https://dev.funkwhale.audio"
GITLAB_PROJECT_ID = 17
WEBLATE_URL = "https://translate.funkwhale.audio"
WEBLATE_COMPONENT_ID = "funkwhale/front"
def get_commits(ref_name, since):
url = GITLAB_URL + "/api/v4/projects/{}/repository/commits".format(
GITLAB_PROJECT_ID
)
while url:
response = requests.get(
url, params={"since": since, "ref_name": ref_name, "per_page": 100}
)
response.raise_for_status()
yield from response.json()
if "next" in response.links:
url = response.links["next"]["url"]
else:
url = None
def get_commit_stats(commits):
stats = {"total": 0, "commiters": {}}
for commit in commits:
if commit["message"].startswith("Merge branch "):
continue
stats["total"] += 1
try:
stats["commiters"][commit["author_name"]] += 1
except KeyError:
stats["commiters"][commit["author_name"]] = 1
return stats
def get_tag_date(ref):
url = GITLAB_URL + "/api/v4/projects/{}/repository/tags/{}".format(
GITLAB_PROJECT_ID, ref
)
response = requests.get(url)
response.raise_for_status()
data = response.json()
return data["commit"]["committed_date"]
def get_translations(since):
url = WEBLATE_URL + "/api/components/{}/changes/".format(WEBLATE_COMPONENT_ID)
while url:
response = requests.get(url)
response.raise_for_status()
if "next" in response.json():
url = response.json()["next"]
else:
url = None
for t in response.json()["results"]:
if t["timestamp"] < since:
url = None
break
yield t
def get_translations_stats(translations):
stats = {"total": 0, "translators": {}}
for translation in translations:
if not translation["author"]:
continue
print("translation", translation["action_name"])
continue
stats["total"] += 1
try:
stats["translators"][translation["author"]] += 1
except KeyError:
stats["translators"][translation["author"]] = 1
return stats
def main():
parser = argparse.ArgumentParser()
parser.add_argument("ref_name")
parser.add_argument("last_tag")
args = parser.parse_args()
since = get_tag_date(args.last_tag)
commits = get_commits(args.ref_name, since)
commits_stats = get_commit_stats(commits)
commiter_names = commits_stats["commiters"].keys()
print("Commiters:")
for commiter in sorted(commits_stats["commiters"].keys(), key=lambda v: v.upper()):
print(commiter)
translations = get_translations(since)
translations_stats = get_translations_stats(translations)
translators_ids = sorted(translations_stats["translators"].keys())
# There is no way to query user/author info via weblate API and we need the names…
print(
"Execute the following SQL query on the weblate server to get the translators names:"
)
print("$ weblate dbshell")
print(
"SELECT full_name FROM weblate_auth_user WHERE id in ({});".format(
", ".join([str(i) for i in translators_ids])
)
)
if __name__ == "__main__":
main()