anzar-shared 0.9.21

Anzar is a lightweight authentication and authorization framework that runs as a separate microservice
Documentation
use crate::error::Result;

use crate::domain::model::EmailVerificationToken;
use crate::intern::auth::AuthService;

impl AuthService {
    #[tracing::instrument(
        name = "auth.create_verification_email",
        skip(self),
        fields(user.id = user_id)
    )]
    pub async fn create_verification_email(&self, user_id: &str) -> Result<String> {
        let token = self.crypto.token.generate()?;
        let hashed_token = self.crypto.token.hash(&token);

        let expiry = self.configuration.auth.email.verification.token_expires_in;
        let otp = EmailVerificationToken::default()
            .with_user_id(user_id)
            .with_token_hash(&hashed_token)
            .with_expiray(chrono::Duration::seconds(expiry));

        self.email_verification_token_repository.insert(otp).await?;

        Ok(token)
    }

    #[tracing::instrument(name = "auth.validate_email_verification_token", skip(self, token))]
    pub async fn consume_email_verification_token(
        &self,
        token: &str,
    ) -> Result<EmailVerificationToken> {
        let hash = self.crypto.token.hash(token);

        self.email_verification_token_repository
            .consume(&hash)
            .await
    }

    #[tracing::instrument(name = "auth.invalidate_email_verification_token", skip(self, id))]
    pub async fn invalidate_email_verification_token(
        &self,
        id: &str,
    ) -> Result<EmailVerificationToken> {
        self.email_verification_token_repository
            .invalidate(id)
            .await
    }

    #[tracing::instrument(name = "auth.revoke_email_verification_token", skip(self), fields(user.id = user_id))]
    pub async fn revoke_email_verification_token(&self, user_id: &str) -> Result<()> {
        self.email_verification_token_repository
            .revoke(user_id)
            .await
    }
}