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},
|
2022-11-28 14:29:33 +00:00
|
|
|
utils::get_local_user_view_from_jwt,
|
2022-05-03 17:44:13 +00:00
|
|
|
};
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, ConnectionId};
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2021-12-15 19:49:59 +00:00
|
|
|
Ok(DeleteAccountResponse {})
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
}
|