]> Untitled Git - lemmy.git/blob - crates/db_schema/src/source/comment.rs
Adding comments to all API related types. Fixes #2846 (#2848)
[lemmy.git] / crates / db_schema / src / source / comment.rs
1 #[cfg(feature = "full")]
2 use crate::newtypes::LtreeDef;
3 use crate::newtypes::{CommentId, DbUrl, LanguageId, PersonId, PostId};
4 #[cfg(feature = "full")]
5 use crate::schema::{comment, comment_like, comment_saved};
6 #[cfg(feature = "full")]
7 use diesel_ltree::Ltree;
8 use serde::{Deserialize, Serialize};
9 use serde_with::skip_serializing_none;
10 #[cfg(feature = "full")]
11 use ts_rs::TS;
12 use typed_builder::TypedBuilder;
13
14 #[skip_serializing_none]
15 #[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
16 #[cfg_attr(feature = "full", derive(Queryable, Associations, Identifiable, TS))]
17 #[cfg_attr(feature = "full", ts(export))]
18 #[cfg_attr(feature = "full", diesel(belongs_to(crate::source::post::Post)))]
19 #[cfg_attr(feature = "full", diesel(table_name = comment))]
20 /// A comment.
21 pub struct Comment {
22   pub id: CommentId,
23   pub creator_id: PersonId,
24   pub post_id: PostId,
25   pub content: String,
26   /// Whether the comment has been removed.
27   pub removed: bool,
28   pub published: chrono::NaiveDateTime,
29   pub updated: Option<chrono::NaiveDateTime>,
30   /// Whether the comment has been deleted by its creator.
31   pub deleted: bool,
32   /// The federated activity id / ap_id.
33   pub ap_id: DbUrl,
34   /// Whether the comment is local.
35   pub local: bool,
36   #[cfg(feature = "full")]
37   #[cfg_attr(feature = "full", serde(with = "LtreeDef"))]
38   #[cfg_attr(feature = "full", ts(type = "string"))]
39   /// The path / tree location of a comment, separated by dots, ending with the comment's id. Ex: 0.24.27
40   pub path: Ltree,
41   /// Whether the comment has been distinguished(speaking officially) by a mod.
42   pub distinguished: bool,
43   pub language_id: LanguageId,
44 }
45
46 #[derive(Debug, Clone, TypedBuilder)]
47 #[builder(field_defaults(default))]
48 #[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
49 #[cfg_attr(feature = "full", diesel(table_name = comment))]
50 pub struct CommentInsertForm {
51   #[builder(!default)]
52   pub creator_id: PersonId,
53   #[builder(!default)]
54   pub post_id: PostId,
55   #[builder(!default)]
56   pub content: String,
57   pub removed: Option<bool>,
58   pub published: Option<chrono::NaiveDateTime>,
59   pub updated: Option<chrono::NaiveDateTime>,
60   pub deleted: Option<bool>,
61   pub ap_id: Option<DbUrl>,
62   pub local: Option<bool>,
63   pub distinguished: Option<bool>,
64   pub language_id: Option<LanguageId>,
65 }
66
67 #[derive(Debug, Clone, TypedBuilder)]
68 #[builder(field_defaults(default))]
69 #[cfg_attr(feature = "full", derive(AsChangeset))]
70 #[cfg_attr(feature = "full", diesel(table_name = comment))]
71 pub struct CommentUpdateForm {
72   pub content: Option<String>,
73   pub removed: Option<bool>,
74   // Don't use a default naive_now here, because the create function does a lot of comment updates
75   pub updated: Option<Option<chrono::NaiveDateTime>>,
76   pub deleted: Option<bool>,
77   pub ap_id: Option<DbUrl>,
78   pub local: Option<bool>,
79   pub distinguished: Option<bool>,
80   pub language_id: Option<LanguageId>,
81 }
82
83 #[derive(PartialEq, Eq, Debug, Clone)]
84 #[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
85 #[cfg_attr(feature = "full", diesel(belongs_to(crate::source::comment::Comment)))]
86 #[cfg_attr(feature = "full", diesel(table_name = comment_like))]
87 pub struct CommentLike {
88   pub id: i32,
89   pub person_id: PersonId,
90   pub comment_id: CommentId,
91   pub post_id: PostId, // TODO this is redundant
92   pub score: i16,
93   pub published: chrono::NaiveDateTime,
94 }
95
96 #[derive(Clone)]
97 #[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
98 #[cfg_attr(feature = "full", diesel(table_name = comment_like))]
99 pub struct CommentLikeForm {
100   pub person_id: PersonId,
101   pub comment_id: CommentId,
102   pub post_id: PostId, // TODO this is redundant
103   pub score: i16,
104 }
105
106 #[derive(PartialEq, Eq, Debug)]
107 #[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
108 #[cfg_attr(feature = "full", diesel(belongs_to(crate::source::comment::Comment)))]
109 #[cfg_attr(feature = "full", diesel(table_name = comment_saved))]
110 pub struct CommentSaved {
111   pub id: i32,
112   pub comment_id: CommentId,
113   pub person_id: PersonId,
114   pub published: chrono::NaiveDateTime,
115 }
116
117 #[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
118 #[cfg_attr(feature = "full", diesel(table_name = comment_saved))]
119 pub struct CommentSavedForm {
120   pub comment_id: CommentId,
121   pub person_id: PersonId,
122 }