diff --git a/sqllineage.py b/sqllineage.py index 78c2e1d..d824b4f 100644 --- a/sqllineage.py +++ b/sqllineage.py @@ -2,30 +2,37 @@ from flask import Flask, render_template, request, jsonify from utils.sql_parse import parse_create_table_sql from utils.log import Log - app = Flask(__name__) log = Log().getlog() + @app.route('/') def index(): - return render_template('index.html') + return render_template('c.html') + + +@app.route('/a') +def index_a(): + return render_template('a.html') + + +@app.route('/b') +def index_b(): + return render_template('b.html') + @app.route('/convert', methods=['POST']) def convert_sql(): - sql_input = request.form['sql'] - if sql_input.strip()=='': - + if sql_input.strip() == '': return jsonify({ 'parsed_result': "请在上面输入框输入hologres建表语句", 'message': 'SQL processed.' }) - hologres_connection = request.form['hologresConnection'] log.info("SQL Input: %s", sql_input) - log.info("SQL hologres_connection: %s", hologres_connection) try: - parsed_result=parse_create_table_sql(sql_input,hologres_connection) + parsed_result = parse_create_table_sql(sql_input, '') print(parsed_result) result = { 'parsed_result': parsed_result, @@ -36,6 +43,7 @@ def convert_sql(): log.info("SQL result: %s", result) return jsonify(result) + if __name__ == '__main__': # 指定host和port,这里使用0.0.0.0可以让服务器被外部访问 - app.run(host='0.0.0.0', port=8778, debug=True) \ No newline at end of file + app.run(host='0.0.0.0', port=8778, debug=True) diff --git a/templates/a.html b/templates/a.html new file mode 100644 index 0000000..9da5db3 --- /dev/null +++ b/templates/a.html @@ -0,0 +1,90 @@ + + +
+ + +