raisfast 0.2.23

The last backend you'll ever need. Rust-powered headless CMS with built-in blog, ecommerce, wallet, payment and 4 plugin engines.
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
//! Authentication handlers
//!
//! Handles user registration, login, token refresh, and logout requests.
//! All functions are thin layers — only parameter extraction, request validation, and service calls.

use axum::Json;
use axum::extract::State;

use crate::dto::{
    AuthConfigResponse, BindEmailRequest, BindPhoneRequest, CredentialResponse,
    ForgotPasswordRequest, LoginRequest, RefreshRequest, RegisterRequest,
    ResendVerificationRequest, ResetPasswordRequest, SendSmsCodeRequest, SetPasswordRequest,
    VerifyEmailRequest, VerifySmsRequest,
};
use crate::errors::app_error::AppResult;
use crate::errors::response::ApiResponse;
use crate::errors::validation;
use crate::middleware::auth::AuthUser;
use crate::services::{auth, email_verification, password_reset, sms};
use crate::types::snowflake_id::SnowflakeId;

pub fn routes(
    registry: &mut crate::server::RouteRegistry,
    config: &crate::config::app::AppConfig,
) -> axum::Router<crate::AppState> {
    use crate::middleware::rate_limit::{login_rate_limit, register_rate_limit};
    use axum::middleware::from_fn;

    let restful = config.api_restful;
    let r = axum::Router::new();
    let r = {
        let mr = axum::routing::post(register).layer(from_fn(register_rate_limit));
        r.route("/auth/register", mr)
    };
    registry.record("POST", "/api/v1/auth/register", "system public", "auth");
    let r = {
        let mr = axum::routing::post(login).layer(from_fn(login_rate_limit));
        r.route("/auth/login", mr)
    };
    registry.record("POST", "/api/v1/auth/login", "system public", "auth");
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/refresh",
        post,
        refresh,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/logout",
        post,
        logout,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/forgot-password",
        post,
        forgot_password,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/reset-password",
        post,
        reset_password,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/set-password",
        post,
        set_password,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/config",
        get,
        auth_config,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/sms/send",
        post,
        send_sms_code,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/sms/verify",
        post,
        verify_sms,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/phone/bind",
        post,
        bind_phone,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/verify-email",
        post,
        verify_email,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/resend-verification",
        post,
        resend_verification,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/credentials/bind-email",
        post,
        bind_email_credential,
        "system public",
        "auth"
    );
    let r = reg_route!(
        r,
        registry,
        restful,
        "/auth/credentials",
        get,
        list_credentials,
        "system public",
        "auth"
    );
    reg_route!(
        r,
        registry,
        restful,
        "/auth/credentials/{id}",
        delete,
        delete_credential,
        "system public",
        "auth"
    )
}

/// User registration
#[utoipa::path(post, path = "/auth/register", tag = "auth",
    request_body = RegisterRequest,
    responses((status = 200, description = "Registration successful"))
)]
pub async fn register(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Json(req): Json<RegisterRequest>,
) -> AppResult<ApiResponse<crate::dto::UserResponse>> {
    if !state.config.registration_email_enabled {
        return Err(crate::errors::app_error::AppError::BadRequest(
            "email_registration_disabled".into(),
        ));
    }
    validation::validate(&req)?;
    let user = auth::register(
        &state.aspect_engine,
        req,
        auth.tenant_id(),
        state.config.require_email_verification,
        &state.pool,
    )
    .await?;
    Ok(ApiResponse::success(user))
}

/// User login
#[utoipa::path(post, path = "/auth/login", tag = "auth",
    request_body = LoginRequest,
    responses((status = 200, description = "Login successful"))
)]
pub async fn login(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Json(req): Json<LoginRequest>,
) -> AppResult<ApiResponse<crate::dto::LoginResponse>> {
    validation::validate(&req)?;
    let resp = auth::login(
        &state.aspect_engine,
        &state.pool,
        &req,
        &state.config.jwt_secret,
        state.config.jwt_access_expires,
        state.config.jwt_refresh_expires,
        auth.tenant_id(),
        state.config.require_email_verification,
    )
    .await?;
    Ok(ApiResponse::success(resp))
}

/// Verify email
pub async fn verify_email(
    State(state): State<crate::AppState>,
    Json(req): Json<VerifyEmailRequest>,
) -> AppResult<ApiResponse<()>> {
    validation::validate(&req)?;
    email_verification::verify_email(&state.pool, &req.token).await?;
    Ok(ApiResponse::success(()))
}

/// Resend verification email
pub async fn resend_verification(
    State(state): State<crate::AppState>,
    Json(req): Json<ResendVerificationRequest>,
) -> AppResult<ApiResponse<()>> {
    validation::validate(&req)?;
    email_verification::resend_verification(&state.pool, &state.aspect_engine, &req.email).await?;
    Ok(ApiResponse::success(()))
}

/// Refresh access token
#[utoipa::path(post, path = "/auth/refresh", tag = "auth",
    request_body = RefreshRequest,
    responses((status = 200, description = "Token refreshed successfully"))
)]
pub async fn refresh(
    State(state): State<crate::AppState>,
    Json(req): Json<RefreshRequest>,
) -> AppResult<ApiResponse<crate::dto::LoginResponse>> {
    validation::validate(&req)?;
    let resp = auth::refresh(
        &state.pool,
        &req.refresh_token,
        &state.config.jwt_secret,
        state.config.jwt_access_expires,
        state.config.jwt_refresh_expires,
        None,
    )
    .await?;
    Ok(ApiResponse::success(resp))
}

/// User logout
#[utoipa::path(post, path = "/auth/logout", tag = "auth",
    security(("bearer_auth" = [])),
    responses((status = 200, description = "Logout successful"))
)]
pub async fn logout(
    State(state): State<crate::AppState>,
    auth: AuthUser,
) -> AppResult<ApiResponse<()>> {
    auth::logout(&state.pool, &auth).await?;
    Ok(ApiResponse::success(()))
}

/// Request password reset
#[utoipa::path(post, path = "/auth/forgot-password", tag = "auth",
    request_body = ForgotPasswordRequest,
    responses((status = 200, description = "Reset email sent"))
)]
pub async fn forgot_password(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Json(req): Json<ForgotPasswordRequest>,
) -> AppResult<ApiResponse<()>> {
    validation::validate(&req)?;
    password_reset::forgot_password(
        &state.pool,
        &state.aspect_engine,
        &req.email,
        auth.tenant_id(),
    )
    .await?;
    Ok(ApiResponse::success(()))
}

/// Reset password
#[utoipa::path(post, path = "/auth/reset-password", tag = "auth",
    request_body = ResetPasswordRequest,
    responses((status = 200, description = "Password reset"))
)]
pub async fn reset_password(
    State(state): State<crate::AppState>,
    Json(req): Json<ResetPasswordRequest>,
) -> AppResult<ApiResponse<()>> {
    validation::validate(&req)?;
    password_reset::reset_password(&state.pool, &req.token, &req.new_password, None).await?;
    Ok(ApiResponse::success(()))
}

/// Set password for OAuth user
#[utoipa::path(post, path = "/auth/set-password", tag = "auth",
    security(("bearer_auth" = [])),
    request_body = SetPasswordRequest,
    responses((status = 200, description = "Password set"))
)]
pub async fn set_password(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Json(req): Json<SetPasswordRequest>,
) -> AppResult<ApiResponse<()>> {
    validation::validate(&req)?;
    password_reset::set_password(&state.pool, &auth, &req.email, &req.new_password).await?;
    Ok(ApiResponse::success(()))
}

/// Get authentication config (supported registration methods, etc.)
pub async fn auth_config(
    State(state): State<crate::AppState>,
) -> AppResult<ApiResponse<AuthConfigResponse>> {
    let oauth_providers = if state.config.oauth.enabled {
        state
            .oauth_registry
            .provider_names()
            .iter()
            .map(|s| s.to_string())
            .collect()
    } else {
        vec![]
    };
    Ok(ApiResponse::success(AuthConfigResponse {
        registration_email_enabled: state.config.registration_email_enabled,
        registration_sms_enabled: state.config.registration_sms_enabled,
        oauth_providers,
        require_email_verification: state.config.require_email_verification,
    }))
}

/// Send SMS verification code
pub async fn send_sms_code(
    State(state): State<crate::AppState>,
    Json(req): Json<SendSmsCodeRequest>,
) -> AppResult<ApiResponse<()>> {
    validation::validate(&req)?;
    sms::send_sms_code(&state.pool, &state.config, &req.phone, &req.purpose).await?;
    Ok(ApiResponse::success(()))
}

/// Verify SMS code (auto register/login)
pub async fn verify_sms(
    State(state): State<crate::AppState>,
    Json(req): Json<VerifySmsRequest>,
) -> AppResult<ApiResponse<crate::dto::LoginResponse>> {
    validation::validate(&req)?;
    let resp = sms::verify_sms_and_auth(
        &state.pool,
        &req.phone,
        &req.code,
        &req.purpose,
        &state.config.jwt_secret,
        state.config.jwt_access_expires,
        state.config.jwt_refresh_expires,
    )
    .await?;
    Ok(ApiResponse::success(resp))
}

/// Bind phone number
pub async fn bind_phone(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Json(req): Json<BindPhoneRequest>,
) -> AppResult<ApiResponse<()>> {
    auth.ensure_authenticated()?;
    validation::validate(&req)?;
    sms::bind_phone(&state.pool, &auth, &req.phone, &req.code).await?;
    Ok(ApiResponse::success(()))
}

/// Bind email/password credential
pub async fn bind_email_credential(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    Json(req): Json<BindEmailRequest>,
) -> AppResult<ApiResponse<()>> {
    auth.ensure_authenticated()?;
    validation::validate(&req)?;
    auth::bind_email_credential(&state.pool, &auth, &req.email, &req.password).await?;
    Ok(ApiResponse::success(()))
}

/// List all credentials for the current user
pub async fn list_credentials(
    auth: AuthUser,
    State(state): State<crate::AppState>,
) -> AppResult<ApiResponse<Vec<CredentialResponse>>> {
    auth.ensure_authenticated()?;
    let creds = auth::list_credentials(&state.pool, &auth).await?;
    let responses: AppResult<Vec<CredentialResponse>> = creds
        .into_iter()
        .map(CredentialResponse::from_credential)
        .collect();
    Ok(ApiResponse::success(responses?))
}

/// Delete a specific credential
pub async fn delete_credential(
    auth: AuthUser,
    State(state): State<crate::AppState>,
    axum::extract::Path(id): axum::extract::Path<i64>,
) -> AppResult<ApiResponse<()>> {
    auth.ensure_authenticated()?;
    auth::delete_credential(&state.pool, &auth, SnowflakeId(id)).await?;
    Ok(ApiResponse::success(()))
}