diff options
author | Jimmy Hu <jim2212001@gmail.com> | 2019-10-02 01:55:44 +0800 |
---|---|---|
committer | Jimmy Hu <jim2212001@gmail.com> | 2019-10-02 12:44:34 +0800 |
commit | 1e6841abe34a71083db644e2ce0fc50076039b9e (patch) | |
tree | 8561c985186d86f11c3f787073a046f0f3f4e011 | |
parent | b9c6caca47733426ff178644610d40ce1bb0b711 (diff) | |
download | go-tangerine-1e6841abe34a71083db644e2ce0fc50076039b9e.tar.gz go-tangerine-1e6841abe34a71083db644e2ce0fc50076039b9e.tar.zst go-tangerine-1e6841abe34a71083db644e2ce0fc50076039b9e.zip |
scripts: add approval flow for script upgrade
-rw-r--r-- | scripts/README.md | 4 | ||||
-rwxr-xr-x | scripts/run_bp.py | 34 | ||||
-rw-r--r-- | scripts/run_bp.py.sha1 | 2 |
3 files changed, 38 insertions, 2 deletions
diff --git a/scripts/README.md b/scripts/README.md index 039553d25..7a0717f2f 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -6,4 +6,6 @@ docker image. ## Updating -Your commit must be signed whenever `run_bp.py` is changed. Check the [GitHub Help](https://help.github.com/en/articles/signing-commits) to set it up. +The commit updating the script must be signed whenever `run_bp.py` is changed. Check the [GitHub Help](https://help.github.com/en/articles/signing-commits) to set it up. + +After committing the file, several approvers(check `_SCRIPT_APPROVER` and `_SCRIPT_APPROVE_THRESHOLD` in the script) then update their `run_bp.py.APPROVER_GITHUB_ID` with the commit hash of the `run_bp.py`. Note that the approver's commit must be signed to be considered a valid approval. diff --git a/scripts/run_bp.py b/scripts/run_bp.py index 30e4833d1..e0e1f5810 100755 --- a/scripts/run_bp.py +++ b/scripts/run_bp.py @@ -44,6 +44,11 @@ _SCRIPT_BRANCH = 'master' _SCRIPT_PATH = 'scripts/run_bp.py' _SCRIPT_SRC = ('https://raw.githubusercontent.com/' '%s/%s/%s/%s' % (_SCRIPT_ORG, _SCRIPT_REPO, _SCRIPT_BRANCH, _SCRIPT_PATH)) +_SCRIPT_APPROVE_PATH_TMPL = _SCRIPT_PATH + '.%s' +_SCRIPT_APPROVE_SRC_TMPL = ('https://raw.githubusercontent.com/' + '%s/%s/%%s/%s' % (_SCRIPT_ORG, _SCRIPT_REPO, _SCRIPT_APPROVE_PATH_TMPL)) +_SCRIPT_APPROVER = ['aitjcize', 'popodidi', 'JM00oo', 'Spiderpowa'] +_SCRIPT_APPROVE_THRESHOLD = int(len(_SCRIPT_APPROVER)/2) _GITHUB_API = 'https://api.github.com' @@ -164,6 +169,33 @@ def github_get_commits(path): return '%s/repos/%s/%s/commits?path=%s&sha=%s' % (_GITHUB_API, _SCRIPT_ORG, _SCRIPT_REPO, path, _SCRIPT_BRANCH) +def github_get_approved_commit(commit, approver): + with urllib.request.urlopen(github_get_commits(_SCRIPT_APPROVE_PATH_TMPL % approver), + timeout=_REQUEST_TIMEOUT) as f: + if f.getcode() != 200: + raise RuntimeError('unable to get approver metadata') + for item in json.loads(f.read()): + if not item['commit']['verification']['verified']: + continue + if item['author']['login'] != approver: + continue + with urllib.request.urlopen(_SCRIPT_APPROVE_SRC_TMPL % (commit, approver), + timeout=_REQUEST_TIMEOUT) as f2: + if f2.getcode() != 200: + raise RuntimeError('unable to get approver file') + if f2.read().decode('utf-8') == commit: + return True + return False + + +def github_get_approve_status(commit): + approved = 0 + for approver in _SCRIPT_APPROVER: + if github_get_approved_commit(commit, approver): + approved += 1 + return approved >= _SCRIPT_APPROVE_THRESHOLD + + def check_for_update(): """Check for script update.""" script_path = os.path.abspath(sys.argv[0]) @@ -184,6 +216,8 @@ def check_for_update(): for item in json.loads(f.read()): if not item['commit']['verification']['verified']: continue + if not github_get_approve_status(item['sha']): + continue tree_url = item['commit']['tree']['url'] for segment in _SCRIPT_PATH.split('/'): with urllib.request.urlopen(tree_url, diff --git a/scripts/run_bp.py.sha1 b/scripts/run_bp.py.sha1 index c9c63ea10..94cef533d 100644 --- a/scripts/run_bp.py.sha1 +++ b/scripts/run_bp.py.sha1 @@ -1 +1 @@ -d9ee67615fa6de9cb8bb1d492a4689ea74005bbd +0b589748b799032761929b4151b150cdcdc95656 |