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
//! OAuth request storage abstraction.
//!
//! Storage trait for OAuth request CRUD operations supporting multiple
//! backends with state tracking and expiration handling.
use Result;
use crateOAuthRequest;
/// Trait for implementing OAuth request CRUD operations across different storage backends.
///
/// This trait provides an abstraction layer for storing and retrieving OAuth authorization request
/// state, allowing different implementations for various storage systems such as databases, file systems,
/// in-memory stores, or cloud storage services.
///
/// All methods return `anyhow::Result` to allow implementations to use their own error types
/// while providing a consistent interface for callers. Implementations should handle their
/// specific error conditions and convert them to appropriate error messages.
///
/// ## Thread Safety
///
/// This trait requires implementations to be thread-safe (`Send + Sync`), meaning:
/// - `Send`: The storage implementation can be moved between threads
/// - `Sync`: The storage implementation can be safely accessed from multiple threads simultaneously
///
/// This is essential for async applications where the storage might be accessed from different
/// async tasks running on different threads. Implementations should use appropriate
/// synchronization primitives (like `Arc<Mutex<>>`, `RwLock`, or database connection pools)
/// to ensure thread safety.
///
/// ## OAuth Request Lifecycle
///
/// OAuth requests have a natural lifecycle with expiration times. Implementations should:
/// - Store requests with their creation and expiration timestamps
/// - Support efficient lookup by OAuth state parameter
/// - Provide cleanup mechanisms for expired requests
/// - Handle concurrent access safely
///
/// ## Usage
///
/// Implementors of this trait can provide storage for OAuth requests in any backend:
///
/// ```rust,ignore
/// use atproto_oauth::storage::OAuthRequestStorage;
/// use atproto_oauth::workflow::OAuthRequest;
/// use anyhow::Result;
/// use std::sync::Arc;
/// use tokio::sync::RwLock;
/// use std::collections::HashMap;
/// use chrono::{DateTime, Utc};
///
/// // Thread-safe in-memory storage using Arc<RwLock<>>
/// #[derive(Clone)]
/// struct InMemoryOAuthStorage {
/// requests: Arc<RwLock<HashMap<String, OAuthRequest>>>, // state -> request mapping
/// }
///
/// #[async_trait::async_trait]
/// impl OAuthRequestStorage for InMemoryOAuthStorage {
/// async fn get_oauth_request_by_state(&self, state: &str) -> Result<Option<OAuthRequest>> {
/// let requests = self.requests.read().await;
/// Ok(requests.get(state).cloned())
/// }
///
/// async fn insert_oauth_request(&self, request: OAuthRequest) -> Result<()> {
/// let mut requests = self.requests.write().await;
/// requests.insert(request.oauth_state.clone(), request);
/// Ok(())
/// }
///
/// async fn delete_oauth_request_by_state(&self, state: &str) -> Result<()> {
/// let mut requests = self.requests.write().await;
/// requests.remove(state);
/// Ok(())
/// }
///
/// async fn clear_expired_oauth_requests(&self) -> Result<u64> {
/// let mut requests = self.requests.write().await;
/// let now = Utc::now();
/// let initial_count = requests.len();
///
/// requests.retain(|_, req| req.expires_at > now);
/// let final_count = requests.len();
///
/// Ok((initial_count - final_count) as u64)
/// }
/// }
///
/// // Database storage with thread-safe connection pool
/// struct DatabaseOAuthStorage {
/// pool: sqlx::Pool<sqlx::Postgres>, // Thread-safe connection pool
/// }
///
/// #[async_trait::async_trait]
/// impl OAuthRequestStorage for DatabaseOAuthStorage {
/// async fn get_oauth_request_by_state(&self, state: &str) -> Result<Option<OAuthRequest>> {
/// let row: Option<_> = sqlx::query_as!(
/// OAuthRequestRow,
/// "SELECT oauth_state, issuer, did, nonce, pkce_verifier, signing_public_key,
/// dpop_private_key, created_at, expires_at
/// FROM oauth_requests WHERE oauth_state = $1 AND expires_at > NOW()"
/// )
/// .bind(state)
/// .fetch_optional(&self.pool)
/// .await?;
///
/// Ok(row.map(|r| r.into_oauth_request()))
/// }
///
/// async fn insert_oauth_request(&self, request: OAuthRequest) -> Result<()> {
/// sqlx::query!(
/// "INSERT INTO oauth_requests
/// (oauth_state, issuer, authorization_server, nonce, pkce_verifier, signing_public_key,
/// dpop_private_key, created_at, expires_at)
/// VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9)",
/// request.oauth_state,
/// request.issuer,
/// request.authorization_server,
/// request.nonce,
/// request.pkce_verifier,
/// request.signing_public_key,
/// request.dpop_private_key,
/// request.created_at,
/// request.expires_at
/// )
/// .execute(&self.pool)
/// .await?;
/// Ok(())
/// }
///
/// async fn delete_oauth_request_by_state(&self, state: &str) -> Result<()> {
/// sqlx::query!("DELETE FROM oauth_requests WHERE oauth_state = $1", state)
/// .execute(&self.pool)
/// .await?;
/// Ok(())
/// }
///
/// async fn clear_expired_oauth_requests(&self) -> Result<u64> {
/// let result = sqlx::query!("DELETE FROM oauth_requests WHERE expires_at <= NOW()")
/// .execute(&self.pool)
/// .await?;
/// Ok(result.rows_affected())
/// }
/// }
/// ```