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
#![doc = "This module contains the Google authenticator that can access Google services via OAuth2"]
use serde::Deserialize;
use std::time::{Duration, Instant};
const GOOGLE_AUTH_URL: &str = "https://accounts.google.com/o/oauth2/token";
#[allow(clippy::doc_markdown)]
#[derive(Clone, Debug)]
pub struct AccessToken {
pub token: String,
pub expires: Instant,
}
#[derive(Deserialize)]
struct AccessTokenResponce {
access_token: String,
expires_in: u64,
}
#[allow(clippy::doc_markdown)]
#[derive(Clone, Debug)]
pub struct Google {
pub client_id: String,
pub client_secret: String,
pub refresh_token: String,
access_token: Option<AccessToken>,
}
#[allow(missing_docs)] #[derive(thiserror::Error, Debug)]
pub enum GoogleOAuth2Error {
#[error("Error contacting Google servers for authentication")]
Post(#[source] reqwest::Error),
#[error("Can't get a new OAuth2 refresh token from Google: {0}")]
RefreshToken(String),
#[error("Can't get a new OAuth2 access token from Google: {0}")]
AccessToken(String),
}
impl Google {
#[allow(clippy::doc_markdown)]
#[must_use]
pub fn new(client_id: String, client_secret: String, refresh_token: String) -> Self {
Self {
client_id,
client_secret,
refresh_token,
access_token: None,
}
}
pub async fn get_new_access_token(&mut self) -> Result<&AccessToken, GoogleOAuth2Error> {
let AccessTokenResponce {
access_token,
expires_in,
} = generate_access_token(&self.client_id, &self.client_secret, &self.refresh_token).await?;
tracing::debug!("New access token expires in {expires_in}s");
self.access_token = Some(AccessToken {
token: access_token,
expires: Instant::now() + Duration::from_secs(expires_in),
});
Ok(self
.access_token
.as_ref()
.expect("Token should have just been validated and thus be present and valid"))
}
#[tracing::instrument(name = "google_oauth2_access_token")]
pub async fn access_token(&mut self) -> Result<&str, GoogleOAuth2Error> {
if {
let access_token_doesnt_exist = self.access_token.is_none();
if access_token_doesnt_exist {
tracing::trace!("Access token doesn't exist");
}
access_token_doesnt_exist
} || {
let is_expired = self
.access_token
.as_ref()
.and_then(|x| Instant::now().checked_duration_since(x.expires))
.is_some();
if is_expired {
tracing::trace!("Access token has expired");
}
is_expired
} {
self.get_new_access_token().await?;
}
#[allow(clippy::missing_panics_doc)] let access_token = self
.access_token
.as_ref()
.expect("Token should have just been validated and thus be present and valid");
tracing::debug!(
"Access token is still valid for {:?}s",
access_token
.expires
.checked_duration_since(Instant::now())
.map(|dur| dur.as_secs())
);
Ok(&access_token.token)
}
}
impl GoogleOAuth2Error {
pub(crate) fn is_connection_err(&self) -> Option<&(dyn std::error::Error + Send + Sync)> {
#[allow(clippy::match_wildcard_for_single_variants)]
match self {
GoogleOAuth2Error::Post(_) => Some(self),
_ => None,
}
}
}
#[allow(clippy::doc_markdown)]
pub async fn generate_refresh_token(
client_id: &str,
client_secret: &str,
access_code: &str,
) -> Result<String, GoogleOAuth2Error> {
#[derive(Deserialize)]
struct Response {
refresh_token: String,
}
tracing::debug!("Generating a new OAuth2 refresh token from client_id: {client_id:?}, client_secret: {client_secret:?}, and access_code: {access_code:?}");
let body = [
("client_id", client_id),
("client_secret", client_secret),
("code", access_code),
("redirect_uri", "urn:ietf:wg:oauth:2.0:oob"),
("grant_type", "authorization_code"),
];
let resp = reqwest::Client::new()
.post(GOOGLE_AUTH_URL)
.form(&body)
.send()
.await
.map_err(GoogleOAuth2Error::Post)?
.text()
.await
.map_err(GoogleOAuth2Error::Post)?;
tracing::debug!("Got {resp:?} from the Google OAuth2 endpoint");
let Response { refresh_token } =
serde_json::from_str(&resp).map_err(|_| GoogleOAuth2Error::RefreshToken(resp))?;
Ok(refresh_token)
}
async fn generate_access_token(
client_id: &str,
client_secret: &str,
refresh_token: &str,
) -> Result<AccessTokenResponce, GoogleOAuth2Error> {
tracing::debug!("Generating a new OAuth2 access token from client_id: {client_id:?}, client_secret: {client_secret:?}, and refresh_token: {refresh_token:?}");
let body = [
("client_id", client_id),
("client_secret", client_secret),
("refresh_token", refresh_token),
("redirect_uri", "urn:ietf:wg:oauth:2.0:oob"),
("grant_type", "refresh_token"),
];
let resp = reqwest::Client::new()
.post(GOOGLE_AUTH_URL)
.form(&body)
.send()
.await
.map_err(GoogleOAuth2Error::Post)?
.text()
.await
.map_err(GoogleOAuth2Error::Post)?;
tracing::debug!("Got {resp:?} from the Google OAuth2 endpoint");
serde_json::from_str(&resp).map_err(|_| GoogleOAuth2Error::AccessToken(resp))
}