2023-08-31 13:26:10 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use diesel::Queryable;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
aggregates::structs::{CommentAggregates, CommunityAggregates, PersonAggregates},
|
|
|
|
source::{
|
|
|
|
comment::Comment,
|
2022-07-30 03:55:59 +00:00
|
|
|
comment_reply::CommentReply,
|
2023-03-01 17:19:46 +00:00
|
|
|
community::Community,
|
|
|
|
person::Person,
|
2024-11-02 17:04:31 +00:00
|
|
|
person_comment_mention::PersonCommentMention,
|
2022-05-03 17:44:13 +00:00
|
|
|
post::Post,
|
|
|
|
},
|
2022-06-22 12:05:41 +00:00
|
|
|
SubscribedType,
|
2022-05-03 17:44:13 +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
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
2023-08-31 13:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(TS, Queryable))]
|
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 community follower.
|
2022-05-03 17:44:13 +00:00
|
|
|
pub struct CommunityFollowerView {
|
2023-03-01 17:19:46 +00:00
|
|
|
pub community: Community,
|
|
|
|
pub follower: Person,
|
2022-05-03 17:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
2023-08-31 13:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(TS, Queryable))]
|
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 community moderator.
|
2022-05-03 17:44:13 +00:00
|
|
|
pub struct CommunityModeratorView {
|
2023-03-01 17:19:46 +00:00
|
|
|
pub community: Community,
|
|
|
|
pub moderator: Person,
|
2022-05-03 17:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
2023-08-31 13:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable))]
|
2023-11-21 13:42:28 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(check_for_backend(diesel::pg::Pg)))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A community person ban.
|
2022-05-03 17:44:13 +00:00
|
|
|
pub struct CommunityPersonBanView {
|
2023-03-01 17:19:46 +00:00
|
|
|
pub community: Community,
|
|
|
|
pub person: Person,
|
2022-05-03 17:44:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
2023-08-31 13:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(TS, Queryable))]
|
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 community view.
|
2022-05-03 17:44:13 +00:00
|
|
|
pub struct CommunityView {
|
2023-03-01 17:19:46 +00:00
|
|
|
pub community: Community,
|
2022-06-22 12:05:41 +00:00
|
|
|
pub subscribed: SubscribedType,
|
2022-05-03 17:44:13 +00:00
|
|
|
pub blocked: bool,
|
|
|
|
pub counts: CommunityAggregates,
|
2024-02-18 14:09:46 +00:00
|
|
|
pub banned_from_community: bool,
|
2022-05-03 17:44:13 +00:00
|
|
|
}
|
|
|
|
|
2024-10-15 21:15:43 +00:00
|
|
|
/// The community sort types. See here for descriptions: https://join-lemmy.org/docs/en/users/03-votes-and-ranking.html
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Copy, Default, PartialEq, Eq, Hash)]
|
|
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
|
|
pub enum CommunitySortType {
|
|
|
|
#[default]
|
|
|
|
Active,
|
|
|
|
Hot,
|
|
|
|
New,
|
|
|
|
Old,
|
|
|
|
TopDay,
|
|
|
|
TopWeek,
|
|
|
|
TopMonth,
|
|
|
|
TopYear,
|
|
|
|
TopAll,
|
|
|
|
MostComments,
|
|
|
|
NewComments,
|
|
|
|
TopHour,
|
|
|
|
TopSixHour,
|
|
|
|
TopTwelveHour,
|
|
|
|
TopThreeMonths,
|
|
|
|
TopSixMonths,
|
|
|
|
TopNineMonths,
|
|
|
|
Controversial,
|
|
|
|
Scaled,
|
|
|
|
NameAsc,
|
|
|
|
NameDesc,
|
|
|
|
}
|
|
|
|
|
2023-04-26 04:26:10 +00:00
|
|
|
#[skip_serializing_none]
|
2023-07-26 17:07:05 +00:00
|
|
|
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)]
|
2023-08-31 13:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(TS, Queryable))]
|
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 person mention view.
|
2024-11-02 17:04:31 +00:00
|
|
|
pub struct PersonCommentMentionView {
|
|
|
|
pub person_comment_mention: PersonCommentMention,
|
2022-05-03 17:44:13 +00:00
|
|
|
pub comment: Comment,
|
2023-03-01 17:19:46 +00:00
|
|
|
pub creator: Person,
|
2022-05-03 17:44:13 +00:00
|
|
|
pub post: Post,
|
2023-03-01 17:19:46 +00:00
|
|
|
pub community: Community,
|
|
|
|
pub recipient: Person,
|
2022-05-03 17:44:13 +00:00
|
|
|
pub counts: CommentAggregates,
|
2023-05-10 19:20:39 +00:00
|
|
|
pub creator_banned_from_community: bool,
|
2024-03-26 16:06:11 +00:00
|
|
|
pub banned_from_community: bool,
|
2023-11-03 13:41:00 +00:00
|
|
|
pub creator_is_moderator: bool,
|
2023-11-21 16:20:24 +00:00
|
|
|
pub creator_is_admin: bool,
|
2023-05-10 19:20:39 +00:00
|
|
|
pub subscribed: SubscribedType,
|
|
|
|
pub saved: bool,
|
|
|
|
pub creator_blocked: bool,
|
|
|
|
pub my_vote: Option<i16>,
|
2022-05-03 17:44:13 +00:00
|
|
|
}
|
|
|
|
|
2024-11-02 17:04:31 +00:00
|
|
|
// #[skip_serializing_none]
|
|
|
|
// #[derive(Debug, PartialEq, Serialize, Deserialize, Clone)]
|
|
|
|
// #[cfg_attr(feature = "full", derive(TS, Queryable))]
|
|
|
|
// #[cfg_attr(feature = "full", diesel(check_for_backend(diesel::pg::Pg)))]
|
|
|
|
// #[cfg_attr(feature = "full", ts(export))]
|
|
|
|
// /// A person mention view.
|
|
|
|
// pub struct PersonPostMentionView {
|
|
|
|
// pub person_post_mention: PersonPostMention,
|
|
|
|
// pub creator: Person,
|
|
|
|
// pub post: Post,
|
|
|
|
// pub community: Community,
|
|
|
|
// pub recipient: Person,
|
|
|
|
// pub counts: CommentAggregates,
|
|
|
|
// pub creator_banned_from_community: bool,
|
|
|
|
// pub banned_from_community: bool,
|
|
|
|
// pub creator_is_moderator: bool,
|
|
|
|
// pub creator_is_admin: bool,
|
|
|
|
// pub subscribed: SubscribedType,
|
|
|
|
// pub saved: bool,
|
|
|
|
// pub creator_blocked: bool,
|
|
|
|
// pub my_vote: Option<i16>,
|
|
|
|
// }
|
|
|
|
|
2023-04-26 04:26:10 +00:00
|
|
|
#[skip_serializing_none]
|
2023-07-26 17:07:05 +00:00
|
|
|
#[derive(Debug, PartialEq, Serialize, Deserialize, Clone)]
|
2023-08-31 13:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(TS, Queryable))]
|
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 comment reply view.
|
2022-07-30 03:55:59 +00:00
|
|
|
pub struct CommentReplyView {
|
|
|
|
pub comment_reply: CommentReply,
|
|
|
|
pub comment: Comment,
|
2023-03-01 17:19:46 +00:00
|
|
|
pub creator: Person,
|
2022-07-30 03:55:59 +00:00
|
|
|
pub post: Post,
|
2023-03-01 17:19:46 +00:00
|
|
|
pub community: Community,
|
|
|
|
pub recipient: Person,
|
2022-07-30 03:55:59 +00:00
|
|
|
pub counts: CommentAggregates,
|
2023-11-03 13:41:00 +00:00
|
|
|
pub creator_banned_from_community: bool,
|
2024-03-26 16:06:11 +00:00
|
|
|
pub banned_from_community: bool,
|
2023-11-03 13:41:00 +00:00
|
|
|
pub creator_is_moderator: bool,
|
2023-11-21 16:20:24 +00:00
|
|
|
pub creator_is_admin: bool,
|
2023-11-03 13:41:00 +00:00
|
|
|
pub subscribed: SubscribedType,
|
|
|
|
pub saved: bool,
|
|
|
|
pub creator_blocked: bool,
|
|
|
|
pub my_vote: Option<i16>,
|
2022-07-30 03:55:59 +00:00
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
2023-08-31 13:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(TS, Queryable))]
|
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 person view.
|
2023-03-01 17:19:46 +00:00
|
|
|
pub struct PersonView {
|
|
|
|
pub person: Person,
|
2022-05-03 17:44:13 +00:00
|
|
|
pub counts: PersonAggregates,
|
2023-11-21 16:20:24 +00:00
|
|
|
pub is_admin: bool,
|
2022-05-03 17:44:13 +00:00
|
|
|
}
|