2024-03-13 00:30:06 +01:00
|
|
|
use actix_session::{storage::RedisSessionStore, Session, SessionMiddleware};
|
2022-03-06 00:22:14 +01:00
|
|
|
use actix_web::{cookie::Key, middleware, web, App, Error, HttpRequest, HttpServer, Responder};
|
2017-12-29 06:14:04 +01:00
|
|
|
|
|
|
|
/// simple handler
|
2019-12-15 19:04:47 +01:00
|
|
|
async fn index(req: HttpRequest, session: Session) -> Result<impl Responder, Error> {
|
2023-01-07 02:04:16 +01:00
|
|
|
println!("{req:?}");
|
2017-12-29 06:14:04 +01:00
|
|
|
|
|
|
|
// session
|
2019-03-29 19:31:48 +01:00
|
|
|
if let Some(count) = session.get::<i32>("counter")? {
|
2023-01-07 02:04:16 +01:00
|
|
|
println!("SESSION value: {count}");
|
2021-03-23 23:35:27 +01:00
|
|
|
session.insert("counter", count + 1)?;
|
2017-12-29 06:14:04 +01:00
|
|
|
} else {
|
2021-03-23 23:35:27 +01:00
|
|
|
session.insert("counter", 1)?;
|
2017-12-29 06:14:04 +01:00
|
|
|
}
|
|
|
|
|
2019-03-29 19:31:48 +01:00
|
|
|
Ok("Welcome!")
|
2017-12-29 06:14:04 +01:00
|
|
|
}
|
|
|
|
|
2022-02-03 23:33:47 +01:00
|
|
|
#[actix_web::main]
|
2019-12-15 19:04:47 +01:00
|
|
|
async fn main() -> std::io::Result<()> {
|
2022-03-06 00:22:14 +01:00
|
|
|
env_logger::init_from_env(env_logger::Env::new().default_filter_or("info"));
|
2017-12-29 06:14:04 +01:00
|
|
|
|
2022-03-06 00:22:14 +01:00
|
|
|
// The signing key would usually be read from a configuration file/environment variables.
|
|
|
|
let signing_key = Key::generate();
|
|
|
|
|
2024-03-13 00:30:06 +01:00
|
|
|
log::info!("setting up Redis session storage");
|
|
|
|
let storage = RedisSessionStore::new("127.0.0.1:6379").await.unwrap();
|
|
|
|
|
2022-03-06 00:22:14 +01:00
|
|
|
log::info!("starting HTTP server at http://localhost:8080");
|
|
|
|
|
|
|
|
HttpServer::new(move || {
|
2018-05-08 19:12:57 +02:00
|
|
|
App::new()
|
2017-12-29 06:14:04 +01:00
|
|
|
// enable logger
|
2019-03-29 19:31:48 +01:00
|
|
|
.wrap(middleware::Logger::default())
|
2017-12-29 06:14:04 +01:00
|
|
|
// cookie session middleware
|
2024-03-13 00:30:06 +01:00
|
|
|
.wrap(SessionMiddleware::new(storage.clone(), signing_key.clone()))
|
2017-12-29 06:14:04 +01:00
|
|
|
// register simple route, handle all methods
|
2019-03-29 19:31:48 +01:00
|
|
|
.service(web::resource("/").to(index))
|
|
|
|
})
|
2022-03-06 00:22:14 +01:00
|
|
|
.bind(("127.0.0.1", 8080))?
|
2019-12-26 07:47:31 +01:00
|
|
|
.run()
|
2019-12-15 19:04:47 +01:00
|
|
|
.await
|
2017-12-29 06:14:04 +01:00
|
|
|
}
|