pub use server_fn_impl::*; use std::sync::Arc; use std::sync::RwLock; /// A shared context for server functions that contains infomation about the request and middleware state. /// 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. /// /// You should not construct this directly inside components. Instead use the `HasServerContext` trait to get the server context from the scope. #[derive(Clone)] pub struct DioxusServerContext { shared_context: std::sync::Arc< std::sync::RwLock>, >, headers: std::sync::Arc>, pub(crate) parts: Arc>, } #[allow(clippy::derivable_impls)] impl Default for DioxusServerContext { fn default() -> Self { Self { shared_context: std::sync::Arc::new(std::sync::RwLock::new(anymap::Map::new())), headers: Default::default(), parts: std::sync::Arc::new(RwLock::new(http::request::Request::new(()).into_parts().0)), } } } 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; impl DioxusServerContext { /// Create a new server context from a request pub fn new(parts: impl Into>>) -> Self { 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(&self) -> Option { self.shared_context.read().ok()?.get::().cloned() } /// Insert a value into the shared server context pub fn insert( &mut self, value: T, ) -> Result<(), PoisonError>> { self.shared_context .write() .map(|mut map| map.insert(value)) .map(|_| ()) } /// Get the headers from the server context pub fn response_headers(&self) -> RwLockReadGuard<'_, hyper::header::HeaderMap> { self.try_response_headers() .expect("Failed to get headers from server context") } /// Try to get the headers from the server context pub fn try_response_headers( &self, ) -> LockResult> { self.headers.read() } /// Get the headers mutably from the server context pub fn response_headers_mut(&self) -> RwLockWriteGuard<'_, hyper::header::HeaderMap> { self.try_response_headers_mut() .expect("Failed to get headers mutably from server context") } /// Try to get the headers mut from the server context pub fn try_response_headers_mut( &self, ) -> LockResult> { self.headers.write() } pub(crate) fn take_response_headers(&self) -> hyper::header::HeaderMap { 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 pub fn request_parts( &self, ) -> std::sync::LockResult> { 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> { self.parts.write() } /// Extract some part from the request pub async fn extract>( &self, ) -> Result { T::from_request(self).await } } } std::thread_local! { static SERVER_CONTEXT: std::cell::RefCell> = 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 { SERVER_CONTEXT.with(|ctx| *ctx.borrow_mut().clone()) } pub(crate) fn with_server_context( context: Box, f: impl FnOnce() -> O, ) -> (O, Box) { // 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 { context: Option>, #[pin] f: F, } impl ProvideServerContext { /// 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, } } } impl std::future::Future for ProvideServerContext { type Output = F::Output; fn poll( self: std::pin::Pin<&mut Self>, cx: &mut std::task::Context<'_>, ) -> std::task::Poll { 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; } /// A type was not found in the server context pub struct NotFoundInServerContext(std::marker::PhantomData); impl std::fmt::Debug for NotFoundInServerContext { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let type_name = std::any::type_name::(); write!(f, "`{type_name}` not found in server context") } } impl std::fmt::Display for NotFoundInServerContext { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { let type_name = std::any::type_name::(); write!(f, "`{type_name}` not found in server context") } } impl std::error::Error for NotFoundInServerContext {} pub struct FromContext(pub(crate) T); #[async_trait::async_trait(?Send)] impl FromServerContext for FromContext { type Rejection = NotFoundInServerContext; async fn from_request(req: &DioxusServerContext) -> Result { Ok(Self(req.clone().get::().ok_or_else(|| { NotFoundInServerContext::(std::marker::PhantomData::) })?)) } } #[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, >(pub(crate) I, std::marker::PhantomData); impl< I: axum::extract::FromRequestParts<(), Rejection = R>, R: axum::response::IntoResponse + std::error::Error, > std::ops::Deref for Axum { type Target = I; fn deref(&self) -> &Self::Target { &self.0 } } impl< I: axum::extract::FromRequestParts<(), Rejection = R>, R: axum::response::IntoResponse + std::error::Error, > std::ops::DerefMut for Axum { 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 { type Rejection = R; async fn from_request(req: &DioxusServerContext) -> Result { Ok(Self( I::from_request_parts(&mut *req.request_parts_mut().unwrap(), &()).await?, std::marker::PhantomData, )) } }