#!/usr/bin/env python import os, sys, stat, re, shutil, socket from click import argument, command, group, option, secho as echo from collections import defaultdict, deque from glob import glob from os.path import abspath, basename, dirname, exists, getmtime, join, splitext from subprocess import call from time import sleep # === Globals - all tweakable settings are here === PIKU_ROOT = os.environ.get('PIKU_ROOT', join(os.environ['HOME'],'.piku')) APP_ROOT = abspath(join(PIKU_ROOT, "apps")) ENV_ROOT = abspath(join(PIKU_ROOT, "envs")) GIT_ROOT = abspath(join(PIKU_ROOT, "repos")) LOG_ROOT = abspath(join(PIKU_ROOT, "logs")) UWSGI_AVAILABLE = abspath(join(PIKU_ROOT, "uwsgi-available")) UWSGI_ENABLED = abspath(join(PIKU_ROOT, "uwsgi-enabled")) UWSGI_ROOT = abspath(join(PIKU_ROOT, "uwsgi")) # === Utility functions === def sanitize_app_name(app): """Sanitize the app name and build matching path""" app = "".join(c for c in app if c.isalnum() or c in ('.','_')).rstrip() return app def get_free_port(address=""): """Find a free TCP port (entirely at random)""" s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.bind((address,0)) port = s.getsockname()[1] s.close() return port def write_config(filename, bag, separator='='): """Helper for writing out config files""" with open(filename, 'w') as h: for k, v in bag.iteritems(): h.write('%s%s%s\n' % (k,separator,v)) def setup_authorized_keys(ssh_fingerprint, script_path, pubkey): """Sets up an authorized_keys file to redirect SSH commands""" authorized_keys = join(os.environ['HOME'],'.ssh','authorized_keys') if not exists(dirname(authorized_keys)): os.makedirs(dirname(authorized_keys)) # Restrict features and force all SSH commands to go through our script with open(authorized_keys, 'a') as h: h.write("""command="FINGERPRINT=%(ssh_fingerprint)s NAME=default %(script_path)s $SSH_ORIGINAL_COMMAND",no-agent-forwarding,no-user-rc,no-X11-forwarding,no-port-forwarding %(pubkey)s\n""" % locals()) def parse_procfile(filename): """Parses a Procfile and returns the worker types. Only one worker of each type is allowed.""" workers = {} if not exists(filename): return None with open(filename, 'r') as procfile: for line in procfile: try: kind, command = map(lambda x: x.strip(), line.split(":", 1)) if kind in ['web', 'worker', 'wsgi']: workers[kind] = command except: echo("Warning: unrecognized Procfile declaration '%s'" % line, fg='yellow') if not len(workers): return {} # WSGI trumps regular web workers if 'wsgi' in workers: if 'web' in workers: del(workers['web']) return workers def parse_settings(filename, env={}): """Parses a settings file and returns a dict with environment variables""" def expandvars(buffer, env, default=None, skip_escaped=False): def replace_var(match): return env.get(match.group(2) or match.group(1), match.group(0) if default is None else default) pattern = (r'(? Deploying app '%s'" % app, fg='green') call('git pull --quiet', cwd=app_path, env=env, shell=True) call('git checkout -f', cwd=app_path, env=env, shell=True) if not exists(log_path): os.makedirs(log_path) workers = parse_procfile(procfile) if len(workers): if exists(join(app_path, 'requirements.txt')): echo("-----> Python app detected.", fg='green') deploy_python(app, workers) else: echo("-----> Could not detect runtime!", fg='red') # TODO: detect other runtimes else: echo("Error: Procfile not found for app '%s'." % app, fg='red') else: echo("Error: app '%s' not found." % app, fg='red') def deploy_python(app, workers): """Deploy a Python application""" virtualenv_path = join(ENV_ROOT, app) requirements = join(APP_ROOT, app, 'requirements.txt') first_time = False if not exists(virtualenv_path): echo("-----> Creating virtualenv for '%s'" % app, fg='green') os.makedirs(virtualenv_path) call('virtualenv %s' % app, cwd=ENV_ROOT, shell=True) first_time = True if first_time or getmtime(requirements) > getmtime(virtualenv_path): echo("-----> Running pip for '%s'" % app, fg='green') activation_script = join(virtualenv_path,'bin','activate_this.py') execfile(activation_script, dict(__file__=activation_script)) call('pip install -r %s' % requirements, cwd=virtualenv_path, shell=True) create_workers(app, workers) def create_workers(app, workers): """Create all workers for an app""" ordinals = defaultdict(lambda:1) worker_count = {k:'1' for k in workers.keys()} # the Python virtualenv virtualenv_path = join(ENV_ROOT, app) # Settings shipped with the app env_file = join(APP_ROOT, app, 'ENV') # Custom overrides settings = join(ENV_ROOT, app, 'ENV') # Live settings live = join(ENV_ROOT, app, 'LIVE_ENV') # Scaling scaling = join(ENV_ROOT, app, 'SCALING') env = { 'PATH': os.environ['PATH'], 'VIRTUAL_ENV': virtualenv_path, 'PORT': str(get_free_port()), 'PWD': dirname(env_file), } # Load environment variables shipped with repo (if any) if exists(env_file): env.update(parse_settings(env_file, env)) # Override with custom settings (if any) if exists(settings): env.update(parse_settings(settings, env)) if exists(scaling): worker_count.update(parse_procfile(scaling)) # Save current settings write_config(live, env) write_config(scaling, worker_count, ':') # Remove all workers current_workers = glob(join(UWSGI_ENABLED, '%s_*.ini' % app)) for e in current_workers: os.unlink(e) # ...and logfiles logfiles = glob("%s*.log*" % join(LOG_ROOT, app)) for l in logfiles: os.unlink(l) sleep(1) # let uwsgi catch up on a slower Pi # Create new workers for k, v in workers.iteritems(): for i in range(int(worker_count[k])): single_worker(app, k, v, env, ordinals[k]) ordinals[k] += 1 def single_worker(app, kind, command, env, ordinal=1): """Set up and deploy a single worker of a given kind""" env_path = join(ENV_ROOT, app) available = join(UWSGI_AVAILABLE, '%s_%s_%d.ini' % (app, kind, ordinal)) enabled = join(UWSGI_ENABLED, '%s_%s_%d.ini' % (app, kind, ordinal)) settings = [ ('virtualenv', join(ENV_ROOT, app)), ('chdir', join(APP_ROOT, app)), ('master', 'true'), ('project', app), ('max-requests', '1000'), ('processes', '1'), ('procname-prefix', '%s_%s_%d:' % (app, kind, ordinal)), ('enable-threads', 'true'), ('threads', '4'), ('log-maxsize', '1048576'), ('logto', '%s_%d.log' % (join(LOG_ROOT, app, kind), ordinal)), ('log-backupname', '%s_%d.log.old' % (join(LOG_ROOT, app, kind), ordinal)), ] for k, v in env.iteritems(): settings.append(('env', '%s=%s' % (k,v))) if kind == 'wsgi': echo("-----> Setting HTTP port to %s" % env['PORT'], fg='yellow') settings.extend([ ('module', command), ('http', ':%s' % env['PORT']) ]) else: settings.append(('attach-daemon', command)) with open(available, 'w') as h: h.write('[uwsgi]\n') for k, v in settings: h.write("%s = %s\n" % (k, v)) echo("-----> Enabling '%s:%s_%d'" % (app, kind, ordinal), fg='green') if exists(enabled): os.unlink(enabled) sleep(1) shutil.copyfile(available, enabled) def multi_tail(app, filenames): """Tails multiple log files""" def peek(handle): where = handle.tell() line = handle.readline() if not line: handle.seek(where) return None return line inodes = {} files = {} prefixes = {} for f in filenames: prefixes[f] = splitext(basename(f))[0] files[f] = open(f) inodes[f] = os.stat(f).st_ino files[f].seek(0, 2) longest = max(map(len, prefixes.values())) for f in filenames: for line in deque(open(f), 20): yield "%s | %s" % (prefixes[f].ljust(longest), line) while True: updated = False for f in filenames: line = peek(files[f]) if not line: continue else: updated = True yield "%s | %s" % (prefixes[f].ljust(longest), line) if not updated: sleep(1) for f in filenames: if exists(f): if os.stat(f).st_ino != inodes[f]: files[f] = open(f) inodes[f] = os.stat(f).st_ino else: filenames.remove(f) # === CLI commands === @group() def piku(): """Initialize paths""" for p in [APP_ROOT, GIT_ROOT, ENV_ROOT, UWSGI_ROOT, UWSGI_AVAILABLE, UWSGI_ENABLED, LOG_ROOT]: if not exists(p): os.makedirs(p) @piku.resultcallback() def cleanup(ctx): """Callback from command execution -- currently used for debugging""" pass #print sys.argv[1:] #print os.environ # --- User commands --- @piku.command("config") @argument('app') def deploy_app(app): """Show application configuration""" app = sanitize_app_name(app) config_file = join(ENV_ROOT, app, 'ENV') if exists(config_file): echo(open(config_file).read().strip(), fg='white') # no output if file is missing, for scripting purposes @piku.command("config:get") @argument('app') @argument('setting') def deploy_app(app, setting): """Retrieve a configuration setting""" app = sanitize_app_name(app) config_file = join(ENV_ROOT, app, 'ENV') if exists(config_file): env = parse_settings(config_file) if setting in env: echo("%s" % env[setting], fg='white') # no output if file or setting is missing, for scripting purposes @piku.command("config:set") @argument('app') @argument('settings', nargs=-1) def deploy_app(app, settings): """Show application configuration""" app = sanitize_app_name(app) config_file = join(ENV_ROOT, app, 'ENV') env = parse_settings(config_file) items = {} for s in settings: try: k, v = map(lambda x: x.strip(), s.split("=", 1)) env[k] = v echo("Setting %s=%s for '%s'" % (k, v, app), fg='white') except: echo("Error: malformed setting '%s'" % s, fg='red') return write_config(config_file, env) do_deploy(app) @piku.command("config:live") @argument('app') def deploy_app(app): """Show current application settings""" app = sanitize_app_name(app) live_config = join(ENV_ROOT, app, 'LIVE_ENV') if exists(live_config): echo(open(live_config).read().strip(), fg='white') # no output if file or app is missing, for scripting purposes @piku.command("deploy") @argument('app') def deploy_app(app): """Deploy an application""" app = sanitize_app_name(app) do_deploy(app) @piku.command("destroy") @argument('app') def destroy_app(app): """Destroy an application""" app = sanitize_app_name(app) for p in [join(x, app) for x in [APP_ROOT, GIT_ROOT, ENV_ROOT, LOG_ROOT]]: if exists(p): echo("Removing folder '%s'" % p, fg='yellow') shutil.rmtree(p) for p in [join(x, '%s*.ini' % app) for x in [UWSGI_AVAILABLE, UWSGI_ENABLED]]: g = glob(p) if len(g): for f in g: echo("Removing file '%s'" % f, fg='yellow') os.remove(f) @piku.command("disable") @argument('app') def disable_app(app): """Disable an application""" app = sanitize_app_name(app) config = glob(join(UWSGI_ENABLED, '%s*.ini' % app)) if len(config): echo("Disabling app '%s'..." % app, fg='yellow') for c in config: os.remove(c) else: echo("Error: app '%s' not deployed!" % app, fg='red') @piku.command("enable") @argument('app') def enable_app(app): """Enable an application""" app = sanitize_app_name(app) enabled = glob(join(UWSGI_ENABLED, '%s*.ini' % app)) available = glob(join(UWSGI_AVAILABLE, '%s*.ini' % app)) if exists(join(APP_ROOT, app)): if len(enabled): if len(available): echo("Enabling app '%s'..." % app, fg='yellow') for a in available: shutil.copy(a, join(UWSGI_ENABLED, app)) else: echo("Error: app '%s' is not configured.", fg='red') else: echo("Warning: app '%s' is already enabled, skipping.", fg='yellow') else: echo("Error: app '%s' does not exist.", fg='red') @piku.command("apps") def list_apps(): """List applications""" for a in os.listdir(APP_ROOT): echo(a, fg='green') @piku.command("restart") @argument('app') def restart_app(app): """Restart an application""" app = sanitize_app_name(app) config = glob(join(UWSGI_ENABLED, '%s*.ini' % app)) if len(config): echo("Restarting app '%s'..." % app, fg='yellow') for c in config: os.remove(c) do_deploy(app) else: echo("Error: app '%s' not deployed!" % app, fg='red') @piku.command("ps") @argument('app') def deploy_app(app): """Show application worker count""" app = sanitize_app_name(app) config_file = join(ENV_ROOT, app, 'SCALING') if exists(config_file): echo(open(config_file).read().strip(), fg='white') # no output if file is missing, for scripting purposes @piku.command("ps:scale") @argument('app') @argument('settings', nargs=-1) def deploy_app(app, settings): """Show application configuration""" app = sanitize_app_name(app) if not exists(join(APP_ROOT, app)): return config_file = join(ENV_ROOT, app, 'SCALING') worker_count = parse_procfile(config_file) items = {} for s in settings: try: k, v = map(lambda x: x.strip(), s.split("=", 1)) c = int(v) # check for integer value if c < 0: echo("Error: cannot scale type '%s' below 0" % k, fg='red') return if k not in worker_count: echo("Error: worker type '%s' not present in '%s'" % (k, app), fg='red') return worker_count[k] = v echo("Scaling %s to %s for '%s'" % (k, v, app), fg='white') except: echo("Error: malformed setting '%s'" % s, fg='red') return write_config(config_file, worker_count, ':') do_deploy(app) @piku.command("tail") @argument('app') def tail_logs(app): """Tail an application log""" app = sanitize_app_name(app) logfiles = glob(join(LOG_ROOT, app, '*.log')) if len(logfiles): for line in multi_tail(app, logfiles): echo(line.strip(), fg='white') else: echo("No logs found for app '%s'." % app, fg='yellow') # --- Internal commands --- @piku.command("git-hook") @argument('app') def git_hook(app): """INTERNAL: Post-receive git hook""" app = sanitize_app_name(app) repo_path = join(GIT_ROOT, app) app_path = join(APP_ROOT, app) for line in sys.stdin: oldrev, newrev, refname = line.strip().split(" ") #print "refs:", oldrev, newrev, refname if refname == "refs/heads/master": # Handle pushes to master branch if not exists(app_path): echo("-----> Creating app '%s'" % app, fg='green') os.makedirs(app_path) call('git clone --quiet %s %s' % (repo_path, app), cwd=APP_ROOT, shell=True) do_deploy(app) else: # TODO: Handle pushes to another branch echo("receive-branch '%s': %s, %s" % (app, newrev, refname)) @piku.command("git-receive-pack") @argument('app') def receive(app): """INTERNAL: Handle git pushes for an app""" app = sanitize_app_name(app) hook_path = join(GIT_ROOT, app, 'hooks', 'post-receive') if not exists(hook_path): os.makedirs(dirname(hook_path)) # Initialize the repository with a hook to this script call("git init --quiet --bare " + app, cwd=GIT_ROOT, shell=True) with open(hook_path,'w') as h: h.write("""#!/usr/bin/env bash set -e; set -o pipefail; cat | PIKU_ROOT="%s" $HOME/piku.py git-hook %s""" % (PIKU_ROOT, app)) # TODO: remove hardcoded script name # Make the hook executable by our user os.chmod(hook_path, os.stat(hook_path).st_mode | stat.S_IXUSR) # Handle the actual receive. We'll be called with 'git-hook' after it happens call('git-shell -c "%s"' % " ".join(sys.argv[1:]), cwd=GIT_ROOT, shell=True) if __name__ == '__main__': piku()