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::{
|
|
|
|
person::{DeleteAccount, DeleteAccountResponse},
|
|
|
|
utils::{delete_user_account, get_local_user_view_from_jwt},
|
|
|
|
};
|
2022-04-07 20:52:17 +00:00
|
|
|
use lemmy_apub::protocol::activities::deletion::delete_user::DeleteUser;
|
2021-12-06 14:54:47 +00:00
|
|
|
use lemmy_utils::{ConnectionId, LemmyError};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
|
|
|
|
#[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
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip(self, context, _websocket_id))]
|
2021-03-25 19:19:40 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
_websocket_id: Option<ConnectionId>,
|
2021-12-15 19:49:59 +00:00
|
|
|
) -> Result<Self::Response, LemmyError> {
|
|
|
|
let data = self;
|
2021-09-22 15:57:09 +00:00
|
|
|
let local_user_view =
|
2021-12-06 14:54:47 +00:00
|
|
|
get_local_user_view_from_jwt(data.auth.as_ref(), context.pool(), context.secret()).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 {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("password_incorrect"));
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
|
2022-04-07 20:52:17 +00:00
|
|
|
delete_user_account(local_user_view.person.id, context.pool()).await?;
|
|
|
|
DeleteUser::send(&local_user_view.person.into(), context).await?;
|
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
|
|
|
}
|
|
|
|
}
|