From 474fca5b7e85c44879e5734cff09438ed92042c7 Mon Sep 17 00:00:00 2001 From: BonfaceKilz Date: Tue, 16 Feb 2021 22:20:02 +0300 Subject: Add new endpoint for uploading data --- gn3/api/general.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 gn3/api/general.py (limited to 'gn3') diff --git a/gn3/api/general.py b/gn3/api/general.py new file mode 100644 index 0000000..d52d033 --- /dev/null +++ b/gn3/api/general.py @@ -0,0 +1,22 @@ +"""General API endpoints. Put endpoints that can't be grouped together nicely +here.""" +from flask import Blueprint +from flask import current_app +from flask import jsonify +from flask import request + +from gn3.file_utils import extract_uploaded_file + + +general = Blueprint("general", __name__) + + +@general.route("/metadata/upload") +def upload_metadata(): + """Extract uploaded file to gn3 temporary directory; and if successful return +a TOKEN to the user + + """ + results = extract_uploaded_file(gzipped_file=request.files["file"], + target_dir=current_app.get("TMPDIR")) + return jsonify(results) -- cgit v1.2.3