This commit is contained in:
Dominik V. Salonen 2015-12-26 21:23:35 +01:00
parent 21b08a2501
commit 8879637616
1 changed files with 4 additions and 7 deletions

7
run.py
View File

@ -79,13 +79,10 @@ def upload_file():
# Only continue if a file that's allowed gets submitted. # Only continue if a file that's allowed gets submitted.
if file and allowed_file(file.filename): if file and allowed_file(file.filename):
try:
if config["CHECK_FILESIZE"]: if config["CHECK_FILESIZE"]:
data = request.files["file"].read() fileContent = request.files["file"].read()
if len(data) >= config["MAX_FILESIZE"]: if len(fileContent) >= config["MAX_FILESIZE"]:
return error_page("O-o-onii-chan, noo it's too big ~~"), 413 return error_page("O-o-onii-chan, noo it's too big ~~"), 413
except Exception:
pass
filename = secure_filename(file.filename) filename = secure_filename(file.filename)
while os.path.exists(os.path.join(config["UPLOAD_FOLDER"], filename)): while os.path.exists(os.path.join(config["UPLOAD_FOLDER"], filename)):
filename = str(randint(1000,8999)) + '-' + secure_filename(filename) filename = str(randint(1000,8999)) + '-' + secure_filename(filename)