mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-15 17:03:59 +00:00
Nutomic
e4a49b6eab
* Tag posts and comments with language (fixes #440) * Untangle PostView tests * Implement test for PostView language query * Store languages directly in database * finish moving languages into db, it compiles * update post_view * serde skip Language.id field * add local_user_language table, other changes suggested in review * add code for local_user_discussion_language_view * Remove unnecessary clones in db view converteres * Fixing up some table and join issues. * Clearing the current languages. * Fix formatting. * update user languages in single transaction * proper test for user language queries * Some fixes for all / missing user languages. (#2404) * Some fixes for all / missing user languages. * Adding back in transaction. * fix test Co-authored-by: Dessalines <tyhou13@gmx.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
131 lines
3.3 KiB
Rust
131 lines
3.3 KiB
Rust
use crate::{
|
|
newtypes::LocalUserId,
|
|
schema::local_user::dsl::*,
|
|
source::local_user::{LocalUser, LocalUserForm},
|
|
traits::Crud,
|
|
utils::naive_now,
|
|
};
|
|
use bcrypt::{hash, DEFAULT_COST};
|
|
use diesel::{dsl::*, result::Error, *};
|
|
|
|
mod safe_settings_type {
|
|
use crate::{
|
|
schema::local_user::columns::*,
|
|
source::local_user::LocalUser,
|
|
traits::ToSafeSettings,
|
|
};
|
|
|
|
type Columns = (
|
|
id,
|
|
person_id,
|
|
email,
|
|
show_nsfw,
|
|
theme,
|
|
default_sort_type,
|
|
default_listing_type,
|
|
interface_language,
|
|
show_avatars,
|
|
send_notifications_to_email,
|
|
validator_time,
|
|
show_bot_accounts,
|
|
show_scores,
|
|
show_read_posts,
|
|
show_new_post_notifs,
|
|
email_verified,
|
|
accepted_application,
|
|
);
|
|
|
|
impl ToSafeSettings for LocalUser {
|
|
type SafeSettingsColumns = Columns;
|
|
|
|
/// Includes everything but the hashed password
|
|
fn safe_settings_columns_tuple() -> Self::SafeSettingsColumns {
|
|
(
|
|
id,
|
|
person_id,
|
|
email,
|
|
show_nsfw,
|
|
theme,
|
|
default_sort_type,
|
|
default_listing_type,
|
|
interface_language,
|
|
show_avatars,
|
|
send_notifications_to_email,
|
|
validator_time,
|
|
show_bot_accounts,
|
|
show_scores,
|
|
show_read_posts,
|
|
show_new_post_notifs,
|
|
email_verified,
|
|
accepted_application,
|
|
)
|
|
}
|
|
}
|
|
}
|
|
|
|
impl LocalUser {
|
|
pub fn register(conn: &PgConnection, form: &LocalUserForm) -> Result<Self, Error> {
|
|
let mut edited_user = form.clone();
|
|
let password_hash = form
|
|
.password_encrypted
|
|
.as_ref()
|
|
.map(|p| hash(p, DEFAULT_COST).expect("Couldn't hash password"));
|
|
edited_user.password_encrypted = password_hash;
|
|
|
|
Self::create(conn, &edited_user)
|
|
}
|
|
|
|
pub fn update_password(
|
|
conn: &PgConnection,
|
|
local_user_id: LocalUserId,
|
|
new_password: &str,
|
|
) -> Result<Self, Error> {
|
|
let password_hash = hash(new_password, DEFAULT_COST).expect("Couldn't hash password");
|
|
|
|
diesel::update(local_user.find(local_user_id))
|
|
.set((
|
|
password_encrypted.eq(password_hash),
|
|
validator_time.eq(naive_now()),
|
|
))
|
|
.get_result::<Self>(conn)
|
|
}
|
|
|
|
pub fn set_all_users_email_verified(conn: &PgConnection) -> Result<Vec<Self>, Error> {
|
|
diesel::update(local_user)
|
|
.set(email_verified.eq(true))
|
|
.get_results::<Self>(conn)
|
|
}
|
|
|
|
pub fn set_all_users_registration_applications_accepted(
|
|
conn: &PgConnection,
|
|
) -> Result<Vec<Self>, Error> {
|
|
diesel::update(local_user)
|
|
.set(accepted_application.eq(true))
|
|
.get_results::<Self>(conn)
|
|
}
|
|
}
|
|
|
|
impl Crud for LocalUser {
|
|
type Form = LocalUserForm;
|
|
type IdType = LocalUserId;
|
|
fn read(conn: &PgConnection, local_user_id: LocalUserId) -> Result<Self, Error> {
|
|
local_user.find(local_user_id).first::<Self>(conn)
|
|
}
|
|
fn delete(conn: &PgConnection, local_user_id: LocalUserId) -> Result<usize, Error> {
|
|
diesel::delete(local_user.find(local_user_id)).execute(conn)
|
|
}
|
|
fn create(conn: &PgConnection, form: &LocalUserForm) -> Result<Self, Error> {
|
|
insert_into(local_user)
|
|
.values(form)
|
|
.get_result::<Self>(conn)
|
|
}
|
|
fn update(
|
|
conn: &PgConnection,
|
|
local_user_id: LocalUserId,
|
|
form: &LocalUserForm,
|
|
) -> Result<Self, Error> {
|
|
diesel::update(local_user.find(local_user_id))
|
|
.set(form)
|
|
.get_result::<Self>(conn)
|
|
}
|
|
}
|