initial actix_session
This commit is contained in:
parent
a168d30d84
commit
fb8994694a
1 changed files with 21 additions and 3 deletions
|
@ -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;
|
mod controller;
|
||||||
|
|
||||||
|
@ -6,12 +7,29 @@ mod controller;
|
||||||
async fn main() -> std::io::Result<()> {
|
async fn main() -> std::io::Result<()> {
|
||||||
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
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()
|
App::new()
|
||||||
.wrap(Logger::default())
|
.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)
|
.configure(controller::register_controllers)
|
||||||
})
|
})
|
||||||
.bind(("0.0.0.0", 8080))?
|
.bind(("0.0.0.0", 8080))?
|
||||||
.run()
|
.run()
|
||||||
.await
|
.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;
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue