forked from python/pymanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupload.py
More file actions
204 lines (165 loc) · 5.99 KB
/
upload.py
File metadata and controls
204 lines (165 loc) · 5.99 KB
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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
import os
import subprocess
import sys
from pathlib import Path
from urllib.request import Request, urlopen
from xml.etree import ElementTree as ET
UPLOAD_URL_PREFIX = os.getenv("UPLOAD_URL_PREFIX", "https://www.python.org/ftp/")
UPLOAD_PATH_PREFIX = os.getenv("UPLOAD_PATH_PREFIX", "/srv/www.python.org/ftp/")
UPLOAD_URL = os.getenv("UPLOAD_URL")
UPLOAD_DIR = os.getenv("UPLOAD_DIR")
# A version will be inserted before the extension later on
MANIFEST_FILE = os.getenv("MANIFEST_FILE")
UPLOAD_HOST = os.getenv("UPLOAD_HOST", "")
UPLOAD_HOST_KEY = os.getenv("UPLOAD_HOST_KEY", "")
UPLOAD_KEYFILE = os.getenv("UPLOAD_KEYFILE", "")
UPLOAD_USER = os.getenv("UPLOAD_USER", "")
NO_UPLOAD = os.getenv("NO_UPLOAD", "no")[:1].lower() in "yt1"
if not UPLOAD_URL:
print("##[error]Cannot upload without UPLOAD_URL")
sys.exit(1)
def find_cmd(env, exe):
cmd = os.getenv(env)
if cmd:
return Path(cmd)
for p in os.getenv("PATH", "").split(";"):
if p:
cmd = Path(p) / exe
if cmd.is_file():
return cmd
if UPLOAD_HOST:
raise RuntimeError(
f"Could not find {exe} to perform upload. Try setting %{env}% or %PATH%"
)
print(f"Did not find {exe}, but not uploading anyway.")
PLINK = find_cmd("PLINK", "plink.exe")
PSCP = find_cmd("PSCP", "pscp.exe")
def _std_args(cmd):
if not cmd:
raise RuntimeError("Cannot upload because command is missing")
all_args = [cmd, "-batch"]
if UPLOAD_HOST_KEY:
all_args.append("-hostkey")
all_args.append(UPLOAD_HOST_KEY)
if UPLOAD_KEYFILE:
all_args.append("-noagent")
all_args.append("-i")
all_args.append(UPLOAD_KEYFILE)
return all_args
class RunError(Exception):
pass
def _run(*args):
with subprocess.Popen(
args,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
encoding="ascii",
errors="replace",
) as p:
out, _ = p.communicate(None)
if out:
print(out.encode("ascii", "replace").decode("ascii"))
if p.returncode:
raise RunError(p.returncode, out)
def call_ssh(*args, allow_fail=True):
if not UPLOAD_HOST or NO_UPLOAD:
print("Skipping", args, "because UPLOAD_HOST is missing")
return
try:
_run(*_std_args(PLINK), f"{UPLOAD_USER}@{UPLOAD_HOST}", *args)
except RunError:
if not allow_fail:
raise
def upload_ssh(source, dest):
if not UPLOAD_HOST or NO_UPLOAD:
print("Skipping upload of", source, "because UPLOAD_HOST is missing")
return
_run(*_std_args(PSCP), source, f"{UPLOAD_USER}@{UPLOAD_HOST}:{dest}")
call_ssh(f"chgrp downloads {dest} && chmod g-x,o+r {dest}")
def download_ssh(source, dest):
if not UPLOAD_HOST:
print("Skipping download of", source, "because UPLOAD_HOST is missing")
return
Path(dest).parent.mkdir(exist_ok=True, parents=True)
_run(*_std_args(PSCP), f"{UPLOAD_USER}@{UPLOAD_HOST}:{source}", dest)
def ls_ssh(dest):
if not UPLOAD_HOST:
print("Skipping ls of", dest, "because UPLOAD_HOST is missing")
return
try:
_run(*_std_args(PSCP), "-ls", f"{UPLOAD_USER}@{UPLOAD_HOST}:{dest}")
except RunError as ex:
if not ex.args[1].rstrip().endswith("No such file or directory"):
raise
print(dest, "was not found")
def url2path(url):
if not UPLOAD_URL_PREFIX:
raise ValueError("%UPLOAD_URL_PREFIX% was not set")
if not url:
raise ValueError("Unexpected empty URL")
if not url.startswith(UPLOAD_URL_PREFIX):
raise ValueError(f"Unexpected URL: {url}")
return UPLOAD_PATH_PREFIX + url[len(UPLOAD_URL_PREFIX) :]
def validate_appinstaller(file, uploads):
NS = {}
with open(file, "r", encoding="utf-8") as f:
NS = dict(e for _, e in ET.iterparse(f, events=("start-ns",)))
for k, v in NS.items():
ET.register_namespace(k, v)
NS["x"] = NS[""]
with open(file, "r", encoding="utf-8") as f:
xml = ET.parse(f)
self_uri = xml.find(".[@Uri]", NS).get("Uri")
if not self_uri:
print("##[error]Empty Uri attribute in appinstaller file")
sys.exit(2)
if not any(
u.casefold() == self_uri.casefold() and f == file
for f, u, _ in uploads
):
print("##[error]Uri", self_uri, "in appinstaller file is not where "
"the appinstaller file is being uploaded.")
sys.exit(2)
main = xml.find("x:MainPackage[@Uri]", NS)
if main is None:
print("##[error]No MainPackage element with Uri in appinstaller file")
sys.exit(2)
package_uri = main.get("Uri")
if not package_uri:
print("##[error]Empty Mainpackage.Uri attribute in appinstaller file")
sys.exit(2)
if package_uri.casefold() not in [u.casefold() for _, u, _ in uploads]:
print("##[error]Uri", package_uri, "in appinstaller file is not being uploaded")
sys.exit(2)
print(file, "checked:")
print("-", package_uri, "is part of this upload")
print("-", self_uri, "is the destination of this file")
print()
def purge(url):
if not UPLOAD_HOST or NO_UPLOAD:
print("Skipping purge of", url, "because UPLOAD_HOST is missing")
return
with urlopen(Request(url, method="PURGE", headers={"Fastly-Soft-Purge": 1})) as r:
r.read()
UPLOAD_DIR = Path(UPLOAD_DIR).absolute()
UPLOAD_URL = UPLOAD_URL.rstrip("/") + "/"
UPLOADS = []
for pat in ("python-manager-*.msix", "python-manager-*.msi", "pymanager.appinstaller"):
for f in UPLOAD_DIR.glob(pat):
u = UPLOAD_URL + f.name
UPLOADS.append((f, u, url2path(u)))
print("Planned uploads:")
for f, u, p in UPLOADS:
print(f"{f} -> {p}")
print(f" Final URL: {u}")
print()
for f, *_ in UPLOADS:
if f.match("*.appinstaller"):
validate_appinstaller(f, UPLOADS)
for f, u, p in UPLOADS:
print("Upload", f, "to", p)
upload_ssh(f, p)
print("Purge", u)
purge(u)
# Purge the upload directory so that the FTP browser is up to date
purge(UPLOAD_URL)