2021-07-23 20:16:41 +00:00
|
|
|
import jinja2.exceptions
|
|
|
|
|
2021-08-04 15:35:10 +00:00
|
|
|
from files.helpers.wrappers import *
|
|
|
|
from files.helpers.session import *
|
2021-07-21 01:12:26 +00:00
|
|
|
from flask import *
|
|
|
|
from urllib.parse import quote, urlencode
|
|
|
|
import time
|
2021-10-07 06:04:29 +00:00
|
|
|
from files.__main__ import app, limiter
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
# Errors
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-07-25 14:23:53 +00:00
|
|
|
@app.errorhandler(400)
|
|
|
|
@auth_desired
|
|
|
|
def error_400(e, v):
|
2021-07-31 05:59:25 +00:00
|
|
|
if request.headers.get("Authorization"): return {"error": "400 Bad Request"}, 400
|
|
|
|
else: return render_template('errors/400.html', v=v), 400
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
@app.errorhandler(401)
|
|
|
|
def error_401(e):
|
|
|
|
|
|
|
|
path = request.path
|
2021-09-19 13:11:34 +00:00
|
|
|
qs = urlencode(dict(request.values))
|
2021-07-21 01:12:26 +00:00
|
|
|
argval = quote(f"{path}?{qs}", safe='')
|
|
|
|
output = f"/login?redirect={argval}"
|
|
|
|
|
2021-07-31 05:28:05 +00:00
|
|
|
if request.headers.get("Authorization"): return {"error": "401 Not Authorized"}, 401
|
2021-07-31 04:48:47 +00:00
|
|
|
else: return redirect(output)
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-07-25 14:23:53 +00:00
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
@app.errorhandler(403)
|
|
|
|
@auth_desired
|
|
|
|
def error_403(e, v):
|
2021-07-31 05:59:25 +00:00
|
|
|
if request.headers.get("Authorization"): return {"error": "403 Forbidden"}, 403
|
|
|
|
else: return render_template('errors/403.html', v=v), 403
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.errorhandler(404)
|
|
|
|
@auth_desired
|
|
|
|
def error_404(e, v):
|
2021-07-31 05:59:25 +00:00
|
|
|
if request.headers.get("Authorization"): return {"error": "404 Not Found"}, 404
|
|
|
|
else: return render_template('errors/404.html', v=v), 404
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.errorhandler(405)
|
|
|
|
@auth_desired
|
|
|
|
def error_405(e, v):
|
2021-07-31 05:59:25 +00:00
|
|
|
if request.headers.get("Authorization"): return {"error": "405 Method Not Allowed"}, 405
|
|
|
|
else: return render_template('errors/405.html', v=v), 405
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.errorhandler(429)
|
|
|
|
@auth_desired
|
|
|
|
def error_429(e, v):
|
2021-07-31 05:59:25 +00:00
|
|
|
if request.headers.get("Authorization"): return {"error": "429 Too Many Requests"}, 429
|
|
|
|
else: return render_template('errors/429.html', v=v), 429
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
|
|
|
|
@app.errorhandler(500)
|
|
|
|
@auth_desired
|
|
|
|
def error_500(e, v):
|
2021-09-16 17:23:30 +00:00
|
|
|
g.db.rollback()
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-07-31 05:59:25 +00:00
|
|
|
if request.headers.get("Authorization"): return {"error": "500 Internal Server Error"}, 500
|
|
|
|
else: return render_template('errors/500.html', v=v), 500
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.post("/allow_nsfw")
|
2021-07-26 17:47:52 +00:00
|
|
|
def allow_nsfw():
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-07-26 17:47:52 +00:00
|
|
|
session["over_18"] = int(time.time()) + 3600
|
2021-09-19 13:11:34 +00:00
|
|
|
return redirect(request.values.get("redir", "/"))
|
2021-07-21 01:12:26 +00:00
|
|
|
|
|
|
|
|
2021-07-27 22:31:28 +00:00
|
|
|
@app.get("/error/<error>")
|
2021-07-21 01:12:26 +00:00
|
|
|
@auth_desired
|
2021-07-23 20:16:41 +00:00
|
|
|
def error_all_preview(error, v):
|
2021-07-21 01:12:26 +00:00
|
|
|
|
2021-07-23 20:16:41 +00:00
|
|
|
try:
|
|
|
|
return render_template(f"errors/{error}.html", v=v)
|
|
|
|
except jinja2.exceptions.TemplateNotFound:
|
|
|
|
abort(400)
|
2021-07-21 01:12:26 +00:00
|
|
|
|