lenso-module-auth-password 0.1.9

First-party password auth module for the Lenso backend framework.
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
use crate::jwt::JwtConfig;
use platform_core::{
    AppContext, AppError, AppResult, RuntimeConfigDescriptor, RuntimeConfigGeneratedValue,
    RuntimeConfigGroupDescriptor, RuntimeConfigScope, RuntimeConfigSnapshot, RuntimeConfigType,
    RuntimeConfigVisibilityCondition,
};
use serde::Deserialize;
use serde_json::json;
use std::sync::LazyLock;

pub const CONFIG_PREFIX: &str = "auth-password";

const DEFAULT_ARGON2_MEMORY_KIB: u32 = argon2::Params::DEFAULT_M_COST;
const DEFAULT_ARGON2_TIME_COST: u32 = argon2::Params::DEFAULT_T_COST;
const DEFAULT_ARGON2_PARALLELISM: u32 = argon2::Params::DEFAULT_P_COST;
const MIN_ARGON2_MEMORY_KIB: i64 = 8 * 1024;
const MAX_ARGON2_MEMORY_KIB: i64 = 1024 * 1024;
const MAX_ARGON2_TIME_COST: i64 = 10;
const MAX_ARGON2_PARALLELISM: i64 = 8;
const DEFAULT_JWT_TTL_HOURS: u32 = 1;

#[derive(Debug, Clone, Copy, Deserialize, PartialEq, Eq)]
pub enum HashAlgorithm {
    #[serde(rename = "argon2id")]
    Argon2id,
    #[serde(rename = "argon2i")]
    Argon2i,
}

impl Default for HashAlgorithm {
    fn default() -> Self {
        Self::Argon2id
    }
}

/// Token issuance strategy for auth-password.
///
/// - `Session`: create a database-backed session token (default).
/// - `Jwt`: issue a stateless JWT instead of a session — no row in `auth.sessions`.
#[derive(Debug, Clone, Copy, Deserialize, PartialEq, Eq)]
pub enum TokenStrategy {
    #[serde(rename = "session")]
    Session,
    #[serde(rename = "jwt")]
    Jwt,
}

impl Default for TokenStrategy {
    fn default() -> Self {
        Self::Session
    }
}

#[derive(Debug, Clone, Deserialize, PartialEq, Eq)]
pub struct AuthPasswordConfig {
    #[serde(default)]
    pub hash_algorithm: HashAlgorithm,
    #[serde(default = "default_argon2_memory_kib")]
    pub argon2_memory_kib: u32,
    #[serde(default = "default_argon2_time_cost")]
    pub argon2_time_cost: u32,
    #[serde(default = "default_argon2_parallelism")]
    pub argon2_parallelism: u32,
    #[serde(default)]
    pub token_strategy: TokenStrategy,
    #[serde(default)]
    pub jwt_secret: Option<String>,
    #[serde(default)]
    pub jwt_issuer: Option<String>,
    #[serde(default)]
    pub jwt_audience: Option<String>,
    #[serde(default)]
    pub jwt_ttl_hours: Option<u32>,
}

impl Default for AuthPasswordConfig {
    fn default() -> Self {
        Self {
            hash_algorithm: HashAlgorithm::Argon2id,
            argon2_memory_kib: DEFAULT_ARGON2_MEMORY_KIB,
            argon2_time_cost: DEFAULT_ARGON2_TIME_COST,
            argon2_parallelism: DEFAULT_ARGON2_PARALLELISM,
            token_strategy: TokenStrategy::Session,
            jwt_secret: None,
            jwt_issuer: None,
            jwt_audience: None,
            jwt_ttl_hours: None,
        }
    }
}

impl AuthPasswordConfig {
    pub fn from_context(ctx: &AppContext) -> AppResult<Self> {
        let mut config = Self::from_snapshot(&ctx.runtime_config.snapshot())?;
        let local_config = ctx.config.module_local_config(CONFIG_PREFIX)?;
        config.apply_module_local_config(&local_config);
        Ok(config)
    }

    pub fn from_snapshot(snapshot: &RuntimeConfigSnapshot) -> AppResult<Self> {
        snapshot.get(CONFIG_PREFIX)
    }

    pub fn argon2_algorithm(&self) -> argon2::Algorithm {
        match self.hash_algorithm {
            HashAlgorithm::Argon2id => argon2::Algorithm::Argon2id,
            HashAlgorithm::Argon2i => argon2::Algorithm::Argon2i,
        }
    }

    fn apply_module_local_config(&mut self, local_config: &AuthPasswordLocalConfig) {
        if let Some(secret) = local_config.jwt_secret.as_deref().map(str::trim)
            && !secret.is_empty()
        {
            self.jwt_secret = Some(secret.to_owned());
        }
    }

    /// Returns a fully resolved [`JwtConfig`] when `token_strategy` is [`TokenStrategy::Jwt`].
    ///
    /// Returns an error if JWT is selected but `jwt_secret` is missing.
    /// Falls back to defaults for optional fields: issuer `"lenso"`, audience `"lenso"`,
    /// TTL 1 hour.
    pub fn jwt_config(&self) -> AppResult<Option<JwtConfig>> {
        if self.token_strategy != TokenStrategy::Jwt {
            return Ok(None);
        }

        let secret = self.jwt_secret.clone().ok_or_else(|| {
            AppError::validation(
                "Request validation failed",
                vec![platform_core::error::ErrorDetail {
                    field: Some("jwt_secret".to_owned()),
                    reason: "jwt_secret is required when token_strategy is jwt".to_owned(),
                }],
            )
        })?;

        Ok(Some(JwtConfig {
            secret,
            issuer: self
                .jwt_issuer
                .clone()
                .unwrap_or_else(|| "lenso".to_owned()),
            audience: self
                .jwt_audience
                .clone()
                .unwrap_or_else(|| "lenso".to_owned()),
            ttl_hours: self.jwt_ttl_hours.unwrap_or(DEFAULT_JWT_TTL_HOURS),
        }))
    }
}

#[derive(Debug, Clone, Default, Deserialize, PartialEq, Eq)]
struct AuthPasswordLocalConfig {
    #[serde(default)]
    jwt_secret: Option<String>,
}

pub static RUNTIME_CONFIG_GROUPS: LazyLock<Vec<RuntimeConfigGroupDescriptor>> =
    LazyLock::new(|| {
        vec![
            RuntimeConfigGroupDescriptor {
                id: "auth-password.hashing",
                label: "Password Hashing",
                description: "Password hash algorithm and Argon2 parameters.",
                order: 30,
            },
            RuntimeConfigGroupDescriptor {
                id: "auth-password.tokens",
                label: "Tokens",
                description: "Token issuance strategy and JWT settings.",
                order: 40,
            },
        ]
    });

pub static RUNTIME_CONFIG: LazyLock<Vec<RuntimeConfigDescriptor>> = LazyLock::new(|| {
    vec![
        RuntimeConfigDescriptor {
            key: "auth-password.hash_algorithm".to_owned(),
            scope: RuntimeConfigScope::Shared,
            group: Some("auth-password.hashing"),
            section: None,
            order: 10,
            visible_when: None,
            generated: None,
            value_type: RuntimeConfigType::Enum(&["argon2id", "argon2i"]),
            default: json!("argon2id"),
            editable: true,
            restart_only: false,
            description: "Password hash algorithm used for new password hashes.",
        },
        RuntimeConfigDescriptor {
            key: "auth-password.argon2_memory_kib".to_owned(),
            scope: RuntimeConfigScope::Shared,
            group: Some("auth-password.hashing"),
            section: None,
            order: 20,
            visible_when: None,
            generated: None,
            value_type: RuntimeConfigType::Int {
                min: Some(MIN_ARGON2_MEMORY_KIB),
                max: Some(MAX_ARGON2_MEMORY_KIB),
            },
            default: json!(DEFAULT_ARGON2_MEMORY_KIB),
            editable: true,
            restart_only: false,
            description: "Argon2 memory cost in KiB for new password hashes.",
        },
        RuntimeConfigDescriptor {
            key: "auth-password.argon2_time_cost".to_owned(),
            scope: RuntimeConfigScope::Shared,
            group: Some("auth-password.hashing"),
            section: None,
            order: 30,
            visible_when: None,
            generated: None,
            value_type: RuntimeConfigType::Int {
                min: Some(i64::from(argon2::Params::MIN_T_COST)),
                max: Some(MAX_ARGON2_TIME_COST),
            },
            default: json!(DEFAULT_ARGON2_TIME_COST),
            editable: true,
            restart_only: false,
            description: "Argon2 iteration count for new password hashes.",
        },
        RuntimeConfigDescriptor {
            key: "auth-password.argon2_parallelism".to_owned(),
            scope: RuntimeConfigScope::Shared,
            group: Some("auth-password.hashing"),
            section: None,
            order: 40,
            visible_when: None,
            generated: None,
            value_type: RuntimeConfigType::Int {
                min: Some(i64::from(argon2::Params::MIN_P_COST)),
                max: Some(MAX_ARGON2_PARALLELISM),
            },
            default: json!(DEFAULT_ARGON2_PARALLELISM),
            editable: true,
            restart_only: false,
            description: "Argon2 parallelism for new password hashes.",
        },
        RuntimeConfigDescriptor {
            key: "auth-password.token_strategy".to_owned(),
            scope: RuntimeConfigScope::Shared,
            group: Some("auth-password.tokens"),
            section: Some("Issuance"),
            order: 10,
            visible_when: None,
            generated: None,
            value_type: RuntimeConfigType::Enum(&["session", "jwt"]),
            default: json!("session"),
            editable: true,
            restart_only: true,
            description: "Token issuance strategy: session (stateful, DB-backed) or jwt (stateless, self-contained).",
        },
        RuntimeConfigDescriptor {
            key: "auth-password.jwt_secret".to_owned(),
            scope: RuntimeConfigScope::Shared,
            group: Some("auth-password.tokens"),
            section: Some("JWT"),
            order: 20,
            visible_when: Some(jwt_visibility_condition()),
            generated: Some(RuntimeConfigGeneratedValue::Secret {
                bytes: 32,
                when: jwt_visibility_condition(),
            }),
            value_type: RuntimeConfigType::String,
            default: json!(null),
            editable: true,
            restart_only: true,
            description: "HMAC-SHA256 secret for JWT signing. Used when no local module jwt_secret is configured.",
        },
        RuntimeConfigDescriptor {
            key: "auth-password.jwt_issuer".to_owned(),
            scope: RuntimeConfigScope::Shared,
            group: Some("auth-password.tokens"),
            section: Some("JWT"),
            order: 30,
            visible_when: Some(jwt_visibility_condition()),
            generated: None,
            value_type: RuntimeConfigType::String,
            default: json!("lenso"),
            editable: true,
            restart_only: false,
            description: "JWT issuer claim (iss).",
        },
        RuntimeConfigDescriptor {
            key: "auth-password.jwt_audience".to_owned(),
            scope: RuntimeConfigScope::Shared,
            group: Some("auth-password.tokens"),
            section: Some("JWT"),
            order: 40,
            visible_when: Some(jwt_visibility_condition()),
            generated: None,
            value_type: RuntimeConfigType::String,
            default: json!("lenso"),
            editable: true,
            restart_only: false,
            description: "JWT audience claim (aud).",
        },
        RuntimeConfigDescriptor {
            key: "auth-password.jwt_ttl_hours".to_owned(),
            scope: RuntimeConfigScope::Shared,
            group: Some("auth-password.tokens"),
            section: Some("JWT"),
            order: 50,
            visible_when: Some(jwt_visibility_condition()),
            generated: None,
            value_type: RuntimeConfigType::Int {
                min: Some(1),
                max: Some(168),
            },
            default: json!(DEFAULT_JWT_TTL_HOURS),
            editable: true,
            restart_only: false,
            description: "JWT time-to-live in hours.",
        },
    ]
});

fn jwt_visibility_condition() -> RuntimeConfigVisibilityCondition {
    RuntimeConfigVisibilityCondition::Equals {
        service: "*",
        key: "auth-password.token_strategy",
        value: json!("jwt"),
    }
}

fn default_argon2_memory_kib() -> u32 {
    DEFAULT_ARGON2_MEMORY_KIB
}

fn default_argon2_time_cost() -> u32 {
    DEFAULT_ARGON2_TIME_COST
}

fn default_argon2_parallelism() -> u32 {
    DEFAULT_ARGON2_PARALLELISM
}

#[cfg(test)]
mod tests {
    use super::*;
    use platform_core::{RuntimeConfigRegistry, RuntimeConfigSnapshot};
    use std::collections::BTreeMap;

    #[test]
    fn reads_defaults_from_snapshot() {
        let registry = RuntimeConfigRegistry::try_new(RUNTIME_CONFIG.clone()).unwrap();
        let snapshot = RuntimeConfigSnapshot::resolve(&registry, "api", &BTreeMap::new());
        let config = AuthPasswordConfig::from_snapshot(&snapshot).unwrap();

        assert_eq!(
            config,
            AuthPasswordConfig {
                hash_algorithm: HashAlgorithm::Argon2id,
                argon2_memory_kib: DEFAULT_ARGON2_MEMORY_KIB,
                argon2_time_cost: DEFAULT_ARGON2_TIME_COST,
                argon2_parallelism: DEFAULT_ARGON2_PARALLELISM,
                token_strategy: TokenStrategy::Session,
                jwt_secret: None,
                jwt_issuer: Some("lenso".to_owned()),
                jwt_audience: Some("lenso".to_owned()),
                jwt_ttl_hours: Some(DEFAULT_JWT_TTL_HOURS),
            }
        );
    }

    #[test]
    fn reads_configured_hash_policy_from_snapshot() {
        let registry = RuntimeConfigRegistry::try_new(RUNTIME_CONFIG.clone()).unwrap();
        let mut stored = BTreeMap::new();
        stored.insert(
            ("*".to_owned(), "auth-password.hash_algorithm".to_owned()),
            json!("argon2i"),
        );
        stored.insert(
            ("*".to_owned(), "auth-password.argon2_memory_kib".to_owned()),
            json!(16384),
        );
        stored.insert(
            ("*".to_owned(), "auth-password.argon2_time_cost".to_owned()),
            json!(3),
        );
        stored.insert(
            (
                "*".to_owned(),
                "auth-password.argon2_parallelism".to_owned(),
            ),
            json!(2),
        );
        let snapshot = RuntimeConfigSnapshot::resolve(&registry, "api", &stored);
        let config = AuthPasswordConfig::from_snapshot(&snapshot).unwrap();

        assert_eq!(
            config,
            AuthPasswordConfig {
                hash_algorithm: HashAlgorithm::Argon2i,
                argon2_memory_kib: 16384,
                argon2_time_cost: 3,
                argon2_parallelism: 2,
                token_strategy: TokenStrategy::Session,
                jwt_secret: None,
                jwt_issuer: Some("lenso".to_owned()),
                jwt_audience: Some("lenso".to_owned()),
                jwt_ttl_hours: Some(DEFAULT_JWT_TTL_HOURS),
            }
        );
    }

    #[test]
    fn jwt_config_returns_none_when_session_strategy() {
        let config = AuthPasswordConfig::default();
        assert!(config.jwt_config().unwrap().is_none());
    }

    #[test]
    fn jwt_config_returns_error_when_jwt_without_secret() {
        let config = AuthPasswordConfig {
            token_strategy: TokenStrategy::Jwt,
            ..AuthPasswordConfig::default()
        };
        assert!(config.jwt_config().is_err());
    }

    #[test]
    fn jwt_config_returns_config_when_jwt_with_secret() {
        let config = AuthPasswordConfig {
            token_strategy: TokenStrategy::Jwt,
            jwt_secret: Some("my-secret".to_owned()),
            jwt_issuer: Some("custom-issuer".to_owned()),
            jwt_audience: Some("custom-audience".to_owned()),
            jwt_ttl_hours: Some(24),
            ..AuthPasswordConfig::default()
        };
        let jwt_config = config.jwt_config().unwrap().unwrap();
        assert_eq!(jwt_config.secret, "my-secret");
        assert_eq!(jwt_config.issuer, "custom-issuer");
        assert_eq!(jwt_config.audience, "custom-audience");
        assert_eq!(jwt_config.ttl_hours, 24);
    }

    #[test]
    fn module_local_jwt_secret_overrides_runtime_config_secret() {
        let mut config = AuthPasswordConfig {
            jwt_secret: Some("runtime-secret".to_owned()),
            ..AuthPasswordConfig::default()
        };
        config.apply_module_local_config(&AuthPasswordLocalConfig {
            jwt_secret: Some("local-secret".to_owned()),
        });

        assert_eq!(config.jwt_secret.as_deref(), Some("local-secret"));
    }

    #[test]
    fn jwt_config_uses_defaults_for_optional_fields() {
        let config = AuthPasswordConfig {
            token_strategy: TokenStrategy::Jwt,
            jwt_secret: Some("secret".to_owned()),
            ..AuthPasswordConfig::default()
        };
        let jwt_config = config.jwt_config().unwrap().unwrap();
        assert_eq!(jwt_config.issuer, "lenso");
        assert_eq!(jwt_config.audience, "lenso");
        assert_eq!(jwt_config.ttl_hours, DEFAULT_JWT_TTL_HOURS);
    }
}