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§
Trait Implementations§
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> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
§impl<T> WithSubscriber for T
impl<T> WithSubscriber for T
§fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where
S: Into<Dispatch>,
§fn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
impl<T> ErasedDestructor for Twhere
T: 'static,
impl<T> MaybeSend for Twhere
T: Send,
impl<T> MaybeSendSync for T
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.