alou 0.1.6

智能自动化工作流系统 - 基于Rust和Model Context Protocol (MCP)的智能体
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
// ============================================
// Authentication API Endpoints
// ============================================

use serde::{Deserialize, Serialize};
use sqlx::PgPool;
use uuid::Uuid;
use warp::{reject, reply, Rejection, Reply};

use crate::auth::google_oauth::GoogleOAuth;
use crate::auth::jwt::{generate_token, verify_token};
use crate::auth::wallet::{WalletNonce, verify_signature};
use crate::models::session::Session;
use crate::models::user::{CreateUser, PublicUser, User};

// ============================================
// Request/Response Types
// ============================================

#[derive(Debug, Serialize, Deserialize)]
pub struct GoogleLoginResponse {
    pub auth_url: String,
    pub state: String,
}

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

#[derive(Debug, Serialize)]
pub struct AuthResponse {
    pub access_token: String,
    pub refresh_token: String,
    pub expires_in: i64,
    pub user: PublicUser,
}

#[derive(Debug, Deserialize)]
pub struct RefreshTokenRequest {
    pub refresh_token: String,
}

#[derive(Debug, Serialize)]
pub struct VerifyResponse {
    pub valid: bool,
    pub user: Option<PublicUser>,
}

#[derive(Debug, Serialize)]
pub struct MessageResponse {
    pub message: String,
}

#[derive(Debug, Deserialize)]
pub struct WalletNonceRequest {
    pub address: String,
}

#[derive(Debug, Serialize)]
pub struct WalletNonceResponse {
    pub nonce: String,
    pub message: String,
}

#[derive(Debug, Deserialize)]
pub struct WalletVerifyRequest {
    pub address: String,
    pub signature: String,
    pub message: String,
}

// ============================================
// Error Types
// ============================================

#[derive(Debug)]
pub struct ApiError {
    pub message: String,
}

impl reject::Reject for ApiError {}

// ============================================
// Handler Functions
// ============================================

/// GET /api/auth/google/login
/// Generate Google OAuth authorization URL
pub async fn google_login_handler(
    oauth_client: GoogleOAuth,
) -> Result<impl Reply, Rejection> {
    let (auth_url, csrf_token) = oauth_client.get_auth_url();

    let response = GoogleLoginResponse {
        auth_url,
        state: csrf_token.secret().clone(),
    };

    Ok(reply::json(&response))
}

/// GET /api/auth/google/callback
/// Handle Google OAuth callback
pub async fn google_callback_handler(
    query: GoogleCallbackQuery,
    oauth_client: GoogleOAuth,
    pool: PgPool,
    jwt_secret: String,
    jwt_expiration_hours: i64,
    refresh_token_expiration_days: i64,
) -> Result<impl Reply, Rejection> {
    // Exchange authorization code for access token and user info
    let (_google_access_token, google_user) = oauth_client
        .exchange_code(query.code)
        .await
        .map_err(|e| {
            reject::custom(ApiError {
                message: format!("Failed to exchange code: {}", e),
            })
        })?;

    // Find or create user
    let user = match User::find_by_google_id(&pool, &google_user.id).await {
        Ok(Some(existing_user)) => {
            // Update last login
            User::update_last_login(&pool, existing_user.id)
                .await
                .map_err(|e| {
                    reject::custom(ApiError {
                        message: format!("Failed to update last login: {}", e),
                    })
                })?;
            existing_user
        }
        Ok(None) => {
            // Create new user
            let new_user = CreateUser {
                email: google_user.email.clone(),
                google_id: Some(google_user.id.clone()),
                name: google_user.name.clone(),
                avatar_url: google_user.picture.clone(),
            };

            User::create(&pool, new_user).await.map_err(|e| {
                reject::custom(ApiError {
                    message: format!("Failed to create user: {}", e),
                })
            })?
        }
        Err(e) => {
            return Err(reject::custom(ApiError {
                message: format!("Database error: {}", e),
            }));
        }
    };

    // Generate JWT tokens
    let access_token = generate_token(user.id, &user.email, &jwt_secret, jwt_expiration_hours)
        .map_err(|e| {
            reject::custom(ApiError {
                message: format!("Failed to generate token: {}", e),
            })
        })?;

    let refresh_token =
        generate_token(user.id, &user.email, &jwt_secret, refresh_token_expiration_days * 24)
            .map_err(|e| {
                reject::custom(ApiError {
                    message: format!("Failed to generate refresh token: {}", e),
                })
            })?;

    // Store refresh token in database
    Session::create(&pool, user.id, refresh_token.clone(), refresh_token_expiration_days)
        .await
        .map_err(|e| {
            reject::custom(ApiError {
                message: format!("Failed to store session: {}", e),
            })
        })?;

    // Return tokens and user info
    let response = AuthResponse {
        access_token,
        refresh_token,
        expires_in: jwt_expiration_hours * 3600,
        user: user.into(),
    };

    Ok(reply::json(&response))
}

/// POST /api/auth/verify
/// Verify JWT token validity
pub async fn verify_token_handler(
    user_id: Uuid,
    pool: PgPool,
) -> Result<impl Reply, Rejection> {
    // User ID is already verified by middleware
    // Fetch user info
    let user = User::find_by_id(&pool, user_id).await.map_err(|e| {
        reject::custom(ApiError {
            message: format!("Database error: {}", e),
        })
    })?;

    let response = VerifyResponse {
        valid: true,
        user: user.map(|u| u.into()),
    };

    Ok(reply::json(&response))
}

/// POST /api/auth/refresh
/// Refresh access token using refresh token
pub async fn refresh_token_handler(
    body: RefreshTokenRequest,
    pool: PgPool,
    jwt_secret: String,
    jwt_expiration_hours: i64,
) -> Result<impl Reply, Rejection> {
    // Verify refresh token
    let claims = verify_token(&body.refresh_token, &jwt_secret).map_err(|_| {
        reject::custom(ApiError {
            message: "Invalid refresh token".to_string(),
        })
    })?;

    // Check if refresh token exists in database
    let session = Session::find_by_token(&pool, &body.refresh_token)
        .await
        .map_err(|e| {
            reject::custom(ApiError {
                message: format!("Database error: {}", e),
            })
        })?
        .ok_or_else(|| {
            reject::custom(ApiError {
                message: "Session not found".to_string(),
            })
        })?;

    // Check if session is expired
    if session.is_expired() {
        return Err(reject::custom(ApiError {
            message: "Refresh token expired".to_string(),
        }));
    }

    // Parse user ID
    let user_id = Uuid::parse_str(&claims.sub).map_err(|_| {
        reject::custom(ApiError {
            message: "Invalid user ID in token".to_string(),
        })
    })?;

    // Generate new access token
    let new_access_token =
        generate_token(user_id, &claims.email, &jwt_secret, jwt_expiration_hours).map_err(|e| {
            reject::custom(ApiError {
                message: format!("Failed to generate token: {}", e),
            })
        })?;

    // Fetch user info
    let user = User::find_by_id(&pool, user_id)
        .await
        .map_err(|e| {
            reject::custom(ApiError {
                message: format!("Database error: {}", e),
            })
        })?
        .ok_or_else(|| {
            reject::custom(ApiError {
                message: "User not found".to_string(),
            })
        })?;

    let response = AuthResponse {
        access_token: new_access_token,
        refresh_token: body.refresh_token, // Return same refresh token
        expires_in: jwt_expiration_hours * 3600,
        user: user.into(),
    };

    Ok(reply::json(&response))
}

/// POST /api/auth/logout
/// Logout user by deleting refresh token
pub async fn logout_handler(
    _user_id: Uuid,
    body: RefreshTokenRequest,
    pool: PgPool,
) -> Result<impl Reply, Rejection> {
    // Delete the specific session
    Session::delete(&pool, &body.refresh_token)
        .await
        .map_err(|e| {
            reject::custom(ApiError {
                message: format!("Failed to delete session: {}", e),
            })
        })?;

    let response = MessageResponse {
        message: "Logged out successfully".to_string(),
    };

    Ok(reply::json(&response))
}

/// POST /api/auth/logout-all
/// Logout user from all devices
pub async fn logout_all_handler(user_id: Uuid, pool: PgPool) -> Result<impl Reply, Rejection> {
    // Delete all sessions for this user
    Session::delete_all_for_user(&pool, user_id)
        .await
        .map_err(|e| {
            reject::custom(ApiError {
                message: format!("Failed to delete sessions: {}", e),
            })
        })?;

    let response = MessageResponse {
        message: "Logged out from all devices".to_string(),
    };

    Ok(reply::json(&response))
}

// ============================================
// Wallet Authentication Handlers
// ============================================

/// POST /api/auth/wallet/nonce
/// Generate a nonce for wallet authentication
pub async fn wallet_nonce_handler(
    body: WalletNonceRequest,
) -> Result<impl Reply, Rejection> {
    // Validate address format
    let address = body.address.to_lowercase();
    if !address.starts_with("0x") || address.len() != 42 {
        return Err(reject::custom(ApiError {
            message: "Invalid Ethereum address format".to_string(),
        }));
    }

    // Generate nonce
    let wallet_nonce = WalletNonce::new(address);
    
    let response = WalletNonceResponse {
        nonce: wallet_nonce.nonce.clone(),
        message: format!(
            "Please sign this message to authenticate:\n\n{}",
            wallet_nonce.get_message()
        ),
    };

    Ok(reply::json(&response))
}

/// POST /api/auth/wallet/verify
/// Verify wallet signature and authenticate user
pub async fn wallet_verify_handler(
    body: WalletVerifyRequest,
    pool: PgPool,
    jwt_secret: String,
    jwt_expiration_hours: i64,
    refresh_token_expiration_days: i64,
) -> Result<impl Reply, Rejection> {
    // Validate address format
    let address = body.address.to_lowercase();
    if !address.starts_with("0x") || address.len() != 42 {
        return Err(reject::custom(ApiError {
            message: "Invalid Ethereum address format".to_string(),
        }));
    }

    // Verify signature
    let signature_valid = verify_signature(&body.message, &body.signature, &address)
        .map_err(|e| {
            reject::custom(ApiError {
                message: format!("Signature verification failed: {}", e),
            })
        })?;

    if !signature_valid {
        return Err(reject::custom(ApiError {
            message: "Invalid signature".to_string(),
        }));
    }

    // Find or create user by wallet address
    let email = format!("{}@wallet.local", address);
    
    let user = match User::find_by_email(&pool, &email).await {
        Ok(Some(existing_user)) => {
            // Update last login
            User::update_last_login(&pool, existing_user.id)
                .await
                .map_err(|e| {
                    reject::custom(ApiError {
                        message: format!("Failed to update last login: {}", e),
                    })
                })?;
            existing_user
        }
        Ok(None) => {
            // Create new user with wallet address
            let new_user = CreateUser {
                email: email.clone(),
                google_id: None,
                name: Some(format!("{}...{}", &address[0..6], &address[address.len()-4..])),
                avatar_url: Some(format!(
                    "https://api.dicebear.com/7.x/identicon/svg?seed={}",
                    address
                )),
            };

            User::create(&pool, new_user).await.map_err(|e| {
                reject::custom(ApiError {
                    message: format!("Failed to create user: {}", e),
                })
            })?
        }
        Err(e) => {
            return Err(reject::custom(ApiError {
                message: format!("Database error: {}", e),
            }));
        }
    };

    // Generate JWT tokens
    let access_token = generate_token(user.id, &user.email, &jwt_secret, jwt_expiration_hours)
        .map_err(|e| {
            reject::custom(ApiError {
                message: format!("Failed to generate token: {}", e),
            })
        })?;

    let refresh_token =
        generate_token(user.id, &user.email, &jwt_secret, refresh_token_expiration_days * 24)
            .map_err(|e| {
                reject::custom(ApiError {
                    message: format!("Failed to generate refresh token: {}", e),
                })
            })?;

    // Store refresh token in database
    Session::create(&pool, user.id, refresh_token.clone(), refresh_token_expiration_days)
        .await
        .map_err(|e| {
            reject::custom(ApiError {
                message: format!("Failed to store session: {}", e),
            })
        })?;

    // Return tokens and user info
    let response = AuthResponse {
        access_token,
        refresh_token,
        expires_in: jwt_expiration_hours * 3600,
        user: user.into(),
    };

    Ok(reply::json(&response))
}