reinhardt-auth 0.1.2

Authentication and authorization system
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
//! Session key rotation for enhanced security
//!
//! This module provides functionality to rotate session keys automatically
//! to prevent session fixation attacks and improve security.
//!
//! ## Example
//!
//! ```rust
//! use reinhardt_auth::sessions::rotation::{RotationPolicy, SessionRotator};
//! use reinhardt_auth::sessions::Session;
//! use reinhardt_auth::sessions::backends::InMemorySessionBackend;
//!
//! # async fn example() -> Result<(), Box<dyn std::error::Error>> {
//! let backend = InMemorySessionBackend::new();
//! let mut session = Session::new(backend.clone());
//!
//! // Set some data
//! session.set("user_id", 42)?;
//!
//! // Create rotator with policy
//! let rotator = SessionRotator::new(RotationPolicy::OnLogin);
//!
//! // Rotate session key
//! rotator.rotate(&mut session).await?;
//!
//! // Data is preserved, but key has changed
//! let user_id: i32 = session.get("user_id")?.unwrap();
//! assert_eq!(user_id, 42);
//! # Ok(())
//! # }
//! ```

#![allow(clippy::field_reassign_with_default)]
use super::backends::{SessionBackend, SessionError};
use super::session::Session;
use chrono::{DateTime, Duration as ChronoDuration, Utc};
use std::time::Duration;

/// Session rotation policy
///
/// Defines when session keys should be rotated.
///
/// # Example
///
/// ```rust
/// use reinhardt_auth::sessions::rotation::RotationPolicy;
/// use std::time::Duration;
///
/// // Rotate on every login
/// let on_login = RotationPolicy::OnLogin;
///
/// // Rotate every hour
/// let periodic = RotationPolicy::Periodic(Duration::from_secs(3600));
///
/// // Rotate after specific number of requests
/// let after_requests = RotationPolicy::AfterRequests(100);
/// ```
#[derive(Debug, Clone)]
pub enum RotationPolicy {
	/// Rotate session key on user login
	OnLogin,
	/// Rotate session key periodically
	Periodic(Duration),
	/// Rotate session key after N requests
	AfterRequests(usize),
	/// Rotate on privilege escalation
	OnPrivilegeEscalation,
	/// Never rotate (not recommended for production)
	Never,
}

impl Default for RotationPolicy {
	/// Create default rotation policy
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_auth::sessions::rotation::RotationPolicy;
	///
	/// let policy = RotationPolicy::default();
	/// // Default is OnLogin
	/// ```
	fn default() -> Self {
		Self::OnLogin
	}
}

/// Session rotation metadata
#[derive(Debug, Clone, serde::Serialize, serde::Deserialize)]
pub struct RotationMetadata {
	/// When the session key was last rotated
	pub last_rotation: DateTime<Utc>,
	/// Number of requests since last rotation
	pub request_count: usize,
}

impl Default for RotationMetadata {
	fn default() -> Self {
		Self {
			last_rotation: Utc::now(),
			request_count: 0,
		}
	}
}

/// Session rotator
///
/// Handles session key rotation based on configured policy.
///
/// # Example
///
/// ```rust
/// use reinhardt_auth::sessions::rotation::{SessionRotator, RotationPolicy};
/// use reinhardt_auth::sessions::Session;
/// use reinhardt_auth::sessions::backends::InMemorySessionBackend;
///
/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
/// let backend = InMemorySessionBackend::new();
/// let mut session = Session::new(backend);
///
/// session.set("user_id", 123)?;
///
/// let rotator = SessionRotator::new(RotationPolicy::OnLogin);
/// rotator.rotate(&mut session).await?;
///
/// // Session key has changed but data is preserved
/// let user_id: i32 = session.get("user_id")?.unwrap();
/// assert_eq!(user_id, 123);
/// # Ok(())
/// # }
/// ```
pub struct SessionRotator {
	policy: RotationPolicy,
}

impl SessionRotator {
	/// Create a new session rotator with the given policy
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_auth::sessions::rotation::{SessionRotator, RotationPolicy};
	/// use std::time::Duration;
	///
	/// let rotator = SessionRotator::new(RotationPolicy::Periodic(Duration::from_secs(3600)));
	/// ```
	pub fn new(policy: RotationPolicy) -> Self {
		Self { policy }
	}

	/// Rotate session key
	///
	/// This preserves all session data while changing the session key.
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_auth::sessions::rotation::{SessionRotator, RotationPolicy};
	/// use reinhardt_auth::sessions::Session;
	/// use reinhardt_auth::sessions::backends::InMemorySessionBackend;
	///
	/// # async fn example() -> Result<(), Box<dyn std::error::Error>> {
	/// let backend = InMemorySessionBackend::new();
	/// let mut session = Session::new(backend);
	///
	/// session.set("data", "value")?;
	/// let old_key = session.get_or_create_key().to_string();
	///
	/// let rotator = SessionRotator::new(RotationPolicy::OnLogin);
	/// rotator.rotate(&mut session).await?;
	///
	/// // Key has changed
	/// assert_ne!(session.get_or_create_key(), old_key);
	///
	/// // Data is preserved
	/// let data: String = session.get("data")?.unwrap();
	/// assert_eq!(data, "value");
	/// # Ok(())
	/// # }
	/// ```
	pub async fn rotate<B: SessionBackend>(
		&self,
		session: &mut Session<B>,
	) -> Result<(), SessionError> {
		// Use the existing cycle_key method which preserves data
		session.cycle_key().await?;

		// Update rotation metadata
		let metadata = RotationMetadata::default();
		session
			.set("_rotation_metadata", metadata)
			.map_err(|e| SessionError::SerializationError(e.to_string()))?;

		Ok(())
	}

	/// Check if rotation is needed based on policy
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_auth::sessions::rotation::{SessionRotator, RotationPolicy, RotationMetadata};
	/// use std::time::Duration;
	///
	/// let rotator = SessionRotator::new(RotationPolicy::AfterRequests(100));
	///
	/// let mut metadata = RotationMetadata::default();
	/// metadata.request_count = 99;
	/// assert!(!rotator.should_rotate(&metadata));
	///
	/// metadata.request_count = 100;
	/// assert!(rotator.should_rotate(&metadata));
	/// ```
	pub fn should_rotate(&self, metadata: &RotationMetadata) -> bool {
		match &self.policy {
			RotationPolicy::OnLogin => false, // Handled externally
			RotationPolicy::Periodic(duration) => {
				let elapsed = Utc::now() - metadata.last_rotation;
				elapsed > ChronoDuration::from_std(*duration).unwrap()
			}
			RotationPolicy::AfterRequests(max_requests) => metadata.request_count >= *max_requests,
			RotationPolicy::OnPrivilegeEscalation => false, // Handled externally
			RotationPolicy::Never => false,
		}
	}

	/// Increment request count in metadata
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_auth::sessions::rotation::{SessionRotator, RotationMetadata};
	///
	/// let rotator = SessionRotator::default();
	/// let mut metadata = RotationMetadata::default();
	///
	/// assert_eq!(metadata.request_count, 0);
	/// rotator.increment_request_count(&mut metadata);
	/// assert_eq!(metadata.request_count, 1);
	/// ```
	pub fn increment_request_count(&self, metadata: &mut RotationMetadata) {
		metadata.request_count += 1;
	}
}

impl Default for SessionRotator {
	/// Create session rotator with default policy
	///
	/// # Example
	///
	/// ```rust
	/// use reinhardt_auth::sessions::rotation::SessionRotator;
	///
	/// let rotator = SessionRotator::default();
	/// ```
	fn default() -> Self {
		Self::new(RotationPolicy::default())
	}
}

#[cfg(test)]
mod tests {
	use super::*;
	use crate::sessions::InMemorySessionBackend;
	use rstest::rstest;

	#[rstest]
	#[tokio::test]
	async fn test_rotation_policy_default() {
		let policy = RotationPolicy::default();
		match policy {
			RotationPolicy::OnLogin => {}
			_ => panic!("Expected OnLogin policy"),
		}
	}

	#[rstest]
	#[tokio::test]
	async fn test_rotation_metadata_default() {
		let metadata = RotationMetadata::default();
		assert_eq!(metadata.request_count, 0);
		assert!(metadata.last_rotation <= Utc::now());
	}

	#[rstest]
	#[tokio::test]
	async fn test_session_rotator_creation() {
		let _rotator = SessionRotator::new(RotationPolicy::OnLogin);
	}

	#[rstest]
	#[tokio::test]
	async fn test_session_rotator_default() {
		let _rotator = SessionRotator::default();
	}

	#[rstest]
	#[tokio::test]
	async fn test_rotate_session() {
		let backend = InMemorySessionBackend::new();
		let mut session = Session::new(backend);

		session.set("user_id", 123).unwrap();
		let old_key = session.get_or_create_key().to_string();

		let rotator = SessionRotator::new(RotationPolicy::OnLogin);
		rotator.rotate(&mut session).await.unwrap();

		// Key has changed
		assert_ne!(session.get_or_create_key(), old_key);

		// Data is preserved
		let user_id: i32 = session.get("user_id").unwrap().unwrap();
		assert_eq!(user_id, 123);
	}

	#[rstest]
	#[tokio::test]
	async fn test_should_rotate_periodic() {
		let rotator = SessionRotator::new(RotationPolicy::Periodic(Duration::from_secs(3600)));

		let metadata = RotationMetadata::default();
		// Just created, should not rotate
		assert!(!rotator.should_rotate(&metadata));

		// Old metadata, should rotate
		let old_metadata = RotationMetadata {
			last_rotation: Utc::now() - ChronoDuration::hours(2),
			request_count: 0,
		};
		assert!(rotator.should_rotate(&old_metadata));
	}

	#[rstest]
	#[tokio::test]
	async fn test_should_rotate_after_requests() {
		let rotator = SessionRotator::new(RotationPolicy::AfterRequests(100));

		let mut metadata = RotationMetadata::default();
		metadata.request_count = 99;
		assert!(!rotator.should_rotate(&metadata));

		metadata.request_count = 100;
		assert!(rotator.should_rotate(&metadata));

		metadata.request_count = 150;
		assert!(rotator.should_rotate(&metadata));
	}

	#[rstest]
	#[tokio::test]
	async fn test_should_rotate_never() {
		let rotator = SessionRotator::new(RotationPolicy::Never);

		let metadata = RotationMetadata::default();
		assert!(!rotator.should_rotate(&metadata));

		let old_metadata = RotationMetadata {
			last_rotation: Utc::now() - ChronoDuration::days(365),
			request_count: 1000000,
		};
		assert!(!rotator.should_rotate(&old_metadata));
	}

	#[rstest]
	#[tokio::test]
	async fn test_increment_request_count() {
		let rotator = SessionRotator::default();
		let mut metadata = RotationMetadata::default();

		assert_eq!(metadata.request_count, 0);
		rotator.increment_request_count(&mut metadata);
		assert_eq!(metadata.request_count, 1);
		rotator.increment_request_count(&mut metadata);
		assert_eq!(metadata.request_count, 2);
	}

	#[rstest]
	#[tokio::test]
	async fn test_rotate_preserves_all_session_data() {
		// Arrange
		let backend = InMemorySessionBackend::new();
		let mut session = Session::new(backend);
		session.set("user_id", 42).unwrap();
		session.set("role", "admin").unwrap();
		session.set("theme", "dark").unwrap();
		let old_key = session.get_or_create_key().to_string();
		let rotator = SessionRotator::new(RotationPolicy::OnLogin);

		// Act
		rotator.rotate(&mut session).await.unwrap();

		// Assert
		assert_ne!(session.get_or_create_key(), old_key);
		let user_id: i32 = session.get("user_id").unwrap().unwrap();
		assert_eq!(user_id, 42);
		let role: String = session.get("role").unwrap().unwrap();
		assert_eq!(role, "admin");
		let theme: String = session.get("theme").unwrap().unwrap();
		assert_eq!(theme, "dark");
	}

	#[rstest]
	#[tokio::test]
	async fn test_rotation_metadata_stored() {
		// Arrange
		let backend = InMemorySessionBackend::new();
		let mut session = Session::new(backend);
		session.set("user_id", 1).unwrap();
		let rotator = SessionRotator::new(RotationPolicy::OnLogin);

		// Act
		rotator.rotate(&mut session).await.unwrap();

		// Assert
		let metadata: RotationMetadata = session.get("_rotation_metadata").unwrap().unwrap();
		assert_eq!(metadata.request_count, 0);
		assert!(metadata.last_rotation <= Utc::now());
	}

	#[rstest]
	#[tokio::test]
	async fn test_never_policy_no_rotation() {
		// Arrange
		let rotator = SessionRotator::new(RotationPolicy::Never);
		let metadata = RotationMetadata::default();

		// Act
		let should_rotate = rotator.should_rotate(&metadata);

		// Assert
		assert!(!should_rotate);
	}
}