blob: dc160fa42b2b50b47610e32961e4fc53465f1108 [file] [log] [blame]
Philipp Schrader37fdbb62021-12-18 00:30:37 -08001"""This script mirrors the dependencies from go_deps.bzl as Build-Dependencies.
2
3We use "go mod download" to manually download each Go dependency. We then tar
4up all the dependencies and copy them to the Build-Dependencies server for
5hosting.
6"""
7
8import argparse
9import hashlib
10import json
11import os
12from pathlib import Path
13import subprocess
14import sys
15import tarfile
16from typing import List, Dict
17import urllib.request
18
19import tools.go.mirror_lib
20
21GO_DEPS_WWWW_DIR = "/var/www/html/files/frc971/Build-Dependencies/go_deps"
22
23def compute_sha256(filepath: str) -> str:
24 """Computes the SHA256 of a file at the specified location."""
25 with open(filepath, "rb") as file:
26 contents = file.read()
27 return hashlib.sha256(contents).hexdigest()
28
29def get_existing_mirrored_repos(ssh_host: str) -> Dict[str, str]:
30 """Gathers information about the libraries that are currently mirrored."""
31 run_result = subprocess.run(["ssh", ssh_host, f"bash -c 'sha256sum {GO_DEPS_WWWW_DIR}/*'"], check=True, stdout=subprocess.PIPE)
32
33 existing_mirrored_repos = {}
34 for line in run_result.stdout.decode("utf-8").splitlines():
35 sha256, fullpath = line.split()
36 existing_mirrored_repos[Path(fullpath).name] = sha256
37
38 return existing_mirrored_repos
39
40def download_repos(
41 repos: Dict[str, str],
42 existing_mirrored_repos: Dict[str, str],
43 tar: tarfile.TarFile) -> Dict[str, str]:
44 """Downloads the not-yet-mirrored repos into a tarball."""
45 cached_info = {}
46
47 for repo in repos:
48 print(f"Downloading file for {repo['name']}")
49 importpath = repo["importpath"]
50 version = repo["version"]
51 module = f"{importpath}@{version}"
52
53 download_result = subprocess.run(
54 ["external/go_sdk/bin/go", "mod", "download", "-json", module],
55 check=True, stdout=subprocess.PIPE)
56 if download_result.returncode != 0:
57 print("Failed to download file.")
58 return 1
59
60 module_info = json.loads(download_result.stdout.decode("utf-8"))
61
62 name = repo["name"]
63 zip_path = Path(module_info["Zip"])
64 mirrored_name = f"{name}__{zip_path.name}"
65 if mirrored_name not in existing_mirrored_repos:
66 # We only add the Go library to the tarball if it's not already
67 # mirrored. We don't want to overwrite files.
68 tar.add(zip_path, arcname=mirrored_name)
69 sha256 = compute_sha256(zip_path)
70 else:
71 # Use the already-computed checksum for consistency.
72 sha256 = existing_mirrored_repos[mirrored_name]
73
74 cached_info[name] = {
75 "strip_prefix": module,
76 "filename": mirrored_name,
77 "sha256": sha256,
78 "version": version,
79 "importpath": importpath,
80 }
81
82 return cached_info
83
84def copy_to_host_and_unpack(filename: str, ssh_host: str) -> None:
85 subprocess.run(["scp", filename, f"{ssh_host}:"], check=True)
86
87 # Be careful not to use single quotes in these commands to avoid breaking
88 # the subprocess.run() invocation below.
89 command = " && ".join([
90 f"tar -C {GO_DEPS_WWWW_DIR} --no-same-owner -xvaf {filename}",
91 # Change the permissions so other users can read them (and checksum
92 # them).
93 f"find {GO_DEPS_WWWW_DIR}/ -type f -exec chmod 644 {{}} +",
94 ])
95
96 print("You might be asked for your sudo password shortly.")
97 subprocess.run(["ssh", "-t", ssh_host, f"sudo -u www-data bash -c '{command}'"], check=True)
98
99def main(argv):
100 parser = argparse.ArgumentParser()
101 parser.add_argument(
102 "--ssh_host",
103 type=str,
104 help=("The SSH host to copy the downloaded Go repositories to. This "
105 "should be software.971spartans.net where all the "
106 "Build-Dependencies files live. Only specify this if you have "
107 "access to the server."))
108 parser.add_argument("--go_deps_bzl", type=str, default="go_deps.bzl")
109 parser.add_argument("--go_mirrors_bzl", type=str, default="tools/go/go_mirrors.bzl")
110 args = parser.parse_args(argv[1:])
111
112 os.chdir(os.environ["BUILD_WORKSPACE_DIRECTORY"])
113
114 repos = tools.go.mirror_lib.parse_go_repositories(args.go_deps_bzl)
115
116 if args.ssh_host:
117 existing_mirrored_repos = get_existing_mirrored_repos(args.ssh_host)
118 else:
119 existing_mirrored_repos = {}
120
121 with tarfile.open("go_deps.tar", "w") as tar:
122 cached_info = download_repos(repos, existing_mirrored_repos, tar)
123 num_not_already_mirrored = len(tar.getnames())
124
125 print(f"Found {num_not_already_mirrored}/{len(cached_info)} libraries "
126 "that need to be mirrored.")
127
128 # Only mirror the deps if we've specified an SSH host and we actually have
129 # something to mirror.
130 if args.ssh_host and num_not_already_mirrored:
131 copy_to_host_and_unpack("go_deps.tar", args.ssh_host)
132 else:
133 print("Skipping mirroring because of lack of --ssh_host or there's "
134 "nothing to actually mirror.")
135
136 with open(args.go_mirrors_bzl, "w") as file:
137 file.write("# This file is auto-generated. Do not edit.\n")
138 file.write("GO_MIRROR_INFO = ")
139 json.dump(cached_info, file, indent=2, sort_keys=True)
140 file.write("\n")
141
142
143if __name__ == "__main__":
144 sys.exit(main(sys.argv))