2021-10-16 13:33:38 +00:00
|
|
|
use crate::{
|
|
|
|
newtypes::LocalUserId,
|
2023-08-02 17:02:53 +00:00
|
|
|
schema::password_reset_request::dsl::{local_user_id, password_reset_request, published, token},
|
2022-11-19 04:33:54 +00:00
|
|
|
source::password_reset_request::{PasswordResetRequest, PasswordResetRequestForm},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::Crud,
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::{get_conn, DbPool},
|
2021-03-18 20:25:21 +00:00
|
|
|
};
|
2022-11-19 04:33:54 +00:00
|
|
|
use diesel::{
|
|
|
|
dsl::{insert_into, now, IntervalDsl},
|
|
|
|
result::Error,
|
2023-08-24 15:27:00 +00:00
|
|
|
sql_types::Timestamptz,
|
2022-11-19 04:33:54 +00:00
|
|
|
ExpressionMethods,
|
2023-08-24 15:27:00 +00:00
|
|
|
IntoSql,
|
2022-11-19 04:33:54 +00:00
|
|
|
QueryDsl,
|
|
|
|
};
|
2022-11-09 10:05:00 +00:00
|
|
|
use diesel_async::RunQueryDsl;
|
2019-10-30 03:35:39 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[async_trait]
|
2021-08-17 18:04:58 +00:00
|
|
|
impl Crud for PasswordResetRequest {
|
2022-10-27 09:24:07 +00:00
|
|
|
type InsertForm = PasswordResetRequestForm;
|
|
|
|
type UpdateForm = PasswordResetRequestForm;
|
2021-08-17 18:04:58 +00:00
|
|
|
type IdType = i32;
|
2023-08-01 14:34:10 +00:00
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
async fn create(pool: &mut DbPool<'_>, form: &PasswordResetRequestForm) -> Result<Self, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2019-11-02 06:43:21 +00:00
|
|
|
insert_into(password_reset_request)
|
|
|
|
.values(form)
|
|
|
|
.get_result::<Self>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2019-10-30 03:35:39 +00:00
|
|
|
}
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn update(
|
2023-07-11 13:09:59 +00:00
|
|
|
pool: &mut DbPool<'_>,
|
2019-11-02 06:43:21 +00:00
|
|
|
password_reset_request_id: i32,
|
|
|
|
form: &PasswordResetRequestForm,
|
|
|
|
) -> Result<Self, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2019-10-30 03:35:39 +00:00
|
|
|
diesel::update(password_reset_request.find(password_reset_request_id))
|
|
|
|
.set(form)
|
|
|
|
.get_result::<Self>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2019-10-30 03:35:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-16 13:33:38 +00:00
|
|
|
impl PasswordResetRequest {
|
2022-11-09 10:05:00 +00:00
|
|
|
pub async fn create_token(
|
2023-07-11 13:09:59 +00:00
|
|
|
pool: &mut DbPool<'_>,
|
2021-03-18 20:25:21 +00:00
|
|
|
from_local_user_id: LocalUserId,
|
2023-08-02 17:02:53 +00:00
|
|
|
token_: String,
|
2020-12-21 13:38:34 +00:00
|
|
|
) -> Result<PasswordResetRequest, Error> {
|
2019-10-30 03:35:39 +00:00
|
|
|
let form = PasswordResetRequestForm {
|
2021-02-26 13:49:58 +00:00
|
|
|
local_user_id: from_local_user_id,
|
2023-08-02 17:02:53 +00:00
|
|
|
token: token_,
|
2019-10-30 03:35:39 +00:00
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
Self::create(pool, &form).await
|
2019-10-30 03:35:39 +00:00
|
|
|
}
|
2023-07-11 13:09:59 +00:00
|
|
|
pub async fn read_from_token(
|
|
|
|
pool: &mut DbPool<'_>,
|
2023-08-02 17:02:53 +00:00
|
|
|
token_: &str,
|
2023-07-11 13:09:59 +00:00
|
|
|
) -> Result<PasswordResetRequest, Error> {
|
2022-11-09 10:05:00 +00:00
|
|
|
let conn = &mut get_conn(pool).await?;
|
2019-11-02 06:41:57 +00:00
|
|
|
password_reset_request
|
2023-08-02 17:02:53 +00:00
|
|
|
.filter(token.eq(token_))
|
2023-08-24 15:27:00 +00:00
|
|
|
.filter(published.gt(now.into_sql::<Timestamptz>() - 1.days()))
|
2019-11-02 06:41:57 +00:00
|
|
|
.first::<Self>(conn)
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
2019-10-30 03:35:39 +00:00
|
|
|
}
|
2023-06-27 09:20:53 +00:00
|
|
|
|
|
|
|
pub async fn get_recent_password_resets_count(
|
2023-07-11 13:09:59 +00:00
|
|
|
pool: &mut DbPool<'_>,
|
2023-06-27 09:20:53 +00:00
|
|
|
user_id: LocalUserId,
|
|
|
|
) -> Result<i64, Error> {
|
|
|
|
let conn = &mut get_conn(pool).await?;
|
|
|
|
password_reset_request
|
|
|
|
.filter(local_user_id.eq(user_id))
|
2023-08-24 15:27:00 +00:00
|
|
|
.filter(published.gt(now.into_sql::<Timestamptz>() - 1.days()))
|
2023-06-27 09:20:53 +00:00
|
|
|
.count()
|
|
|
|
.get_result(conn)
|
|
|
|
.await
|
|
|
|
}
|
2020-12-21 13:38:34 +00:00
|
|
|
}
|
2019-12-22 16:08:03 +00:00
|
|
|
|
2019-10-30 03:35:39 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2023-07-17 15:04:14 +00:00
|
|
|
#![allow(clippy::unwrap_used)]
|
|
|
|
#![allow(clippy::indexing_slicing)]
|
|
|
|
|
2020-12-21 16:30:34 +00:00
|
|
|
use crate::{
|
2021-10-16 13:33:38 +00:00
|
|
|
source::{
|
2022-10-27 09:24:07 +00:00
|
|
|
instance::Instance,
|
|
|
|
local_user::{LocalUser, LocalUserInsertForm},
|
2021-10-16 13:33:38 +00:00
|
|
|
password_reset_request::PasswordResetRequest,
|
2022-11-19 04:33:54 +00:00
|
|
|
person::{Person, PersonInsertForm},
|
2021-10-16 13:33:38 +00:00
|
|
|
},
|
|
|
|
traits::Crud,
|
2022-11-09 10:05:00 +00:00
|
|
|
utils::build_db_pool_for_tests,
|
2021-03-11 16:41:04 +00:00
|
|
|
};
|
2024-01-04 09:47:18 +00:00
|
|
|
use pretty_assertions::assert_eq;
|
2021-02-25 19:43:39 +00:00
|
|
|
use serial_test::serial;
|
2019-10-30 03:35:39 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
#[tokio::test]
|
2021-02-25 19:43:39 +00:00
|
|
|
#[serial]
|
2022-11-09 10:05:00 +00:00
|
|
|
async fn test_crud() {
|
|
|
|
let pool = &build_db_pool_for_tests().await;
|
2023-07-11 13:09:59 +00:00
|
|
|
let pool = &mut pool.into();
|
2019-10-30 03:35:39 +00:00
|
|
|
|
2023-03-01 02:36:57 +00:00
|
|
|
let inserted_instance = Instance::read_or_create(pool, "my_domain.tld".to_string())
|
|
|
|
.await
|
|
|
|
.unwrap();
|
2022-10-27 09:24:07 +00:00
|
|
|
|
|
|
|
let new_person = PersonInsertForm::builder()
|
|
|
|
.name("thommy prw".into())
|
|
|
|
.public_key("pubkey".to_string())
|
|
|
|
.instance_id(inserted_instance.id)
|
|
|
|
.build();
|
2019-10-30 03:35:39 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_person = Person::create(pool, &new_person).await.unwrap();
|
2019-10-30 03:35:39 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
let new_local_user = LocalUserInsertForm::builder()
|
|
|
|
.person_id(inserted_person.id)
|
|
|
|
.password_encrypted("pass".to_string())
|
|
|
|
.build();
|
2021-03-11 16:41:04 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let inserted_local_user = LocalUser::create(pool, &new_local_user).await.unwrap();
|
2021-03-11 16:41:04 +00:00
|
|
|
|
2019-12-28 21:06:37 +00:00
|
|
|
let token = "nope";
|
2019-11-02 06:43:21 +00:00
|
|
|
|
|
|
|
let inserted_password_reset_request =
|
2023-08-02 17:02:53 +00:00
|
|
|
PasswordResetRequest::create_token(pool, inserted_local_user.id, token.to_string())
|
2022-11-09 10:05:00 +00:00
|
|
|
.await
|
|
|
|
.unwrap();
|
2019-10-30 03:35:39 +00:00
|
|
|
|
|
|
|
let expected_password_reset_request = PasswordResetRequest {
|
|
|
|
id: inserted_password_reset_request.id,
|
2021-03-11 16:41:04 +00:00
|
|
|
local_user_id: inserted_local_user.id,
|
2023-08-02 17:02:53 +00:00
|
|
|
token: token.to_string(),
|
2019-10-30 03:35:39 +00:00
|
|
|
published: inserted_password_reset_request.published,
|
|
|
|
};
|
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let read_password_reset_request = PasswordResetRequest::read_from_token(pool, token)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
let num_deleted = Person::delete(pool, inserted_person.id).await.unwrap();
|
|
|
|
Instance::delete(pool, inserted_instance.id).await.unwrap();
|
2019-10-30 03:35:39 +00:00
|
|
|
|
|
|
|
assert_eq!(expected_password_reset_request, read_password_reset_request);
|
2019-11-02 06:43:21 +00:00
|
|
|
assert_eq!(
|
|
|
|
expected_password_reset_request,
|
|
|
|
inserted_password_reset_request
|
|
|
|
);
|
2019-10-30 03:35:39 +00:00
|
|
|
assert_eq!(1, num_deleted);
|
|
|
|
}
|
|
|
|
}
|