use crate::cli::{print_value, DaemonClient};
use anyhow::Result;
pub async fn list(client: &DaemonClient, agent_id: &str) -> Result<()> {
client.ensure_running().await?;
let resp = client
.get(&format!("/contacts/{agent_id}/machines"))
.await?;
print_value(client.format(), &resp);
Ok(())
}
pub async fn add(client: &DaemonClient, agent_id: &str, machine_id: &str, pin: bool) -> Result<()> {
client.ensure_running().await?;
let body = serde_json::json!({
"machine_id": machine_id,
"pinned": pin,
});
let resp = client
.post(&format!("/contacts/{agent_id}/machines"), &body)
.await?;
print_value(client.format(), &resp);
Ok(())
}
pub async fn remove(client: &DaemonClient, agent_id: &str, machine_id: &str) -> Result<()> {
client.ensure_running().await?;
let resp = client
.delete(&format!("/contacts/{agent_id}/machines/{machine_id}"))
.await?;
print_value(client.format(), &resp);
Ok(())
}
pub async fn pin(client: &DaemonClient, agent_id: &str, machine_id: &str) -> Result<()> {
client.ensure_running().await?;
let resp = client
.post_empty(&format!("/contacts/{agent_id}/machines/{machine_id}/pin"))
.await?;
print_value(client.format(), &resp);
Ok(())
}
pub async fn unpin(client: &DaemonClient, agent_id: &str, machine_id: &str) -> Result<()> {
client.ensure_running().await?;
let resp = client
.delete(&format!("/contacts/{agent_id}/machines/{machine_id}/pin"))
.await?;
print_value(client.format(), &resp);
Ok(())
}