2013-06-24 09:56:51 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2013-08-31 02:48:47 +00:00
|
|
|
import argparse
|
2013-06-24 09:56:51 +00:00
|
|
|
import errno
|
|
|
|
import glob
|
|
|
|
import os
|
|
|
|
import subprocess
|
2013-06-29 03:36:02 +00:00
|
|
|
import sys
|
2013-06-24 09:56:51 +00:00
|
|
|
import tempfile
|
|
|
|
|
2013-06-29 03:36:02 +00:00
|
|
|
from lib.util import *
|
|
|
|
|
2013-06-24 09:56:51 +00:00
|
|
|
|
2013-08-31 02:35:01 +00:00
|
|
|
TARGET_PLATFORM = {
|
|
|
|
'cygwin': 'win32',
|
|
|
|
'darwin': 'darwin',
|
|
|
|
'linux2': 'linux',
|
|
|
|
'win32': 'win32',
|
|
|
|
}[sys.platform]
|
|
|
|
|
2013-08-31 02:48:47 +00:00
|
|
|
ATOM_SHELL_VRESION = get_atom_shell_version()
|
2013-08-31 02:51:53 +00:00
|
|
|
NODE_VERSION = 'v0.8.15'
|
2013-08-31 02:48:47 +00:00
|
|
|
|
2013-06-24 09:56:51 +00:00
|
|
|
SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
|
2013-08-21 03:57:35 +00:00
|
|
|
DIST_DIR = os.path.join(SOURCE_ROOT, 'dist')
|
2013-08-31 02:48:47 +00:00
|
|
|
DIST_NAME = 'atom-shell-{0}-{1}.zip'.format(ATOM_SHELL_VRESION, TARGET_PLATFORM)
|
2013-06-24 09:56:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2013-08-31 02:48:47 +00:00
|
|
|
args = parse_args()
|
|
|
|
|
2013-08-31 02:36:13 +00:00
|
|
|
if not dist_newer_than_head():
|
|
|
|
create_dist = os.path.join(SOURCE_ROOT, 'script', 'create-dist.py')
|
|
|
|
subprocess.check_call([sys.executable, create_dist])
|
2013-08-31 02:48:47 +00:00
|
|
|
|
|
|
|
bucket, access_key, secret_key = s3_config()
|
|
|
|
upload(bucket, access_key, secret_key)
|
|
|
|
if not args.no_update_version:
|
|
|
|
update_version(bucket, access_key, secret_key)
|
|
|
|
|
|
|
|
|
|
|
|
def parse_args():
|
|
|
|
parser = argparse.ArgumentParser(description='upload distribution file')
|
|
|
|
parser.add_argument('-n', '--no-update-version',
|
|
|
|
help='Do not update the latest version file',
|
|
|
|
action='store_false')
|
|
|
|
return parser.parse_args()
|
2013-06-24 09:56:51 +00:00
|
|
|
|
|
|
|
|
2013-06-29 03:36:02 +00:00
|
|
|
def dist_newer_than_head():
|
|
|
|
with scoped_cwd(SOURCE_ROOT):
|
|
|
|
try:
|
|
|
|
head_time = subprocess.check_output(['git', 'log', '--pretty=format:%at',
|
|
|
|
'-n', '1']).strip()
|
2013-08-31 02:35:01 +00:00
|
|
|
dist_time = os.path.getmtime(os.path.join(DIST_DIR, DIST_NAME))
|
2013-06-29 03:36:02 +00:00
|
|
|
except OSError as e:
|
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise
|
|
|
|
return False
|
|
|
|
|
|
|
|
return dist_time > int(head_time)
|
|
|
|
|
|
|
|
|
2013-08-31 02:48:47 +00:00
|
|
|
def upload(bucket, access_key, secret_key, version=ATOM_SHELL_VRESION):
|
2013-08-21 03:57:35 +00:00
|
|
|
os.chdir(DIST_DIR)
|
2013-06-24 09:56:51 +00:00
|
|
|
|
2013-08-21 03:57:35 +00:00
|
|
|
s3put(bucket, access_key, secret_key, DIST_DIR,
|
2013-08-31 02:35:01 +00:00
|
|
|
'atom-shell/{0}'.format(version), [DIST_NAME])
|
2013-08-21 04:16:40 +00:00
|
|
|
s3put(bucket, access_key, secret_key, DIST_DIR,
|
2013-08-31 02:51:53 +00:00
|
|
|
'atom-shell/dist/{0}'.format(NODE_VERSION), glob.glob('node-*.tar.gz'))
|
2013-06-24 09:56:51 +00:00
|
|
|
|
2013-08-31 02:48:47 +00:00
|
|
|
|
|
|
|
def update_version(bucket, access_key, secret_key):
|
|
|
|
prefix = os.path.join(SOURCE_ROOT, 'dist')
|
|
|
|
version = os.path.join(prefix, 'version')
|
|
|
|
s3put(bucket, access_key, secret_key, prefix, 'atom-shell', [version])
|
2013-06-24 09:56:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
def s3_config():
|
|
|
|
config = (os.environ.get('ATOM_SHELL_S3_BUCKET', ''),
|
|
|
|
os.environ.get('ATOM_SHELL_S3_ACCESS_KEY', ''),
|
|
|
|
os.environ.get('ATOM_SHELL_S3_SECRET_KEY', ''))
|
|
|
|
message = ('Error: Please set the $ATOM_SHELL_S3_BUCKET, '
|
|
|
|
'$ATOM_SHELL_S3_ACCESS_KEY, and '
|
|
|
|
'$ATOM_SHELL_S3_SECRET_KEY environment variables')
|
|
|
|
assert all(len(c) for c in config), message
|
|
|
|
return config
|
|
|
|
|
|
|
|
|
2013-07-03 09:46:14 +00:00
|
|
|
def s3put(bucket, access_key, secret_key, prefix, key_prefix, files):
|
2013-06-24 09:56:51 +00:00
|
|
|
args = [
|
|
|
|
's3put',
|
|
|
|
'--bucket', bucket,
|
|
|
|
'--access_key', access_key,
|
|
|
|
'--secret_key', secret_key,
|
2013-07-03 09:46:14 +00:00
|
|
|
'--prefix', prefix,
|
2013-06-24 09:56:51 +00:00
|
|
|
'--key_prefix', key_prefix,
|
|
|
|
'--grant', 'public-read'
|
|
|
|
] + files
|
|
|
|
|
|
|
|
subprocess.check_call(args)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
import sys
|
|
|
|
sys.exit(main())
|