2022-05-03 17:44:13 +00:00
|
|
|
use crate::newtypes::{LocalUserId, PersonId};
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::local_user;
|
2022-11-02 19:18:22 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use typed_builder::TypedBuilder;
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = local_user))]
|
2021-02-26 13:49:58 +00:00
|
|
|
pub struct LocalUser {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: LocalUserId,
|
|
|
|
pub person_id: PersonId,
|
2023-03-01 17:19:46 +00:00
|
|
|
#[serde(skip)]
|
2021-03-11 04:43:11 +00:00
|
|
|
pub password_encrypted: String,
|
|
|
|
pub email: Option<String>,
|
|
|
|
pub show_nsfw: bool,
|
|
|
|
pub theme: String,
|
|
|
|
pub default_sort_type: i16,
|
|
|
|
pub default_listing_type: i16,
|
2022-08-18 19:11:19 +00:00
|
|
|
pub interface_language: String,
|
2021-03-11 04:43:11 +00:00
|
|
|
pub show_avatars: bool,
|
|
|
|
pub send_notifications_to_email: bool,
|
2021-03-19 04:31:49 +00:00
|
|
|
pub validator_time: chrono::NaiveDateTime,
|
2021-04-21 21:41:14 +00:00
|
|
|
pub show_bot_accounts: bool,
|
2021-03-31 10:54:46 +00:00
|
|
|
pub show_scores: bool,
|
2021-04-24 22:26:50 +00:00
|
|
|
pub show_read_posts: bool,
|
2021-07-22 20:07:40 +00:00
|
|
|
pub show_new_post_notifs: bool,
|
2021-12-15 19:49:59 +00:00
|
|
|
pub email_verified: bool,
|
|
|
|
pub accepted_application: bool,
|
2023-03-02 20:37:41 +00:00
|
|
|
#[serde(skip)]
|
|
|
|
pub totp_2fa_secret: Option<String>,
|
|
|
|
pub totp_2fa_url: Option<String>,
|
2021-02-26 13:49:58 +00:00
|
|
|
}
|
2022-10-27 09:24:07 +00:00
|
|
|
|
|
|
|
#[derive(Clone, TypedBuilder)]
|
|
|
|
#[builder(field_defaults(default))]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = local_user))]
|
|
|
|
pub struct LocalUserInsertForm {
|
|
|
|
#[builder(!default)]
|
|
|
|
pub person_id: PersonId,
|
|
|
|
#[builder(!default)]
|
|
|
|
pub password_encrypted: String,
|
|
|
|
pub email: Option<String>,
|
|
|
|
pub show_nsfw: Option<bool>,
|
|
|
|
pub theme: Option<String>,
|
|
|
|
pub default_sort_type: Option<i16>,
|
|
|
|
pub default_listing_type: Option<i16>,
|
|
|
|
pub interface_language: Option<String>,
|
|
|
|
pub show_avatars: Option<bool>,
|
|
|
|
pub send_notifications_to_email: Option<bool>,
|
|
|
|
pub show_bot_accounts: Option<bool>,
|
|
|
|
pub show_scores: Option<bool>,
|
|
|
|
pub show_read_posts: Option<bool>,
|
|
|
|
pub show_new_post_notifs: Option<bool>,
|
|
|
|
pub email_verified: Option<bool>,
|
|
|
|
pub accepted_application: Option<bool>,
|
2023-03-02 20:37:41 +00:00
|
|
|
pub totp_2fa_secret: Option<Option<String>>,
|
|
|
|
pub totp_2fa_url: Option<Option<String>>,
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, TypedBuilder)]
|
|
|
|
#[builder(field_defaults(default))]
|
|
|
|
#[cfg_attr(feature = "full", derive(AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = local_user))]
|
|
|
|
pub struct LocalUserUpdateForm {
|
|
|
|
pub password_encrypted: Option<String>,
|
|
|
|
pub email: Option<Option<String>>,
|
|
|
|
pub show_nsfw: Option<bool>,
|
|
|
|
pub theme: Option<String>,
|
|
|
|
pub default_sort_type: Option<i16>,
|
|
|
|
pub default_listing_type: Option<i16>,
|
|
|
|
pub interface_language: Option<String>,
|
|
|
|
pub show_avatars: Option<bool>,
|
|
|
|
pub send_notifications_to_email: Option<bool>,
|
|
|
|
pub show_bot_accounts: Option<bool>,
|
|
|
|
pub show_scores: Option<bool>,
|
|
|
|
pub show_read_posts: Option<bool>,
|
|
|
|
pub show_new_post_notifs: Option<bool>,
|
|
|
|
pub email_verified: Option<bool>,
|
|
|
|
pub accepted_application: Option<bool>,
|
2023-03-02 20:37:41 +00:00
|
|
|
pub totp_2fa_secret: Option<Option<String>>,
|
|
|
|
pub totp_2fa_url: Option<Option<String>>,
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|