forked from github/copilot-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_token.rs
More file actions
378 lines (340 loc) · 11.3 KB
/
Copy pathgithub_token.rs
File metadata and controls
378 lines (340 loc) · 11.3 KB
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
//! Session-scoped GitHub token provider callbacks.
use std::collections::HashMap;
use std::future::Future;
use std::sync::{Arc, OnceLock, Weak};
use async_trait::async_trait;
use parking_lot::Mutex;
use serde_json::Value;
use crate::generated::api_types::{
GitHubTokenAcquireReason, GitHubTokenAcquireRequest, GitHubTokenAcquireResult,
GitHubTokenAcquireResultCancelled, GitHubTokenAcquireResultToken,
};
use crate::{Client, ClientInner, JsonRpcError, JsonRpcRequest, JsonRpcResponse, error_codes};
/// Why the runtime is requesting a GitHub token.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum GitHubTokenRequestReason {
/// The session needs its initial token.
Initial,
/// The session needs a refreshed token.
Refresh,
}
/// Context supplied when the runtime needs a GitHub token for a session.
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct GitHubTokenProviderArgs {
/// Effective GitHub host for which a token is required.
pub host: String,
/// Session receiving the token, when the runtime has assigned its ID.
pub session_id: Option<crate::SessionId>,
/// Whether this is the initial token acquisition or a refresh.
pub reason: GitHubTokenRequestReason,
}
/// A GitHub access token returned by a session token provider.
///
/// `expires_in_seconds` is the positive remaining lifetime when the callback
/// completes. Production GitHub tokens typically last eight hours.
pub struct GitHubToken {
access_token: String,
expires_in_seconds: i64,
token_type: Option<String>,
}
impl GitHubToken {
/// Construct a token response with its remaining lifetime in seconds.
pub fn new(access_token: impl Into<String>, expires_in_seconds: i64) -> Self {
Self {
access_token: access_token.into(),
expires_in_seconds,
token_type: None,
}
}
/// Override the OAuth token type. The runtime defaults to `bearer` when unset.
pub fn with_token_type(mut self, token_type: impl Into<String>) -> Self {
self.token_type = Some(token_type.into());
self
}
fn into_wire(self) -> GitHubTokenAcquireResultToken {
GitHubTokenAcquireResultToken {
access_token: self.access_token,
expires_in: self.expires_in_seconds,
kind: Default::default(),
token_type: self.token_type,
}
}
}
impl std::fmt::Debug for GitHubToken {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("GitHubToken")
.field("access_token", &"<redacted>")
.field("expires_in_seconds", &self.expires_in_seconds)
.field("token_type", &self.token_type)
.finish()
}
}
/// Result of acquiring a session-scoped GitHub token.
pub enum GitHubTokenProviderResult {
/// A token was acquired.
Token(GitHubToken),
/// The host cancelled acquisition.
Cancelled,
}
impl std::fmt::Debug for GitHubTokenProviderResult {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
Self::Token(token) => f.debug_tuple("Token").field(token).finish(),
Self::Cancelled => f.write_str("Cancelled"),
}
}
}
/// Async callback used to acquire GitHub tokens for one session.
#[async_trait]
pub trait GitHubTokenProvider: Send + Sync {
/// Acquire a token or explicitly cancel the request.
///
/// Initial cancellation, errors, and invalid token responses reject session
/// creation or resume instead of falling back to ambient authentication.
async fn get_token(
&self,
args: GitHubTokenProviderArgs,
) -> Result<GitHubTokenProviderResult, crate::Error>;
}
#[async_trait]
impl<F, Fut> GitHubTokenProvider for F
where
F: Fn(GitHubTokenProviderArgs) -> Fut + Send + Sync,
Fut: Future<Output = Result<GitHubTokenProviderResult, crate::Error>> + Send,
{
async fn get_token(
&self,
args: GitHubTokenProviderArgs,
) -> Result<GitHubTokenProviderResult, crate::Error> {
(self)(args).await
}
}
#[derive(Default)]
struct RegistryState {
providers: HashMap<String, Arc<dyn GitHubTokenProvider>>,
session_owners: HashMap<crate::SessionId, String>,
}
pub(crate) struct GitHubTokenRegistry {
state: Mutex<RegistryState>,
client: OnceLock<Weak<ClientInner>>,
}
impl GitHubTokenRegistry {
pub(crate) fn new() -> Self {
Self {
state: Mutex::new(RegistryState::default()),
client: OnceLock::new(),
}
}
pub(crate) fn set_client(&self, client: Weak<ClientInner>) {
let _ = self.client.set(client);
}
pub(crate) fn register(&self, provider: Arc<dyn GitHubTokenProvider>) -> String {
let registration_id = uuid::Uuid::new_v4().to_string();
self.state
.lock()
.providers
.insert(registration_id.clone(), provider);
registration_id
}
pub(crate) fn claim(&self, registration_id: &str, session_id: crate::SessionId) {
let mut state = self.state.lock();
if let Some(previous) = state
.session_owners
.insert(session_id, registration_id.to_string())
&& previous != registration_id
{
state.providers.remove(&previous);
}
}
pub(crate) fn unregister(&self, registration_id: &str) {
let mut state = self.state.lock();
state.providers.remove(registration_id);
state
.session_owners
.retain(|_, owned| owned != registration_id);
}
pub(crate) fn retire_session(&self, session_id: &crate::SessionId) {
let mut state = self.state.lock();
if let Some(registration_id) = state.session_owners.remove(session_id) {
state.providers.remove(®istration_id);
}
}
pub(crate) fn clear(&self) {
let mut state = self.state.lock();
state.providers.clear();
state.session_owners.clear();
}
pub(crate) async fn dispatch(&self, request: JsonRpcRequest) {
let Some(inner) = self.client.get().and_then(Weak::upgrade) else {
return;
};
let client = Client::from_inner(inner);
let params = request
.params
.clone()
.unwrap_or(Value::Object(serde_json::Map::new()));
let params: GitHubTokenAcquireRequest = match serde_json::from_value(params) {
Ok(params) => params,
Err(error) => {
send_error(
&client,
request.id,
error_codes::INVALID_PARAMS,
&format!("invalid params: {error}"),
)
.await;
return;
}
};
let provider = self
.state
.lock()
.providers
.get(¶ms.registration_id)
.cloned();
let Some(provider) = provider else {
send_error(
&client,
request.id,
error_codes::INTERNAL_ERROR,
"unknown GitHub token provider registration",
)
.await;
return;
};
let reason = match params.reason {
GitHubTokenAcquireReason::Initial => GitHubTokenRequestReason::Initial,
GitHubTokenAcquireReason::Refresh => GitHubTokenRequestReason::Refresh,
GitHubTokenAcquireReason::Unknown => {
send_error(
&client,
request.id,
error_codes::INVALID_PARAMS,
"unknown GitHub token acquisition reason",
)
.await;
return;
}
};
match provider
.get_token(GitHubTokenProviderArgs {
host: params.host,
session_id: params.session_id,
reason,
})
.await
{
Ok(GitHubTokenProviderResult::Token(token)) => {
respond(
&client,
request.id,
GitHubTokenAcquireResult::Token(token.into_wire()),
)
.await;
}
Ok(GitHubTokenProviderResult::Cancelled) => {
respond(
&client,
request.id,
GitHubTokenAcquireResult::Cancelled(GitHubTokenAcquireResultCancelled {
kind: Default::default(),
}),
)
.await;
}
Err(error) => {
send_error(
&client,
request.id,
error_codes::INTERNAL_ERROR,
&format!("GitHub token provider failed: {error}"),
)
.await;
}
}
}
}
pub(crate) struct GitHubTokenRegistration {
registry: Arc<GitHubTokenRegistry>,
id: String,
}
impl GitHubTokenRegistration {
pub(crate) fn new(registry: Arc<GitHubTokenRegistry>, id: String) -> Self {
Self { registry, id }
}
pub(crate) fn id(&self) -> &str {
&self.id
}
pub(crate) fn claim(&self, session_id: crate::SessionId) {
self.registry.claim(&self.id, session_id);
}
}
impl Drop for GitHubTokenRegistration {
fn drop(&mut self) {
self.registry.unregister(&self.id);
}
}
async fn respond(client: &Client, request_id: u64, result: GitHubTokenAcquireResult) {
match serde_json::to_value(result) {
Ok(result) => {
let _ = client
.send_response(&JsonRpcResponse {
jsonrpc: "2.0".to_string(),
id: request_id,
result: Some(result),
error: None,
})
.await;
}
Err(_) => {
send_error(
client,
request_id,
error_codes::INTERNAL_ERROR,
"serialization failure",
)
.await;
}
}
}
async fn send_error(client: &Client, request_id: u64, code: i32, message: &str) {
let _ = client
.send_response(&JsonRpcResponse {
jsonrpc: "2.0".to_string(),
id: request_id,
result: None,
error: Some(JsonRpcError {
code,
message: message.to_string(),
data: None,
}),
})
.await;
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn token_debug_is_redacted() {
let token = GitHubToken::new("do-not-print", 28_800);
assert!(!format!("{token:?}").contains("do-not-print"));
}
#[test]
fn retiring_session_removes_its_provider() {
let registry = GitHubTokenRegistry::new();
let provider = Arc::new(|_args: GitHubTokenProviderArgs| async {
Ok(GitHubTokenProviderResult::Cancelled)
});
let registration_id = registry.register(provider);
let session_id = crate::SessionId::from("session-1");
registry.claim(®istration_id, session_id.clone());
registry.retire_session(&session_id);
assert!(
!registry
.state
.lock()
.providers
.contains_key(®istration_id)
);
}
}