API!!
This commit is contained in:
parent
bb474a24cb
commit
9e6bc5d26e
1 changed files with 28 additions and 1 deletions
29
app.py
29
app.py
|
@ -1,6 +1,7 @@
|
|||
from flask import Flask, render_template, request, send_file
|
||||
from flask import Flask, render_template, request, send_file, Response
|
||||
import os
|
||||
|
||||
os.system("killall mpv")
|
||||
playback = False
|
||||
if not os.path.exists("music"):
|
||||
os.mkdir("music")
|
||||
|
@ -54,5 +55,31 @@ 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):
|
||||
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"
|
||||
else:
|
||||
return Response("Invalid api route", 400)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
app.run(host='0.0.0.0', port=1337)
|
||||
|
|
Loading…
Add table
Reference in a new issue