SuperScriptMaterializer/SuperScriptViewer/ServerCore.py

215 lines
6.6 KiB
Python
Raw Normal View History

import CustomConfig
from flask import Flask
from flask import g
from flask import render_template
from flask import url_for
from flask import request
2020-04-13 15:36:37 +08:00
from flask import abort
2020-04-18 12:49:48 +08:00
from flask import redirect
from functools import reduce
import sqlite3
import json
import ServerStruct as ss
app = Flask(__name__)
2020-04-18 12:49:48 +08:00
# =============================================database
def get_db():
db = getattr(g, '_database', None)
if db is None:
db = g._database = sqlite3.connect(CustomConfig.decorated_db)
return db
def get_env():
env = getattr(g, '_envDatabase', None)
if env is None:
env = g._envDatabase = sqlite3.connect(CustomConfig.env_db)
2020-08-11 14:48:04 +08:00
env.text_factory = lambda x: x.decode(CustomConfig.database_encoding, errors="ignore")
return env
@app.teardown_appcontext
def close_connection(exception):
db = getattr(g, '_database', None)
if db is not None:
db.close()
2020-04-18 12:49:48 +08:00
# =============================================template func
@app.template_global(name = 'pinDecoder')
2020-04-12 16:02:20 +08:00
def block_pin_decoder(target):
2020-04-12 15:19:13 +08:00
return json.loads(target)
2020-04-12 16:02:20 +08:00
@app.template_global(name = 'pinDecoder2')
def block_pin_decoder2(target):
vab = json.loads(target)
return [vab['name'], vab['type']]
2020-04-18 12:49:48 +08:00
# =============================================route
# =========== default
@app.route('/', methods=['GET'])
2020-04-18 12:49:48 +08:00
def nospecHandle():
return redirect(url_for('indexHandle'))
# =========== misc page
2020-04-18 12:49:48 +08:00
@app.route('/help', methods=['GET'])
2020-08-10 11:45:43 +08:00
def helpMainHandle():
2020-04-18 12:49:48 +08:00
return render_template("help.html")
@app.route('/about', methods=['GET'])
def aboutHandle():
return render_template("about.html", static_icon = url_for('static', filename='icon.png'))
# =========== help page
2020-08-10 11:45:43 +08:00
@app.route('/help/<path:scriptPath>', methods=['GET'])
def helpHandle(scriptPath):
if scriptPath == 'converter':
return render_template("help/converter.html",
tabcontrol_css = url_for('static', filename='tabcontrol.css'),
tabcontrol_js = url_for('static', filename='tabcontrol.js'),
converter_js = url_for('static', filename='converter.js'))
2020-08-10 23:00:44 +08:00
elif scriptPath == 'env':
return render_template("help/env.html",
tabcontrol_css = url_for('static', filename='tabcontrol.css'),
tabcontrol_js = url_for('static', filename='tabcontrol.js'),
env_js = url_for('static', filename='env.js'),
env_css = url_for('static', filename='env.css'),
database_data = ss.envDatabaseList)
2020-08-10 11:45:43 +08:00
else:
abort(404)
@app.route('/help/env', methods=['POST'])
def envQueryHandle():
basicReturn = {
"status": False,
"overflow": False,
"data": []
}
# check tag
queryTag = request.form['tag'];
if queryTag not in ss.legalEnvQueryKey:
return basicReturn
cur = get_env().cursor()
#try:
readyData = json.loads(request.form['data'])
fieldLength = len(readyData.keys())
if fieldLength == 0:
cur.execute("SELECT * FROM {}".format(queryTag))
else:
2020-08-11 14:48:04 +08:00
whereStatement = 'AND'.join(map(lambda x: "([" + x + "] = ?)", readyData.keys()))
cur.execute("SELECT * FROM {} WHERE ({})".format(queryTag, whereStatement), list(readyData.values()))
# iterate
counter = 0
for i in cur.fetchall():
if counter == 100:
basicReturn['overflow'] = True
break
basicReturn['data'].append(i)
counter+=1
basicReturn['status'] = True
#except Exception as ex:
# basicReturn['status'] = False
# basicReturn['overflow'] = False
# basicReturn['data'] = []
return basicReturn
# =========== index
2020-04-18 12:49:48 +08:00
@app.route('/index', methods=['GET'])
def indexHandle():
cur = get_db().cursor()
cur.execute("SELECT [graph], [graph_name], [belong_to] FROM graph WHERE [index] != -1 ORDER BY [belong_to], [index] ASC;")
data = {}
for i in cur.fetchall():
if i[2] not in data.keys():
data[i[2]] = [ss.ScriptItem(i[1], i[0])]
else:
data[i[2]].append(ss.ScriptItem(i[1], i[0]))
return render_template('index.html', scripts = data)
# =========== viewer
2020-04-18 12:49:48 +08:00
@app.route('/viewer/<path:scriptPath>', methods=['GET'])
def viewerHandle(scriptPath):
2020-04-13 15:36:37 +08:00
# comput hamburger
pathSlice = scriptPath.split('/')
cur = get_db().cursor()
cur.execute("SELECT [graph], [graph_name] FROM graph WHERE [graph] IN ({});".format(','.join(pathSlice)))
hamburgerMap = {}
hamburger = []
for i in cur.fetchall():
hamburgerMap[str(i[0])] = i[1]
currentHamburger = hamburgerMap[pathSlice[-1]]
for i in range(len(pathSlice) - 1):
hamburger.append(ss.HamburgerItem(hamburgerMap[pathSlice[i]], reduce(lambda x,y: x + '/' + y, pathSlice[0:i + 1], '')))
2020-04-12 15:19:13 +08:00
# gei w/h
cur.execute('SELECT [width], [height] FROM graph WHERE [graph] == ?', (pathSlice[-1], ))
cache = cur.fetchone()
width = cache[0]
height = cache[1]
# get blocks
2020-04-12 22:38:10 +08:00
cur.execute('SELECT * FROM block WHERE [belong_to_graph] == ?', (pathSlice[-1], ))
dbBlocks = cur.fetchall()
2020-04-12 15:19:13 +08:00
# get cells
2020-04-12 22:38:10 +08:00
cur.execute("SELECT * FROM cell WHERE [belong_to_graph] == ?", (pathSlice[-1], ))
2020-04-12 15:19:13 +08:00
dbCells = cur.fetchall()
# get links
2020-04-12 22:38:10 +08:00
cur.execute("SELECT * FROM link WHERE [belong_to_graph] == ?", (pathSlice[-1], ))
dbLinks = cur.fetchall()
# render
return render_template('viewer.html',
currentPath = scriptPath,
2020-04-12 15:19:13 +08:00
gWidth = width,
gHeight = height,
hamburgerHistory = hamburger,
2020-08-10 11:45:43 +08:00
viewer_css = url_for('static', filename='viewer.css'),
tabcontrol_css = url_for('static', filename='tabcontrol.css'),
viewer_js = url_for('static', filename='viewer.js'),
tabcontrol_js = url_for('static', filename='tabcontrol.js'),
hamburgerCurrent = currentHamburger,
2020-04-12 15:19:13 +08:00
blocks = dbBlocks,
2020-04-12 22:38:10 +08:00
cells = dbCells,
links = dbLinks)
2020-04-18 12:49:48 +08:00
@app.route('/viewer/<path:scriptPath>', methods=['POST'])
def actionHandle(scriptPath):
2020-04-13 12:35:41 +08:00
cache = request.form['operation']
if cache == "info":
return infoHandle(request.form['target'])
elif cache == "move":
return moveHandle(request.form['target'])
else:
abort(400)
def infoHandle(target):
cur = get_db().cursor()
cur.execute("SELECT [field], [data] FROM info WHERE [target] == ?", (target, ))
data = {}
for i in cur.fetchall():
data[i[0]] = i[1]
return data
def moveHandle(target):
return {}
def run():
app.run()