2019-09-26 13:28:59 +00:00
|
|
|
# Download all pull requests as patches that match a specific label
|
|
|
|
# Usage: python download-patches-by-label.py <Label to Match> <Root Path Folder to DL to>
|
|
|
|
|
2019-10-02 01:38:04 +00:00
|
|
|
import requests, sys, json, shutil, subprocess, os, traceback
|
2019-09-26 13:28:59 +00:00
|
|
|
|
2019-10-02 01:38:04 +00:00
|
|
|
org = os.getenv("PRIVATEMERGEORG", "yuzu-emu")
|
|
|
|
repo = os.getenv("PRIVATEMERGEREPO", "yuzu-private")
|
2019-09-30 13:29:28 +00:00
|
|
|
tagline = sys.argv[3]
|
2019-09-26 13:28:59 +00:00
|
|
|
user = sys.argv[1]
|
|
|
|
|
|
|
|
dl_list = {}
|
|
|
|
|
2019-10-02 01:38:04 +00:00
|
|
|
TAG_NAME = sys.argv[2]
|
|
|
|
|
2019-09-26 13:28:59 +00:00
|
|
|
def check_individual(repo_id, pr_id):
|
|
|
|
url = 'https://%sdev.azure.com/%s/%s/_apis/git/repositories/%s/pullRequests/%s/labels?api-version=5.1-preview.1' % (user, org, repo, repo_id, pr_id)
|
|
|
|
response = requests.get(url)
|
|
|
|
if (response.ok):
|
2019-10-02 01:38:04 +00:00
|
|
|
try:
|
|
|
|
js = response.json()
|
|
|
|
return any(tag.get('name') == TAG_NAME for tag in js['value'])
|
|
|
|
except:
|
|
|
|
return False
|
2019-09-26 13:28:59 +00:00
|
|
|
return False
|
|
|
|
|
2019-10-02 01:38:04 +00:00
|
|
|
def merge_pr(pn, ref):
|
|
|
|
print("Matched PR# %s" % pn)
|
|
|
|
print(subprocess.check_output(["git", "fetch", "https://%sdev.azure.com/%s/_git/%s" % (user, org, repo), ref, "-f"]))
|
|
|
|
print(subprocess.check_output(["git", "merge", "--squash", 'origin/' + ref.replace('refs/heads/','')]))
|
|
|
|
print(subprocess.check_output(["git", "commit", "-m\"Merge %s PR %s\"" % (tagline, pn)]))
|
|
|
|
|
|
|
|
def main():
|
2019-09-26 13:28:59 +00:00
|
|
|
url = 'https://%sdev.azure.com/%s/%s/_apis/git/pullrequests?api-version=5.1' % (user, org, repo)
|
|
|
|
response = requests.get(url)
|
|
|
|
if (response.ok):
|
2019-10-02 01:38:04 +00:00
|
|
|
js = response.json()
|
|
|
|
tagged_prs = filter(lambda pr: check_individual(pr['repository']['id'], pr['pullRequestId']), js['value'])
|
|
|
|
map(lambda pr: merge_pr(pr['pullRequestId'], pr['sourceRefName']), tagged_prs)
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
try:
|
|
|
|
main()
|
|
|
|
except:
|
|
|
|
traceback.print_exc(file=sys.stdout)
|
|
|
|
sys.exit(-1)
|