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
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
use crate::{DatabasePool, SessionData, SessionError, SessionStore};
use axum::extract::FromRequestParts;
#[cfg(feature = "key-store")]
use fastbloom_rs::Membership;
use http::{request::Parts, StatusCode};
use serde::Serialize;
use std::fmt::Debug;
/// A Session Store.
///
/// Provides a Storage Handler to SessionStore and contains the ID of the current session.
///
/// This is Auto generated by the Session Layer Upon Service Execution.
#[derive(Debug, Clone)]
pub struct Session<T>
where
T: DatabasePool + Clone + Debug + Sync + Send + 'static,
{
/// The SessionStore that holds all the Sessions.
pub(crate) store: SessionStore<T>,
/// The Sessions current ID for looking up its store.
pub(crate) id: String,
}
/// Adds `FromRequestParts<B>` for Session
///
/// Returns the Session from Axum's request extensions state
impl<T, S> FromRequestParts<S> for Session<T>
where
T: DatabasePool + Clone + Debug + Sync + Send + 'static,
S: Send + Sync,
{
type Rejection = (http::StatusCode, &'static str);
async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> {
parts.extensions.get::<Session<T>>().cloned().ok_or((
StatusCode::INTERNAL_SERVER_ERROR,
"Can't extract Axum `Session`. Is `SessionLayer` enabled?",
))
}
}
impl<S> Session<S>
where
S: DatabasePool + Clone + Debug + Sync + Send + 'static,
{
#[allow(clippy::needless_pass_by_ref_mut)]
pub(crate) async fn new(
store: SessionStore<S>,
value: Option<String>,
) -> Result<(Self, bool), SessionError> {
let (id, is_new) = match value {
Some(v) => (v, false),
None => (Self::generate_id(&store).await?, true),
};
#[cfg(feature = "key-store")]
if store.config.memory.use_bloom_filters {
let contained = {
let filter = store.filter.read().await;
filter.contains(id.as_bytes())
};
if !contained {
let mut filter = store.filter.write().await;
filter.add(id.as_bytes());
}
}
Ok((Self { id, store }, is_new))
}
#[cfg(feature = "key-store")]
pub(crate) async fn generate_id(store: &SessionStore<S>) -> Result<String, SessionError> {
loop {
let token = store.config.id_generator.generate();
if (!store.config.memory.use_bloom_filters || store.auto_handles_expiry())
&& !store.inner.contains_key(&token)
{
//This fixes an already used but in database issue.
if let Some(client) = &store.client {
// Unwrap should be safe to use as we would want it to crash if there was a major database error.
// This would mean the database no longer is online or the table missing etc.
if !client
.exists(&token.to_string(), &store.config.database.table_name)
.await?
{
return Ok(token);
}
} else {
return Ok(token);
}
} else {
let filter = store.filter.read().await;
if !filter.contains(token.to_string().as_bytes()) {
return Ok(token);
}
}
}
}
#[cfg(not(feature = "key-store"))]
pub(crate) async fn generate_id(store: &SessionStore<S>) -> Result<String, SessionError> {
loop {
let token = store.config.id_generator.generate();
if !store.inner.contains_key(&token) {
//This fixes an already used but in database issue.
if let Some(client) = &store.client {
// Unwrap should be safe to use as we would want it to crash if there was a major database error.
// This would mean the database no longer is online or the table missing etc.
if !client
.exists(&token.to_string(), &store.config.database.table_name)
.await?
{
return Ok(token);
}
} else {
return Ok(token);
}
}
}
}
/// Sets the Session to create the SessionData based on the current Session ID.
/// You can only use this if SessionMode::Manual is set or it will Panic.
/// This will also set the store to true similar to session.set_store(true);
///
/// # Examples
/// ```rust ignore
/// session.create_data();
/// ```
///
#[inline]
pub fn create_data(&self) {
if !self.store.config.session_mode.is_manual() {
panic!(
"Session must be set to SessionMode::Manual in order to use create_data,
as the Session data is created already."
);
}
let session_data = SessionData::new(self.id.clone(), true, &self.store.config);
self.store.inner.insert(self.id.clone(), session_data);
}
/// Checks if the SessionData was created or not.
///
/// # Examples
/// ```rust ignore
/// if session.data_exists() {
/// println!("data Exists");
/// }
/// ```
///
#[inline]
pub fn data_exists(&self) -> bool {
self.store.inner.contains_key(&self.id)
}
/// Set session flags to renew/regenerate the ID.
/// This deletes data from the database keyed with the old ID.
/// This helps to enhance security when logging into secure
/// areas on a website. The current session's data will be
/// stored with the new ID.
///
/// # Examples
/// ```rust ignore
/// session.renew();
/// ```
///
#[inline]
pub fn renew(&self) {
self.store.renew(self.id.clone());
}
/// Sets the Session to force update the database.
/// This will increase the Timer on the sessions store
/// making the session live longer in the persistent database.
///
/// # Examples
/// ```rust ignore
/// session.renew();
/// ```
///
#[inline]
pub fn update(&self) {
self.store.update(self.id.clone());
}
/// Sets the Current Session to be Destroyed.
/// This will Deleted the Session and Cookies upon Response Phase.
///
/// # Examples
/// ```rust ignore
/// session.destroy();
/// ```
///
#[inline]
pub fn destroy(&self) {
self.store.destroy(self.id.clone());
}
/// Sets the Current Session to a long term expiration. Useful for Remember Me setups.
/// This will also update the database on Response Phase.
///
/// # Examples
/// ```rust ignore
/// session.set_longterm(true);
/// ```
///
#[inline]
pub fn set_longterm(&self, longterm: bool) {
self.store.set_longterm(self.id.clone(), longterm);
}
/// Allows the Current Session to store.
/// This will also update the database on Response Phase.
///
/// This is only used when `SessionMode` is Manual or OptIn.
/// This will allow the Session to be stored if true.
/// This will delete and not allow a session to be stored if false.
///
/// # Examples
/// ```rust ignore
/// session.set_store(true);
/// ```
///
#[inline]
pub fn set_store(&self, can_store: bool) {
self.store.set_store(self.id.clone(), can_store);
}
/// Gets data from the Session's HashMap
///
/// Provides an `Option<T>` that returns the requested data from the Sessions store.
/// Returns None if Key does not exist or if serde_json failed to deserialize.
///
/// # Examples
/// ```rust ignore
/// let id = session.get("user-id").unwrap_or(0);
/// ```
///
///Used to get data stored within SessionData's hashmap from a key value.
///
#[inline]
pub fn get<T: serde::de::DeserializeOwned>(&self, key: &str) -> Option<T> {
self.store.get(self.id.clone(), key)
}
/// Removes a Key from the Current Session's HashMap returning it.
///
/// Provides an `Option<T> `that returns the requested data from the Sessions store.
/// Returns None if Key does not exist or if serde_json failed to deserialize.
///
/// # Examples
/// ```rust ignore
/// let id = session.get_remove("user-id").unwrap_or(0);
/// ```
///
/// Used to get data stored within SessionData's hashmap from a key value.
///
#[inline]
pub fn get_remove<T: serde::de::DeserializeOwned>(&self, key: &str) -> Option<T> {
self.store.get_remove(self.id.clone(), key)
}
/// Sets data to the Current Session's HashMap.
/// This will also update the database on Response Phase.
///
/// # Examples
/// ```rust ignore
/// session.set("user-id", 1);
/// ```
///
#[inline]
pub fn set(&self, key: &str, value: impl Serialize) {
self.store.set(self.id.clone(), key, value);
}
/// Removes a Key from the Current Session's HashMap.
/// Does not process the String into a Type, Just removes it.
/// This will also update the database on Response Phase.
///
/// # Examples
/// ```rust ignore
/// let _ = session.remove("user-id");
/// ```
///
#[inline]
pub fn remove(&self, key: &str) {
self.store.remove(self.id.clone(), key);
}
/// Clears all data from the Current Session's HashMap instantly.
/// This will also update the database on Response Phase.
///
/// # Examples
/// ```rust ignore
/// session.clear();
/// ```
///
#[inline]
pub fn clear(&self) {
self.store.clear_session_data(self.id.clone());
}
/// Returns a i64 count of how many Sessions exist.
///
/// If the Session is persistent it will return all sessions within the database.
/// If the Session is not persistent it will return a count within SessionStore.
///
/// # Examples
/// ```rust ignore
/// let count = session.count().await;
/// ```
///
#[inline]
pub async fn count(&self) -> i64 {
self.store.count_sessions().await
}
/// Returns the SessionID for this Session.
///
/// # Examples
/// ```rust ignore
/// let session_id = session.get_session_id();
/// ```
///
#[inline]
pub fn get_session_id(&self) -> String {
self.id.clone()
}
/// Returns the store for this Session.
///
/// The store contains everything that all sessions need.
///
/// # Examples
/// ```rust ignore
/// let store = session.get_store();
/// ```
///
#[inline]
pub fn get_store(&self) -> &SessionStore<S> {
&self.store
}
/// Returns a mutable store for this Session.
///
/// The store contains everything that all sessions need.
///
/// # Examples
/// ```rust ignore
/// let store = session.get_store_mut();
/// ```
///
#[inline]
pub fn get_mut_store(&mut self) -> &mut SessionStore<S> {
&mut self.store
}
/// Removes a Request from the request counter
/// used to determine if parallel requests exist.
/// prevents data deletion until requests == 0.
///
/// # Examples
/// ```rust ignore
/// session.remove_request();
/// ```
///
#[inline]
pub(crate) fn remove_request(&self) {
self.store.remove_session_request(self.id.clone());
}
/// Removes a Request from the request counter
/// used to determine if parallel requests exist.
/// prevents data deletion until requests == 0.
///
/// # Examples
/// ```rust ignore
/// session.set_request();
/// ```
///
#[inline]
pub(crate) fn set_request(&self) {
self.store.set_session_request(self.id.clone());
}
/// checks if a session has more than one request.
///
/// # Examples
/// ```rust ignore
/// session.is_parallel();
/// ```
///
#[inline]
pub(crate) fn is_parallel(&self) -> bool {
self.store.is_session_parallel(self.id.clone())
}
/// checks if a session exists and if it is outdated.
///
/// # Examples
/// ```rust ignore
/// session.verify();
/// ```
///
#[cfg(feature = "advanced")]
#[cfg_attr(docsrs, doc(cfg(feature = "advanced")))]
#[inline]
pub fn verify(&self) -> Result<(), SessionError> {
self.store.verify(self.id.clone())
}
/// Updates the sessions stored database expire time.
/// Use this before forcing a update to the database store.
/// will update the database expires based on
/// if the session is longterm then configs max_lifespan.
/// if not then configs lifespan.
///
/// THIS WILL NOT UPDATE THE DATABASE SIDE.
///
/// # Examples
/// ```rust ignore
/// session.update_database_expires();
/// ```
///
#[cfg(feature = "advanced")]
#[cfg_attr(docsrs, doc(cfg(feature = "advanced")))]
#[inline]
pub fn update_database_expires(&self) -> Result<(), SessionError> {
self.store.update_database_expires(self.id.clone())
}
/// Updates the Sessions In memory auto remove timer.
/// Will prevent it from being removed for the configs set memory_lifespan.
///
/// # Examples
/// ```rust ignore
/// session.update_memory_expires();
/// ```
///
#[cfg(feature = "advanced")]
#[cfg_attr(docsrs, doc(cfg(feature = "advanced")))]
#[inline]
pub fn update_memory_expires(&self) -> Result<(), SessionError> {
self.store.update_memory_expires(self.id.clone())
}
/// forces a update to the databases stored data for the session.
/// Make sure to update the databases expire time before running this or
/// the data could be unloaded by a request checking for outdated sessions.
///
/// # Examples
/// ```rust ignore
/// session.force_database_update().await;
/// ```
///
#[cfg(feature = "advanced")]
#[cfg_attr(docsrs, doc(cfg(feature = "advanced")))]
#[inline]
pub async fn force_database_update(&self) -> Result<(), SessionError> {
self.store.force_database_update(self.id.clone()).await
}
/// Removes the session from the memory store if it is not parallel.
/// If it is parallel then each parallel session will need to call this once.
/// when all parallel sessions are dead this gets unloaded.
///
/// THIS DOES NOT CLEAR THE KEY STORE.
///
/// # Examples
/// ```rust ignore
/// session.memory_remove_session();
/// ```
///
#[cfg(feature = "advanced")]
#[cfg_attr(docsrs, doc(cfg(feature = "advanced")))]
#[inline]
pub fn memory_remove_session(&self) -> Result<(), SessionError> {
self.store.memory_remove_session(self.id.clone())
}
/// Removes the session from the Database store.
///
/// THIS DOES NOT REMOVE THE KEY STORE.
///
/// # Examples
/// ```rust ignore
/// session.database_remove_session().await;
/// ```
///
#[cfg(feature = "advanced")]
#[cfg_attr(docsrs, doc(cfg(feature = "advanced")))]
#[inline]
pub async fn database_remove_session(&self) -> Result<(), SessionError> {
self.store.database_remove_session(self.id.clone()).await
}
}
#[derive(Debug, Clone)]
pub struct ReadOnlySession<T>
where
T: DatabasePool + Clone + Debug + Sync + Send + 'static,
{
pub(crate) store: SessionStore<T>,
pub(crate) id: String,
}
impl<T> From<Session<T>> for ReadOnlySession<T>
where
T: DatabasePool + Clone + Debug + Sync + Send + 'static,
{
fn from(session: Session<T>) -> Self {
ReadOnlySession {
store: session.store,
id: session.id,
}
}
}
/// Adds `FromRequestParts<B>` for Session
///
/// Returns the Session from Axum's request extensions state.
impl<T, S> FromRequestParts<S> for ReadOnlySession<T>
where
T: DatabasePool + Clone + Debug + Sync + Send + 'static,
S: Send + Sync,
{
type Rejection = (http::StatusCode, &'static str);
async fn from_request_parts(parts: &mut Parts, _state: &S) -> Result<Self, Self::Rejection> {
let session = parts.extensions.get::<Session<T>>().cloned().ok_or((
StatusCode::INTERNAL_SERVER_ERROR,
"Can't extract Axum `Session`. Is `SessionLayer` enabled?",
))?;
Ok(session.into())
}
}
impl<S> ReadOnlySession<S>
where
S: DatabasePool + Clone + Debug + Sync + Send + 'static,
{
/// Gets data from the Session's HashMap
///
/// Provides an `Option<T>` that returns the requested data from the Sessions store.
/// Returns None if Key does not exist or if serde_json failed to deserialize.
///
/// # Examples
/// ```rust ignore
/// let id = session.get("user-id").unwrap_or(0);
/// ```
///
///Used to get data stored within SessionData's hashmap from a key value.
///
#[inline]
pub fn get<T: serde::de::DeserializeOwned>(&self, key: &str) -> Option<T> {
self.store.get(self.id.clone(), key)
}
/// Returns a i64 count of how many Sessions exist.
///
/// If the Session is persistent it will return all sessions within the database.
/// If the Session is not persistent it will return a count within SessionStore.
///
/// # Examples
/// ```rust ignore
/// let count = session.count().await;
/// ```
///
#[inline]
pub async fn count(&self) -> i64 {
self.store.count_sessions().await
}
}