mirror of
https://github.com/actix/examples
synced 2024-12-02 18:02:22 +01:00
60 lines
1.8 KiB
Rust
60 lines
1.8 KiB
Rust
//! Example of cookie based session
|
|
//! Session data is stored in cookie, it is limited to 4kb
|
|
//!
|
|
//! [Redis session example](https://github.com/actix/examples/tree/HEAD/auth/redis-session)
|
|
//!
|
|
//! [User guide](https://actix.rs/docs/middleware/#user-sessions)
|
|
|
|
use actix_session::{
|
|
config::PersistentSession, storage::CookieSessionStore, Session, SessionMiddleware,
|
|
};
|
|
use actix_web::{
|
|
cookie::{self, Key},
|
|
middleware::Logger,
|
|
web, App, HttpRequest, HttpServer, Result,
|
|
};
|
|
|
|
/// simple index handler with session
|
|
async fn index(session: Session, req: HttpRequest) -> Result<&'static str> {
|
|
log::info!("{req:?}");
|
|
|
|
// RequestSession trait is used for session access
|
|
let mut counter = 1;
|
|
if let Some(count) = session.get::<i32>("counter")? {
|
|
log::info!("SESSION value: {count}");
|
|
counter = count + 1;
|
|
session.insert("counter", counter)?;
|
|
} else {
|
|
session.insert("counter", counter)?;
|
|
}
|
|
|
|
Ok("welcome!")
|
|
}
|
|
|
|
#[actix_web::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
std::env::set_var("RUST_LOG", "info");
|
|
env_logger::init();
|
|
log::info!("Starting http server: 127.0.0.1:8080");
|
|
|
|
HttpServer::new(|| {
|
|
App::new()
|
|
// enable logger
|
|
.wrap(Logger::default())
|
|
// cookie session middleware
|
|
.wrap(
|
|
SessionMiddleware::builder(CookieSessionStore::default(), Key::from(&[0; 64]))
|
|
.cookie_secure(false)
|
|
// customize session and cookie expiration
|
|
.session_lifecycle(
|
|
PersistentSession::default().session_ttl(cookie::time::Duration::hours(2)),
|
|
)
|
|
.build(),
|
|
)
|
|
.service(web::resource("/").to(index))
|
|
})
|
|
.bind(("127.0.0.1", 8080))?
|
|
.run()
|
|
.await
|
|
}
|