SessionManagerLayer

Struct SessionManagerLayer 

Source
pub struct SessionManagerLayer<Store: SessionStore, C: CookieController = PlaintextCookie> { /* private fields */ }
Expand description

A layer for providing Session as a request extension.

Implementations§

Source§

impl<Store: SessionStore, C: CookieController> SessionManagerLayer<Store, C>

Source

pub fn with_name<N: Into<Cow<'static, str>>>(self, name: N) -> Self

Configures the name of the cookie used for the session. The default value is "id".

§Examples
use tower_sessions_ext::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_name("my.sid");
Source

pub fn with_http_only(self, http_only: bool) -> Self

Configures the "HttpOnly" attribute of the cookie used for the session.

§⚠️ Warning: Cross-site scripting risk

Applications should generally not override the default value of true. If you do, you are exposing your application to increased risk of cookie theft via techniques like cross-site scripting.

§Examples
use tower_sessions_ext::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_http_only(true);
Source

pub fn with_same_site(self, same_site: SameSite) -> Self

Configures the "SameSite" attribute of the cookie used for the session. The default value is SameSite::Strict.

§Examples
use tower_sessions_ext::{MemoryStore, SessionManagerLayer, cookie::SameSite};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_same_site(SameSite::Lax);
Source

pub fn with_expiry(self, expiry: Expiry) -> Self

Configures the "Max-Age" attribute of the cookie used for the session. The default value is None.

§Examples
use time::Duration;
use tower_sessions_ext::{Expiry, MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_expiry = Expiry::OnInactivity(Duration::hours(1));
let session_service = SessionManagerLayer::new(session_store).with_expiry(session_expiry);
Source

pub fn with_secure(self, secure: bool) -> Self

Configures the "Secure" attribute of the cookie used for the session. The default value is true.

§Examples
use tower_sessions_ext::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_secure(true);
Source

pub fn with_path<P: Into<Cow<'static, str>>>(self, path: P) -> Self

Configures the "Path" attribute of the cookie used for the session. The default value is "/".

§Examples
use tower_sessions_ext::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_path("/some/path");
Source

pub fn with_domain<D: Into<Cow<'static, str>>>(self, domain: D) -> Self

Configures the "Domain" attribute of the cookie used for the session. The default value is None.

§Examples
use tower_sessions_ext::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_domain("localhost");
Source

pub fn with_always_save(self, always_save: bool) -> Self

Configures whether unmodified session should be saved on read or not. When the value is true, the session will be saved even if it was not changed.

This is useful when you want to reset Session expiration time on any valid request at the cost of higher SessionStore write activity and transmitting set-cookie header with each response.

It makes sense to use this setting with relative session expiration values, such as Expiry::OnInactivity(Duration). This setting will not cause session id to be cycled on save.

The default value is false.

§Examples
use time::Duration;
use tower_sessions_ext::{Expiry, MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_expiry = Expiry::OnInactivity(Duration::hours(1));
let session_service = SessionManagerLayer::new(session_store)
    .with_expiry(session_expiry)
    .with_always_save(true);
Source

pub fn with_signed(self, key: Key) -> SessionManagerLayer<Store, SignedCookie>

Manages the session cookie via a signed interface.

See SignedCookies.

use tower_sessions_ext::{MemoryStore, SessionManagerLayer, cookie::Key};

let key = { /* a cryptographically random key >= 64 bytes */ };

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_signed(key);
Source

pub fn with_private(self, key: Key) -> SessionManagerLayer<Store, PrivateCookie>

Manages the session cookie via an encrypted interface.

See PrivateCookies.

use tower_sessions_ext::{MemoryStore, SessionManagerLayer, cookie::Key};

let key = { /* a cryptographically random key >= 64 bytes */ };

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store).with_private(key);
Source§

impl<Store: SessionStore> SessionManagerLayer<Store>

Source

pub fn new(session_store: Store) -> Self

Create a new SessionManagerLayer with the provided session store and default cookie configuration.

§Examples
use tower_sessions_ext::{MemoryStore, SessionManagerLayer};

let session_store = MemoryStore::default();
let session_service = SessionManagerLayer::new(session_store);

Trait Implementations§

Source§

impl<Store: Clone + SessionStore, C: Clone + CookieController> Clone for SessionManagerLayer<Store, C>

Source§

fn clone(&self) -> SessionManagerLayer<Store, C>

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Store: Debug + SessionStore, C: Debug + CookieController> Debug for SessionManagerLayer<Store, C>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<S, Store: SessionStore, C: CookieController> Layer<S> for SessionManagerLayer<Store, C>

Source§

type Service = CookieManager<SessionManager<S, Store, C>>

The wrapped service
Source§

fn layer(&self, inner: S) -> Self::Service

Wrap the given service with the middleware, returning a new service that has been decorated with the middleware.

Auto Trait Implementations§

§

impl<Store, C> Freeze for SessionManagerLayer<Store, C>
where C: Freeze,

§

impl<Store, C> RefUnwindSafe for SessionManagerLayer<Store, C>
where C: RefUnwindSafe, Store: RefUnwindSafe,

§

impl<Store, C> Send for SessionManagerLayer<Store, C>

§

impl<Store, C> Sync for SessionManagerLayer<Store, C>
where C: Sync,

§

impl<Store, C> Unpin for SessionManagerLayer<Store, C>
where C: Unpin,

§

impl<Store, C> UnwindSafe for SessionManagerLayer<Store, C>
where C: UnwindSafe, Store: RefUnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FromRef<T> for T
where T: Clone,

Source§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more