1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
//! PTY API for OpenCode.
//!
//! Endpoints for pseudo-terminal management.
use crate::error::Result;
use crate::http::HttpClient;
use crate::types::pty::{CreatePtyRequest, Pty, UpdatePtyRequest};
use reqwest::Method;
/// PTY API client.
#[derive(Clone)]
pub struct PtyApi {
http: HttpClient,
}
impl PtyApi {
/// Create a new PTY API client.
pub fn new(http: HttpClient) -> Self {
Self { http }
}
/// List PTYs.
///
/// # Errors
///
/// Returns an error if the request fails.
pub async fn list(&self) -> Result<Vec<Pty>> {
self.http.request_json(Method::GET, "/pty", None).await
}
/// Create a new PTY.
///
/// # Errors
///
/// Returns an error if the request fails.
pub async fn create(&self, req: &CreatePtyRequest) -> Result<Pty> {
let body = serde_json::to_value(req)?;
self.http
.request_json(Method::POST, "/pty", Some(body))
.await
}
/// Get a PTY by ID.
///
/// # Errors
///
/// Returns an error if the request fails.
pub async fn get(&self, id: &str) -> Result<Pty> {
self.http
.request_json(Method::GET, &format!("/pty/{}", id), None)
.await
}
/// Update a PTY.
///
/// # Errors
///
/// Returns an error if the request fails.
pub async fn update(&self, id: &str, req: &UpdatePtyRequest) -> Result<Pty> {
let body = serde_json::to_value(req)?;
self.http
.request_json(Method::PUT, &format!("/pty/{}", id), Some(body))
.await
}
/// Delete a PTY.
///
/// # Errors
///
/// Returns an error if the request fails.
pub async fn delete(&self, id: &str) -> Result<()> {
self.http
.request_empty(Method::DELETE, &format!("/pty/{}", id), None)
.await
}
}