2019-06-10 21:24:35 +00:00
|
|
|
""" A Simple file server for uploading and downloading files """
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
from argparse import ArgumentParser
|
|
|
|
from pathlib import Path
|
|
|
|
|
2021-05-03 14:00:38 +00:00
|
|
|
from boltons.iterutils import first
|
2021-05-03 13:58:11 +00:00
|
|
|
from flask import Flask, request, send_from_directory, safe_join, abort, Response
|
2021-05-03 15:14:08 +00:00
|
|
|
from flask._compat import fspath
|
2019-07-17 15:16:43 +00:00
|
|
|
from flask_compress import Compress
|
|
|
|
from flask_cors import CORS
|
2019-06-10 21:24:35 +00:00
|
|
|
|
2019-07-17 15:16:43 +00:00
|
|
|
from config import config
|
2019-06-10 21:24:35 +00:00
|
|
|
|
2020-06-01 10:05:45 +00:00
|
|
|
DEFAULT_UPLOAD_FOLDER = "/mnt/fileserver"
|
|
|
|
|
2019-06-10 21:24:35 +00:00
|
|
|
app = Flask(__name__)
|
2019-07-17 15:16:43 +00:00
|
|
|
CORS(app, **config.get("fileserver.cors"))
|
|
|
|
Compress(app)
|
2019-06-10 21:24:35 +00:00
|
|
|
|
2021-05-03 14:00:38 +00:00
|
|
|
app.config["UPLOAD_FOLDER"] = first(
|
|
|
|
(os.environ.get(f"{prefix}_UPLOAD_FOLDER") for prefix in ("CLEARML", "TRAINS")),
|
|
|
|
default=DEFAULT_UPLOAD_FOLDER,
|
2021-05-03 13:58:11 +00:00
|
|
|
)
|
|
|
|
app.config["SEND_FILE_MAX_AGE_DEFAULT"] = config.get(
|
|
|
|
"fileserver.download.cache_timeout_sec", 5 * 60
|
|
|
|
)
|
2020-02-26 15:26:46 +00:00
|
|
|
|
2019-06-10 21:24:35 +00:00
|
|
|
|
|
|
|
@app.route("/", methods=["POST"])
|
|
|
|
def upload():
|
|
|
|
results = []
|
|
|
|
for filename, file in request.files.items():
|
|
|
|
if not filename:
|
|
|
|
continue
|
|
|
|
file_path = filename.lstrip(os.sep)
|
|
|
|
target = Path(safe_join(app.config["UPLOAD_FOLDER"], file_path))
|
|
|
|
target.parent.mkdir(parents=True, exist_ok=True)
|
|
|
|
file.save(str(target))
|
|
|
|
results.append(file_path)
|
2021-05-03 14:00:38 +00:00
|
|
|
return json.dumps(results), 200
|
2019-06-10 21:24:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.route("/<path:path>", methods=["GET"])
|
|
|
|
def download(path):
|
2021-01-05 15:31:24 +00:00
|
|
|
as_attachment = "download" in request.args
|
2021-05-03 13:58:11 +00:00
|
|
|
response = send_from_directory(
|
|
|
|
app.config["UPLOAD_FOLDER"], path, as_attachment=as_attachment
|
|
|
|
)
|
2019-07-17 15:16:43 +00:00
|
|
|
if config.get("fileserver.download.disable_browser_caching", False):
|
|
|
|
headers = response.headers
|
|
|
|
headers["Pragma-directive"] = "no-cache"
|
|
|
|
headers["Cache-directive"] = "no-cache"
|
|
|
|
headers["Cache-control"] = "no-cache"
|
|
|
|
headers["Pragma"] = "no-cache"
|
|
|
|
headers["Expires"] = "0"
|
|
|
|
return response
|
2019-06-10 21:24:35 +00:00
|
|
|
|
|
|
|
|
2021-01-05 16:53:23 +00:00
|
|
|
@app.route("/<path:path>", methods=["DELETE"])
|
|
|
|
def delete(path):
|
2021-05-03 15:14:08 +00:00
|
|
|
path = Path(
|
|
|
|
safe_join(
|
|
|
|
fspath(app.config["UPLOAD_FOLDER"]),
|
|
|
|
fspath(path)
|
|
|
|
)
|
|
|
|
)
|
2021-05-03 15:14:30 +00:00
|
|
|
if not path.exists() or not path.is_file():
|
2021-05-03 13:58:11 +00:00
|
|
|
abort(Response(f"File {str(path)} not found", 404))
|
|
|
|
|
|
|
|
path.unlink()
|
|
|
|
return json.dumps(str(path)), 200
|
2021-01-05 16:53:23 +00:00
|
|
|
|
|
|
|
|
2019-06-10 21:24:35 +00:00
|
|
|
def main():
|
|
|
|
parser = ArgumentParser(description=__doc__)
|
|
|
|
parser.add_argument(
|
|
|
|
"--port", "-p", type=int, default=8081, help="Port (default %(default)d)"
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"--ip", "-i", type=str, default="0.0.0.0", help="Address (default %(default)s)"
|
|
|
|
)
|
|
|
|
parser.add_argument("--debug", action="store_true", default=False)
|
|
|
|
parser.add_argument(
|
|
|
|
"--upload-folder",
|
|
|
|
"-u",
|
2021-01-05 16:53:23 +00:00
|
|
|
help=f"Upload folder (default {DEFAULT_UPLOAD_FOLDER})",
|
2019-06-10 21:24:35 +00:00
|
|
|
)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
2021-01-05 16:53:23 +00:00
|
|
|
if args.upload_folder is not None:
|
2020-06-01 10:05:45 +00:00
|
|
|
app.config["UPLOAD_FOLDER"] = args.upload_folder
|
2019-06-10 21:24:35 +00:00
|
|
|
|
|
|
|
app.run(debug=args.debug, host=args.ip, port=args.port, threaded=True)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|