DeathGarden_API_Rebirth/src/endpoints/web.py

227 lines
8.7 KiB
Python

from flask_definitions import *
@app.route('/', methods=["GET"])
def index():
check_for_game_client("soft")
return render_template("index.html")
@app.route('/robots.txt', methods=["GET"])
def robots():
return send_from_directory(app.static_folder, request.path[1:])
@app.route('/.well-known/security.txt', methods=["GET"])
def security():
return send_from_directory(app.static_folder, request.path[1:])
@app.route('/.well-known/gpc.json', methods=["GET"])
def gpc():
return send_from_directory(app.static_folder, request.path[1:])
@app.route('/.well-known/dnt-policy.txt', methods=["GET"])
def dnt():
return send_from_directory(app.static_folder, request.path[1:])
@app.route('/favicon.ico')
def favicon():
check_for_game_client("soft")
try:
return send_from_directory(os.path.join(app.root_path, 'image'), 'favicon.ico',
mimetype='image/vnd.microsoft.icon')
except TimeoutError:
return jsonify({"status": "error"})
except Exception as e:
logger.graylog_logger(level="error", handler="general-favicon", message=e)
@app.route('/images/icons/fugue/tick-circle.png')
def tick_circle():
try:
return send_from_directory(os.path.join(app.root_path, 'image'), 'tick-circle.png',
mimetype='image/vnd.microsoft.icon')
except TimeoutError:
return jsonify({"status": "error"})
except Exception as e:
logger.graylog_logger(level="error", handler="general-tick-circle-png", message=e)
@app.route("/debug", methods=["Get"])
def debug_root():
check_for_game_client("soft")
endpoint_descriptions = {
'/debug/user': 'Endpoint to debug user information'}
endpoint_list = []
for endpoint, description in endpoint_descriptions.items():
endpoint_list.append(f'<li>{endpoint}: {description}</li>')
endpoints_html = '<ul>' + ''.join(endpoint_list) + '</ul>'
return f'<h1>Debug Endpoints:</h1>{endpoints_html}'
@app.route('/debug/user/', methods=['GET'], defaults={'steamid_unsanitized': None})
@app.route('/debug/user/<steamid_unsanitized>', methods=['GET'])
def debug_user(steamid_unsanitized):
steamid = sanitize_input(steamid_unsanitized)
if steamid is None:
return render_template('debug/user.html', is_id_set=False, id_not_found=True)
user_data = mongo.get_debug(steamid=steamid)
if user_data is None:
return render_template('debug/user.html', is_id_set=True, id_not_found=False, steam_id=steamid)
return render_template(
'debug/user.html',
is_id_set=True,
is_not_found=False,
steam_id=user_data.get('steamid'),
eula=user_data.get('eula'),
currency_blood_cells=user_data.get('currency_blood_cells'),
currency_ink_cells=user_data.get('currency_ink_cells'),
currency_iron=user_data.get('currency_iron'),
userId=user_data.get('userId'),
account_xp=user_data.get('account_xp'),
prestige_xp=user_data.get('prestige_xp'),
is_banned=user_data.get('is_banned'),
ban_reason=user_data.get('ban_reason'),
ban_start=user_data.get('ban_start'),
ban_expire=user_data.get('ban_expire'),
special_unlocks=user_data.get('special_unlocks'),
finished_challanges=user_data.get('finished_challanges'),
open_challanges=user_data.get('open_challanges'),
unread_msg_ids=user_data.get('unread_msg_ids')
)
@app.route("/debug/mirrors/write", methods=["POST", "GET"])
def debug_mirrors_write():
check_for_game_client("soft")
try:
if request.method == "POST":
try:
api_token = sanitize_input(request.cookies.get("api_token"))
if api_token is None:
return jsonify({"status": "error", "message": "No api token found"}, 401)
if api_token not in allowed_tokens:
return jsonify({"status": "error", "message": "Invalid api token"}), 401
steam_user_id = sanitize_input(request.json.get("steamid"))
data_b = request.json.get("data")
if not data_b:
return jsonify({"status": "error", "message": "No data found."}), 400
if not steam_user_id:
return jsonify({"status": "error", "message": "No Steamid found."}), 400
logger.graylog_logger(level="info", handler="logging_debug_mirror_write",
message={"IP": check_for_game_client("remote"), "steamid": steam_user_id, "data": data_b})
return_val = mongo.write_data_with_list(login=steam_user_id, login_steam=True, items_dict=data_b)
if return_val is None:
return jsonify({"status": "error", "message": "There was a error on our End. "
"Please try again later."}), 400
return jsonify({"status": "success", "message": "Data written."}), 200
except TimeoutError:
return jsonify({"status": "error"})
except Exception as e:
logger.graylog_logger(level="error", handler="logging_debug_mirror_write", message=e)
if request.method == "GET":
return jsonify({"message": "Endpoint not found"}), 404
except Exception as e:
logger.graylog_logger(level="error", handler="web_debug_mirrors", message=e)
@app.route("/debug/mirrors/get", methods=["POST"])
def debug_mirrors_get():
check_for_game_client("soft")
try:
if request.method == "POST":
try:
api_token = sanitize_input(request.cookies.get("api_token"))
if api_token is None:
return jsonify({"status": "error", "message": "No api token found"}, 401)
if api_token not in allowed_tokens:
return jsonify({"status": "error", "message": "Invalid api token"}), 401
steam_user_id = sanitize_input(request.json.get("steamid"))
if not steam_user_id:
return jsonify({"status": "error", "message": "No Steamid found."}), 400
# logger.graylog_logger(level="info", handler="logging_debug_mirror_read",
# message={"IP": check_for_game_client("remote"), "steamid": steam_user_id})
return_val = mongo.get_debug(steam_user_id)
if return_val is None:
return jsonify({"status": "error", "message": "There was a error on our End. "
"Please try again later."}), 400
return_val.pop("_id")
return jsonify({"Data": return_val}), 200
except TimeoutError:
return jsonify({"status": "error"})
except Exception as e:
logger.graylog_logger(level="error", handler="logging_debug_mirror_write", message=e)
if request.method == "GET":
return jsonify({"message": "Endpoint not found"}), 404
except Exception as e:
logger.graylog_logger(level="error", handler="web_debug_mirrors", message=e)
@app.route('/updater/', methods=["GET"])
def updater_root():
return render_template("updater.html")
@app.route("/updater/versions", methods=["GET"])
def updater_version():
return jsonify({
"script_version": 1,
"pak_version": 1,
"sig_version": 1
})
@app.route("/updater/files/", methods=["GET"])
def updater_files():
return jsonify({"Error": "Please read the Docs about this Endpoint."}), 400
@app.route("/updater/files/pak/", methods=["GET"])
def updater_pak():
try:
return send_from_directory(os.path.join(app.root_path, 'files'), 'TheExitRebirthBackendAPI-WindowsNoEditor_P.pak')
except TimeoutError:
return jsonify({"status": "error"})
except Exception as e:
logger.graylog_logger(level="error", handler="web-updater-PAK", message=e)
@app.route("/updater/files/sig/", methods=["GET"])
def updater_sig():
try:
return send_from_directory(os.path.join(app.root_path, 'files'), 'TheExitRebirthBackendAPI-WindowsNoEditor_P.sig')
except TimeoutError:
return jsonify({"status": "error"})
except Exception as e:
logger.graylog_logger(level="error", handler="web-updater-SIG", message=e)
@app.route("/updater/files/script/", methods=["GET"])
def updater_script():
try:
return send_from_directory(os.path.join(app.root_path, 'files'), 'TheExit-Rebirth-Updater.bat')
except TimeoutError:
return jsonify({"status": "error"})
except Exception as e:
logger.graylog_logger(level="error", handler="web-updater-script", message=e)