2023-07-07 00:54:05 +00:00
pub use server_fn_impl ::* ;
use std ::sync ::Arc ;
use std ::sync ::RwLock ;
2023-04-01 22:00:12 +00:00
2023-04-29 22:04:54 +00:00
/// A shared context for server functions that contains infomation about the request and middleware state.
2023-04-03 13:09:22 +00:00
/// This allows you to pass data between your server framework and the server functions. This can be used to pass request information or information about the state of the server. For example, you could pass authentication data though this context to your server functions.
2023-04-29 22:04:54 +00:00
///
/// You should not construct this directly inside components. Instead use the `HasServerContext` trait to get the server context from the scope.
2023-04-01 22:00:12 +00:00
#[ derive(Clone) ]
pub struct DioxusServerContext {
2023-04-29 22:04:54 +00:00
shared_context : std ::sync ::Arc <
std ::sync ::RwLock < anymap ::Map < dyn anymap ::any ::Any + Send + Sync + 'static > > ,
> ,
headers : std ::sync ::Arc < std ::sync ::RwLock < hyper ::header ::HeaderMap > > ,
2023-07-07 00:54:05 +00:00
pub ( crate ) parts : Arc < RwLock < http ::request ::Parts > > ,
2023-04-01 22:00:12 +00:00
}
2023-04-29 22:04:54 +00:00
#[ allow(clippy::derivable_impls) ]
2023-04-01 22:00:12 +00:00
impl Default for DioxusServerContext {
fn default ( ) -> Self {
Self {
2023-04-29 22:04:54 +00:00
shared_context : std ::sync ::Arc ::new ( std ::sync ::RwLock ::new ( anymap ::Map ::new ( ) ) ) ,
headers : Default ::default ( ) ,
2023-07-07 00:54:05 +00:00
parts : std ::sync ::Arc ::new ( RwLock ::new ( http ::request ::Request ::new ( ( ) ) . into_parts ( ) . 0 ) ) ,
2023-04-01 22:00:12 +00:00
}
}
}
2023-04-29 22:04:54 +00:00
mod server_fn_impl {
use super ::* ;
use std ::sync ::LockResult ;
use std ::sync ::{ Arc , PoisonError , RwLock , RwLockReadGuard , RwLockWriteGuard } ;
use anymap ::{ any ::Any , Map } ;
type SendSyncAnyMap = Map < dyn Any + Send + Sync + 'static > ;
impl DioxusServerContext {
/// Create a new server context from a request
2023-07-07 00:54:05 +00:00
pub fn new ( parts : impl Into < Arc < RwLock < http ::request ::Parts > > > ) -> Self {
2023-04-29 22:04:54 +00:00
Self {
parts : parts . into ( ) ,
shared_context : Arc ::new ( RwLock ::new ( SendSyncAnyMap ::new ( ) ) ) ,
headers : Default ::default ( ) ,
}
}
/// Clone a value from the shared server context
pub fn get < T : Any + Send + Sync + Clone + 'static > ( & self ) -> Option < T > {
self . shared_context . read ( ) . ok ( ) ? . get ::< T > ( ) . cloned ( )
}
/// Insert a value into the shared server context
pub fn insert < T : Any + Send + Sync + 'static > (
& mut self ,
value : T ,
) -> Result < ( ) , PoisonError < RwLockWriteGuard < '_ , SendSyncAnyMap > > > {
self . shared_context
. write ( )
. map ( | mut map | map . insert ( value ) )
. map ( | _ | ( ) )
}
/// Get the headers from the server context
2023-05-11 23:40:02 +00:00
pub fn response_headers ( & self ) -> RwLockReadGuard < '_ , hyper ::header ::HeaderMap > {
self . try_response_headers ( )
2023-04-29 22:04:54 +00:00
. expect ( " Failed to get headers from server context " )
}
/// Try to get the headers from the server context
2023-05-11 23:40:02 +00:00
pub fn try_response_headers (
2023-04-29 22:04:54 +00:00
& self ,
) -> LockResult < RwLockReadGuard < '_ , hyper ::header ::HeaderMap > > {
self . headers . read ( )
}
/// Get the headers mutably from the server context
2023-05-11 23:40:02 +00:00
pub fn response_headers_mut ( & self ) -> RwLockWriteGuard < '_ , hyper ::header ::HeaderMap > {
self . try_response_headers_mut ( )
2023-04-29 22:04:54 +00:00
. expect ( " Failed to get headers mutably from server context " )
}
/// Try to get the headers mut from the server context
2023-05-11 23:40:02 +00:00
pub fn try_response_headers_mut (
2023-04-29 22:04:54 +00:00
& self ,
) -> LockResult < RwLockWriteGuard < '_ , hyper ::header ::HeaderMap > > {
self . headers . write ( )
}
2023-05-11 23:40:02 +00:00
pub ( crate ) fn take_response_headers ( & self ) -> hyper ::header ::HeaderMap {
2023-04-29 22:04:54 +00:00
let mut headers = self . headers . write ( ) . unwrap ( ) ;
std ::mem ::take ( & mut * headers )
}
/// Get the request that triggered:
/// - The initial SSR render if called from a ScopeState or ServerFn
/// - The server function to be called if called from a server function after the initial render
2023-07-07 00:54:05 +00:00
pub fn request_parts (
& self ,
) -> std ::sync ::LockResult < RwLockReadGuard < '_ , http ::request ::Parts > > {
self . parts . read ( )
}
/// Get the request that triggered:
/// - The initial SSR render if called from a ScopeState or ServerFn
/// - The server function to be called if called from a server function after the initial render
pub fn request_parts_mut (
& self ,
) -> std ::sync ::LockResult < RwLockWriteGuard < '_ , http ::request ::Parts > > {
self . parts . write ( )
2023-04-29 22:04:54 +00:00
}
2023-04-01 22:00:12 +00:00
2023-07-07 00:54:05 +00:00
/// Extract some part from the request
pub async fn extract < R : std ::error ::Error , T : FromServerContext < Rejection = R > > (
& self ,
) -> Result < T , R > {
T ::from_request ( self ) . await
}
2023-04-01 22:00:12 +00:00
}
2023-07-07 00:54:05 +00:00
}
2023-04-03 13:09:22 +00:00
2023-07-07 00:54:05 +00:00
std ::thread_local! {
static SERVER_CONTEXT : std ::cell ::RefCell < Box < DioxusServerContext > > = std ::cell ::RefCell ::new ( Box ::new ( DioxusServerContext ::default ( ) ) ) ;
}
/// Get information about the current server request.
///
/// This function will only provide the current server context if it is called from a server function.
pub fn server_context ( ) -> DioxusServerContext {
2023-07-07 18:03:59 +00:00
SERVER_CONTEXT . with ( | ctx | * ctx . borrow ( ) . clone ( ) )
}
/// Extract some part from the current server request.
pub async fn extract_server_context < E : FromServerContext > ( ) -> Result < E , E ::Rejection > {
E ::from_request ( & server_context ( ) ) . await
2023-07-07 00:54:05 +00:00
}
pub ( crate ) fn with_server_context < O > (
context : Box < DioxusServerContext > ,
f : impl FnOnce ( ) -> O ,
) -> ( O , Box < DioxusServerContext > ) {
// before polling the future, we need to set the context
let prev_context = SERVER_CONTEXT . with ( | ctx | ctx . replace ( context ) ) ;
// poll the future, which may call server_context()
let result = f ( ) ;
// after polling the future, we need to restore the context
( result , SERVER_CONTEXT . with ( | ctx | ctx . replace ( prev_context ) ) )
}
/// A future that provides the server context to the inner future
#[ pin_project::pin_project ]
pub struct ProvideServerContext < F : std ::future ::Future > {
context : Option < Box < DioxusServerContext > > ,
#[ pin ]
f : F ,
}
impl < F : std ::future ::Future > ProvideServerContext < F > {
/// Create a new future that provides the server context to the inner future
pub fn new ( f : F , context : DioxusServerContext ) -> Self {
Self {
context : Some ( Box ::new ( context ) ) ,
f ,
2023-04-29 22:04:54 +00:00
}
}
2023-04-03 13:09:22 +00:00
}
2023-07-07 00:54:05 +00:00
impl < F : std ::future ::Future > std ::future ::Future for ProvideServerContext < F > {
type Output = F ::Output ;
fn poll (
self : std ::pin ::Pin < & mut Self > ,
cx : & mut std ::task ::Context < '_ > ,
) -> std ::task ::Poll < Self ::Output > {
let this = self . project ( ) ;
let context = this . context . take ( ) . unwrap ( ) ;
let ( result , context ) = with_server_context ( context , | | this . f . poll ( cx ) ) ;
* this . context = Some ( context ) ;
result
}
}
/// A trait for extracting types from the server context
#[ async_trait::async_trait(?Send) ]
pub trait FromServerContext : Sized {
/// The error type returned when extraction fails. This type must implement `IntoResponse`.
type Rejection : std ::error ::Error ;
/// Extract this type from the server context.
async fn from_request ( req : & DioxusServerContext ) -> Result < Self , Self ::Rejection > ;
}
/// A type was not found in the server context
pub struct NotFoundInServerContext < T : 'static > ( std ::marker ::PhantomData < T > ) ;
impl < T : 'static > std ::fmt ::Debug for NotFoundInServerContext < T > {
fn fmt ( & self , f : & mut std ::fmt ::Formatter < '_ > ) -> std ::fmt ::Result {
let type_name = std ::any ::type_name ::< T > ( ) ;
write! ( f , " `{type_name}` not found in server context " )
}
}
impl < T : 'static > std ::fmt ::Display for NotFoundInServerContext < T > {
fn fmt ( & self , f : & mut std ::fmt ::Formatter < '_ > ) -> std ::fmt ::Result {
let type_name = std ::any ::type_name ::< T > ( ) ;
write! ( f , " `{type_name}` not found in server context " )
}
}
impl < T : 'static > std ::error ::Error for NotFoundInServerContext < T > { }
pub struct FromContext < T : std ::marker ::Send + std ::marker ::Sync + Clone + 'static > ( pub ( crate ) T ) ;
#[ async_trait::async_trait(?Send) ]
impl < T : Send + Sync + Clone + 'static > FromServerContext for FromContext < T > {
type Rejection = NotFoundInServerContext < T > ;
async fn from_request ( req : & DioxusServerContext ) -> Result < Self , Self ::Rejection > {
Ok ( Self ( req . clone ( ) . get ::< T > ( ) . ok_or_else ( | | {
NotFoundInServerContext ::< T > ( std ::marker ::PhantomData ::< T > )
} ) ? ) )
}
}
#[ cfg(feature = " axum " ) ]
/// An adapter for axum extractors for the server context
pub struct Axum <
I : axum ::extract ::FromRequestParts < ( ) , Rejection = R > ,
R : axum ::response ::IntoResponse + std ::error ::Error ,
2023-07-07 18:03:59 +00:00
> ( pub I , pub std ::marker ::PhantomData < R > ) ;
2023-07-07 00:54:05 +00:00
2023-07-07 18:03:59 +00:00
#[ cfg(feature = " axum " ) ]
2023-07-07 00:54:05 +00:00
impl <
I : axum ::extract ::FromRequestParts < ( ) , Rejection = R > ,
R : axum ::response ::IntoResponse + std ::error ::Error ,
> std ::ops ::Deref for Axum < I , R >
{
type Target = I ;
fn deref ( & self ) -> & Self ::Target {
& self . 0
}
}
2023-07-07 18:03:59 +00:00
#[ cfg(feature = " axum " ) ]
2023-07-07 00:54:05 +00:00
impl <
I : axum ::extract ::FromRequestParts < ( ) , Rejection = R > ,
R : axum ::response ::IntoResponse + std ::error ::Error ,
> std ::ops ::DerefMut for Axum < I , R >
{
fn deref_mut ( & mut self ) -> & mut Self ::Target {
& mut self . 0
}
}
#[ cfg(feature = " axum " ) ]
#[ async_trait::async_trait(?Send) ]
impl <
I : axum ::extract ::FromRequestParts < ( ) , Rejection = R > ,
R : axum ::response ::IntoResponse + std ::error ::Error ,
> FromServerContext for Axum < I , R >
{
type Rejection = R ;
async fn from_request ( req : & DioxusServerContext ) -> Result < Self , Self ::Rejection > {
Ok ( Self (
I ::from_request_parts ( & mut * req . request_parts_mut ( ) . unwrap ( ) , & ( ) ) . await ? ,
std ::marker ::PhantomData ,
) )
}
}