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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
use error::{Error, ErrorObject, RequestError};
use reqwest;
use reqwest::RequestBuilder;
use reqwest::header::{
HeaderMap, HeaderName, HeaderValue, AUTHORIZATION,
};
use serde;
use serde_json as json;
use std::io::Read;
#[derive(Clone, Default)]
pub struct Params {
pub stripe_account: Option<String>,
pub client_id: Option<String>,
}
#[derive(Clone)]
pub struct Client {
client: reqwest::Client,
secret_key: String,
params: Params,
}
impl Client {
fn url(path: &str) -> String {
format!("https://api.stripe.com/v1/{}", &path[1..])
}
pub fn new<Str: Into<String>>(secret_key: Str) -> Client {
let client = reqwest::Client::new();
Client {
client: client,
secret_key: secret_key.into(),
params: Params::default(),
}
}
pub fn with(&self, params: Params) -> Client {
let mut client = self.clone();
client.params = params;
client
}
pub fn set_stripe_account<Str: Into<String>>(&mut self, account_id: Str) {
self.params.stripe_account = Some(account_id.into());
}
pub fn get<T: serde::de::DeserializeOwned>(&self, path: &str) -> Result<T, Error> {
let url = Client::url(path);
let request = self.client.get(&url).headers(self.headers());
send(request)
}
pub fn post<T: serde::de::DeserializeOwned, P: serde::Serialize>(
&self,
path: &str,
params: P,
) -> Result<T, Error> {
let url = Client::url(path);
let request = self.client.post(&url).headers(self.headers()).form(¶ms);
send(request)
}
pub fn post_empty<T: serde::de::DeserializeOwned>(&self, path: &str) -> Result<T, Error> {
let url = Client::url(path);
let request = self.client.post(&url).headers(self.headers());
send(request)
}
pub fn delete<T: serde::de::DeserializeOwned>(&self, path: &str) -> Result<T, Error> {
let url = Client::url(path);
let request = self.client.delete(&url).headers(self.headers());
send(request)
}
fn headers(&self) -> HeaderMap {
let mut headers = HeaderMap::new();
headers.insert(
AUTHORIZATION,
HeaderValue::from_str(&format!("Bearer {}", self.secret_key)).unwrap(),
);
if let Some(ref account) = self.params.stripe_account {
headers.insert(
HeaderName::from_static("stripe-account"),
HeaderValue::from_str(account).unwrap(),
);
}
if let Some(ref client_id) = self.params.client_id {
headers.insert(
HeaderName::from_static("client-id"),
HeaderValue::from_str(client_id).unwrap(),
);
}
headers
}
}
fn send<T: serde::de::DeserializeOwned>(request: RequestBuilder) -> Result<T, Error> {
let mut response = request.send()?;
let mut body = String::with_capacity(4096);
response.read_to_string(&mut body)?;
let status = response.status();
if !status.is_success() {
let mut err = json::from_str(&body).unwrap_or_else(|err| {
let mut req = ErrorObject {
error: RequestError::default(),
};
req.error.message = Some(format!("failed to deserialize error: {}", err));
req
});
err.error.http_status = status.as_u16();
return Err(Error::from(err.error));
}
json::from_str(&body).map_err(|err| Error::from(err))
}