musicdlp/backend/main.py
DarkCat09 9071017dbf
Refactor: unify YDL object and proxy cfg field
This would allow to add sites much simplier
or even drop the ydl_fn_keys.
Main purpose of the refactoring is a code cleanup.
2024-05-28 13:21:23 +04:00

71 lines
1.7 KiB
Python

import asyncio
import json
import websockets
import config
import response
import ydl_pool
type SocketT = websockets.WebSocketServerProtocol
async def handler(socket: SocketT) -> None:
async def ydl_log_handler(level: response.YdlLogLevel, msg: str) -> None:
try:
await socket.send(response.ydl_log(level, msg))
except:
pass
ydls = ydl_pool.Downloader(
ydl_pool.YdlLogger(
ydl_log_handler,
asyncio.get_event_loop(),
)
)
async for message in socket:
try:
data = json.loads(message)
print(data)
match data['action']:
case 'list': # list tracks in album
ydls.update_params(data['site'], data.get('proxy', False))
await socket.send(response.playlist(
await ydls.get_playlist_items(data['url']),
))
case 'download': # download by URL
ydls.update_params(data['site'], data.get('proxy', False), data.get('items'))
ret = await ydls.download(data['url'])
await socket.send(response.ydl_end(ret))
case _:
raise ValueError('invalid "action" field value')
except websockets.ConnectionClosed:
break
except Exception as ex:
if not socket.closed:
await socket.send(response.error(ex))
ydls.reset_params()
ydls.cleanup()
async def main() -> None:
cfg = config.get()
async with websockets.serve(handler, cfg.host, cfg.port):
await asyncio.Future()
if __name__ == '__main__':
asyncio.run(main())