use crate::sensitive::Sensitive; use lemmy_db_schema::{ newtypes::{CommunityId, PersonId}, ListingType, SearchType, SortType, }; use lemmy_db_views::structs::{ CommentView, LocalUserSettingsView, PostView, RegistrationApplicationView, SiteView, }; use lemmy_db_views_actor::structs::{ CommunityBlockView, CommunityFollowerView, CommunityModeratorView, CommunityView, PersonBlockView, PersonViewSafe, }; use lemmy_db_views_moderator::structs::{ ModAddCommunityView, ModAddView, ModBanFromCommunityView, ModBanView, ModHideCommunityView, ModLockPostView, ModRemoveCommentView, ModRemoveCommunityView, ModRemovePostView, ModStickyPostView, ModTransferCommunityView, }; use serde::{Deserialize, Serialize}; #[derive(Debug, Serialize, Deserialize, Clone, Default)] pub struct Search { pub q: String, pub community_id: Option, pub community_name: Option, pub creator_id: Option, pub type_: Option, pub sort: Option, pub listing_type: Option, pub page: Option, pub limit: Option, pub auth: Option>, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct SearchResponse { pub type_: String, pub comments: Vec, pub posts: Vec, pub communities: Vec, pub users: Vec, } #[derive(Debug, Serialize, Deserialize, Clone, Default)] pub struct ResolveObject { pub q: String, pub auth: Option>, } #[derive(Debug, Serialize, Deserialize, Default)] pub struct ResolveObjectResponse { pub comment: Option, pub post: Option, pub community: Option, pub person: Option, } #[derive(Debug, Serialize, Deserialize, Clone, Default)] pub struct GetModlog { pub mod_person_id: Option, pub community_id: Option, pub page: Option, pub limit: Option, pub auth: Option>, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct GetModlogResponse { pub removed_posts: Vec, pub locked_posts: Vec, pub stickied_posts: Vec, pub removed_comments: Vec, pub removed_communities: Vec, pub banned_from_community: Vec, pub banned: Vec, pub added_to_community: Vec, pub transferred_to_community: Vec, pub added: Vec, pub hidden_communities: Vec, } #[derive(Debug, Serialize, Deserialize, Clone, Default)] pub struct CreateSite { pub name: String, pub sidebar: Option, pub description: Option, pub icon: Option, pub banner: Option, pub enable_downvotes: Option, pub open_registration: Option, pub enable_nsfw: Option, pub community_creation_admin_only: Option, pub require_email_verification: Option, pub require_application: Option, pub application_question: Option, pub private_instance: Option, pub default_theme: Option, pub default_post_listing_type: Option, pub auth: Sensitive, } #[derive(Debug, Serialize, Deserialize, Clone, Default)] pub struct EditSite { pub name: Option, pub sidebar: Option, pub description: Option, pub icon: Option, pub banner: Option, pub enable_downvotes: Option, pub open_registration: Option, pub enable_nsfw: Option, pub community_creation_admin_only: Option, pub require_email_verification: Option, pub require_application: Option, pub application_question: Option, pub private_instance: Option, pub default_theme: Option, pub default_post_listing_type: Option, pub legal_information: Option, pub auth: Sensitive, } #[derive(Debug, Serialize, Deserialize, Clone, Default)] pub struct GetSite { pub auth: Option>, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct SiteResponse { pub site_view: SiteView, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct GetSiteResponse { pub site_view: Option, // Because the site might not be set up yet pub admins: Vec, pub online: usize, pub version: String, pub my_user: Option, pub federated_instances: Option, // Federation may be disabled } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct MyUserInfo { pub local_user_view: LocalUserSettingsView, pub follows: Vec, pub moderates: Vec, pub community_blocks: Vec, pub person_blocks: Vec, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct LeaveAdmin { pub auth: Sensitive, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct GetSiteConfig { pub auth: Sensitive, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct GetSiteConfigResponse { pub config_hjson: String, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct SaveSiteConfig { pub config_hjson: String, pub auth: Sensitive, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct FederatedInstances { pub linked: Vec, pub allowed: Option>, pub blocked: Option>, } #[derive(Debug, Serialize, Deserialize, Clone, Default)] pub struct ListRegistrationApplications { /// Only shows the unread applications (IE those without an admin actor) pub unread_only: Option, pub page: Option, pub limit: Option, pub auth: String, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct ListRegistrationApplicationsResponse { pub registration_applications: Vec, } #[derive(Debug, Serialize, Deserialize, Clone, Default)] pub struct ApproveRegistrationApplication { pub id: i32, pub approve: bool, pub deny_reason: Option, pub auth: String, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct RegistrationApplicationResponse { pub registration_application: RegistrationApplicationView, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct GetUnreadRegistrationApplicationCount { pub auth: String, } #[derive(Debug, Serialize, Deserialize, Clone)] pub struct GetUnreadRegistrationApplicationCountResponse { pub registration_applications: i64, }