use anyhow::Error; use gotrue_entity::dto::GotrueTokenResponse; use std::ops::{Deref, DerefMut}; use tokio::sync::broadcast::{channel, Receiver, Sender}; pub type TokenStateReceiver = Receiver; #[derive(Debug, Clone)] pub enum TokenState { Refresh, Invalid, } pub struct ClientToken { sender: Sender, token: Option, } impl ClientToken { pub(crate) fn new() -> Self { let (sender, _) = channel(100); Self { sender, token: None, } } pub fn try_get(&self) -> Result { match &self.token { None => Err(anyhow::anyhow!("No access token")), Some(token) => Ok(serde_json::to_string(token)?), } } /// Sets a new access token and notifies interested parties of the refresh. /// /// This function updates the internal access token state and sends a `TokenState::Refresh` /// notification to signal that the token has been refreshed. /// /// # Parameters /// /// - `token`: The new `AccessTokenResponse` to be set. pub(crate) fn set(&mut self, new_token: GotrueTokenResponse) { let is_new = match &self.token { None => true, Some(old_token) => old_token.access_token != new_token.access_token, }; self.token = Some(new_token); if is_new { tracing::trace!("Set new access token: {:?}", self.token); let _ = self.sender.send(TokenState::Refresh); } } /// Unsets the current access token and notifies receivers of the invalidation. /// /// If there's an existing token, this function clears the internal access token state and sends /// a `TokenState::Invalid` notification to signal that the token has been invalidated. /// #[allow(dead_code)] pub(crate) fn unset(&mut self) { if self.token.is_some() { self.token = None; let _ = self.sender.send(TokenState::Invalid); } } /// Subscribe to token state change /// Receiver will receive `TokenState::Refresh` when the token is refreshed /// Receiver will receive `TokenState::Invalid` when the token is invalid pub(crate) fn subscribe(&self) -> Receiver { self.sender.subscribe() } } impl Deref for ClientToken { type Target = Option; fn deref(&self) -> &Self::Target { &self.token } } impl DerefMut for ClientToken { fn deref_mut(&mut self) -> &mut Self::Target { &mut self.token } }