diff -r 5933250813a3 -r db6ca177c6c4 webfront.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/webfront.py Tue Jan 23 14:09:52 2018 +0200 @@ -0,0 +1,41 @@ +from flask import Flask, render_template, redirect, request +from ldcheck import load_config, load_colours, find_ldconfig_ldr_paths +from ldcheck import read_ldraw +from testsuite import load_tests, check_model, format_report_html + +app = Flask('LDCheck') + +@app.route('/', methods = ['GET', 'POST']) +def web_front(): + if request.method == 'POST': + # check if the post request has the file part + if 'file' not in request.files or not request.files['file'].filename: + return redirect(request.url) + file = request.files['file'] + print(type(file)) + config = load_config('ldcheck.cfg') + for ldconfig_ldr_path in find_ldconfig_ldr_paths(config): + with ldconfig_ldr_path.open() as ldconfig_ldr: + load_colours(ldconfig_ldr) + model = read_ldraw( + file.stream, + name = file.filename, + config = config, + ) + test_suite = load_tests() + report = check_model(model, test_suite) + return str.format( + '', + report = format_report_html(report, model, test_suite) + ) + return ''' + + Upload new File +

Upload new File

+
+

+ +

+ ''' + +app.run()