neocrates 0.1.44

A comprehensive Rust library for various utilities and helpers
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
//! Captcha service module providing various types of captcha generation and validation
//!
//! Supports multiple captcha types:
//! - Slider captcha (滑动验证码)
//! - Numeric captcha (数字验证码)
//! - Alphanumeric captcha (字母数字验证码)

use std::sync::Arc;

#[cfg(any(feature = "redis", feature = "full"))]
use crate::rediscache::RedisPool;
use crate::response::error::{AppError, AppResult};

/// Captcha type enumeration
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum CaptchaType {
    /// Slider captcha (滑动验证码)
    Slider,
    /// Numeric captcha (4-6 digit numbers)
    Numeric,
    /// Alphanumeric captcha (letters and numbers)
    Alphanumeric,
}

/// Captcha generation result
#[derive(Debug, Clone, crate::serde::Serialize, crate::serde::Deserialize)]
pub struct CaptchaData {
    /// Captcha ID for validation
    pub id: String,
    /// Captcha code (for validation, may be hidden for security)
    pub code: String,
    /// Expiration time in seconds
    pub expires_in: u64,
}

/// Captcha service for generating and validating various types of captchas
pub struct CaptchaService;

impl CaptchaService {
    const CACHE_PREFIX_SLIDER: &'static str = ":captcha:slider:";
    const CACHE_PREFIX_NUMERIC: &'static str = ":captcha:numeric:";
    const CACHE_PREFIX_ALPHA: &'static str = ":captcha:alpha:";

    /// Default expiration time (2 minutes)
    const DEFAULT_EXPIRATION: u64 = 120;

    // ==================== Slider Captcha ====================

    /// Generate a slider captcha for the given account
    ///
    /// # Arguments
    /// * `redis_pool` - Redis connection pool
    /// * `code` - Verification code to store
    /// * `account` - Account identifier (email, phone, etc.)
    ///
    /// # Returns
    /// * `Ok(())` on success
    /// * `Err(AppError)` on failure
    ///
    /// # Example
    /// ```rust,ignore
    /// use std::sync::Arc;
    /// use neocrates::captcha::CaptchaService;
    ///
    /// async fn example(redis_pool: Arc<RedisPool>) {
    ///     let result = CaptchaService::gen_captcha_slider(
    ///         &redis_pool,
    ///         "abc123",
    ///         "user@example.com"
    ///     ).await;
    /// }
    /// ```
    #[cfg(any(feature = "redis", feature = "full"))]
    pub async fn gen_captcha_slider(
        redis_pool: &Arc<RedisPool>,
        prefix: &str,
        code: &str,
        account: &str,
        expires_in: Option<u64>,
    ) -> AppResult<()> {
        let key = format!("{}{}{}", prefix, Self::CACHE_PREFIX_SLIDER, account);
        let value = Self::hash_code(code);
        let seconds = expires_in.unwrap_or(Self::DEFAULT_EXPIRATION);
        redis_pool
            .setex(key, value.clone(), seconds)
            .await
            .map_err(|e| AppError::RedisError(e.to_string()))?;

        crate::tracing::info!(
            "gen_captcha_slider success for account: {}, value: {}",
            account,
            value
        );
        Ok(())
    }

    /// Validate the slider captcha for the given account
    ///
    /// # Arguments
    /// * `redis_pool` - Redis connection pool
    /// * `code` - Code to validate
    /// * `account` - Account identifier
    /// * `delete` - Whether to delete the captcha after validation
    ///
    /// # Returns
    /// * `Ok(())` if validation succeeds
    /// * `Err(AppError)` if validation fails
    #[cfg(any(feature = "redis", feature = "full"))]
    pub async fn captcha_slider_valid(
        redis_pool: &Arc<RedisPool>,
        prefix: &str,
        code: &str,
        account: &str,
        delete: bool,
    ) -> AppResult<()> {
        let key = format!("{}{}{}", prefix, Self::CACHE_PREFIX_SLIDER, account);
        let result = redis_pool
            .get::<_, String>(&key)
            .await
            .map_err(|e| AppError::RedisError(e.to_string()))?;

        match result {
            Some(stored_code) => {
                let hashed_input = Self::hash_code(code);
                if stored_code != hashed_input {
                    return Err(AppError::ClientError(
                        "Slider captcha verification failed, please refresh and try again"
                            .to_string(),
                    ));
                }
            }
            None => {
                return Err(AppError::ClientError(
                    "Captcha expired or not found".to_string(),
                ));
            }
        }

        // Delete the captcha code from Redis after validation
        if delete {
            redis_pool
                .del(&key)
                .await
                .map_err(|e| AppError::RedisError(e.to_string()))?;
        }

        crate::tracing::info!("captcha_slider_valid success for account: {}", account);
        Ok(())
    }

    /// Delete the slider captcha from Redis
    ///
    /// # Arguments
    /// * `redis_pool` - Redis connection pool
    /// * `account` - Account identifier
    #[cfg(any(feature = "redis", feature = "full"))]
    pub async fn captcha_slider_delete(
        redis_pool: &Arc<RedisPool>,
        prefix: &str,
        account: &str,
    ) -> AppResult<()> {
        let key = format!("{}{}{}", prefix, Self::CACHE_PREFIX_SLIDER, account);
        redis_pool
            .del(&key)
            .await
            .map_err(|e| AppError::RedisError(e.to_string()))?;
        Ok(())
    }

    // ==================== Numeric Captcha ====================

    /// Generate a numeric captcha (4-6 digits)
    ///
    /// # Arguments
    /// * `redis_pool` - Redis connection pool
    /// * `account` - Account identifier
    /// * `length` - Length of the numeric code (default: 6)
    ///
    /// # Returns
    /// * `Ok(CaptchaData)` containing the captcha ID and code
    ///
    /// # Example
    /// ```rust,ignore
    /// use neocrates::captcha::CaptchaService;
    ///
    /// async fn example(redis_pool: Arc<RedisPool>) {
    ///     let captcha = CaptchaService::gen_numeric_captcha(
    ///         &redis_pool,
    ///         "user@example.com",
    ///         Some(6)
    ///     ).await.unwrap();
    ///
    ///     println!("Captcha ID: {}", captcha.id);
    ///     println!("Captcha Code: {}", captcha.code);
    /// }
    /// ```
    #[cfg(any(feature = "redis", feature = "full"))]
    pub async fn gen_numeric_captcha(
        redis_pool: &Arc<RedisPool>,
        prefix: &str,
        account: &str,
        length: Option<usize>,
        expires_in: Option<u64>,
    ) -> AppResult<CaptchaData> {
        let len = length.unwrap_or(6).clamp(4, 8);

        // Generate random numeric code using uuid for randomness (Send-safe)
        let uuid = crate::uuid::Uuid::new_v4();
        let uuid_bytes = uuid.as_bytes();
        let code: String = (0..len)
            .map(|i| (uuid_bytes[i % 16] % 10).to_string())
            .collect();

        let id = crate::uuid::Uuid::new_v4().to_string();
        let key = format!("{}{}{}", prefix, Self::CACHE_PREFIX_NUMERIC, id);
        let seconds = expires_in.unwrap_or(Self::DEFAULT_EXPIRATION);

        redis_pool
            .setex(&key, code.clone(), seconds)
            .await
            .map_err(|e| AppError::RedisError(e.to_string()))?;

        crate::tracing::info!(
            "gen_numeric_captcha success for account: {}, id: {}",
            account,
            id
        );

        Ok(CaptchaData {
            id,
            code,
            expires_in: seconds,
        })
    }

    /// Validate numeric captcha
    ///
    /// # Arguments
    /// * `redis_pool` - Redis connection pool
    /// * `id` - Captcha ID
    /// * `code` - Code to validate
    /// * `delete` - Whether to delete after validation
    #[cfg(any(feature = "redis", feature = "full"))]
    pub async fn validate_numeric_captcha(
        redis_pool: &Arc<RedisPool>,
        prefix: &str,
        id: &str,
        code: &str,
        delete: bool,
    ) -> AppResult<()> {
        let key = format!("{}{}{}", prefix, Self::CACHE_PREFIX_NUMERIC, id);
        let result = redis_pool
            .get::<_, String>(&key)
            .await
            .map_err(|e| AppError::RedisError(e.to_string()))?;

        match result {
            Some(stored_code) => {
                if stored_code != code {
                    return Err(AppError::ClientError(
                        "Numeric captcha verification failed".to_string(),
                    ));
                }
            }
            None => {
                return Err(AppError::ClientError(
                    "Captcha expired or not found".to_string(),
                ));
            }
        }

        if delete {
            redis_pool
                .del(&key)
                .await
                .map_err(|e| AppError::RedisError(e.to_string()))?;
        }

        crate::tracing::info!("validate_numeric_captcha success for id: {}", id);
        Ok(())
    }

    // ==================== Alphanumeric Captcha ====================

    /// Generate an alphanumeric captcha (letters and numbers)
    ///
    /// # Arguments
    /// * `redis_pool` - Redis connection pool
    /// * `account` - Account identifier
    /// * `length` - Length of the code (default: 6)
    ///
    /// # Returns
    /// * `Ok(CaptchaData)` containing the captcha ID and code
    ///
    /// # Example
    /// ```rust,ignore
    /// use neocrates::captcha::CaptchaService;
    ///
    /// async fn example(redis_pool: Arc<RedisPool>) {
    ///     let captcha = CaptchaService::gen_alphanumeric_captcha(
    ///         &redis_pool,
    ///         "user@example.com",
    ///         Some(6)
    ///     ).await.unwrap();
    ///
    ///     println!("Captcha Code: {}", captcha.code); // e.g., "A3K7M9"
    /// }
    /// ```
    #[cfg(any(feature = "redis", feature = "full"))]
    pub async fn gen_alphanumeric_captcha(
        redis_pool: &Arc<RedisPool>,
        prefix: &str,
        account: &str,
        length: Option<usize>,
        expires_in: Option<u64>,
    ) -> AppResult<CaptchaData> {
        let len = length.unwrap_or(6).clamp(4, 10);

        // Generate random alphanumeric code (excluding confusing characters: 0, O, I, l, 1)
        let charset = b"ABCDEFGHJKLMNPQRSTUVWXYZ23456789";

        // Use uuid for randomness (Send-safe)
        let uuid = crate::uuid::Uuid::new_v4();
        let uuid_bytes = uuid.as_bytes();
        let code: String = (0..len)
            .map(|i| {
                let idx = (uuid_bytes[i % 16] as usize) % charset.len();
                charset[idx] as char
            })
            .collect();

        let id = crate::uuid::Uuid::new_v4().to_string();
        let key = format!("{}{}{}", prefix, Self::CACHE_PREFIX_ALPHA, id);
        let seconds = expires_in.unwrap_or(Self::DEFAULT_EXPIRATION);

        redis_pool
            .setex(&key, code.clone(), seconds)
            .await
            .map_err(|e| AppError::RedisError(e.to_string()))?;

        crate::tracing::info!(
            "gen_alphanumeric_captcha success for account: {}, id: {}",
            account,
            id
        );

        Ok(CaptchaData {
            id,
            code,
            expires_in: seconds,
        })
    }

    /// Validate alphanumeric captcha (case-insensitive)
    ///
    /// # Arguments
    /// * `redis_pool` - Redis connection pool
    /// * `id` - Captcha ID
    /// * `code` - Code to validate
    /// * `delete` - Whether to delete after validation
    #[cfg(any(feature = "redis", feature = "full"))]
    pub async fn validate_alphanumeric_captcha(
        redis_pool: &Arc<RedisPool>,
        prefix: &str,
        id: &str,
        code: &str,
        delete: bool,
    ) -> AppResult<()> {
        let key = format!("{}{}{}", prefix, Self::CACHE_PREFIX_ALPHA, id);
        let result = redis_pool
            .get::<_, String>(&key)
            .await
            .map_err(|e| AppError::RedisError(e.to_string()))?;

        match result {
            Some(stored_code) => {
                if stored_code.to_uppercase() != code.to_uppercase() {
                    return Err(AppError::ClientError(
                        "Captcha verification failed".to_string(),
                    ));
                }
            }
            None => {
                return Err(AppError::ClientError(
                    "Captcha expired or not found".to_string(),
                ));
            }
        }

        if delete {
            redis_pool
                .del(&key)
                .await
                .map_err(|e| AppError::RedisError(e.to_string()))?;
        }

        crate::tracing::info!("validate_alphanumeric_captcha success for id: {}", id);
        Ok(())
    }

    // ==================== Helper Functions ====================

    /// Hash a code using MD5 (for simple obfuscation, not cryptographic security)
    fn hash_code(code: &str) -> String {
        use crate::md5;
        format!("{:x}", md5::compute(code))
    }
}

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

    #[test]
    fn test_captcha_type() {
        assert_eq!(CaptchaType::Slider, CaptchaType::Slider);
        assert_ne!(CaptchaType::Numeric, CaptchaType::Alphanumeric);
    }

    #[test]
    fn test_hash_code() {
        let hash1 = CaptchaService::hash_code("test123");
        let hash2 = CaptchaService::hash_code("test123");
        let hash3 = CaptchaService::hash_code("different");

        assert_eq!(hash1, hash2);
        assert_ne!(hash1, hash3);
    }
}