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
use super::{
jwt::{self, Algorithm, Header, Key},
TokenResponse,
};
use crate::{
error::{self, Error},
token::{RequestReason, Token, TokenOrRequest, TokenProvider},
token_cache::CachedTokenProvider,
};
const GRANT_TYPE: &str = "urn:ietf:params:oauth:grant-type:jwt-bearer";
#[derive(serde::Deserialize, Debug, Clone)]
pub struct ServiceAccountInfo {
pub private_key: String,
pub client_email: String,
pub token_uri: String,
}
impl ServiceAccountInfo {
pub fn deserialize<T>(key_data: T) -> Result<Self, Error>
where
T: AsRef<[u8]>,
{
let slice = key_data.as_ref();
let account_info: Self = serde_json::from_slice(slice)?;
Ok(account_info)
}
}
pub type ServiceAccountProvider = CachedTokenProvider<ServiceAccountProviderInner>;
impl ServiceAccountProvider {
pub fn new(info: ServiceAccountInfo) -> Result<Self, Error> {
Ok(CachedTokenProvider::wrap(ServiceAccountProviderInner::new(
info,
)?))
}
pub fn get_account_info(&self) -> &ServiceAccountInfo {
&self.inner().info
}
}
pub struct ServiceAccountProviderInner {
info: ServiceAccountInfo,
priv_key: Vec<u8>,
}
impl ServiceAccountProviderInner {
pub fn new(info: ServiceAccountInfo) -> Result<Self, Error> {
let key_string = info
.private_key
.split("-----")
.nth(2)
.ok_or(Error::InvalidKeyFormat)?;
let key_string = key_string.split_whitespace().fold(
String::with_capacity(key_string.len()),
|mut s, line| {
s.push_str(line);
s
},
);
let key_bytes = base64::decode_config(key_string.as_bytes(), base64::STANDARD)?;
Ok(Self {
info,
priv_key: key_bytes,
})
}
pub fn get_account_info(&self) -> &ServiceAccountInfo {
&self.info
}
}
impl TokenProvider for ServiceAccountProviderInner {
fn get_token_with_subject<'a, S, I, T>(
&self,
subject: Option<T>,
scopes: I,
) -> Result<TokenOrRequest, Error>
where
S: AsRef<str> + 'a,
I: IntoIterator<Item = &'a S>,
T: Into<String>,
{
let scopes = scopes
.into_iter()
.map(|s| s.as_ref())
.collect::<Vec<_>>()
.join(" ");
let issued_at = std::time::SystemTime::now()
.duration_since(std::time::SystemTime::UNIX_EPOCH)?
.as_secs() as i64;
let claims = jwt::Claims {
issuer: self.info.client_email.clone(),
scope: scopes,
audience: self.info.token_uri.clone(),
expiration: issued_at + 3600 - 5, issued_at,
subject: subject.map(|s| s.into()),
};
let assertion = jwt::encode(
&Header::new(Algorithm::RS256),
&claims,
Key::Pkcs8(&self.priv_key),
)?;
let body = url::form_urlencoded::Serializer::new(String::new())
.append_pair("grant_type", GRANT_TYPE)
.append_pair("assertion", &assertion)
.finish();
let body = Vec::from(body);
let request = http::Request::builder()
.method("POST")
.uri(&self.info.token_uri)
.header(
http::header::CONTENT_TYPE,
"application/x-www-form-urlencoded",
)
.header(http::header::CONTENT_LENGTH, body.len())
.body(body)?;
Ok(TokenOrRequest::Request {
reason: RequestReason::ScopesChanged,
request,
scope_hash: 0,
})
}
fn parse_token_response<S>(
&self,
_hash: u64,
response: http::Response<S>,
) -> Result<Token, Error>
where
S: AsRef<[u8]>,
{
let (parts, body) = response.into_parts();
if !parts.status.is_success() {
let body_bytes = body.as_ref();
if parts
.headers
.get(http::header::CONTENT_TYPE)
.and_then(|ct| ct.to_str().ok())
== Some("application/json; charset=utf-8")
{
if let Ok(auth_error) = serde_json::from_slice::<error::AuthError>(body_bytes) {
return Err(Error::Auth(auth_error));
}
}
return Err(Error::HttpStatus(parts.status));
}
let token_res: TokenResponse = serde_json::from_slice(body.as_ref())?;
let token: Token = token_res.into();
Ok(token)
}
}