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
77
78
79
80
81
82
83
84
85
|
use anyhow::anyhow;
pub use anyhow::Result;
use reqwest::header;
use serde_json::Value;
use std::collections::HashMap;
use std::str::FromStr;
use std::time::Duration;
static APP_USER_AGENT: &str = concat!(env!("CARGO_PKG_NAME"), "/", env!("CARGO_PKG_VERSION"),);
#[derive(Debug, PartialEq, Eq, Clone)]
pub enum XrpcMethod {
Get,
Post,
}
impl FromStr for XrpcMethod {
type Err = anyhow::Error;
fn from_str(s: &str) -> Result<Self, Self::Err> {
match s {
"get" => Ok(XrpcMethod::Get),
"post" => Ok(XrpcMethod::Post),
_ => Err(anyhow!("unknown method: {}", s)),
}
}
}
pub struct XrpcClient {
http_client: reqwest::blocking::Client,
host: String,
}
impl XrpcClient {
pub fn new(host: String, auth_token: Option<String>) -> Result<Self> {
let mut headers = header::HeaderMap::new();
if let Some(token) = &auth_token {
let mut auth_value = header::HeaderValue::from_str(&format!("Bearer {}", token))?;
auth_value.set_sensitive(true);
headers.insert(header::AUTHORIZATION, auth_value);
};
let http_client = reqwest::blocking::Client::builder()
.default_headers(headers)
.user_agent(APP_USER_AGENT)
.timeout(Duration::from_secs(30))
//.danger_accept_invalid_certs(true)
.build()
.expect("ERROR :: Could not build reqwest client");
Ok(XrpcClient { http_client, host })
}
pub fn get(
&self,
nsid: String,
params: Option<HashMap<String, String>>,
) -> Result<Option<Value>> {
let params: HashMap<String, String> = params.unwrap_or(HashMap::new());
let res = self
.http_client
.get(format!("{}/xrpc/{}", self.host, nsid))
.query(¶ms)
.send()?
.error_for_status()?;
Ok(res.json()?)
}
pub fn post(
&self,
nsid: String,
params: Option<HashMap<String, String>>,
body: Value,
) -> Result<Option<Value>> {
let params: HashMap<String, String> = params.unwrap_or(HashMap::new());
let res = self
.http_client
.get(format!("{}/xrpc/{}", self.host, nsid))
.query(¶ms)
.json(&body)
.send()?
.error_for_status()?;
Ok(res.json()?)
}
}
|