badl/backend/__init__.py

45 lines
865 B
Python
Raw Normal View History

2023-03-04 18:18:39 +08:00
from bottle import request, response, Bottle, static_file
2023-02-21 19:56:22 +08:00
from manager import Manager
from json import dumps
from pathlib import Path
2023-03-04 18:18:39 +08:00
from tkinter import filedialog as fd
2023-02-21 19:56:22 +08:00
manager = Manager()
app = Bottle()
2023-03-04 18:18:39 +08:00
@app.get("/")
def frontend():
return static_file("index.html", root="frontend/dist")
@app.get("/<filepath:path>")
def frontend(filepath):
return static_file(filepath, root="frontend/dist")
2023-02-21 19:56:22 +08:00
@app.post("/video")
def add_videos():
2023-02-23 21:43:58 +08:00
nvlist = request.json["nvlist"].split()
manager.add_videos_by_number(nvlist)
2023-02-21 19:56:22 +08:00
return "OK"
@app.get("/progress")
def get_progress():
response.content_type = "application/json"
return dumps(manager.get_progress())
2023-03-04 18:18:39 +08:00
@app.get("/download")
2023-02-21 19:56:22 +08:00
def download():
2023-03-04 18:18:39 +08:00
manager.download()
2023-03-04 13:53:05 +08:00
return "OK"
2023-03-04 18:18:39 +08:00
@app.get("/path")
def get_path():
path = fd.askdirectory()
manager.path = path
return path