anki/ftl/sync.py

165 lines
4.2 KiB
Python
Raw Normal View History

2021-04-13 10:45:05 +02:00
# Copyright: Ankitects Pty Ltd and contributors
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
#
# A helper script to update commit references to the latest translations,
# and copy source files to the translation repos. Requires access to the
# i18n repos to run.
import os
2021-04-14 10:22:02 +02:00
import re
import subprocess
import sys
2021-04-14 10:22:02 +02:00
from dataclasses import dataclass
from hashlib import sha256
from typing import Optional, Tuple
2021-04-14 10:22:02 +02:00
2020-12-23 12:27:35 +01:00
import requests
2020-11-22 06:37:18 +01:00
root = os.environ["BUILD_WORKSPACE_DIRECTORY"]
repos_bzl = os.path.join(root, "repos.bzl")
2022-02-25 08:24:52 +01:00
working_folder = os.path.join(root, "..")
@dataclass
class Module:
name: str
2022-02-25 08:24:52 +01:00
folder_name: str
repo: str
# (source ftl folder, i18n templates folder)
ftl: Optional[Tuple[str, str]] = None
def folder(self) -> str:
2022-02-25 08:24:52 +01:00
return os.path.join(working_folder, self.folder_name)
modules = [
Module(
name="core",
2022-02-25 08:24:52 +01:00
folder_name="ftl-core",
repo="git@github.com:ankitects/anki-core-i18n",
2020-11-22 06:37:18 +01:00
ftl=(os.path.join(root, "ftl", "core"), "core/templates"),
),
Module(
name="qtftl",
2022-02-25 08:24:52 +01:00
folder_name="ftl-qt",
repo="git@github.com:ankitects/anki-desktop-ftl",
2020-11-22 06:37:18 +01:00
ftl=(os.path.join(root, "ftl", "qt"), "desktop/templates"),
),
]
def update_repo(module: Module):
subprocess.run(["git", "pull"], cwd=module.folder(), check=True)
def clone_repo(module: Module):
subprocess.run(
2022-02-25 08:24:52 +01:00
["git", "clone", module.repo, module.folder_name], cwd=working_folder, check=True
)
def update_git_repos():
for module in modules:
if os.path.exists(module.folder()):
update_repo(module)
else:
clone_repo(module)
@dataclass
class GitInfo:
sha1: str
2020-12-23 12:27:35 +01:00
zip_sha256: str
def git_url_to_zip_url(repo: str, commit: str) -> str:
repo = repo.replace("git@github.com:", "https://github.com/")
return f"{repo}/archive/{commit}.zip"
def get_zip_sha(zip_url: str) -> str:
resp = requests.get(zip_url)
resp.raise_for_status()
return sha256(resp.content).hexdigest()
def module_git_info(module: Module) -> GitInfo:
folder = module.folder()
2020-12-23 12:27:35 +01:00
sha1 = subprocess.check_output(
["git", "log", "-n", "1", "--pretty=format:%H"], cwd=folder
2020-12-23 12:27:35 +01:00
).decode("utf8")
zip_url = git_url_to_zip_url(module.repo, sha1)
zip_sha = get_zip_sha(zip_url)
return GitInfo(
sha1=sha1,
zip_sha256=zip_sha,
)
2020-11-18 04:43:25 +01:00
def update_repos_bzl():
# gather changes
entries = {}
for module in modules:
git = module_git_info(module)
prefix = f"{module.name}_i18n_"
entries[prefix + "commit"] = git.sha1
2020-12-23 12:27:35 +01:00
entries[prefix + "zip_csum"] = git.zip_sha256
# apply
out = []
path = repos_bzl
2020-12-23 12:27:35 +01:00
reg = re.compile(r'(\s+)(\S+_(?:commit|zip_csum)) = "(.*)"')
for line in open(path).readlines():
if m := reg.match(line):
(indent, key, _oldvalue) = m.groups()
value = entries[key]
line = f'{indent}{key} = "{value}"\n'
out.append(line)
else:
out.append(line)
open(path, "w").writelines(out)
2021-01-14 01:15:52 +01:00
commit_if_changed(root, update_label="translations")
2021-01-14 01:15:52 +01:00
def commit_if_changed(folder: str, update_label: str):
status = subprocess.run(["git", "diff", "--exit-code"], cwd=folder, check=False)
if status.returncode == 0:
# no changes
return
subprocess.run(
2022-02-25 08:24:52 +01:00
["git", "commit", "-a", "-m", "Update " + update_label], cwd=folder, check=True
)
def update_ftl_templates():
for module in modules:
if ftl := module.ftl:
(source, dest) = ftl
dest = os.path.join(module.folder(), dest)
subprocess.run(
[
"rsync",
"-ai",
"--delete",
"--no-perms",
"--no-times",
source + "/",
dest + "/",
],
check=True,
)
2021-01-14 01:15:52 +01:00
commit_if_changed(module.folder(), update_label="templates")
def push_i18n_changes():
for module in modules:
subprocess.run(["git", "push"], cwd=module.folder(), check=True)
update_git_repos()
update_ftl_templates()
push_i18n_changes()
2020-11-18 04:43:25 +01:00
update_repos_bzl()