reasonkit-web 0.1.7

High-performance MCP server for browser automation, web capture, and content extraction. Rust-powered CDP client for AI agents.
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
//! # Database-Backed Profile Handlers
//!
//! Profile management with PostgreSQL backend.
//! Requires `portal` feature flag.

#[cfg(feature = "portal")]
use axum::{
    extract::{Json, Multipart, State},
    http::StatusCode,
    response::IntoResponse,
};

#[cfg(feature = "portal")]
use chrono::Utc;

#[cfg(feature = "portal")]
use serde::{Deserialize, Serialize};

#[cfg(feature = "portal")]
use sqlx::PgPool;

#[cfg(feature = "portal")]
use uuid::Uuid;

#[cfg(feature = "portal")]
use crate::portal::auth_db::PortalState;
#[cfg(feature = "portal")]
use crate::portal::db::DbError;
#[cfg(feature = "portal")]
use crate::portal::middleware::AuthClaims;

/// Profile response
#[cfg(feature = "portal")]
#[derive(Debug, Serialize)]
pub struct ProfileResponse {
    pub user_id: String,
    pub email: String,
    pub display_name: Option<String>,
    pub avatar_url: Option<String>,
    pub timezone: String,
    pub locale: String,
    pub preferences: serde_json::Value,
    pub email_verified: bool,
    pub created_at: String,
    pub updated_at: String,
}

/// Profile update request
#[cfg(feature = "portal")]
#[derive(Debug, Deserialize)]
pub struct UpdateProfileRequest {
    pub display_name: Option<String>,
    pub timezone: Option<String>,
    pub locale: Option<String>,
    pub preferences: Option<serde_json::Value>,
}

/// Profile database operations
#[cfg(feature = "portal")]
pub struct ProfileRepository<'a> {
    pool: &'a PgPool,
}

#[cfg(feature = "portal")]
impl<'a> ProfileRepository<'a> {
    pub fn new(pool: &'a PgPool) -> Self {
        Self { pool }
    }

    /// Get or create profile for user
    pub async fn get_or_create(&self, user_id: Uuid) -> Result<ProfileData, DbError> {
        // Try to get existing profile
        let existing =
            sqlx::query_as::<_, ProfileData>("SELECT * FROM profiles WHERE user_id = $1")
                .bind(user_id)
                .fetch_optional(self.pool)
                .await?;

        if let Some(profile) = existing {
            return Ok(profile);
        }

        // Create default profile
        let profile = sqlx::query_as::<_, ProfileData>(
            r#"
            INSERT INTO profiles (user_id, timezone, locale, preferences)
            VALUES ($1, 'UTC', 'en-US', '{}')
            RETURNING *
            "#,
        )
        .bind(user_id)
        .fetch_one(self.pool)
        .await?;

        Ok(profile)
    }

    /// Update profile
    pub async fn update(
        &self,
        user_id: Uuid,
        update: &UpdateProfileRequest,
    ) -> Result<ProfileData, DbError> {
        let profile = sqlx::query_as::<_, ProfileData>(
            r#"
            UPDATE profiles SET
                display_name = COALESCE($2, display_name),
                timezone = COALESCE($3, timezone),
                locale = COALESCE($4, locale),
                preferences = COALESCE($5, preferences),
                updated_at = NOW()
            WHERE user_id = $1
            RETURNING *
            "#,
        )
        .bind(user_id)
        .bind(&update.display_name)
        .bind(&update.timezone)
        .bind(&update.locale)
        .bind(&update.preferences)
        .fetch_one(self.pool)
        .await?;

        Ok(profile)
    }

    /// Update avatar URL
    pub async fn update_avatar(&self, user_id: Uuid, avatar_url: &str) -> Result<(), DbError> {
        sqlx::query("UPDATE profiles SET avatar_url = $2, updated_at = NOW() WHERE user_id = $1")
            .bind(user_id)
            .bind(avatar_url)
            .execute(self.pool)
            .await?;

        Ok(())
    }

    /// Delete profile (for GDPR)
    pub async fn delete(&self, user_id: Uuid) -> Result<(), DbError> {
        sqlx::query("DELETE FROM profiles WHERE user_id = $1")
            .bind(user_id)
            .execute(self.pool)
            .await?;

        Ok(())
    }
}

/// Profile data from database
#[cfg(feature = "portal")]
#[derive(Debug, Clone, sqlx::FromRow)]
pub struct ProfileData {
    pub user_id: Uuid,
    pub display_name: Option<String>,
    pub avatar_url: Option<String>,
    pub timezone: String,
    pub locale: String,
    pub preferences: serde_json::Value,
    pub updated_at: chrono::DateTime<Utc>,
}

/// Get current user's profile
#[cfg(feature = "portal")]
pub async fn get_profile(
    State(state): State<PortalState>,
    AuthClaims(claims): AuthClaims,
) -> impl IntoResponse {
    let user_id = match Uuid::parse_str(&claims.sub) {
        Ok(id) => id,
        Err(_) => {
            return (
                StatusCode::BAD_REQUEST,
                Json(serde_json::json!({"error": "Invalid user ID"})),
            );
        }
    };

    // Get user data
    let user_repo = crate::portal::db::queries::UserRepository::new(state.db.pool());
    let user = match user_repo.find_by_id(user_id).await {
        Ok(user) => user,
        Err(DbError::NotFound) => {
            return (
                StatusCode::NOT_FOUND,
                Json(serde_json::json!({"error": "User not found"})),
            );
        }
        Err(e) => {
            tracing::error!("Database error: {}", e);
            return (
                StatusCode::INTERNAL_SERVER_ERROR,
                Json(serde_json::json!({"error": "Failed to fetch profile"})),
            );
        }
    };

    // Get or create profile
    let profile_repo = ProfileRepository::new(state.db.pool());
    let profile = match profile_repo.get_or_create(user_id).await {
        Ok(p) => p,
        Err(e) => {
            tracing::error!("Database error: {}", e);
            return (
                StatusCode::INTERNAL_SERVER_ERROR,
                Json(serde_json::json!({"error": "Failed to fetch profile"})),
            );
        }
    };

    let response = ProfileResponse {
        user_id: user.id.to_string(),
        email: user.email,
        display_name: profile.display_name,
        avatar_url: profile.avatar_url,
        timezone: profile.timezone,
        locale: profile.locale,
        preferences: profile.preferences,
        email_verified: user.email_verified_at.is_some(),
        created_at: user.created_at.to_rfc3339(),
        updated_at: profile.updated_at.to_rfc3339(),
    };

    (
        StatusCode::OK,
        Json(serde_json::to_value(response).unwrap()),
    )
}

/// Update current user's profile
#[cfg(feature = "portal")]
pub async fn update_profile(
    State(state): State<PortalState>,
    AuthClaims(claims): AuthClaims,
    Json(req): Json<UpdateProfileRequest>,
) -> impl IntoResponse {
    let user_id = match Uuid::parse_str(&claims.sub) {
        Ok(id) => id,
        Err(_) => {
            return (
                StatusCode::BAD_REQUEST,
                Json(serde_json::json!({"error": "Invalid user ID"})),
            );
        }
    };

    // Ensure profile exists
    let profile_repo = ProfileRepository::new(state.db.pool());
    if let Err(e) = profile_repo.get_or_create(user_id).await {
        tracing::error!("Database error: {}", e);
        return (
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(serde_json::json!({"error": "Failed to update profile"})),
        );
    }

    // Update profile
    match profile_repo.update(user_id, &req).await {
        Ok(profile) => {
            tracing::info!("Profile updated for user: {}", user_id);
            (
                StatusCode::OK,
                Json(serde_json::json!({
                    "success": true,
                    "display_name": profile.display_name,
                    "timezone": profile.timezone,
                    "locale": profile.locale,
                    "updated_at": profile.updated_at.to_rfc3339()
                })),
            )
        }
        Err(e) => {
            tracing::error!("Database error: {}", e);
            (
                StatusCode::INTERNAL_SERVER_ERROR,
                Json(serde_json::json!({"error": "Failed to update profile"})),
            )
        }
    }
}

/// Upload avatar image
#[cfg(feature = "portal")]
pub async fn upload_avatar(
    State(state): State<PortalState>,
    AuthClaims(claims): AuthClaims,
    mut multipart: Multipart,
) -> impl IntoResponse {
    let user_id = match Uuid::parse_str(&claims.sub) {
        Ok(id) => id,
        Err(_) => {
            return (
                StatusCode::BAD_REQUEST,
                Json(serde_json::json!({"error": "Invalid user ID"})),
            );
        }
    };

    // Process multipart upload
    let mut avatar_data: Option<Vec<u8>> = None;
    let mut content_type: Option<String> = None;

    while let Ok(Some(field)) = multipart.next_field().await {
        let name = field.name().unwrap_or("").to_string();
        if name == "avatar" {
            content_type = field.content_type().map(|s| s.to_string());
            if let Ok(data) = field.bytes().await {
                avatar_data = Some(data.to_vec());
            }
        }
    }

    let (data, ct) = match (avatar_data, content_type) {
        (Some(d), Some(c)) => (d, c),
        _ => {
            return (
                StatusCode::BAD_REQUEST,
                Json(serde_json::json!({"error": "No avatar file provided"})),
            );
        }
    };

    // Validate content type
    if !["image/jpeg", "image/png", "image/gif", "image/webp"].contains(&ct.as_str()) {
        return (
            StatusCode::BAD_REQUEST,
            Json(
                serde_json::json!({"error": "Invalid image format. Allowed: JPEG, PNG, GIF, WebP"}),
            ),
        );
    }

    // Validate file size (max 5MB)
    if data.len() > 5 * 1024 * 1024 {
        return (
            StatusCode::BAD_REQUEST,
            Json(serde_json::json!({"error": "Avatar too large. Maximum size is 5MB"})),
        );
    }

    // TODO: Upload to S3/MinIO
    // For now, we'll generate a placeholder URL
    let avatar_url = format!(
        "https://avatars.reasonkit.sh/{}/{}",
        user_id,
        Uuid::new_v4()
    );

    // Update profile with avatar URL
    let profile_repo = ProfileRepository::new(state.db.pool());
    if let Err(e) = profile_repo.update_avatar(user_id, &avatar_url).await {
        tracing::error!("Database error: {}", e);
        return (
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(serde_json::json!({"error": "Failed to update avatar"})),
        );
    }

    tracing::info!("Avatar uploaded for user: {}", user_id);

    (
        StatusCode::OK,
        Json(serde_json::json!({
            "success": true,
            "avatar_url": avatar_url
        })),
    )
}

/// Delete account (GDPR)
#[cfg(feature = "portal")]
pub async fn delete_account(
    State(state): State<PortalState>,
    AuthClaims(claims): AuthClaims,
) -> impl IntoResponse {
    let user_id = match Uuid::parse_str(&claims.sub) {
        Ok(id) => id,
        Err(_) => {
            return (
                StatusCode::BAD_REQUEST,
                Json(serde_json::json!({"error": "Invalid user ID"})),
            );
        }
    };

    // Soft delete user (keeps data for 30 days per GDPR)
    let user_repo = crate::portal::db::queries::UserRepository::new(state.db.pool());
    if let Err(e) = user_repo.soft_delete(user_id).await {
        tracing::error!("Database error: {}", e);
        return (
            StatusCode::INTERNAL_SERVER_ERROR,
            Json(serde_json::json!({"error": "Failed to delete account"})),
        );
    }

    // Revoke all sessions
    let session_repo = crate::portal::db::queries::SessionRepository::new(state.db.pool());
    if let Err(e) = session_repo.revoke_all_for_user(user_id).await {
        tracing::error!("Failed to revoke sessions: {}", e);
    }

    tracing::info!("Account deletion initiated for user: {}", user_id);

    (
        StatusCode::OK,
        Json(serde_json::json!({
            "success": true,
            "message": "Account scheduled for deletion. You have 30 days to reactivate."
        })),
    )
}