217 lines
6.5 KiB
Python
217 lines
6.5 KiB
Python
#!/usr/bin/env python3
|
|
|
|
import gevent.monkey
|
|
|
|
gevent.monkey.patch_all()
|
|
|
|
import flask
|
|
import functools
|
|
import gevent
|
|
import gevent.wsgi
|
|
import json
|
|
import json_delta
|
|
import logging
|
|
import os
|
|
import signal
|
|
import time
|
|
from pathlib import Path
|
|
|
|
from flask import Flask, redirect
|
|
from flask_oauthlib.client import OAuth
|
|
from .oauth import OAuthRemoteAppWithRefresh
|
|
from urllib.parse import urljoin
|
|
|
|
from .mock import get_mock_clusters
|
|
from .kubernetes import get_kubernetes_clusters
|
|
from .stores import MemoryStore, RedisStore
|
|
|
|
|
|
logging.basicConfig(level=logging.INFO)
|
|
|
|
|
|
def get_bool(name: str):
|
|
return os.getenv(name, '').lower() in ('1', 'true')
|
|
|
|
|
|
DEBUG = get_bool('DEBUG')
|
|
SERVER_PORT = int(os.getenv('SERVER_PORT', 8080))
|
|
SERVER_STATUS = {'shutdown': False}
|
|
AUTHORIZE_URL = os.getenv('AUTHORIZE_URL')
|
|
APP_URL = os.getenv('APP_URL')
|
|
MOCK = get_bool('MOCK')
|
|
REDIS_URL = os.getenv('REDIS_URL')
|
|
STORE = RedisStore(REDIS_URL) if REDIS_URL else MemoryStore()
|
|
|
|
app = Flask(__name__)
|
|
app.debug = DEBUG
|
|
app.secret_key = os.getenv('SECRET_KEY', 'development')
|
|
|
|
oauth = OAuth(app)
|
|
|
|
auth = OAuthRemoteAppWithRefresh(
|
|
oauth,
|
|
'auth',
|
|
request_token_url=None,
|
|
access_token_method='POST',
|
|
access_token_url=os.getenv('ACCESS_TOKEN_URL'),
|
|
authorize_url=AUTHORIZE_URL
|
|
)
|
|
oauth.remote_apps['auth'] = auth
|
|
|
|
|
|
def authorize(f):
|
|
@functools.wraps(f)
|
|
def wrapper(*args, **kwargs):
|
|
if AUTHORIZE_URL and 'auth_token' not in flask.session:
|
|
return redirect(urljoin(APP_URL, '/login'))
|
|
return f(*args, **kwargs)
|
|
|
|
return wrapper
|
|
|
|
|
|
@app.route('/health')
|
|
def health():
|
|
if SERVER_STATUS['shutdown']:
|
|
flask.abort(503)
|
|
else:
|
|
return 'OK'
|
|
|
|
|
|
@app.route('/')
|
|
@authorize
|
|
def index():
|
|
static_build_path = Path(__file__).parent / 'static' / 'build'
|
|
candidates = sorted(static_build_path.glob('app*.js'))
|
|
if candidates:
|
|
app_js = candidates[0].name
|
|
if app.debug:
|
|
# cache busting for local development
|
|
app_js += '?_={}'.format(time.time())
|
|
else:
|
|
logging.error('Could not find JavaScript application bundle app*.js in {}'.format(static_build_path))
|
|
flask.abort(503, 'JavaScript application bundle not found (missing build)')
|
|
return flask.render_template('index.html', app_js=app_js)
|
|
|
|
|
|
def event(cluster_ids: set):
|
|
# first sent full data once
|
|
for cluster_id in (STORE.get('cluster-ids') or []):
|
|
if not cluster_ids or cluster_id in cluster_ids:
|
|
cluster = STORE.get(cluster_id)
|
|
yield 'event: clusterupdate\ndata: ' + json.dumps(cluster, separators=(',', ':')) + '\n\n'
|
|
while True:
|
|
for event_type, event_data in STORE.listen():
|
|
# hacky, event_data can be delta or full cluster object
|
|
if not cluster_ids or event_data.get('cluster_id', event_data.get('id')) in cluster_ids:
|
|
yield 'event: ' + event_type + '\ndata: ' + json.dumps(event_data, separators=(',', ':')) + '\n\n'
|
|
|
|
|
|
@app.route('/events')
|
|
@authorize
|
|
def get_events():
|
|
'''SSE (Server Side Events), for an EventSource'''
|
|
cluster_ids = set()
|
|
for _id in flask.request.args.get('cluster_ids', '').split():
|
|
if _id:
|
|
cluster_ids.add(_id)
|
|
return flask.Response(event(cluster_ids), mimetype='text/event-stream')
|
|
|
|
|
|
@app.route('/screen-tokens', methods=['GET', 'POST'])
|
|
@authorize
|
|
def screen_tokens():
|
|
new_token = None
|
|
if flask.request.method == 'POST':
|
|
new_token = STORE.create_screen_token()
|
|
return flask.render_template('screen-tokens.html', new_token=new_token)
|
|
|
|
|
|
@app.route('/screen/<token>')
|
|
def redeem_screen_token(token: str):
|
|
remote_addr = flask.request.headers.get('X-Forwarded-For') or flask.request.remote_addr
|
|
logging.info('Trying to redeem screen token "{}" for IP {}..'.format(token, remote_addr))
|
|
try:
|
|
STORE.redeem_screen_token(token, remote_addr)
|
|
except:
|
|
flask.abort(401)
|
|
flask.session['auth_token'] = (token, '')
|
|
return redirect(urljoin(APP_URL, '/'))
|
|
|
|
|
|
@app.route('/login')
|
|
def login():
|
|
redirect_uri = urljoin(APP_URL, '/login/authorized')
|
|
return auth.authorize(callback=redirect_uri)
|
|
|
|
|
|
@app.route('/logout')
|
|
def logout():
|
|
flask.session.pop('auth_token', None)
|
|
return redirect(urljoin(APP_URL, '/'))
|
|
|
|
|
|
@app.route('/login/authorized')
|
|
def authorized():
|
|
resp = auth.authorized_response()
|
|
if resp is None:
|
|
return 'Access denied: reason=%s error=%s' % (
|
|
flask.request.args['error'],
|
|
flask.request.args['error_description']
|
|
)
|
|
if not isinstance(resp, dict):
|
|
return 'Invalid auth response'
|
|
flask.session['auth_token'] = (resp['access_token'], '')
|
|
return redirect(urljoin(APP_URL, '/'))
|
|
|
|
|
|
def update():
|
|
while True:
|
|
lock = STORE.acquire_lock()
|
|
if lock:
|
|
try:
|
|
if MOCK:
|
|
clusters = get_mock_clusters()
|
|
else:
|
|
clusters = get_kubernetes_clusters()
|
|
cluster_ids = []
|
|
for cluster in clusters:
|
|
old_data = STORE.get(cluster['id'])
|
|
if old_data:
|
|
# https://pikacode.com/phijaro/json_delta/ticket/11/
|
|
# diff is extremely slow without array_align=False
|
|
delta = json_delta.diff(old_data, cluster, verbose=DEBUG, array_align=False)
|
|
STORE.publish('clusterdelta', {'cluster_id': cluster['id'], 'delta': delta})
|
|
else:
|
|
STORE.publish('clusterupdate', cluster)
|
|
STORE.set(cluster['id'], cluster)
|
|
cluster_ids.append(cluster['id'])
|
|
STORE.set('cluster-ids', cluster_ids)
|
|
except:
|
|
logging.exception('Failed to update')
|
|
finally:
|
|
STORE.release_lock(lock)
|
|
gevent.sleep(5)
|
|
|
|
|
|
def shutdown():
|
|
# just wait some time to give Kubernetes time to update endpoints
|
|
# this requires changing the readinessProbe's
|
|
# PeriodSeconds and FailureThreshold appropriately
|
|
# see https://godoc.org/k8s.io/kubernetes/pkg/api/v1#Probe
|
|
gevent.sleep(10)
|
|
exit(0)
|
|
|
|
|
|
def exit_gracefully(signum, frame):
|
|
logging.info('Received TERM signal, shutting down..')
|
|
SERVER_STATUS['shutdown'] = True
|
|
gevent.spawn(shutdown)
|
|
|
|
|
|
def main():
|
|
signal.signal(signal.SIGTERM, exit_gracefully)
|
|
http_server = gevent.wsgi.WSGIServer(('0.0.0.0', SERVER_PORT), app)
|
|
gevent.spawn(update)
|
|
logging.info('Listening on :{}..'.format(SERVER_PORT))
|
|
http_server.serve_forever()
|