lbry-sdk/scripts/upload_assets.py

150 lines
4.8 KiB
Python
Raw Normal View History

2017-04-10 21:10:52 +02:00
import glob
2018-07-21 20:12:29 +02:00
import json
2017-04-10 21:10:52 +02:00
import os
import subprocess
import sys
import github
import uritemplate
2017-05-24 20:41:15 +02:00
import boto3
2017-04-10 21:10:52 +02:00
def main():
2018-07-27 00:07:51 +02:00
#upload_to_github_if_tagged('lbryio/lbry')
2017-05-24 20:41:15 +02:00
upload_to_s3('daemon')
def get_asset_filename():
2018-07-27 00:07:51 +02:00
root_dir = os.path.dirname(os.path.dirname(os.path.realpath(__file__)))
return glob.glob(os.path.join(root_dir, 'dist/*'))[0]
2017-05-24 20:41:15 +02:00
2018-07-27 00:07:51 +02:00
def get_cli_output(command):
return subprocess.check_output(command.split()).decode().strip()
2017-05-24 20:41:15 +02:00
2018-07-27 00:07:51 +02:00
def upload_to_s3(folder):
2017-05-24 20:41:15 +02:00
asset_path = get_asset_filename()
2018-07-27 00:07:51 +02:00
branch = get_cli_output('git rev-parse --abbrev-ref HEAD')
if branch = 'master':
tag = get_cli_output('git describe --always --abbrev=8 HEAD')
commit = get_cli_output('git show -s --format=%cd --date=format:%Y%m%d-%H%I%S HEAD')
bucket = 'releases.lbry.io'
key = '{}/{}-{}/{}'.format(folder, commit, tag, os.path.basename(asset_path))
else:
key = '{}/{}-{}/{}'.format(folder, commit_date, tag, os.path.basename(asset_path))
2017-05-24 20:41:15 +02:00
2018-07-27 00:07:51 +02:00
print("Uploading {} to s3://{}/{}".format(asset_path, bucket, key))
2017-05-24 20:41:15 +02:00
if 'AWS_ACCESS_KEY_ID' not in os.environ or 'AWS_SECRET_ACCESS_KEY' not in os.environ:
2018-07-27 00:07:51 +02:00
print('Must set AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY to publish assets to s3')
2017-05-24 20:41:15 +02:00
return 1
s3 = boto3.resource(
's3',
aws_access_key_id=os.environ['AWS_ACCESS_KEY_ID'],
aws_secret_access_key=os.environ['AWS_SECRET_ACCESS_KEY'],
config=boto3.session.Config(signature_version='s3v4')
)
s3.meta.client.upload_file(asset_path, bucket, key)
def upload_to_github_if_tagged(repo_name):
2017-04-10 21:10:52 +02:00
try:
current_tag = subprocess.check_output(
['git', 'describe', '--exact-match', 'HEAD']).strip()
except subprocess.CalledProcessError:
2018-07-27 00:07:51 +02:00
print('Not uploading to GitHub as we are not currently on a tag')
2017-05-24 20:41:15 +02:00
return 1
2017-04-10 21:10:52 +02:00
2018-07-27 00:07:51 +02:00
print("Current tag: " + current_tag)
2017-04-10 21:10:52 +02:00
if 'GH_TOKEN' not in os.environ:
2018-07-27 00:07:51 +02:00
print('Must set GH_TOKEN in order to publish assets to a release')
return 1
2017-04-10 21:10:52 +02:00
gh_token = os.environ['GH_TOKEN']
auth = github.Github(gh_token)
2017-05-24 20:41:15 +02:00
repo = auth.get_repo(repo_name)
2017-04-10 21:10:52 +02:00
if not check_repo_has_tag(repo, current_tag):
2018-07-27 00:07:51 +02:00
print('Tag {} is not in repo {}'.format(current_tag, repo))
2017-04-10 21:10:52 +02:00
# TODO: maybe this should be an error
return 1
2017-04-10 21:10:52 +02:00
2017-05-24 20:41:15 +02:00
asset_path = get_asset_filename()
2018-07-27 00:07:51 +02:00
print("Uploading " + asset_path + " to Github tag " + current_tag)
2017-05-24 20:41:15 +02:00
release = get_github_release(repo, current_tag)
upload_asset_to_github(release, asset_path, gh_token)
2017-04-10 21:10:52 +02:00
def check_repo_has_tag(repo, target_tag):
tags = repo.get_tags().get_page(0)
for tag in tags:
if tag.name == target_tag:
return True
return False
2017-05-24 20:41:15 +02:00
def get_github_release(repo, current_tag):
for release in repo.get_releases():
2017-04-10 21:10:52 +02:00
if release.tag_name == current_tag:
return release
raise Exception('No release for {} was found'.format(current_tag))
2017-05-24 20:41:15 +02:00
def upload_asset_to_github(release, asset_to_upload, token):
2017-04-10 21:10:52 +02:00
basename = os.path.basename(asset_to_upload)
2017-05-24 20:41:15 +02:00
for asset in release.raw_data['assets']:
if asset['name'] == basename:
2018-07-27 00:07:51 +02:00
print('File {} has already been uploaded to {}'.format(basename, release.tag_name))
2017-05-24 20:41:15 +02:00
return
upload_uri = uritemplate.expand(release.upload_url, {'name': basename})
2017-04-10 21:10:52 +02:00
count = 0
while count < 10:
try:
2017-05-24 20:41:15 +02:00
output = _curl_uploader(upload_uri, asset_to_upload, token)
if 'errors' in output:
raise Exception(output)
else:
2018-07-27 00:07:51 +02:00
print('Successfully uploaded to {}'.format(output['browser_download_url']))
2017-04-10 21:10:52 +02:00
except Exception:
2018-07-27 00:07:51 +02:00
print('Failed uploading on attempt {}'.format(count + 1))
2017-04-10 21:10:52 +02:00
count += 1
def _curl_uploader(upload_uri, asset_to_upload, token):
# using requests.post fails miserably with SSL EPIPE errors. I spent
# half a day trying to debug before deciding to switch to curl.
#
# TODO: actually set the content type
2018-07-27 00:07:51 +02:00
print('Using curl to upload {} to {}'.format(asset_to_upload, upload_uri))
2017-04-10 21:10:52 +02:00
cmd = [
'curl',
'-sS',
'-X', 'POST',
'-u', ':{}'.format(os.environ['GH_TOKEN']),
'--header', 'Content-Type: application/octet-stream',
'--data-binary', '@-',
upload_uri
]
# '-d', '{"some_key": "some_value"}',
2018-07-27 00:07:51 +02:00
print('Calling curl:')
print(cmd)
print('')
2017-04-10 21:10:52 +02:00
with open(asset_to_upload, 'rb') as fp:
p = subprocess.Popen(cmd, stdin=fp, stderr=subprocess.PIPE, stdout=subprocess.PIPE)
stdout, stderr = p.communicate()
2018-07-27 00:07:51 +02:00
print('curl return code: {}'.format(p.returncode))
2017-04-10 21:10:52 +02:00
if stderr:
2018-07-27 00:07:51 +02:00
print('stderr output from curl:')
print(stderr)
print('stdout from curl:')
print(stdout)
2017-04-10 21:10:52 +02:00
return json.loads(stdout)
if __name__ == '__main__':
sys.exit(main())