use crate::backend::{Backend, Medium, Result}; impl Backend { /// Get all available mediums from the server, that contain the specified /// recording. pub async fn get_mediums_for_recording(&self, recording_id: &str) -> Result> { let body = self.get(&format!("recordings/{}/mediums", recording_id)).await?; let mediums: Vec = serde_json::from_str(&body)?; Ok(mediums) } /// Get all available mediums from the server, that match the specified /// DiscID. pub async fn get_mediums_by_discid(&self, discid: &str) -> Result> { let body = self.get(&format!("discids/{}/mediums", discid)).await?; let mediums: Vec = serde_json::from_str(&body)?; Ok(mediums) } /// Post a new medium to the server. pub async fn post_medium(&self, data: &Medium) -> Result<()> { self.post("mediums", serde_json::to_string(data)?).await?; Ok(()) } }