2022-05-03 17:44:13 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::local_user;
|
2023-04-17 19:19:51 +00:00
|
|
|
use crate::{
|
|
|
|
newtypes::{LocalUserId, PersonId},
|
|
|
|
ListingType,
|
2023-08-31 13:01:08 +00:00
|
|
|
PostListingMode,
|
2023-04-17 19:19:51 +00:00
|
|
|
SortType,
|
|
|
|
};
|
2022-11-02 19:18:22 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2023-04-26 04:26:10 +00:00
|
|
|
use serde_with::skip_serializing_none;
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use ts_rs::TS;
|
2022-11-02 19:18:22 +00:00
|
|
|
use typed_builder::TypedBuilder;
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2023-04-26 04:26:10 +00:00
|
|
|
#[skip_serializing_none]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
2023-11-21 13:42:28 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Selectable, Identifiable, TS))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = local_user))]
|
2023-11-21 13:42:28 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(check_for_backend(diesel::pg::Pg)))]
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(export))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A local user.
|
2021-02-26 13:49:58 +00:00
|
|
|
pub struct LocalUser {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: LocalUserId,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// The person_id for the local user.
|
2021-03-18 20:25:21 +00:00
|
|
|
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>,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether to show NSFW content.
|
2021-03-11 04:43:11 +00:00
|
|
|
pub show_nsfw: bool,
|
|
|
|
pub theme: String,
|
2023-04-17 19:19:51 +00:00
|
|
|
pub default_sort_type: SortType,
|
|
|
|
pub default_listing_type: ListingType,
|
2022-08-18 19:11:19 +00:00
|
|
|
pub interface_language: String,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether to show avatars.
|
2021-03-11 04:43:11 +00:00
|
|
|
pub show_avatars: bool,
|
|
|
|
pub send_notifications_to_email: bool,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether to show comment / post scores.
|
2024-03-13 16:10:58 +00:00
|
|
|
// TODO now that there is a vote_display_mode, this can be gotten rid of in future releases.
|
2021-03-31 10:54:46 +00:00
|
|
|
pub show_scores: bool,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether to show bot accounts.
|
2023-04-17 19:19:51 +00:00
|
|
|
pub show_bot_accounts: bool,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether to show read posts.
|
2021-04-24 22:26:50 +00:00
|
|
|
pub show_read_posts: bool,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether their email has been verified.
|
2021-12-15 19:49:59 +00:00
|
|
|
pub email_verified: bool,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether their registration application has been accepted.
|
2021-12-15 19:49:59 +00:00
|
|
|
pub accepted_application: bool,
|
2023-03-02 20:37:41 +00:00
|
|
|
#[serde(skip)]
|
|
|
|
pub totp_2fa_secret: Option<String>,
|
2023-07-03 15:10:25 +00:00
|
|
|
/// Open links in a new tab.
|
|
|
|
pub open_links_in_new_tab: bool,
|
2023-07-26 11:53:45 +00:00
|
|
|
pub blur_nsfw: bool,
|
|
|
|
pub auto_expand: bool,
|
2023-07-12 13:12:01 +00:00
|
|
|
/// Whether infinite scroll is enabled.
|
|
|
|
pub infinite_scroll_enabled: bool,
|
2023-08-24 09:40:08 +00:00
|
|
|
/// Whether the person is an admin.
|
|
|
|
pub admin: bool,
|
2024-03-13 16:10:58 +00:00
|
|
|
/// A post-view mode that changes how multiple post listings look.
|
2023-08-31 13:01:08 +00:00
|
|
|
pub post_listing_mode: PostListingMode,
|
2023-09-20 14:49:54 +00:00
|
|
|
pub totp_2fa_enabled: bool,
|
2023-10-10 10:17:27 +00:00
|
|
|
/// Whether to allow keyboard navigation (for browsing and interacting with posts and comments).
|
|
|
|
pub enable_keyboard_navigation: bool,
|
2023-10-17 14:52:34 +00:00
|
|
|
/// Whether user avatars and inline images in the UI that are gifs should be allowed to play or should be paused
|
|
|
|
pub enable_animated_images: bool,
|
2023-11-06 21:09:12 +00:00
|
|
|
/// Whether to auto-collapse bot comments.
|
|
|
|
pub collapse_bot_comments: bool,
|
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>,
|
2023-04-17 19:19:51 +00:00
|
|
|
pub default_sort_type: Option<SortType>,
|
|
|
|
pub default_listing_type: Option<ListingType>,
|
2022-10-27 09:24:07 +00:00
|
|
|
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 email_verified: Option<bool>,
|
|
|
|
pub accepted_application: Option<bool>,
|
2023-03-02 20:37:41 +00:00
|
|
|
pub totp_2fa_secret: Option<Option<String>>,
|
2023-07-03 15:10:25 +00:00
|
|
|
pub open_links_in_new_tab: Option<bool>,
|
2023-07-26 11:53:45 +00:00
|
|
|
pub blur_nsfw: Option<bool>,
|
|
|
|
pub auto_expand: Option<bool>,
|
2023-07-12 13:12:01 +00:00
|
|
|
pub infinite_scroll_enabled: Option<bool>,
|
2023-08-24 09:40:08 +00:00
|
|
|
pub admin: Option<bool>,
|
2023-08-31 13:01:08 +00:00
|
|
|
pub post_listing_mode: Option<PostListingMode>,
|
2023-09-20 14:49:54 +00:00
|
|
|
pub totp_2fa_enabled: Option<bool>,
|
2023-10-10 10:17:27 +00:00
|
|
|
pub enable_keyboard_navigation: Option<bool>,
|
2023-10-17 14:52:34 +00:00
|
|
|
pub enable_animated_images: Option<bool>,
|
2023-11-06 21:09:12 +00:00
|
|
|
pub collapse_bot_comments: Option<bool>,
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
|
2023-08-08 09:41:41 +00:00
|
|
|
#[derive(Clone, Default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
#[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>,
|
2023-04-17 19:19:51 +00:00
|
|
|
pub default_sort_type: Option<SortType>,
|
|
|
|
pub default_listing_type: Option<ListingType>,
|
2022-10-27 09:24:07 +00:00
|
|
|
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 email_verified: Option<bool>,
|
|
|
|
pub accepted_application: Option<bool>,
|
2023-03-02 20:37:41 +00:00
|
|
|
pub totp_2fa_secret: Option<Option<String>>,
|
2023-07-03 15:10:25 +00:00
|
|
|
pub open_links_in_new_tab: Option<bool>,
|
2023-07-26 11:53:45 +00:00
|
|
|
pub blur_nsfw: Option<bool>,
|
|
|
|
pub auto_expand: Option<bool>,
|
2023-07-12 13:12:01 +00:00
|
|
|
pub infinite_scroll_enabled: Option<bool>,
|
2023-08-24 09:40:08 +00:00
|
|
|
pub admin: Option<bool>,
|
2023-08-31 13:01:08 +00:00
|
|
|
pub post_listing_mode: Option<PostListingMode>,
|
2023-09-20 14:49:54 +00:00
|
|
|
pub totp_2fa_enabled: Option<bool>,
|
2023-10-10 10:17:27 +00:00
|
|
|
pub enable_keyboard_navigation: Option<bool>,
|
2023-10-17 14:52:34 +00:00
|
|
|
pub enable_animated_images: Option<bool>,
|
2023-11-06 21:09:12 +00:00
|
|
|
pub collapse_bot_comments: Option<bool>,
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|