projectx-client 4.0.0

An async, provider-native Rust client for the ProjectX Gateway API
Documentation
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
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
// SPDX-FileCopyrightText: 2026 Kevin Monaghan
// SPDX-License-Identifier: MIT-0

//! Internal bearer-token storage.

use std::{fmt, sync::Arc};

use parking_lot::Mutex;
use secrecy::{ExposeSecret, SecretString};

/// An owned token plus the revision it was read from.
///
/// Callers may hold this snapshot across network I/O. A rotated token is only
/// committed when the revision still matches, so an older response cannot
/// replace a newer session.
pub(crate) struct TokenSnapshot {
    token: SecretString,
    revision: u128,
}

/// Opaque identity for one installed bearer-token revision.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) struct TokenRevision(u128);

impl TokenSnapshot {
    pub(crate) fn expose(&self) -> &str {
        self.token.expose_secret()
    }

    pub(crate) const fn revision(&self) -> TokenRevision {
        TokenRevision(self.revision)
    }
}

impl fmt::Debug for TokenSnapshot {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct("TokenSnapshot")
            .field("token", &"[REDACTED]")
            .field("revision", &self.revision)
            .finish()
    }
}

#[derive(Debug, Default)]
struct TokenState {
    token: Option<SecretString>,
    revision: u128,
    authentications_in_flight: u128,
    pending_update: Option<PendingUpdate>,
}

#[derive(Debug)]
struct PendingRotation {
    basis_revision: u128,
    token: SecretString,
}

#[derive(Debug)]
enum PendingUpdate {
    Invalidate { basis_revision: u128 },
    Rotate(PendingRotation),
}

#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub(crate) enum UpdateOutcome {
    Applied,
    Deferred,
    Stale,
}

/// Cancellation-safe ownership of one authentication attempt.
///
/// Full authentication has precedence over token validation. While any
/// attempt is in flight, validation responses cannot rotate the current token.
pub(crate) struct AuthenticationAttempt {
    store: Arc<TokenStore>,
    basis_revision: u128,
    active: bool,
}

impl AuthenticationAttempt {
    /// Commits the token if no other authentication completed first.
    ///
    /// Concurrent successful authentications use first-completion-wins
    /// semantics. Every caller still observes success, but a delayed response
    /// can never replace a token already installed by another attempt.
    pub(crate) fn commit(mut self, token: String) -> bool {
        let mut state = self.store.state.lock();
        let committed = state.revision == self.basis_revision;
        if committed {
            state.token = Some(SecretString::from(token));
            state.revision = state.revision.wrapping_add(1);
            state.pending_update = None;
        }
        state.authentications_in_flight = state.authentications_in_flight.saturating_sub(1);
        apply_pending_update(&mut state);
        self.active = false;
        committed
    }
}

impl fmt::Debug for AuthenticationAttempt {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        formatter
            .debug_struct("AuthenticationAttempt")
            .field("basis_revision", &self.basis_revision)
            .field("active", &self.active)
            .finish_non_exhaustive()
    }
}

impl Drop for AuthenticationAttempt {
    fn drop(&mut self) {
        if self.active {
            let mut state = self.store.state.lock();
            state.authentications_in_flight = state.authentications_in_flight.saturating_sub(1);
            apply_pending_update(&mut state);
        }
    }
}

#[derive(Debug, Default)]
pub(crate) struct TokenStore {
    state: Mutex<TokenState>,
}

impl TokenStore {
    /// Registers a full authentication attempt before its network request.
    pub(crate) fn begin_authentication(self: &Arc<Self>) -> AuthenticationAttempt {
        let basis_revision = {
            let mut state = self.state.lock();
            state.authentications_in_flight = state.authentications_in_flight.saturating_add(1);
            state.revision
        };
        AuthenticationAttempt {
            store: Arc::clone(self),
            basis_revision,
            active: true,
        }
    }

    /// Returns an owned secret snapshot for a network request.
    pub(crate) fn versioned_snapshot(&self) -> Option<TokenSnapshot> {
        let state = self.state.lock();
        if has_pending_update(&state) {
            return None;
        }
        state.token.as_ref().map(|token| TokenSnapshot {
            token: SecretString::from(token.expose_secret().to_owned()),
            revision: state.revision,
        })
    }

    /// Returns an owned token for real-time connection setup.
    pub(crate) fn snapshot(&self) -> Option<String> {
        let state = self.state.lock();
        if has_pending_update(&state) {
            return None;
        }
        state
            .token
            .as_ref()
            .map(|token| token.expose_secret().to_owned())
    }

    /// Applies validation rotation only to the session that was validated.
    pub(crate) fn rotate_if_current(&self, basis: &TokenSnapshot, token: String) -> UpdateOutcome {
        let mut state = self.state.lock();
        if state.revision != basis.revision {
            return UpdateOutcome::Stale;
        }
        if state.authentications_in_flight != 0 {
            if state.pending_update.is_none() {
                state.pending_update = Some(PendingUpdate::Rotate(PendingRotation {
                    basis_revision: basis.revision,
                    token: SecretString::from(token),
                }));
                return UpdateOutcome::Deferred;
            }
            return UpdateOutcome::Stale;
        }
        state.token = Some(SecretString::from(token));
        state.revision = state.revision.wrapping_add(1);
        UpdateOutcome::Applied
    }

    /// Invalidates only the session represented by `basis`.
    ///
    /// A concurrent full authentication takes precedence. If all such attempts
    /// fail or are cancelled, the invalidation is applied when the last attempt
    /// releases its guard.
    pub(crate) fn invalidate_if_current(&self, basis: &TokenSnapshot) -> UpdateOutcome {
        self.invalidate_revision_if_current(basis.revision())
    }

    /// Invalidates only the session identified by an opaque revision.
    pub(crate) fn invalidate_revision_if_current(&self, basis: TokenRevision) -> UpdateOutcome {
        let mut state = self.state.lock();
        if state.revision != basis.0 {
            return UpdateOutcome::Stale;
        }
        if state.authentications_in_flight == 0 {
            state.token = None;
            state.revision = state.revision.wrapping_add(1);
            state.pending_update = None;
            UpdateOutcome::Applied
        } else if state.pending_update.is_none() {
            state.pending_update = Some(PendingUpdate::Invalidate {
                basis_revision: basis.0,
            });
            UpdateOutcome::Deferred
        } else {
            UpdateOutcome::Stale
        }
    }

    pub(crate) fn is_authenticated(&self) -> bool {
        let state = self.state.lock();
        state.token.is_some() && !has_pending_update(&state)
    }

    pub(crate) fn has_viable_session_or_authentication(&self) -> bool {
        let state = self.state.lock();
        state.authentications_in_flight != 0
            || (state.token.is_some() && !has_pending_update(&state))
    }
}

fn has_pending_update(state: &TokenState) -> bool {
    state.pending_update.as_ref().is_some_and(|update| {
        let basis_revision = match update {
            PendingUpdate::Invalidate { basis_revision } => *basis_revision,
            PendingUpdate::Rotate(rotation) => rotation.basis_revision,
        };
        basis_revision == state.revision
    })
}

fn apply_pending_update(state: &mut TokenState) {
    if state.authentications_in_flight != 0 {
        return;
    }
    let Some(update) = state.pending_update.take() else {
        return;
    };
    match update {
        PendingUpdate::Invalidate { basis_revision } if basis_revision == state.revision => {
            state.token = None;
            state.revision = state.revision.wrapping_add(1);
        }
        PendingUpdate::Rotate(rotation) if rotation.basis_revision == state.revision => {
            state.token = Some(rotation.token);
            state.revision = state.revision.wrapping_add(1);
        }
        PendingUpdate::Invalidate { .. } | PendingUpdate::Rotate(_) => {}
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn delayed_authentication_cannot_replace_first_completed_authentication() {
        let store = Arc::new(TokenStore::default());
        let delayed = store.begin_authentication();
        let completed_first = store.begin_authentication();

        assert!(completed_first.commit("newer-token".to_owned()));
        assert!(!delayed.commit("stale-token".to_owned()));
        assert_eq!(store.snapshot().as_deref(), Some("newer-token"));
    }

    #[test]
    fn validation_cannot_replace_a_new_authentication() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let validation = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        assert!(
            store
                .begin_authentication()
                .commit("reauthenticated-token".to_owned())
        );

        assert_eq!(
            store.rotate_if_current(&validation, "stale-rotation".to_owned()),
            UpdateOutcome::Stale
        );
        assert_eq!(store.snapshot().as_deref(), Some("reauthenticated-token"));
    }

    #[test]
    fn first_validation_completion_wins_for_one_revision() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let delayed = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        let completed_first = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));

        assert_eq!(
            store.rotate_if_current(&completed_first, "newer-token".to_owned()),
            UpdateOutcome::Applied
        );
        assert_eq!(
            store.rotate_if_current(&delayed, "stale-token".to_owned()),
            UpdateOutcome::Stale
        );
        assert_eq!(store.snapshot().as_deref(), Some("newer-token"));
    }

    #[test]
    fn cancelled_authentication_releases_validation_fence() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let validation = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        let cancelled = store.begin_authentication();
        drop(cancelled);

        assert_eq!(
            store.rotate_if_current(&validation, "rotated-token".to_owned()),
            UpdateOutcome::Applied
        );
        assert_eq!(store.snapshot().as_deref(), Some("rotated-token"));
    }

    #[test]
    fn current_session_is_invalidated_immediately_without_authentication_race() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let rejected = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));

        assert_eq!(
            store.invalidate_if_current(&rejected),
            UpdateOutcome::Applied
        );
        assert!(store.snapshot().is_none());
        assert_eq!(store.invalidate_if_current(&rejected), UpdateOutcome::Stale);
    }

    #[test]
    fn stale_invalidation_cannot_clear_a_new_authentication() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let rejected = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        assert!(
            store
                .begin_authentication()
                .commit("reauthenticated-token".to_owned())
        );

        assert_eq!(store.invalidate_if_current(&rejected), UpdateOutcome::Stale);
        assert_eq!(store.snapshot().as_deref(), Some("reauthenticated-token"));
    }

    #[test]
    fn successful_authentication_supersedes_pending_invalidation() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let rejected = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        let reauthentication = store.begin_authentication();

        assert_eq!(
            store.invalidate_if_current(&rejected),
            UpdateOutcome::Deferred
        );
        assert!(store.snapshot().is_none());
        assert!(!store.is_authenticated());
        assert!(reauthentication.commit("reauthenticated-token".to_owned()));
        assert_eq!(store.snapshot().as_deref(), Some("reauthenticated-token"));
    }

    #[test]
    fn pending_invalidation_applies_after_cancelled_authentication() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let rejected = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        let cancelled = store.begin_authentication();

        assert_eq!(
            store.invalidate_if_current(&rejected),
            UpdateOutcome::Deferred
        );
        assert!(store.snapshot().is_none());
        assert!(!store.is_authenticated());
        drop(cancelled);
        assert!(store.snapshot().is_none());
    }

    #[test]
    fn deferred_rotation_applies_after_cancelled_authentication() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let validation = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        let cancelled = store.begin_authentication();

        assert_eq!(
            store.rotate_if_current(&validation, "rotated-token".to_owned()),
            UpdateOutcome::Deferred
        );
        assert!(store.snapshot().is_none());
        assert!(!store.is_authenticated());
        assert!(store.has_viable_session_or_authentication());
        drop(cancelled);

        assert_eq!(store.snapshot().as_deref(), Some("rotated-token"));
        assert!(store.is_authenticated());
    }

    #[test]
    fn first_deferred_rotation_cannot_be_overwritten_by_a_later_invalidation() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let rotation = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        let rejection = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        let cancelled = store.begin_authentication();

        assert_eq!(
            store.rotate_if_current(&rotation, "rotated-token".to_owned()),
            UpdateOutcome::Deferred
        );
        assert_eq!(
            store.invalidate_if_current(&rejection),
            UpdateOutcome::Stale
        );
        drop(cancelled);

        assert_eq!(store.snapshot().as_deref(), Some("rotated-token"));
    }

    #[test]
    fn first_deferred_invalidation_cannot_be_overwritten_by_a_later_rotation() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let rejection = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        let rotation = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        let cancelled = store.begin_authentication();

        assert_eq!(
            store.invalidate_if_current(&rejection),
            UpdateOutcome::Deferred
        );
        assert_eq!(
            store.rotate_if_current(&rotation, "rotated-token".to_owned()),
            UpdateOutcome::Stale
        );
        drop(cancelled);

        assert!(store.snapshot().is_none());
    }

    #[test]
    fn successful_authentication_supersedes_deferred_rotation() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("initial-token".to_owned())
        );
        let validation = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));
        let reauthentication = store.begin_authentication();

        assert_eq!(
            store.rotate_if_current(&validation, "rotated-token".to_owned()),
            UpdateOutcome::Deferred
        );
        assert!(reauthentication.commit("reauthenticated-token".to_owned()));

        assert_eq!(store.snapshot().as_deref(), Some("reauthenticated-token"));
    }

    #[test]
    fn debug_output_redacts_stored_and_snapshotted_tokens() {
        let store = Arc::new(TokenStore::default());
        assert!(
            store
                .begin_authentication()
                .commit("synthetic-secret-token".to_owned())
        );
        let snapshot = store
            .versioned_snapshot()
            .unwrap_or_else(|| panic!("fixture token must exist"));

        assert!(!format!("{store:?}").contains("synthetic-secret-token"));
        assert!(!format!("{snapshot:?}").contains("synthetic-secret-token"));

        let authentication = store.begin_authentication();
        assert_eq!(
            store.rotate_if_current(&snapshot, "synthetic-deferred-secret".to_owned()),
            UpdateOutcome::Deferred
        );
        assert!(!format!("{store:?}").contains("synthetic-deferred-secret"));
        drop(authentication);
    }
}