Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
4b1a31c793 | |||
72b40f71a1 | |||
399397cc8a |
1 changed files with 17 additions and 8 deletions
25
app.py
25
app.py
|
@ -1,7 +1,7 @@
|
|||
from asyncio.streams import StreamReader, StreamWriter
|
||||
import re
|
||||
from typing import Any, LiteralString, Mapping
|
||||
from flask import Flask, render_template, request, send_file, jsonify
|
||||
from flask import Flask, abort, render_template, request, send_file, jsonify
|
||||
import os
|
||||
import subprocess
|
||||
import signal
|
||||
|
@ -21,11 +21,10 @@ app = Flask(__name__)
|
|||
volume: float = 50
|
||||
|
||||
|
||||
def get_path(base: Path, file: LiteralString | Path):
|
||||
p = base.resolve().joinpath(Path(file).resolve())
|
||||
print(p)
|
||||
def get_path(base: Path, file: LiteralString | str | Path):
|
||||
p = base.resolve().joinpath(file)
|
||||
p.resolve().relative_to(base)
|
||||
return p
|
||||
|
||||
|
||||
|
||||
def cleanup_unclean():
|
||||
|
@ -176,7 +175,11 @@ async def route_toggle():
|
|||
@app.route("/files/<path:path>", methods=["GET"])
|
||||
@app.route("/files")
|
||||
def filemgr(path=""):
|
||||
full_path = get_path(music_path, path)
|
||||
try:
|
||||
full_path = get_path(music_path, path)
|
||||
except ValueError:
|
||||
abort(403)
|
||||
|
||||
print(full_path)
|
||||
if os.path.isfile(full_path):
|
||||
return send_file(full_path)
|
||||
|
@ -263,7 +266,10 @@ async def api_play_track(
|
|||
if re.match("^https?://.*", filename_or_url):
|
||||
playback_uri = filename_or_url
|
||||
else:
|
||||
file_path = get_path(music_path, filename_or_url)
|
||||
try:
|
||||
file_path = get_path(music_path, filename_or_url)
|
||||
except ValueError:
|
||||
return jsonify(error_str.format(filename=filename_or_url)), 403
|
||||
if not file_path.exists():
|
||||
return jsonify(error_str.format(filename=filename_or_url)), 404
|
||||
playback_uri = str(file_path)
|
||||
|
@ -298,7 +304,10 @@ async def api_play_fx(
|
|||
if re.match("^https?://.*", filename_or_url):
|
||||
playback_uri = filename_or_url
|
||||
else:
|
||||
file_path = get_path(fx_path, filename_or_url)
|
||||
try:
|
||||
file_path = get_path(fx_path, filename_or_url)
|
||||
except ValueError:
|
||||
return jsonify(error_str.format(filename=filename_or_url)), 403
|
||||
if not file_path.exists():
|
||||
return jsonify(error_str.format(filename=filename_or_url)), 404
|
||||
playback_uri = str(file_path)
|
||||
|
|
Loading…
Add table
Reference in a new issue