Struct actix_session::CookieSession[][src]

pub struct CookieSession(_);

Use cookies for session storage.

CookieSession creates sessions which are limited to storing fewer than 4000 bytes of data (as the payload must fit into a single cookie). An Internal Server Error is generated if the session contains more than 4000 bytes.

A cookie may have a security policy of signed or private. Each has a respective CookieSession constructor.

A signed cookie is stored on the client as plaintext alongside a signature such that the cookie may be viewed but not modified by the client.

A private cookie is stored on the client as encrypted text such that it may neither be viewed nor modified by the client.

The constructors take a key as an argument. This is the private key for cookie session - when this value is changed, all session data is lost. The constructors will panic if the key is less than 32 bytes in length.

The backend relies on cookie crate to create and read cookies. By default all cookies are percent encoded, but certain symbols may cause troubles when reading cookie, if they are not properly percent encoded.

Examples

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

let app = App::new().wrap(
    CookieSession::signed(&[0; 32])
        .domain("www.rust-lang.org")
        .name("actix_session")
        .path("/")
        .secure(true))
    .service(web::resource("/").to(|| HttpResponse::Ok()));

Implementations

impl CookieSession[src]

pub fn signed(key: &[u8]) -> CookieSession[src]

Construct new signed CookieSession instance.

Panics if key length is less than 32 bytes.

pub fn private(key: &[u8]) -> CookieSession[src]

Construct new private CookieSession instance.

Panics if key length is less than 32 bytes.

pub fn path<S: Into<String>>(self, value: S) -> CookieSession[src]

Sets the path field in the session cookie being built.

pub fn name<S: Into<String>>(self, value: S) -> CookieSession[src]

Sets the name field in the session cookie being built.

pub fn domain<S: Into<String>>(self, value: S) -> CookieSession[src]

Sets the domain field in the session cookie being built.

pub fn lazy(self, value: bool) -> CookieSession[src]

When true, prevents adding session cookies to responses until the session contains data. Default is false.

Useful when trying to comply with laws that require consent for setting cookies.

pub fn secure(self, value: bool) -> CookieSession[src]

Sets the secure field in the session cookie being built.

If the secure field is set, a cookie will only be transmitted when the connection is secure - i.e. https

pub fn http_only(self, value: bool) -> CookieSession[src]

Sets the http_only field in the session cookie being built.

pub fn same_site(self, value: SameSite) -> CookieSession[src]

Sets the same_site field in the session cookie being built.

pub fn max_age(self, seconds: i64) -> CookieSession[src]

Sets the max-age field in the session cookie being built.

pub fn max_age_time(self, value: Duration) -> CookieSession[src]

Sets the max-age field in the session cookie being built.

pub fn expires_in(self, seconds: i64) -> CookieSession[src]

Sets the expires field in the session cookie being built.

pub fn expires_in_time(self, value: Duration) -> CookieSession[src]

Sets the expires field in the session cookie being built.

Trait Implementations

impl<S, B: 'static> Transform<S, ServiceRequest> for CookieSession where
    S: Service<ServiceRequest, Response = ServiceResponse<B>>,
    S::Future: 'static,
    S::Error: 'static, 
[src]

type Response = ServiceResponse<B>

Responses produced by the service.

type Error = S::Error

Errors produced by the service.

type InitError = ()

Errors produced while building a transform service.

type Transform = CookieSessionMiddleware<S>

The TransformService value created by this factory

type Future = Ready<Result<Self::Transform, Self::InitError>>

The future response value.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,