cataclysm 0.3.0-beta.3

A simple http framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use crate::{
    Error,
    http::{Request, Response},
    session::Session
};
use std::collections::HashMap;

/// Helper trait to give some flexibility to session creation
pub trait SessionCreator: Send + Sync {
    /// Main method, takes the request and should build the session
    ///
    /// In case you are trying to implement this trait yourself, you can use the crate's `custom` method from the `Error` num to give more information if a failure occurs, for debugging porpuses
    fn create(&self, req: &Request) -> Result<Session, Error>;
    /// Secondary method, applies whatever is required to save the session
    ///
    /// The response is provided in case you require to alter the response (applies for JWT or Cookie sessions). The values of the session are also provided (as they might be used to create a signature). In case you are trying to implement this trait yourself, you can use the crate's `custom` method from the `Error` num to give more information if a failure occurs, for debugging porpuses
    fn apply(&self, values: &HashMap<String, String>, res: Response) -> Response;
}