2023-09-05 09:33:46 +00:00
|
|
|
use actix_web::web::{Data, Json};
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-04-13 18:12:25 +00:00
|
|
|
person::{VerifyEmail, VerifyEmailResponse},
|
2023-09-28 14:06:45 +00:00
|
|
|
utils::send_new_applicant_email_to_admins,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
|
|
|
email_verification::EmailVerification,
|
2022-10-27 09:24:07 +00:00
|
|
|
local_user::{LocalUser, LocalUserUpdateForm},
|
2023-09-28 14:06:45 +00:00
|
|
|
person::Person,
|
2022-04-13 18:12:25 +00:00
|
|
|
},
|
|
|
|
traits::Crud,
|
2023-09-28 14:06:45 +00:00
|
|
|
RegistrationMode,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
2023-09-28 14:06:45 +00:00
|
|
|
use lemmy_db_views::structs::SiteView;
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
pub async fn verify_email(
|
|
|
|
data: Json<VerifyEmail>,
|
|
|
|
context: Data<LemmyContext>,
|
|
|
|
) -> Result<Json<VerifyEmailResponse>, LemmyError> {
|
2023-09-28 14:06:45 +00:00
|
|
|
let site_view = SiteView::read_local(&mut context.pool()).await?;
|
2023-09-05 09:33:46 +00:00
|
|
|
let token = data.token.clone();
|
|
|
|
let verification = EmailVerification::read_for_token(&mut context.pool(), &token)
|
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::TokenNotFound)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
let form = LocalUserUpdateForm {
|
|
|
|
// necessary in case this is a new signup
|
|
|
|
email_verified: Some(true),
|
|
|
|
// necessary in case email of an existing user was changed
|
|
|
|
email: Some(Some(verification.email)),
|
|
|
|
..Default::default()
|
|
|
|
};
|
|
|
|
let local_user_id = verification.local_user_id;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-28 14:06:45 +00:00
|
|
|
let local_user = LocalUser::update(&mut context.pool(), local_user_id, &form).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
EmailVerification::delete_old_tokens_for_local_user(&mut context.pool(), local_user_id).await?;
|
2022-11-09 10:05:00 +00:00
|
|
|
|
2023-09-28 14:06:45 +00:00
|
|
|
// send out notification about registration application to admins if enabled
|
|
|
|
if site_view.local_site.registration_mode == RegistrationMode::RequireApplication
|
|
|
|
&& site_view.local_site.application_email_admins
|
|
|
|
{
|
|
|
|
let person = Person::read(&mut context.pool(), local_user.person_id).await?;
|
|
|
|
send_new_applicant_email_to_admins(&person.name, &mut context.pool(), context.settings())
|
|
|
|
.await?;
|
|
|
|
}
|
|
|
|
|
2023-09-05 09:33:46 +00:00
|
|
|
Ok(Json(VerifyEmailResponse {}))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|