2021-03-11 14:55:58 +01:00
|
|
|
import os
|
2021-03-12 18:14:49 +01:00
|
|
|
import subprocess
|
|
|
|
import sys
|
2021-03-12 20:22:03 +01:00
|
|
|
from base64 import b64decode, b64encode
|
2021-03-11 13:32:50 +01:00
|
|
|
|
2021-03-12 18:14:49 +01:00
|
|
|
from ansi2html import Ansi2HTMLConverter
|
2021-03-11 19:29:43 +01:00
|
|
|
from csv_metadata_quality.version import VERSION as cli_version
|
2021-03-11 14:55:58 +01:00
|
|
|
from flask import Flask, abort, redirect, render_template, request, url_for
|
|
|
|
from werkzeug.utils import secure_filename
|
2021-03-11 13:32:50 +01:00
|
|
|
|
|
|
|
app = Flask(__name__)
|
2021-03-11 14:55:58 +01:00
|
|
|
app.config["MAX_CONTENT_LENGTH"] = 1024 * 1024
|
|
|
|
app.config["UPLOAD_EXTENSIONS"] = [".csv"]
|
2021-03-11 15:06:33 +01:00
|
|
|
app.config["UPLOAD_PATH"] = "/tmp"
|
2021-03-11 13:32:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
@app.route("/")
|
|
|
|
def index():
|
2021-03-11 19:29:43 +01:00
|
|
|
return render_template("index.html", cli_version=cli_version)
|
2021-03-11 14:55:58 +01:00
|
|
|
|
|
|
|
|
|
|
|
@app.route("/", methods=["POST"])
|
|
|
|
def upload_file():
|
|
|
|
uploaded_file = request.files["file"]
|
|
|
|
filename = secure_filename(uploaded_file.filename)
|
|
|
|
|
|
|
|
if filename != "":
|
|
|
|
file_ext = os.path.splitext(filename)[1]
|
|
|
|
if file_ext not in app.config["UPLOAD_EXTENSIONS"]:
|
|
|
|
abort(400)
|
|
|
|
|
|
|
|
uploaded_file.save(os.path.join(app.config["UPLOAD_PATH"], filename))
|
|
|
|
|
2021-03-12 20:22:03 +01:00
|
|
|
# generate a base64 representation of the filename to use as a slug
|
|
|
|
base64name = b64encode(filename.encode("ascii"))
|
|
|
|
|
|
|
|
return redirect(url_for("process_file", base64slug=base64name))
|
2021-03-11 21:42:59 +01:00
|
|
|
|
|
|
|
return "No file selected"
|
|
|
|
|
|
|
|
|
2021-03-12 20:22:03 +01:00
|
|
|
@app.route("/result/<base64slug>")
|
|
|
|
def process_file(base64slug):
|
2021-03-12 20:28:24 +01:00
|
|
|
# get filename from base64-encoded slug
|
2021-03-12 20:22:03 +01:00
|
|
|
filename = b64decode(base64slug).decode("ascii")
|
|
|
|
|
2021-03-12 18:14:49 +01:00
|
|
|
# do we need to use secure_filename again here?
|
|
|
|
input_file = os.path.join(app.config["UPLOAD_PATH"], filename)
|
|
|
|
# TODO: write an output file based on the input file name
|
|
|
|
output_file = os.path.join(app.config["UPLOAD_PATH"], "test.csv")
|
|
|
|
|
|
|
|
sys.argv = ["", "-i", input_file, "-o", output_file]
|
|
|
|
|
|
|
|
# run subprocess and capture output as UTF-8 so we get a string instead of
|
|
|
|
# bytes for ansi2html
|
|
|
|
results = subprocess.run(
|
|
|
|
["csv-metadata-quality", "-i", input_file, "-o", output_file],
|
|
|
|
capture_output=True,
|
|
|
|
encoding="UTF-8",
|
|
|
|
)
|
|
|
|
# convert the output to HTML using ansi2html
|
|
|
|
conv = Ansi2HTMLConverter()
|
|
|
|
html = conv.convert(results.stdout)
|
|
|
|
return render_template(
|
2021-03-12 20:22:03 +01:00
|
|
|
"result.html", cli_version=cli_version, filename=filename, stdout=html
|
2021-03-12 18:14:49 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
# I should remember this Flask-specific way to send files to the client
|
|
|
|
# return send_from_directory(app.config["UPLOAD_FOLDER"], filename)
|
2021-03-11 13:32:50 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
app.run(host="127.0.0.1", port=8080, debug=True)
|