rs-auth-axum 0.1.2

Axum integration for rs-auth.
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
use axum_extra::extract::SignedCookieJar;
use axum_lib::{
    Json,
    extract::{Path, Query, State},
    response::{IntoResponse, Redirect, Response},
};
use rs_auth_core::AuthError;
use rs_auth_core::error::OAuthError;
use rs_auth_core::oauth::{client, github, google, providers};
use rs_auth_core::types::{NewOAuthState, OAuthIntent, PublicUser};
use serde::{Deserialize, Serialize};
use time::OffsetDateTime;
use tracing::{info, warn};

use crate::cookie::set_session_cookie;
use crate::error::ApiError;
use crate::extract::{ClientInfo, CurrentUser};
use crate::state::AuthState;

#[derive(Debug, Deserialize)]
pub struct OAuthCallbackQuery {
    pub code: String,
    pub state: String,
}

#[derive(Debug, Serialize)]
pub struct OAuthCallbackResponse {
    pub user: PublicUser,
}

fn oauth_failure_response<U, S, V, A, O, E>(
    state: &AuthState<U, S, V, A, O, E>,
    provider: &str,
    phase: &str,
    error: AuthError,
) -> Result<Response, ApiError>
where
    U: rs_auth_core::store::UserStore + Send + Sync + 'static,
    S: rs_auth_core::store::SessionStore + Send + Sync + 'static,
    V: rs_auth_core::store::VerificationStore + Send + Sync + 'static,
    A: rs_auth_core::store::AccountStore + Send + Sync + 'static,
    O: rs_auth_core::store::OAuthStateStore + Send + Sync + 'static,
    E: rs_auth_core::email::EmailSender + Send + Sync + 'static,
{
    let failure_class = match &error {
        AuthError::OAuth(oauth_error) => match oauth_error {
            OAuthError::ProviderNotFound { .. } => "provider_not_found",
            OAuthError::UnsupportedProvider { .. } => "unsupported_provider",
            OAuthError::Misconfigured { .. } => "misconfigured",
            OAuthError::InvalidState => "invalid_state",
            OAuthError::ExchangeFailed => "exchange_failed",
            OAuthError::UserInfoFailed => "userinfo_failed",
            OAuthError::UserInfoMalformed => "userinfo_malformed",
            OAuthError::MissingAccessToken => "missing_access_token",
            OAuthError::MissingEmail => "missing_email",
            OAuthError::LinkingDisabled => "linking_disabled",
            OAuthError::AccountNotFound => "account_not_found",
            OAuthError::LastAuthMethod => "last_auth_method",
            OAuthError::AccountAlreadyLinked => "account_already_linked",
            OAuthError::RefreshFailed => "refresh_failed",
            OAuthError::NoRefreshToken => "no_refresh_token",
        },
        AuthError::InvalidToken => "invalid_token",
        AuthError::Store(_) => "store_error",
        AuthError::Internal(_) => "internal_error",
        _ => "auth_error",
    };

    warn!(provider, phase, failure_class, "oauth flow failed");

    if let Some(error_url) = &state.config.oauth.error_redirect {
        Ok(Redirect::temporary(error_url).into_response())
    } else {
        Err(ApiError(error))
    }
}

fn resolve_provider_config(
    provider: &str,
    provider_entry: &rs_auth_core::config::OAuthProviderEntry,
) -> Result<rs_auth_core::oauth::OAuthProviderConfig, AuthError> {
    match provider {
        "google" => Ok(providers::google::google_provider(
            &provider_entry.client_id,
            &provider_entry.client_secret,
            &provider_entry.redirect_url,
            provider_entry.auth_url.as_deref(),
            provider_entry.token_url.as_deref(),
            provider_entry.userinfo_url.as_deref(),
        )),
        "github" => Ok(providers::github::github_provider(
            &provider_entry.client_id,
            &provider_entry.client_secret,
            &provider_entry.redirect_url,
            provider_entry.auth_url.as_deref(),
            provider_entry.token_url.as_deref(),
            provider_entry.userinfo_url.as_deref(),
        )),
        _ => Err(AuthError::OAuth(OAuthError::UnsupportedProvider {
            provider: provider.to_string(),
        })),
    }
}

fn find_provider_entry<'a>(
    config: &'a rs_auth_core::config::OAuthConfig,
    provider: &str,
) -> Result<&'a rs_auth_core::config::OAuthProviderEntry, AuthError> {
    config
        .providers
        .iter()
        .find(|p| p.provider_id == provider)
        .ok_or_else(|| {
            AuthError::OAuth(OAuthError::ProviderNotFound {
                provider: provider.to_string(),
            })
        })
}

pub async fn oauth_login<U, S, V, A, O, E>(
    State(state): State<AuthState<U, S, V, A, O, E>>,
    Path(provider): Path<String>,
) -> Result<Response, ApiError>
where
    U: rs_auth_core::store::UserStore + Send + Sync + 'static,
    S: rs_auth_core::store::SessionStore + Send + Sync + 'static,
    V: rs_auth_core::store::VerificationStore + Send + Sync + 'static,
    A: rs_auth_core::store::AccountStore + Send + Sync + 'static,
    O: rs_auth_core::store::OAuthStateStore + Send + Sync + 'static,
    E: rs_auth_core::email::EmailSender + Send + Sync + 'static,
{
    if let Err(error) = state.config.oauth.validate() {
        return oauth_failure_response(&state, &provider, "login.validate_config", error);
    }

    info!(
        provider = provider.as_str(),
        phase = "login.start",
        "starting oauth login"
    );

    let provider_entry = match find_provider_entry(&state.config.oauth, &provider) {
        Ok(entry) => entry,
        Err(error) => {
            return oauth_failure_response(&state, &provider, "login.provider_lookup", error);
        }
    };

    let provider_config = match resolve_provider_config(&provider, provider_entry) {
        Ok(config) => config,
        Err(error) => {
            return oauth_failure_response(&state, &provider, "login.provider_config", error);
        }
    };

    let auth = match client::build_authorization(&provider_config) {
        Ok(auth) => auth,
        Err(error) => {
            return oauth_failure_response(&state, &provider, "login.authorization", error);
        }
    };

    if let Err(error) = state
        .service
        .oauth_states
        .create_oauth_state(NewOAuthState {
            provider_id: provider.clone(),
            csrf_state: auth.csrf_state.clone(),
            pkce_verifier: auth.pkce_verifier,
            intent: OAuthIntent::Login,
            link_user_id: None,
            expires_at: OffsetDateTime::now_utc() + state.config.verification_ttl,
        })
        .await
    {
        return oauth_failure_response(&state, &provider, "login.persist_state", error);
    }

    info!(
        provider = provider.as_str(),
        phase = "login.redirect",
        "oauth login ready"
    );

    Ok(Redirect::temporary(&auth.authorize_url).into_response())
}

pub async fn oauth_link<U, S, V, A, O, E>(
    State(state): State<AuthState<U, S, V, A, O, E>>,
    Path(provider): Path<String>,
    CurrentUser { user, .. }: CurrentUser,
) -> Result<Response, ApiError>
where
    U: rs_auth_core::store::UserStore + Send + Sync + 'static,
    S: rs_auth_core::store::SessionStore + Send + Sync + 'static,
    V: rs_auth_core::store::VerificationStore + Send + Sync + 'static,
    A: rs_auth_core::store::AccountStore + Send + Sync + 'static,
    O: rs_auth_core::store::OAuthStateStore + Send + Sync + 'static,
    E: rs_auth_core::email::EmailSender + Send + Sync + 'static,
{
    if let Err(error) = state.config.oauth.validate() {
        return oauth_failure_response(&state, &provider, "link.validate_config", error);
    }

    info!(
        provider = provider.as_str(),
        user_id = user.id,
        phase = "link.start",
        "starting oauth account link"
    );

    let provider_entry = match find_provider_entry(&state.config.oauth, &provider) {
        Ok(entry) => entry,
        Err(error) => {
            return oauth_failure_response(&state, &provider, "link.provider_lookup", error);
        }
    };

    let provider_config = match resolve_provider_config(&provider, provider_entry) {
        Ok(config) => config,
        Err(error) => {
            return oauth_failure_response(&state, &provider, "link.provider_config", error);
        }
    };

    let auth = match client::build_authorization(&provider_config) {
        Ok(auth) => auth,
        Err(error) => {
            return oauth_failure_response(&state, &provider, "link.authorization", error);
        }
    };

    if let Err(error) = state
        .service
        .oauth_states
        .create_oauth_state(NewOAuthState {
            provider_id: provider.clone(),
            csrf_state: auth.csrf_state.clone(),
            pkce_verifier: auth.pkce_verifier,
            intent: OAuthIntent::Link,
            link_user_id: Some(user.id),
            expires_at: OffsetDateTime::now_utc() + state.config.verification_ttl,
        })
        .await
    {
        return oauth_failure_response(&state, &provider, "link.persist_state", error);
    }

    info!(
        provider = provider.as_str(),
        user_id = user.id,
        phase = "link.redirect",
        "oauth link ready"
    );

    Ok(Redirect::temporary(&auth.authorize_url).into_response())
}

pub async fn oauth_callback<U, S, V, A, O, E>(
    State(state): State<AuthState<U, S, V, A, O, E>>,
    Path(provider): Path<String>,
    Query(query): Query<OAuthCallbackQuery>,
    jar: SignedCookieJar,
    ClientInfo { ip, user_agent }: ClientInfo,
) -> Result<Response, ApiError>
where
    U: rs_auth_core::store::UserStore + Send + Sync + 'static,
    S: rs_auth_core::store::SessionStore + Send + Sync + 'static,
    V: rs_auth_core::store::VerificationStore + Send + Sync + 'static,
    A: rs_auth_core::store::AccountStore + Send + Sync + 'static,
    O: rs_auth_core::store::OAuthStateStore + Send + Sync + 'static,
    E: rs_auth_core::email::EmailSender + Send + Sync + 'static,
{
    if let Err(error) = state.config.oauth.validate() {
        return oauth_failure_response(&state, &provider, "callback.validate_config", error);
    }

    info!(
        provider = provider.as_str(),
        phase = "callback.start",
        "handling oauth callback"
    );

    let oauth_state = match state
        .service
        .oauth_states
        .find_by_csrf_state(&query.state)
        .await
    {
        Ok(Some(s)) => s,
        Ok(None) => {
            return oauth_failure_response(
                &state,
                &provider,
                "callback.load_state",
                AuthError::OAuth(OAuthError::InvalidState),
            );
        }
        Err(error) => {
            return oauth_failure_response(&state, &provider, "callback.load_state", error);
        }
    };

    if oauth_state.expires_at < OffsetDateTime::now_utc() {
        let _ = state
            .service
            .oauth_states
            .delete_oauth_state(oauth_state.id)
            .await;
        return oauth_failure_response(
            &state,
            &provider,
            "callback.validate_state",
            AuthError::OAuth(OAuthError::InvalidState),
        );
    }

    let pkce_verifier = oauth_state.pkce_verifier.clone();
    let intent = oauth_state.intent;
    let link_user_id = oauth_state.link_user_id;

    if let Err(error) = state
        .service
        .oauth_states
        .delete_oauth_state(oauth_state.id)
        .await
    {
        return oauth_failure_response(&state, &provider, "callback.consume_state", error);
    }

    let provider_entry = match find_provider_entry(&state.config.oauth, &provider) {
        Ok(entry) => entry,
        Err(error) => {
            return oauth_failure_response(&state, &provider, "callback.provider_lookup", error);
        }
    };

    let provider_config = match resolve_provider_config(&provider, provider_entry) {
        Ok(config) => config,
        Err(error) => {
            return oauth_failure_response(&state, &provider, "callback.provider_config", error);
        }
    };

    let tokens = match client::exchange_code(&provider_config, &query.code, &pkce_verifier).await {
        Ok(tokens) => tokens,
        Err(error) => return oauth_failure_response(&state, &provider, "callback.exchange", error),
    };

    let access_token = match tokens.access_token.as_ref() {
        Some(token) => token,
        None => {
            return oauth_failure_response(
                &state,
                &provider,
                "callback.access_token",
                AuthError::OAuth(OAuthError::MissingAccessToken),
            );
        }
    };

    let user_info = match provider.as_str() {
        "google" => match google::fetch_user_info(&provider_config, access_token).await {
            Ok(user_info) => user_info,
            Err(error) => {
                return oauth_failure_response(&state, &provider, "callback.userinfo", error);
            }
        },
        "github" => match github::fetch_user_info(&provider_config, access_token).await {
            Ok(user_info) => user_info,
            Err(error) => {
                return oauth_failure_response(&state, &provider, "callback.userinfo", error);
            }
        },
        _ => {
            return oauth_failure_response(
                &state,
                &provider,
                "callback.userinfo",
                AuthError::OAuth(OAuthError::UnsupportedProvider {
                    provider: provider.clone(),
                }),
            );
        }
    };

    if intent == OAuthIntent::Link {
        let link_user_id =
            link_user_id.ok_or(ApiError(AuthError::OAuth(OAuthError::InvalidState)))?;

        match state
            .service
            .link_account(link_user_id, user_info, tokens)
            .await
        {
            Ok(_) => {}
            Err(error) => {
                return oauth_failure_response(&state, &provider, "callback.link", error);
            }
        };

        info!(
            provider = provider.as_str(),
            user_id = link_user_id,
            phase = "callback.link_success",
            "oauth account linked"
        );

        if let Some(success_url) = &state.config.oauth.success_redirect {
            return Ok(Redirect::temporary(success_url).into_response());
        }
        return Ok(Json(serde_json::json!({"linked": true})).into_response());
    }

    let result = match state
        .service
        .oauth_callback(user_info, tokens, ip, user_agent)
        .await
    {
        Ok(result) => result,
        Err(error) => return oauth_failure_response(&state, &provider, "callback.service", error),
    };

    info!(
        provider = provider.as_str(),
        phase = "callback.success",
        "oauth callback completed"
    );

    let jar = set_session_cookie(
        jar,
        &result.session_token,
        &state.config.cookie,
        state.config.session_ttl,
    );

    if let Some(success_url) = &state.config.oauth.success_redirect {
        Ok((jar, Redirect::temporary(success_url)).into_response())
    } else {
        Ok((
            jar,
            Json(OAuthCallbackResponse {
                user: result.user.into(),
            }),
        )
            .into_response())
    }
}