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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
#![warn(
missing_docs,
rustdoc::missing_crate_level_docs,
missing_debug_implementations,
rust_2018_idioms,
unreachable_pub
)]
use std::fmt;
use std::time::SystemTime;
pub mod sign;
mod date_time;
#[cfg(feature = "sign-eventstream")]
pub mod event_stream;
#[cfg(feature = "sign-http")]
pub mod http_request;
#[non_exhaustive]
pub struct SigningParams<'a, S> {
pub(crate) access_key: &'a str,
pub(crate) secret_key: &'a str,
pub(crate) security_token: Option<&'a str>,
pub(crate) region: &'a str,
pub(crate) service_name: &'a str,
pub(crate) time: SystemTime,
pub(crate) settings: S,
}
impl<'a, S: fmt::Debug> fmt::Debug for SigningParams<'a, S> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("SigningParams")
.field("access_key", &"** redacted **")
.field("secret_key", &"** redacted **")
.field("security_token", &"** redacted **")
.field("region", &self.region)
.field("service_name", &self.service_name)
.field("time", &self.time)
.field("settings", &self.settings)
.finish()
}
}
impl<'a, S: Default> SigningParams<'a, S> {
pub fn builder() -> signing_params::Builder<'a, S> {
Default::default()
}
}
pub mod signing_params {
use super::SigningParams;
use std::error::Error;
use std::fmt;
use std::time::SystemTime;
#[derive(Debug)]
pub struct BuildError {
reason: &'static str,
}
impl BuildError {
fn new(reason: &'static str) -> Self {
Self { reason }
}
}
impl fmt::Display for BuildError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.reason)
}
}
impl Error for BuildError {}
#[derive(Debug, Default)]
pub struct Builder<'a, S> {
access_key: Option<&'a str>,
secret_key: Option<&'a str>,
security_token: Option<&'a str>,
region: Option<&'a str>,
service_name: Option<&'a str>,
time: Option<SystemTime>,
settings: Option<S>,
}
impl<'a, S> Builder<'a, S> {
pub fn access_key(mut self, access_key: &'a str) -> Self {
self.access_key = Some(access_key);
self
}
pub fn set_access_key(&mut self, access_key: Option<&'a str>) {
self.access_key = access_key;
}
pub fn secret_key(mut self, secret_key: &'a str) -> Self {
self.secret_key = Some(secret_key);
self
}
pub fn set_secret_key(&mut self, secret_key: Option<&'a str>) {
self.secret_key = secret_key;
}
pub fn security_token(mut self, security_token: &'a str) -> Self {
self.security_token = Some(security_token);
self
}
pub fn set_security_token(&mut self, security_token: Option<&'a str>) {
self.security_token = security_token;
}
pub fn region(mut self, region: &'a str) -> Self {
self.region = Some(region);
self
}
pub fn set_region(&mut self, region: Option<&'a str>) {
self.region = region;
}
pub fn service_name(mut self, service_name: &'a str) -> Self {
self.service_name = Some(service_name);
self
}
pub fn set_service_name(&mut self, service_name: Option<&'a str>) {
self.service_name = service_name;
}
pub fn time(mut self, time: SystemTime) -> Self {
self.time = Some(time);
self
}
pub fn set_time(&mut self, time: Option<SystemTime>) {
self.time = time;
}
pub fn settings(mut self, settings: S) -> Self {
self.settings = Some(settings);
self
}
pub fn set_settings(&mut self, settings: Option<S>) {
self.settings = settings;
}
pub fn build(self) -> Result<SigningParams<'a, S>, BuildError> {
Ok(SigningParams {
access_key: self
.access_key
.ok_or_else(|| BuildError::new("access key is required"))?,
secret_key: self
.secret_key
.ok_or_else(|| BuildError::new("secret key is required"))?,
security_token: self.security_token,
region: self
.region
.ok_or_else(|| BuildError::new("region is required"))?,
service_name: self
.service_name
.ok_or_else(|| BuildError::new("service name is required"))?,
time: self
.time
.ok_or_else(|| BuildError::new("time is required"))?,
settings: self
.settings
.ok_or_else(|| BuildError::new("settings are required"))?,
})
}
}
}
#[derive(Debug)]
pub struct SigningOutput<T> {
output: T,
signature: String,
}
impl<T> SigningOutput<T> {
pub fn new(output: T, signature: String) -> Self {
Self { output, signature }
}
pub fn output(&self) -> &T {
&self.output
}
pub fn signature(&self) -> &str {
&self.signature
}
pub fn into_parts(self) -> (T, String) {
(self.output, self.signature)
}
}