forked from MarseyWorld/MarseyWorld
sdf
parent
470118696f
commit
53e5ee2715
|
@ -85,6 +85,8 @@ db_session = scoped_session(sessionmaker(bind=engine, autoflush=False))
|
||||||
@app.before_request
|
@app.before_request
|
||||||
def before_request():
|
def before_request():
|
||||||
|
|
||||||
|
if request.content_length > 16 * 1024 * 1024: abort(413)
|
||||||
|
|
||||||
if request.method.lower() != "get" and app.config["READ_ONLY"]: return {"error":f"{app.config['SITE_NAME']} is currently in read-only mode."}, 500
|
if request.method.lower() != "get" and app.config["READ_ONLY"]: return {"error":f"{app.config['SITE_NAME']} is currently in read-only mode."}, 500
|
||||||
|
|
||||||
if app.config["BOT_DISABLE"] and request.headers.get("X-User-Type")=="Bot": abort(503)
|
if app.config["BOT_DISABLE"] and request.headers.get("X-User-Type")=="Bot": abort(503)
|
||||||
|
|
Loading…
Reference in New Issue