Ungarbagify garbage

This commit is contained in:
Oha 2025-02-23 23:18:33 +01:00
parent 9e6bc5d26e
commit 039ce6aaaf

79
app.py
View file

@ -19,21 +19,23 @@ def sizeof_fmt(num, suffix="B"):
return f"{num:.1f}Yi{suffix}"
@app.route('/', methods=["POST", "GET"])
def audiothing():
@app.route('/', methods=["GET"])
def route_interface():
global playback
if request.method == "GET":
return render_template("player.html", playing=playback)
if request.method == "POST":
if playback:
print("Killing Audio Playback..")
os.system("killall mpv")
playback = False
else:
print("Starting Audio Playback..")
audio_player()
playback = True
return render_template("player.html", playing=playback)
return render_template("player.html", playing=playback)
@app.route('/', methods=["POST"])
def route_toggle():
global playback
if playback:
print("Killing Audio Playback..")
os.system("killall mpv")
playback = False
else:
print("Starting Audio Playback..")
audio_player()
playback = True
return render_template("player.html", playing=playback)
@app.route("/files/<path:path>", methods=["GET"])
@app.route("/files")
@ -55,30 +57,35 @@ def filemgr(path=""):
file[1] = sizeof_fmt(file[1])
return render_template("filemanager.html", files=files, path=path)
@app.route("/api/<action>")
def api(action):
@app.route("/api/start", methods=["POST"])
def api_start():
global playback
if action == "start":
if playback:
return Response("Laas is already lofi'ing", 400)
else:
audio_player()
playback = True
return Response("ok", 200)
elif action == "stop":
if not playback:
return Response("You cant stop when theres no playback, womp womp!", 400)
else:
os.system("killall mpv")
playback = False
return Response("ok", 200)
elif action == "status":
if playback:
return "True"
else:
return "False"
if playback:
return Response("Laas is already lofi'ing", 400)
else:
return Response("Invalid api route", 400)
audio_player()
playback = True
return Response("ok", 200)
@app.route("/api/stop", methods=["POST"])
def api_stop():
global playback
if not playback:
return Response("You cant stop when theres no playback, womp womp!", 400)
else:
os.system("killall mpv")
playback = False
return Response("ok", 200)
@app.route("/api/status", methods=["GET"])
def api_status():
if playback:
return "true"
else:
return "false"
if __name__ == '__main__':