199 lines
4.8 KiB
Rust
199 lines
4.8 KiB
Rust
use std::path::Path;
|
|
|
|
use anyhow::anyhow;
|
|
use askama::Template;
|
|
use async_std::prelude::*;
|
|
use async_std::{
|
|
io::{BufReader, WriteExt},
|
|
net::TcpStream,
|
|
};
|
|
use serde::Deserialize;
|
|
|
|
mod mpd;
|
|
|
|
#[derive(Template)]
|
|
#[template(path = "index.html")]
|
|
struct IndexTemplate {
|
|
path: String,
|
|
}
|
|
|
|
#[derive(Deserialize, Default)]
|
|
#[serde(default)]
|
|
struct IndexQuery {
|
|
path: String,
|
|
}
|
|
|
|
async fn get_index(req: tide::Request<()>) -> tide::Result {
|
|
let query: IndexQuery = req.query()?;
|
|
let template = IndexTemplate { path: query.path };
|
|
Ok(askama_tide::into_response(&template))
|
|
}
|
|
|
|
#[derive(Template)]
|
|
#[template(path = "queue.html")]
|
|
struct QueueTemplate {
|
|
queue: Vec<mpd::QueueItem>,
|
|
}
|
|
|
|
async fn get_queue(_req: tide::Request<()>) -> tide::Result {
|
|
let queue = mpd::playlist()?;
|
|
let template = QueueTemplate { queue };
|
|
Ok(template.into())
|
|
}
|
|
|
|
#[derive(Template)]
|
|
#[template(path = "player.html")]
|
|
struct CurrentTemplate {
|
|
song: Option<mpdrs::Song>,
|
|
name: Option<String>,
|
|
}
|
|
|
|
async fn get_player(_req: tide::Request<()>) -> tide::Result {
|
|
let mut mpd = mpd::connect()?;
|
|
let song = mpd.currentsong()?;
|
|
|
|
let mut template = CurrentTemplate {
|
|
song: song.clone(),
|
|
name: None,
|
|
};
|
|
|
|
if let Some(song) = song {
|
|
let name = song.title.unwrap_or(song.file);
|
|
template.name = Some(name);
|
|
}
|
|
|
|
Ok(template.into())
|
|
}
|
|
|
|
#[derive(Template)]
|
|
#[template(path = "browser.html")]
|
|
struct BrowserTemplate {
|
|
path: Vec<String>,
|
|
entries: Vec<mpd::Entry>,
|
|
}
|
|
|
|
async fn get_browser(req: tide::Request<()>) -> tide::Result {
|
|
let query: IndexQuery = req.query()?;
|
|
let entries = mpd::ls(&query.path)?;
|
|
|
|
let template = BrowserTemplate {
|
|
path: Path::new(&query.path)
|
|
.iter()
|
|
.map(|s| s.to_string_lossy().to_string())
|
|
.collect(),
|
|
entries,
|
|
};
|
|
|
|
Ok(template.into())
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
struct PostQueueQuery {
|
|
path: String,
|
|
}
|
|
|
|
async fn post_queue(req: tide::Request<()>) -> tide::Result {
|
|
let query: PostQueueQuery = req.query()?;
|
|
mpd::connect()?.add(&query.path)?;
|
|
Ok("".into())
|
|
}
|
|
|
|
async fn post_play(_req: tide::Request<()>) -> tide::Result {
|
|
mpd::connect()?.play()?;
|
|
Ok("".into())
|
|
}
|
|
|
|
async fn post_pause(_req: tide::Request<()>) -> tide::Result {
|
|
mpd::connect()?.pause(true)?;
|
|
Ok("".into())
|
|
}
|
|
|
|
async fn post_previous(_req: tide::Request<()>) -> tide::Result {
|
|
mpd::connect()?.prev()?;
|
|
Ok("".into())
|
|
}
|
|
|
|
async fn post_next(_req: tide::Request<()>) -> tide::Result {
|
|
mpd::connect()?.next()?;
|
|
Ok("".into())
|
|
}
|
|
|
|
async fn get_art(req: tide::Request<()>) -> tide::Result {
|
|
let query: IndexQuery = req.query()?;
|
|
let resp = if let Ok(art) = mpd::connect()?.albumart(&query.path) {
|
|
let mime = infer::get(&art)
|
|
.map(|k| k.mime_type())
|
|
.unwrap_or("application/octet-stream");
|
|
|
|
tide::Response::builder(tide::StatusCode::Ok)
|
|
.body(art)
|
|
.content_type(mime)
|
|
.header("cache-control", "max-age=3600")
|
|
} else {
|
|
tide::Response::builder(tide::StatusCode::NotFound)
|
|
};
|
|
Ok(resp.into())
|
|
}
|
|
|
|
async fn sse(_req: tide::Request<()>, sender: tide::sse::Sender) -> tide::Result<()> {
|
|
// Needs to be async and all async mpd libraries suck
|
|
let mut stream = TcpStream::connect(mpd::host()).await?;
|
|
let mut reader = BufReader::new(stream.clone());
|
|
|
|
// skip OK MPD line
|
|
// TODO check if it is indeed OK
|
|
let mut buffer = String::new();
|
|
reader.read_line(&mut buffer).await?;
|
|
|
|
// Update everything on connect
|
|
sender.send("playlist", "", None).await?;
|
|
sender.send("player", "", None).await?;
|
|
|
|
loop {
|
|
stream.write_all(b"idle playlist player database\n").await?;
|
|
|
|
loop {
|
|
buffer.clear();
|
|
reader.read_line(&mut buffer).await?;
|
|
if buffer == "OK\n" {
|
|
break;
|
|
}
|
|
|
|
let (_, changed) = buffer
|
|
.trim_end()
|
|
.split_once(": ")
|
|
.ok_or(anyhow!("unexpected response from MPD"))?;
|
|
sender.send(changed, "", None).await?;
|
|
}
|
|
}
|
|
}
|
|
|
|
#[async_std::main]
|
|
async fn main() -> tide::Result<()> {
|
|
tracing_subscriber::fmt()
|
|
.with_max_level(tracing::Level::INFO)
|
|
.init();
|
|
|
|
let mut app = tide::new();
|
|
app.with(tide_tracing::TraceMiddleware::new());
|
|
|
|
app.at("/").get(get_index);
|
|
app.at("/queue").get(get_queue);
|
|
app.at("/player").get(get_player);
|
|
app.at("/art").get(get_art);
|
|
app.at("/browser").get(get_browser);
|
|
|
|
app.at("/sse").get(tide::sse::endpoint(sse));
|
|
|
|
app.at("/queue").post(post_queue);
|
|
app.at("/play").post(post_play);
|
|
app.at("/pause").post(post_pause);
|
|
app.at("/previous").post(post_previous);
|
|
app.at("/next").post(post_next);
|
|
|
|
app.at("/static").serve_dir("static/")?;
|
|
|
|
app.listen("0.0.0.0:8080").await?;
|
|
Ok(())
|
|
}
|