]> Untitled Git - lemmy.git/blob - crates/api/src/local_user/verify_email.rs
Add diesel_async, get rid of blocking function (#2510)
[lemmy.git] / crates / api / src / local_user / verify_email.rs
1 use crate::Perform;
2 use actix_web::web::Data;
3 use lemmy_api_common::{
4   person::{VerifyEmail, VerifyEmailResponse},
5   utils::send_email_verification_success,
6 };
7 use lemmy_db_schema::{
8   source::{
9     email_verification::EmailVerification,
10     local_user::{LocalUser, LocalUserUpdateForm},
11   },
12   traits::Crud,
13 };
14 use lemmy_db_views::structs::LocalUserView;
15 use lemmy_utils::error::LemmyError;
16 use lemmy_websocket::LemmyContext;
17
18 #[async_trait::async_trait(?Send)]
19 impl Perform for VerifyEmail {
20   type Response = VerifyEmailResponse;
21
22   async fn perform(
23     &self,
24     context: &Data<LemmyContext>,
25     _websocket_id: Option<usize>,
26   ) -> Result<Self::Response, LemmyError> {
27     let token = self.token.clone();
28     let verification = EmailVerification::read_for_token(context.pool(), &token)
29       .await
30       .map_err(|e| LemmyError::from_error_message(e, "token_not_found"))?;
31
32     let form = LocalUserUpdateForm::builder()
33       // necessary in case this is a new signup
34       .email_verified(Some(true))
35       // necessary in case email of an existing user was changed
36       .email(Some(Some(verification.email)))
37       .build();
38     let local_user_id = verification.local_user_id;
39
40     LocalUser::update(context.pool(), local_user_id, &form).await?;
41
42     let local_user_view = LocalUserView::read(context.pool(), local_user_id).await?;
43
44     send_email_verification_success(&local_user_view, context.settings())?;
45
46     EmailVerification::delete_old_tokens_for_local_user(context.pool(), local_user_id).await?;
47
48     Ok(VerifyEmailResponse {})
49   }
50 }