use super::grant::Grant; use crate::params::{ AdminDeleteUserParams, AdminUserParams, CreateSSOProviderParams, GenerateLinkParams, GenerateLinkResponse, MagicLinkParams, }; use anyhow::Context; use gotrue_entity::dto::{ AdminListUsersResponse, AuthProvider, GoTrueSettings, GotrueTokenResponse, SignUpResponse, UpdateGotrueUserParams, User, }; use gotrue_entity::error::{GoTrueError, GoTrueErrorSerde, GotrueClientError}; use gotrue_entity::sso::{SSOProvider, SSOProviders}; use infra::reqwest::{check_response, from_body, from_response}; #[derive(Clone)] pub struct Client { client: reqwest::Client, pub base_url: String, } impl Client { pub fn new(client: reqwest::Client, base_url: &str) -> Self { Self { client, base_url: base_url.to_owned(), } } pub fn oauth_url(&self, provider: &AuthProvider) -> String { format!("{}/authorize?provider={}", self.base_url, provider.as_str()) } #[tracing::instrument(skip_all, err)] pub async fn health(&self) -> Result<(), GoTrueError> { let url: String = format!("{}/health", self.base_url); let resp = self .client .get(&url) .send() .await .context(format!("calling {} failed", url))?; Ok(check_response(resp).await?) } #[tracing::instrument(skip_all, err)] pub async fn settings(&self) -> Result { let url: String = format!("{}/settings", self.base_url); let resp = self.client.get(&url).send().await?; let settings: GoTrueSettings = from_response(resp) .await .context(format!("calling {} failed", url))?; Ok(settings) } #[tracing::instrument(skip_all, err)] pub async fn sign_up(&self, email: &str, password: &str) -> Result { self.sign_up_with_referrer(email, password, None).await } #[tracing::instrument(skip_all, err)] pub async fn sign_up_with_referrer( &self, email: &str, password: &str, redirect_to: Option<&str>, ) -> Result { let payload = serde_json::json!({ "email": email, "password": password, }); let url: String = format!("{}/signup", self.base_url); let mut req_builder = self.client.post(&url).json(&payload); if let Some(redirect_to) = redirect_to { req_builder = req_builder.header("redirect_to", redirect_to); } let resp = req_builder.send().await?; to_gotrue_result(resp).await } #[tracing::instrument(skip_all, err)] pub async fn token(&self, grant: &Grant) -> Result { // https://github.com/supabase/gotrue/blob/master/internal/api/verify.go#L219 let url = format!("{}/token?grant_type={}", self.base_url, grant.type_as_str()); let payload = grant.json_value(); let resp = self.client.post(url).json(&payload).send().await?; if resp.status().is_success() { let token: GotrueTokenResponse = from_body(resp).await?; Ok(token) } else if resp.status().is_client_error() { Err(from_body::(resp).await?.into()) } else { Err(anyhow::anyhow!("unexpected response status: {}", resp.status()).into()) } } #[tracing::instrument(skip_all, err)] pub async fn logout(&self, access_token: &str) -> Result<(), GoTrueError> { let resp = self .client .post(format!("{}/logout", self.base_url)) .header("Authorization", format!("Bearer {}", access_token)) .send() .await?; Ok(check_response(resp).await?) } #[tracing::instrument(skip_all, err)] pub async fn user_info(&self, access_token: &str) -> Result { let url = format!("{}/user", self.base_url); let resp = self .client .get(&url) .header("Authorization", format!("Bearer {}", access_token)) .send() .await?; to_gotrue_result(resp).await } pub async fn update_user( &self, access_token: &str, update_user_params: &UpdateGotrueUserParams, ) -> Result { let resp = self .client .put(format!("{}/user", self.base_url)) .header("Authorization", format!("Bearer {}", access_token)) .json(update_user_params) .send() .await?; to_gotrue_result(resp).await } pub async fn admin_list_user( &self, access_token: &str, ) -> Result { let resp = self .client .get(format!("{}/admin/users", self.base_url)) .header("Authorization", format!("Bearer {}", access_token)) .send() .await?; to_gotrue_result(resp).await } pub async fn admin_user_details( &self, access_token: &str, user_id: &str, // uuid ) -> Result { let resp = self .client .get(format!("{}/admin/users/{}", self.base_url, user_id)) .header("Authorization", format!("Bearer {}", access_token)) .send() .await?; to_gotrue_result(resp).await } pub async fn admin_delete_user( &self, access_token: &str, user_uuid: &str, delete_user_params: &AdminDeleteUserParams, ) -> Result<(), GoTrueError> { let resp = self .client .delete(format!("{}/admin/users/{}", self.base_url, user_uuid)) .header("Authorization", format!("Bearer {}", access_token)) .json(&delete_user_params) .send() .await?; check_gotrue_result(resp).await } pub async fn admin_update_user( &self, access_token: &str, user_uuid: &str, admin_user_params: &AdminUserParams, ) -> Result { let resp = self .client .put(format!("{}/admin/users/{}", self.base_url, user_uuid)) .header("Authorization", format!("Bearer {}", access_token)) .json(&admin_user_params) .send() .await?; to_gotrue_result(resp).await } pub async fn admin_add_user( &self, access_token: &str, admin_user_params: &AdminUserParams, ) -> Result { let resp = self .client .post(format!("{}/admin/users", self.base_url)) .header("Authorization", format!("Bearer {}", access_token)) .json(&admin_user_params) .send() .await?; to_gotrue_result(resp).await } pub async fn admin_generate_link( &self, access_token: &str, generate_link_params: &GenerateLinkParams, ) -> Result { let resp = self .client .post(format!("{}/admin/generate_link", self.base_url)) .header("Authorization", format!("Bearer {}", access_token)) .json(&generate_link_params) .send() .await?; to_gotrue_result(resp).await } pub async fn magic_link( &self, access_token: &str, magic_link_params: &MagicLinkParams, ) -> Result<(), GoTrueError> { let resp = self .client .post(format!("{}/magiclink", self.base_url)) .header("Authorization", format!("Bearer {}", access_token)) .json(&magic_link_params) .send() .await?; check_gotrue_result(resp).await } pub async fn admin_list_sso_providers( &self, access_token: &str, ) -> Result { let resp = self .client .get(format!("{}/admin/sso/providers", self.base_url)) .header("Authorization", format!("Bearer {}", access_token)) .send() .await?; to_gotrue_result(resp).await } pub async fn admin_create_sso_providers( &self, access_token: &str, create_sso_provider_params: &CreateSSOProviderParams, ) -> Result { let resp = self .client .post(format!("{}/admin/sso/providers", self.base_url)) .header("Authorization", format!("Bearer {}", access_token)) .json(create_sso_provider_params) .send() .await?; to_gotrue_result(resp).await } pub async fn admin_get_sso_provider( &self, access_token: &str, idp_id: &str, ) -> Result { let resp = self .client .get(format!("{}/admin/sso/providers/{}", self.base_url, idp_id)) .header("Authorization", format!("Bearer {}", access_token)) .send() .await?; to_gotrue_result(resp).await } pub async fn admin_update_sso_provider( &self, access_token: &str, idp_id: &str, create_sso_provider_params: &CreateSSOProviderParams, ) -> Result { let resp = self .client .put(format!("{}/admin/sso/providers/{}", self.base_url, idp_id)) .header("Authorization", format!("Bearer {}", access_token)) .json(create_sso_provider_params) .send() .await?; to_gotrue_result(resp).await } pub async fn admin_delete_sso_provider( &self, access_token: &str, idp_id: &str, ) -> Result { let resp = self .client .delete(format!("{}/admin/sso/providers/{}", self.base_url, idp_id)) .header("Authorization", format!("Bearer {}", access_token)) .send() .await?; to_gotrue_result(resp).await } } async fn to_gotrue_result(resp: reqwest::Response) -> Result where T: serde::de::DeserializeOwned, { if resp.status().is_success() { let t: T = from_body(resp).await?; Ok(t) } else { let err: GoTrueErrorSerde = from_body(resp).await?; Err(GoTrueError::Internal(err)) } } async fn check_gotrue_result(resp: reqwest::Response) -> Result<(), GoTrueError> { if resp.status().is_success() { Ok(()) } else { let err: GoTrueErrorSerde = from_body(resp).await?; Err(GoTrueError::Internal(err)) } }