From a76ff60404e2c6d19e642f9cdcf5cd06a7cabea3 Mon Sep 17 00:00:00 2001 From: Anton Sarukhanov <code@ant.sr> Date: Thu, 2 Jul 2020 11:13:01 -0400 Subject: [PATCH] WIP --- localq/localq/views.py | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) diff --git a/localq/localq/views.py b/localq/localq/views.py index 88d62f6..7c3d122 100644 --- a/localq/localq/views.py +++ b/localq/localq/views.py @@ -1,5 +1,41 @@ +from flask import jsonify from localq import app @app.route('/') def index(): return 'Hello world!' + +@app.route('/route') +def lgthinq_route(): + return jsonify({ + 'result': { + 'apiServer': 'https://aic-common.lgthinq.com:443', + 'mqttServer': 'ssl://a3phael99lf879.iot.us-west-2.amazonaws:8883', + }, + 'resultCode': '0000' + }) + + +@app.route('/route/certificate') +def lgthinq_certificate_list(): + lgthinq_ssl_root = '' # TODO: Our root here. + if request.args.get('name'): + return jsonify({ + 'result': { + 'certificatePem': lgthinq_ssl_root, + }, + 'resultCode': '0000' + }) + else: + return jsonify({ + 'result': [ + 'common-server', + 'aws-iot', + ], + 'resultCode': '0000' + }) + +@app.route('/', defaults={'path': ''}) +@app.route('/<path:path>') +def catchall(path): + print('hello') -- GitLab