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},
|
2024-05-17 00:41:57 +00:00
|
|
|
sensitive::SensitiveString,
|
2024-09-19 08:03:58 +00:00
|
|
|
CommentSortType,
|
2023-04-17 19:19:51 +00:00
|
|
|
ListingType,
|
2023-08-31 13:01:08 +00:00
|
|
|
PostListingMode,
|
2024-09-19 08:03:58 +00:00
|
|
|
PostSortType,
|
2023-04-17 19:19:51 +00:00
|
|
|
};
|
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-05-03 17:44:13 +00:00
|
|
|
|
2023-04-26 04:26:10 +00:00
|
|
|
#[skip_serializing_none]
|
2024-10-01 00:21:06 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize, Default)]
|
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))]
|
2024-10-01 00:21:06 +00:00
|
|
|
#[serde(default)]
|
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)]
|
2024-09-18 12:52:33 +00:00
|
|
|
pub password_encrypted: Option<SensitiveString>,
|
2024-11-06 14:50:13 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
2024-05-17 00:41:57 +00:00
|
|
|
pub email: Option<SensitiveString>,
|
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,
|
2024-09-19 08:03:58 +00:00
|
|
|
pub default_post_sort_type: PostSortType,
|
2023-04-17 19:19:51 +00:00
|
|
|
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 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)]
|
2024-05-17 00:41:57 +00:00
|
|
|
pub totp_2fa_secret: Option<SensitiveString>,
|
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,
|
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,
|
2024-05-23 12:46:26 +00:00
|
|
|
/// Whether user avatars and inline images in the UI that are gifs should be allowed to play or
|
|
|
|
/// should be paused
|
2023-10-17 14:52:34 +00:00
|
|
|
pub enable_animated_images: bool,
|
2024-11-08 03:16:28 +00:00
|
|
|
/// Whether a user can send / receive private messages
|
|
|
|
pub enable_private_messages: bool,
|
2023-11-06 21:09:12 +00:00
|
|
|
/// Whether to auto-collapse bot comments.
|
|
|
|
pub collapse_bot_comments: bool,
|
2024-09-19 08:03:58 +00:00
|
|
|
pub default_comment_sort_type: CommentSortType,
|
2024-11-13 15:05:16 +00:00
|
|
|
/// Whether to automatically mark fetched posts as read.
|
|
|
|
pub auto_mark_fetched_posts_as_read: bool,
|
2021-02-26 13:49:58 +00:00
|
|
|
}
|
2022-10-27 09:24:07 +00:00
|
|
|
|
2024-07-16 10:22:47 +00:00
|
|
|
#[derive(Clone, derive_new::new)]
|
2022-10-27 09:24:07 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Insertable))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = local_user))]
|
|
|
|
pub struct LocalUserInsertForm {
|
|
|
|
pub person_id: PersonId,
|
2024-09-18 12:52:33 +00:00
|
|
|
pub password_encrypted: Option<String>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub email: Option<String>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub show_nsfw: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub theme: Option<String>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2024-09-19 08:03:58 +00:00
|
|
|
pub default_post_sort_type: Option<PostSortType>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2023-04-17 19:19:51 +00:00
|
|
|
pub default_listing_type: Option<ListingType>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub interface_language: Option<String>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub show_avatars: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub send_notifications_to_email: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub show_bot_accounts: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub show_read_posts: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub email_verified: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub accepted_application: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2023-03-02 20:37:41 +00:00
|
|
|
pub totp_2fa_secret: Option<Option<String>>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2023-07-03 15:10:25 +00:00
|
|
|
pub open_links_in_new_tab: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2023-07-26 11:53:45 +00:00
|
|
|
pub blur_nsfw: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2023-07-12 13:12:01 +00:00
|
|
|
pub infinite_scroll_enabled: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2023-08-24 09:40:08 +00:00
|
|
|
pub admin: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2023-08-31 13:01:08 +00:00
|
|
|
pub post_listing_mode: Option<PostListingMode>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2023-09-20 14:49:54 +00:00
|
|
|
pub totp_2fa_enabled: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2023-10-10 10:17:27 +00:00
|
|
|
pub enable_keyboard_navigation: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2023-10-17 14:52:34 +00:00
|
|
|
pub enable_animated_images: Option<bool>,
|
2024-07-16 10:22:47 +00:00
|
|
|
#[new(default)]
|
2024-11-08 03:16:28 +00:00
|
|
|
pub enable_private_messages: Option<bool>,
|
|
|
|
#[new(default)]
|
2023-11-06 21:09:12 +00:00
|
|
|
pub collapse_bot_comments: Option<bool>,
|
2024-09-19 08:03:58 +00:00
|
|
|
#[new(default)]
|
|
|
|
pub default_comment_sort_type: Option<CommentSortType>,
|
2024-11-13 15:05:16 +00:00
|
|
|
#[new(default)]
|
|
|
|
pub auto_mark_fetched_posts_as_read: 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>,
|
2024-09-19 08:03:58 +00:00
|
|
|
pub default_post_sort_type: Option<PostSortType>,
|
2023-04-17 19:19:51 +00:00
|
|
|
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_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>,
|
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>,
|
2024-11-08 03:16:28 +00:00
|
|
|
pub enable_private_messages: Option<bool>,
|
2023-11-06 21:09:12 +00:00
|
|
|
pub collapse_bot_comments: Option<bool>,
|
2024-09-19 08:03:58 +00:00
|
|
|
pub default_comment_sort_type: Option<CommentSortType>,
|
2024-11-13 15:05:16 +00:00
|
|
|
pub auto_mark_fetched_posts_as_read: Option<bool>,
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|