gpt4 book ai didi

php - 使用 Redis 作为 session 存储时,如何在 actix-session 和 PHP 应用程序之间共享 session ?

转载 作者:行者123 更新时间:2023-11-29 08:20:05 35 4
gpt4 key购买 nike

我想将使用 Redis 作为 session 存储的 PHP 网站切换到 actix-web。我遇到的唯一问题是在我的子域之间共享 session 。我有很多服务,只有其中一些会切换到 Rust。

A crate already exists for sessions :

use actix_session::{CookieSession, Session};
use actix_web::{web, App, Error, HttpResponse, HttpServer};

fn index(session: Session) -> Result<&'static str, Error> {
// access session data
if let Some(count) = session.get::<i32>("counter")? {
println!("SESSION value: {}", count);
session.set("counter", count + 1)?;
} else {
session.set("counter", 1)?;
}

Ok("Welcome!")
}

fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new()
.wrap(
CookieSession::signed(&[0; 32]) // <- create cookie based session middleware
.secure(false),
)
.service(web::resource("/").to(|| HttpResponse::Ok()))
})
.bind("127.0.0.1:59880")?
.run()
}

我的目标是能够从我的 PHP 脚本中读取 Rust session 。

这是我尝试过的:

session_name('RustAndPHP'); // I don't have any idea to name the sessions in Rust

session_set_cookie_params(0,"/",".mydomainname.com",FALSE,FALSE);
setcookie(session_name(), session_id(),0,"/","mydomainname.com");
session_start();

最后,我更改了默认 cookie:

setcookie( "mysession", "",1,"/" );
setcookie( "PHPSESSID", "",1,"/" );

我不知道 Rust 中使用的 session 格式以及如何与 PHP 共享它。

最佳答案

actix-session serializes session data to JSONsigns the cookiesets the name of the cookie to actix-session

要验证,运行 minimal cookie-session-example 并使用 curl 发出请求:

$ curl -v localhost:8080
> GET / HTTP/1.1
> Host: localhost:8080
> User-Agent: curl/7.54.0
> Accept: */*
>
< HTTP/1.1 200 OK
< content-length: 8
< content-type: text/plain; charset=utf-8
< set-cookie: actix-session=ZTe%2Fb%2F085+VQcxL%2FQRKCnldUxzoc%2FNEOQe94PTBGUfc%3D%7B%22counter%22%3A%221%22%7D; HttpOnly; Path=/
< date: Thu, 11 Jul 2019 21:22:38 GMT

decodeURIComponent 解码给出:

> decodeURIComponent("ZTe%2Fb%2F085+VQcxL%2FQRKCnldUxzoc%2FNEOQe94PTBGUfc%3D%7B%22counter%22%3A%221%22%7D")
'ZTe/b/085+VQcxL/QRKCnldUxzoc/NEOQe94PTBGUfc={"counter":"1"}'

据我所知,ZTe/b/085+VQcxL/QRKCnldUxzoc/NEOQe94PTBGUfc=是签名。

这可能不是您的 PHP 脚本正在执行的操作,因此您可能希望直接使用 HttpRequest::headers。例如,通过创建您自己的 Session 类型,然后在您的处理程序中使用该类型:

use actix_web::{web, App, Error, HttpServer, HttpRequest, HttpResponse, FromRequest};
use actix_web::dev::Payload;
use actix_web::http::header::{COOKIE, SET_COOKIE};
use actix_web::error::ErrorUnauthorized;

fn main() {
HttpServer::new(|| {
App::new()
.route("/set", web::to(set_cookie))
.route("/get", web::to(get_cookie))
})
.bind("127.0.0.1:8000")
.expect("Cannot bind to port 8000")
.run()
.expect("Unable to run server");
}

fn set_cookie() -> HttpResponse {
HttpResponse::Ok()
.header(SET_COOKIE, Session::cookie("0123456789abcdef"))
.body("cookie set")
}

fn get_cookie(session: Session) -> HttpResponse {
HttpResponse::Ok()
.header(SET_COOKIE, Session::cookie("new_session_value"))
.body(format!("Got cookie {}", &session.0))
}

struct Session(String);

impl Session {
const COOKIE_NAME: &'static str = "my-session";

fn cookie(value: &str) -> String {
String::from(Self::COOKIE_NAME) + "=" + value
}
}

impl FromRequest for Session {
type Error = Error;
type Future = Result<Self, Error>;
type Config = ();

fn from_request(req: &HttpRequest, _payload: &mut Payload) -> Self::Future {
for header in req.headers().get_all(COOKIE) {
// check if header is UTF-8
if let Ok(value) = header.to_str() {
// split into cookie values
for c in value.split(';').map(|s| s.trim()) {
// split at '='
if let Some(pos) = c.find('=') {
// is session key?
if Self::COOKIE_NAME == &c[0..pos] {
return Ok(Session(String::from(&c[(pos + 1)..])));
}
}
}
}
}
Err(ErrorUnauthorized("Session cookie missing"))
}
}

结果(为简洁起见删除了不相关的标题):

$ curl -v localhost:8000/get
< HTTP/1.1 401 Unauthorized
Session cookie missing⏎

$ curl -v localhost:8000/set
< HTTP/1.1 200 OK
< set-cookie: my-session=0123456789abcdef
cookie set⏎

$ curl -v --cookie my-session=0123456789abcdef localhost:8000/get
> Cookie: my-session=0123456789abcdef
>
< HTTP/1.1 200 OK
< set-cookie: my-session=new_session_value
Got cookie 0123456789abcdef⏎

您还可以在浏览器中观察结果,url http://localhost:8000/sethttp://localhost:8000/get

这非常简单,但可以让您完全控制 session cookie。

注意:上述解决方案对保护 cookie 没有任何作用。

关于php - 使用 Redis 作为 session 存储时,如何在 actix-session 和 PHP 应用程序之间共享 session ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56939812/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com