brewlog/src/infrastructure/client/roasts.rs
Jon Seager 00477bdbc0
feat(roast): add update command for consistency with other entities
- Add PUT /api/v1/roasts/:id route handler
- Add update() method to roasts HTTP client
- Add UpdateRoastCommand to CLI with optional fields
- Add CLI tests for roast update authentication and functionality

Brings roast entity in line with roaster, bag, and gear which all
support add/list/get/update/delete operations.
2026-02-02 17:09:32 +00:00

87 lines
2.7 KiB
Rust

use anyhow::{Context, Result};
use reqwest::StatusCode;
use crate::domain::ids::{RoastId, RoasterId};
use crate::domain::roasts::{NewRoast, RoastWithRoaster, UpdateRoast};
use super::BrewlogClient;
pub struct RoastsClient<'a> {
inner: &'a BrewlogClient,
}
impl<'a> RoastsClient<'a> {
pub(crate) fn new(inner: &'a BrewlogClient) -> Self {
Self { inner }
}
pub async fn create(&self, payload: &NewRoast) -> Result<RoastWithRoaster> {
let url = self.inner.endpoint("api/v1/roasts")?;
let response = self
.inner
.request(reqwest::Method::POST, url)
.json(payload)
.send()
.await
.context("failed to issue create roast request")?;
self.inner.handle_response(response).await
}
pub async fn list(&self, roaster_id: Option<RoasterId>) -> Result<Vec<RoastWithRoaster>> {
let mut url = self.inner.endpoint("api/v1/roasts")?;
if let Some(roaster_id) = roaster_id {
url.query_pairs_mut()
.append_pair("roaster_id", &roaster_id.to_string());
}
let response = self
.inner
.request(reqwest::Method::GET, url)
.send()
.await
.context("failed to issue list roasts request")?;
self.inner.handle_response(response).await
}
pub async fn get(&self, id: RoastId) -> Result<RoastWithRoaster> {
let url = self.inner.endpoint(&format!("api/v1/roasts/{id}"))?;
let response = self
.inner
.request(reqwest::Method::GET, url)
.send()
.await
.context("failed to issue get roast request")?;
self.inner.handle_response(response).await
}
pub async fn update(&self, id: RoastId, payload: &UpdateRoast) -> Result<RoastWithRoaster> {
let url = self.inner.endpoint(&format!("api/v1/roasts/{id}"))?;
let response = self
.inner
.request(reqwest::Method::PUT, url)
.json(payload)
.send()
.await
.context("failed to issue update roast request")?;
self.inner.handle_response(response).await
}
pub async fn delete(&self, id: RoastId) -> Result<()> {
let url = self.inner.endpoint(&format!("api/v1/roasts/{id}"))?;
let response = self
.inner
.request(reqwest::Method::DELETE, url)
.send()
.await
.context("failed to issue delete roast request")?;
match response.status() {
StatusCode::NO_CONTENT => Ok(()),
_ => Err(self.inner.response_error(response).await),
}
}
}