2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use bcrypt::verify;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-05-03 17:44:13 +00:00
|
|
|
person::{DeleteAccount, DeleteAccountResponse},
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::local_user_view_from_jwt,
|
2022-05-03 17:44:13 +00:00
|
|
|
};
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorType};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for DeleteAccount {
|
2021-12-15 19:49:59 +00:00
|
|
|
type Response = DeleteAccountResponse;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-06-06 16:27:22 +00:00
|
|
|
#[tracing::instrument(skip(self, context))]
|
|
|
|
async fn perform(&self, context: &Data<LemmyContext>) -> Result<Self::Response, LemmyError> {
|
2021-12-15 19:49:59 +00:00
|
|
|
let data = self;
|
2023-05-25 14:50:07 +00:00
|
|
|
let local_user_view = local_user_view_from_jwt(data.auth.as_ref(), context).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
// Verify the password
|
|
|
|
let valid: bool = verify(
|
|
|
|
&data.password,
|
|
|
|
&local_user_view.local_user.password_encrypted,
|
|
|
|
)
|
|
|
|
.unwrap_or(false);
|
|
|
|
if !valid {
|
2023-07-10 14:50:07 +00:00
|
|
|
return Err(LemmyErrorType::IncorrectLogin)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
2021-12-15 19:49:59 +00:00
|
|
|
Ok(DeleteAccountResponse {})
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
}
|