initial actix_session

This commit is contained in:
Mika Bomm 2025-03-31 11:55:33 +02:00
parent a168d30d84
commit fb8994694a

View file

@ -1,4 +1,5 @@
use actix_web::{web, App, HttpResponse, HttpServer, middleware::Logger};
use actix_session::{SessionMiddleware, storage::RedisSessionStore};
use actix_web::{App, HttpResponse, HttpServer, cookie::Key, middleware::Logger, web};
mod controller;
@ -6,12 +7,29 @@ mod controller;
async fn main() -> std::io::Result<()> {
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
HttpServer::new(|| {
let redis_conn = connect_to_redis_database().await;
HttpServer::new(move || {
App::new()
.wrap(Logger::default())
.wrap(SessionMiddleware::new(
redis_conn.clone(),
// use dotenvy here to get SECRET_KEY (if we want to have the same on every startup)
Key::generate(),
))
.configure(controller::register_controllers)
})
.bind(("0.0.0.0", 8080))?
.run()
.await
}
}
async fn connect_to_redis_database() -> RedisSessionStore {
// Build the redis Connection from the .env file Variables
let redis_connection_string = "redis://127.0.0.1:6379";
let store = RedisSessionStore::new(redis_connection_string)
.await
.unwrap();
return store;
}