Struct reth_rpc_layer::AuthLayer

source ·
pub struct AuthLayer<V> { /* private fields */ }
Expand description

This is an Http middleware layer that acts as an interceptor for Authorization headers. Incoming requests are dispatched to an inner AuthValidator. Invalid requests are blocked and the validator’s error response is returned. Valid requests are instead dispatched to the next layer along the chain.

§How to integrate

async fn build_layered_rpc_server() {
    use jsonrpsee::server::ServerBuilder;
    use reth_rpc_layer::{AuthLayer, JwtAuthValidator, JwtSecret};
    use std::net::SocketAddr;

    const AUTH_PORT: u32 = 8551;
    const AUTH_ADDR: &str = "0.0.0.0";
    const AUTH_SECRET: &str =
        "f79ae8046bc11c9927afe911db7143c51a806c4a537cc08e0d37140b0192f430";

    let addr = format!("{AUTH_ADDR}:{AUTH_PORT}");
    let secret = JwtSecret::from_hex(AUTH_SECRET).unwrap();
    let validator = JwtAuthValidator::new(secret);
    let layer = AuthLayer::new(validator);
    let middleware = tower::ServiceBuilder::default().layer(layer);

    let _server = ServerBuilder::default()
        .set_http_middleware(middleware)
        .build(addr.parse::<SocketAddr>().unwrap())
        .await
        .unwrap();
}

Implementations§

source§

impl<V> AuthLayer<V>

source

pub const fn new(validator: V) -> Self

Creates an instance of AuthLayer. validator is a generic trait able to validate requests (see AuthValidator).

Trait Implementations§

source§

impl<S, V> Layer<S> for AuthLayer<V>
where V: Clone,

source§

type Service = AuthService<S, V>

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<V> Freeze for AuthLayer<V>
where V: Freeze,

§

impl<V> RefUnwindSafe for AuthLayer<V>
where V: RefUnwindSafe,

§

impl<V> Send for AuthLayer<V>
where V: Send,

§

impl<V> Sync for AuthLayer<V>
where V: Sync,

§

impl<V> Unpin for AuthLayer<V>
where V: Unpin,

§

impl<V> UnwindSafe for AuthLayer<V>
where V: UnwindSafe,

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

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

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

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, 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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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

impl<T> MaybeSend for T
where T: Send,

Layout§

Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.