Crates.io | actix-session-surrealdb |
lib.rs | actix-session-surrealdb |
version | 0.1.8 |
source | src |
created_at | 2023-05-10 18:46:28.114674 |
updated_at | 2024-01-12 19:53:06.981211 |
description | Surrealdb SessionStore for actix-session |
homepage | |
repository | https://github.com/ixhbinphoenix/actix-session-surrealdb |
max_upload_size | |
id | 861531 |
size | 21,027 |
A library for actix-session which implements the SessionStore
trait for SurrealDB.
NOT AN OFFICIAL LIBRARY FROM actix
!
This library was built for a Project of mine, and as such, is only tested for my specific use-case. I will try to support other use-cases, so please open Issues for errors you encounter, but this is more "best-effort" support than full.
This library is not tested very well, so use at your own risk. You also probably shouldn't use this in your production, but I'm not your Boss so do as you wish.
Minimum Supported Rust Version (MSRV): 1.75
You can use the SurrealSessionStore
similarly to the CookieSessionStore
or RedisSessionStore
, but you'll have to connect and check your database first
#[actix_web::main]
async fn main() -> io::Result<()> {
let db = Surreal::new<Ws>("127.0.0.1:8000").await.unwrap();
db.signin({
user: "root",
pass: "root",
}).await.unwrap();
db.use_ns("test").use_db("test").await.unwrap();
let session_store = SurrealSessionStore::from_connection(db, "sessions");
let key = Key::generate();
HttpServer::new(move || {
App::new()
.wrap(
SessionMiddleware::builder(session_store.clone(), key.clone())
.cookie_same_site(actix_web::cookie::SameSite::None)
.cookie_secure(true)
.cookie_http_only(true)
.session_lifecycle(
PersistentSession::default()
.session_ttl_policy(actix_session::config::TtlExtensionPolicy::OnStateChanges)
.session_ttl(Duration::days(7)),
)
.build()
)
})
.bind(("127.0.0.1", "8080"))?
.run()
.await
}
This Project is licensed under the MIT License which can be found here.