X-Git-Url: http://these/git/?a=blobdiff_plain;f=crates%2Fdb_schema%2Fsrc%2Fsource%2Fcomment.rs;h=f76e2fba77ddb97b1ca2d66f2f7dd4a0aecba764;hb=969f8b2ce9cd80492eb5e556ce3bda95c9b892b3;hp=81dba6e66719ec6adb818b30bd3e8d5deabbc1f2;hpb=3d0d8796ad8aa302a530593b48908c597c05e1d2;p=lemmy.git diff --git a/crates/db_schema/src/source/comment.rs b/crates/db_schema/src/source/comment.rs index 81dba6e6..f76e2fba 100644 --- a/crates/db_schema/src/source/comment.rs +++ b/crates/db_schema/src/source/comment.rs @@ -1,37 +1,60 @@ -use crate::newtypes::{CommentId, DbUrl, LanguageId, LtreeDef, PersonId, PostId}; +#[cfg(feature = "full")] +use crate::newtypes::LtreeDef; +use crate::newtypes::{CommentId, DbUrl, LanguageId, PersonId, PostId}; +#[cfg(feature = "full")] +use crate::schema::{comment, comment_like, comment_saved}; +#[cfg(feature = "full")] use diesel_ltree::Ltree; use serde::{Deserialize, Serialize}; - +use serde_with::skip_serializing_none; #[cfg(feature = "full")] -use crate::schema::{comment, comment_like, comment_saved}; +use ts_rs::TS; +use typed_builder::TypedBuilder; -#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)] -#[cfg_attr(feature = "full", derive(Queryable, Associations, Identifiable))] -#[cfg_attr(feature = "full", belongs_to(crate::source::post::Post))] -#[cfg_attr(feature = "full", table_name = "comment")] +#[skip_serializing_none] +#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)] +#[cfg_attr(feature = "full", derive(Queryable, Associations, Identifiable, TS))] +#[cfg_attr(feature = "full", ts(export))] +#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::post::Post)))] +#[cfg_attr(feature = "full", diesel(table_name = comment))] +/// A comment. pub struct Comment { pub id: CommentId, pub creator_id: PersonId, pub post_id: PostId, pub content: String, + /// Whether the comment has been removed. pub removed: bool, pub published: chrono::NaiveDateTime, pub updated: Option, + /// Whether the comment has been deleted by its creator. pub deleted: bool, + /// The federated activity id / ap_id. pub ap_id: DbUrl, + /// Whether the comment is local. pub local: bool, - #[serde(with = "LtreeDef")] + #[cfg(feature = "full")] + #[cfg_attr(feature = "full", serde(with = "LtreeDef"))] + #[cfg_attr(feature = "full", ts(type = "string"))] + /// The path / tree location of a comment, separated by dots, ending with the comment's id. Ex: 0.24.27 pub path: Ltree, + #[cfg(not(feature = "full"))] + pub path: String, + /// Whether the comment has been distinguished(speaking officially) by a mod. pub distinguished: bool, pub language_id: LanguageId, } -#[derive(Clone, Default)] +#[derive(Debug, Clone, TypedBuilder)] +#[builder(field_defaults(default))] #[cfg_attr(feature = "full", derive(Insertable, AsChangeset))] -#[cfg_attr(feature = "full", table_name = "comment")] -pub struct CommentForm { +#[cfg_attr(feature = "full", diesel(table_name = comment))] +pub struct CommentInsertForm { + #[builder(!default)] pub creator_id: PersonId, + #[builder(!default)] pub post_id: PostId, + #[builder(!default)] pub content: String, pub removed: Option, pub published: Option, @@ -43,10 +66,25 @@ pub struct CommentForm { pub language_id: Option, } -#[derive(PartialEq, Debug, Clone)] +#[derive(Debug, Clone, Default)] +#[cfg_attr(feature = "full", derive(AsChangeset))] +#[cfg_attr(feature = "full", diesel(table_name = comment))] +pub struct CommentUpdateForm { + pub content: Option, + pub removed: Option, + // Don't use a default naive_now here, because the create function does a lot of comment updates + pub updated: Option>, + pub deleted: Option, + pub ap_id: Option, + pub local: Option, + pub distinguished: Option, + pub language_id: Option, +} + +#[derive(PartialEq, Eq, Debug, Clone)] #[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))] -#[cfg_attr(feature = "full", belongs_to(Comment))] -#[cfg_attr(feature = "full", table_name = "comment_like")] +#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::comment::Comment)))] +#[cfg_attr(feature = "full", diesel(table_name = comment_like))] pub struct CommentLike { pub id: i32, pub person_id: PersonId, @@ -58,7 +96,7 @@ pub struct CommentLike { #[derive(Clone)] #[cfg_attr(feature = "full", derive(Insertable, AsChangeset))] -#[cfg_attr(feature = "full", table_name = "comment_like")] +#[cfg_attr(feature = "full", diesel(table_name = comment_like))] pub struct CommentLikeForm { pub person_id: PersonId, pub comment_id: CommentId, @@ -66,10 +104,10 @@ pub struct CommentLikeForm { pub score: i16, } -#[derive(PartialEq, Debug)] +#[derive(PartialEq, Eq, Debug)] #[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))] -#[cfg_attr(feature = "full", belongs_to(Comment))] -#[cfg_attr(feature = "full", table_name = "comment_saved")] +#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::comment::Comment)))] +#[cfg_attr(feature = "full", diesel(table_name = comment_saved))] pub struct CommentSaved { pub id: i32, pub comment_id: CommentId, @@ -78,7 +116,7 @@ pub struct CommentSaved { } #[cfg_attr(feature = "full", derive(Insertable, AsChangeset))] -#[cfg_attr(feature = "full", table_name = "comment_saved")] +#[cfg_attr(feature = "full", diesel(table_name = comment_saved))] pub struct CommentSavedForm { pub comment_id: CommentId, pub person_id: PersonId,