2014-05-04 17:26:43 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# vi:si:et:sw=4:sts=4:ts=4
|
2014-09-02 22:32:44 +00:00
|
|
|
|
2014-05-04 17:26:43 +00:00
|
|
|
|
2014-05-17 14:31:05 +00:00
|
|
|
import subprocess
|
2014-05-20 00:08:28 +00:00
|
|
|
from os.path import join, exists, dirname
|
2014-05-17 14:31:05 +00:00
|
|
|
import os
|
2014-08-07 09:46:23 +00:00
|
|
|
import sys
|
2014-05-17 14:31:05 +00:00
|
|
|
|
2014-05-20 00:08:28 +00:00
|
|
|
import settings
|
|
|
|
|
|
|
|
root_dir = dirname(settings.base_dir)
|
|
|
|
|
|
|
|
def run(*cmd):
|
2014-08-22 16:49:11 +00:00
|
|
|
p = subprocess.Popen(cmd, close_fds=True)
|
2014-05-20 00:08:28 +00:00
|
|
|
p.wait()
|
|
|
|
return p.returncode
|
|
|
|
|
|
|
|
def get(*cmd):
|
2014-08-22 16:49:11 +00:00
|
|
|
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE, close_fds=True)
|
2014-05-20 00:08:28 +00:00
|
|
|
stdout, error = p.communicate()
|
2014-09-09 14:35:44 +00:00
|
|
|
return stdout.decode()
|
2014-05-04 17:26:43 +00:00
|
|
|
|
2014-05-17 14:31:05 +00:00
|
|
|
def r(*cmd):
|
2014-09-02 22:32:44 +00:00
|
|
|
print(' '.join(cmd))
|
2014-05-17 14:31:05 +00:00
|
|
|
return subprocess.call(cmd)
|
|
|
|
|
2014-05-20 00:08:28 +00:00
|
|
|
def version(module):
|
2014-08-05 09:47:16 +00:00
|
|
|
if os.path.exists(join(root_dir, module, '.git')):
|
|
|
|
os.chdir(join(root_dir, module))
|
|
|
|
version = get('git', 'log', '-1', '--format=%cd', '--date=iso').split(' ')[0].replace('-', '')
|
|
|
|
version += '-' + get('git', 'rev-list', 'HEAD', '--count').strip()
|
|
|
|
version += '-' + get('git', 'describe', '--always').strip()
|
|
|
|
os.chdir(root_dir)
|
|
|
|
else:
|
|
|
|
version = settings.release['modules'][module]['version']
|
2014-05-20 00:08:28 +00:00
|
|
|
return version
|
|
|
|
|
2014-08-09 17:06:53 +00:00
|
|
|
def command_version(*args):
|
|
|
|
"""
|
|
|
|
Print current version
|
|
|
|
"""
|
2014-09-02 22:32:44 +00:00
|
|
|
print(version('openmedialibrary'))
|
2014-08-09 17:06:53 +00:00
|
|
|
|
|
|
|
def command_debug(*args):
|
|
|
|
"""
|
|
|
|
Start in debug mode
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def command_start(*args):
|
|
|
|
"""
|
|
|
|
Start Open Media Libary
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def command_stop(*args):
|
|
|
|
"""
|
|
|
|
Stop Open Media Libary
|
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
def command_install_update(*args):
|
|
|
|
"""
|
|
|
|
Install available updates
|
|
|
|
"""
|
|
|
|
import update
|
|
|
|
if not update.install():
|
2014-09-02 22:32:44 +00:00
|
|
|
print("UPDATE FAILED")
|
2014-08-09 17:06:53 +00:00
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
def command_update(*args):
|
|
|
|
"""
|
|
|
|
Update to latest development version
|
|
|
|
"""
|
|
|
|
import update
|
|
|
|
if not (update.download() and update.install()):
|
2014-09-02 22:32:44 +00:00
|
|
|
print("UPDATE FAILED")
|
2014-08-09 17:06:53 +00:00
|
|
|
|
|
|
|
def command_postupdate(*args):
|
|
|
|
"""
|
|
|
|
Called after update with -o old -n new
|
|
|
|
"""
|
|
|
|
def run(*args):
|
|
|
|
o, old, n, new = args
|
|
|
|
if o != '-o' or n != '-n':
|
2014-09-02 22:32:44 +00:00
|
|
|
print('usage: -o oldversion -n newversion')
|
2014-08-09 17:06:53 +00:00
|
|
|
sys.exit(1)
|
|
|
|
if old <= '20140521-65-e14c686' and new > '20140521-65-e14c686':
|
|
|
|
if not os.path.exists(settings.db_path):
|
|
|
|
r('./ctl', 'setup')
|
2014-08-11 13:02:24 +00:00
|
|
|
import setup
|
|
|
|
setup.upgrade_db(old, new)
|
2014-08-09 17:06:53 +00:00
|
|
|
|
|
|
|
def command_setup(*args):
|
|
|
|
"""
|
|
|
|
Setup new node
|
|
|
|
"""
|
|
|
|
import setup
|
|
|
|
setup.create_db()
|
|
|
|
|
|
|
|
def command_update_static(*args):
|
|
|
|
"""
|
|
|
|
Update static files
|
|
|
|
"""
|
2014-08-11 17:32:49 +00:00
|
|
|
import setup
|
|
|
|
setup.create_db()
|
2014-08-09 17:06:53 +00:00
|
|
|
oxjs = os.path.join(settings.static_path, 'oxjs')
|
|
|
|
if not os.path.exists(oxjs):
|
|
|
|
r('git', 'clone', 'https://git.0x2620.org/oxjs.git', oxjs)
|
|
|
|
elif os.path.exists(os.path.join(oxjs, '.git')):
|
|
|
|
os.system('cd "%s" && git pull' % oxjs)
|
2014-09-30 21:21:44 +00:00
|
|
|
r('python3', os.path.join(oxjs, 'tools', 'build', 'build.py'))
|
|
|
|
r('python3', os.path.join(settings.static_path, 'py', 'build.py'))
|
2014-08-09 17:06:53 +00:00
|
|
|
|
|
|
|
def command_release(*args):
|
|
|
|
"""
|
|
|
|
Release new version
|
|
|
|
"""
|
2014-09-02 22:32:44 +00:00
|
|
|
print('checking...')
|
2014-08-09 17:06:53 +00:00
|
|
|
import os
|
|
|
|
import json
|
|
|
|
import hashlib
|
|
|
|
import ed25519
|
|
|
|
|
|
|
|
os.chdir(root_dir)
|
|
|
|
|
|
|
|
with open(os.path.expanduser('~/.openmedialibrary_release.key')) as fd:
|
|
|
|
SIG_KEY=ed25519.SigningKey(fd.read())
|
|
|
|
SIG_ENCODING='base64'
|
|
|
|
|
|
|
|
def sign(release):
|
|
|
|
value = []
|
|
|
|
for module in sorted(release['modules']):
|
|
|
|
value += ['%s/%s' % (release['modules'][module]['version'], release['modules'][module]['sha1'])]
|
|
|
|
value = '\n'.join(value)
|
|
|
|
sig = SIG_KEY.sign(value, encoding=SIG_ENCODING)
|
|
|
|
release['signature'] = sig
|
|
|
|
|
|
|
|
def sha1sum(path):
|
|
|
|
h = hashlib.sha1()
|
|
|
|
with open(path) as fd:
|
|
|
|
for chunk in iter(lambda: fd.read(128*h.block_size), ''):
|
|
|
|
h.update(chunk)
|
|
|
|
return h.hexdigest()
|
|
|
|
|
|
|
|
MODULES = ['platform', 'openmedialibrary']
|
|
|
|
VERSIONS = {module:version(module) for module in MODULES}
|
|
|
|
|
|
|
|
EXCLUDE=[
|
|
|
|
'--exclude', '.git', '--exclude', '.bzr',
|
2014-09-05 16:36:03 +00:00
|
|
|
'--exclude', 'pip_cache',
|
2014-08-09 17:06:53 +00:00
|
|
|
'--exclude', '.*.swp', '--exclude', '._*', '--exclude', '.DS_Store'
|
|
|
|
]
|
|
|
|
|
|
|
|
#run('./ctl', 'update_static')
|
|
|
|
for module in MODULES:
|
|
|
|
tar = join('updates', '%s-%s.tar.bz2' % (module, VERSIONS[module]))
|
|
|
|
if not exists(tar):
|
|
|
|
cmd = ['tar', 'cvjf', tar, '%s/' % module] + EXCLUDE
|
|
|
|
if module in ('openmedialibrary', ):
|
|
|
|
cmd += ['--exclude', '*.pyc']
|
|
|
|
if module == 'openmedialibrary':
|
|
|
|
cmd += ['--exclude', 'oxjs/examples', '--exclude', 'gunicorn.pid']
|
|
|
|
run(*cmd)
|
|
|
|
release = {}
|
|
|
|
release['modules'] = {module: {
|
|
|
|
'name': '%s-%s.tar.bz2' % (module, VERSIONS[module]),
|
|
|
|
'version': VERSIONS[module],
|
|
|
|
'sha1': sha1sum(join('updates', '%s-%s.tar.bz2' % (module, VERSIONS[module])))
|
|
|
|
} for module in MODULES}
|
|
|
|
sign(release)
|
|
|
|
with open('updates/release.json', 'w') as fd:
|
|
|
|
json.dump(release, fd, indent=2)
|
2014-09-02 22:32:44 +00:00
|
|
|
print('signed latest release in updates/release.json')
|
2014-08-09 17:06:53 +00:00
|
|
|
|
|
|
|
def command_shell(*args):
|
|
|
|
'''
|
|
|
|
Runs a Python shell inside the application context.
|
|
|
|
'''
|
|
|
|
context = None
|
|
|
|
banner = 'Open Media Library'
|
|
|
|
|
|
|
|
import db
|
|
|
|
with db.session():
|
|
|
|
# Try BPython
|
|
|
|
try:
|
|
|
|
from bpython import embed
|
|
|
|
embed(banner=banner, locals_=context)
|
|
|
|
return
|
|
|
|
except ImportError:
|
2014-05-17 21:40:34 +00:00
|
|
|
pass
|
|
|
|
|
2014-08-09 17:06:53 +00:00
|
|
|
# Try IPython
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
# 0.10.x
|
|
|
|
from IPython.Shell import IPShellEmbed
|
|
|
|
ipshell = IPShellEmbed(banner=banner)
|
|
|
|
ipshell(global_ns=dict(), local_ns=context)
|
|
|
|
except ImportError:
|
|
|
|
# 0.12+
|
|
|
|
from IPython import embed
|
|
|
|
embed(banner1=banner, user_ns=context)
|
|
|
|
return
|
|
|
|
except ImportError:
|
2014-05-17 21:40:34 +00:00
|
|
|
pass
|
2014-05-04 17:26:43 +00:00
|
|
|
|
2014-08-09 17:06:53 +00:00
|
|
|
import code
|
|
|
|
# Use basic python shell
|
|
|
|
code.interact(banner, local=context)
|
2014-08-17 17:17:14 +00:00
|
|
|
|
|
|
|
def main():
|
|
|
|
actions = globals()
|
|
|
|
commands = [c[8:] for c in actions if c.startswith('command_')]
|
|
|
|
command = sys.argv[1] if len(sys.argv) > 1 else None
|
|
|
|
if command and command in commands:
|
|
|
|
globals()["command_%s"%command](sys.argv[1:])
|
|
|
|
else:
|
|
|
|
print("usage: ctl [action]")
|
|
|
|
indent = max([len(command) for command in commands]) + 4
|
|
|
|
for command in sorted(commands):
|
|
|
|
space = ' ' * (indent - len(command))
|
|
|
|
info = actions["command_%s"%command].__doc__.split('\n')
|
|
|
|
info = [' %s%s' % (' ' * indent, i.strip()) for i in info]
|
|
|
|
info = '\n'.join(info).strip()
|
2014-09-02 22:32:44 +00:00
|
|
|
print((" %s%s%s" % (command, space, info)))
|
2014-08-17 17:17:14 +00:00
|
|
|
sys.exit(1)
|