2022-05-03 17:44:13 +00:00
|
|
|
use crate::newtypes::{CommentId, DbUrl, PersonId, PostId};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2020-12-18 17:27:25 +00:00
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::{comment, comment_alias_1, comment_like, comment_saved};
|
|
|
|
|
2020-12-18 17:27:25 +00:00
|
|
|
// WITH RECURSIVE MyTree AS (
|
|
|
|
// SELECT * FROM comment WHERE parent_id IS NULL
|
|
|
|
// UNION ALL
|
|
|
|
// SELECT m.* FROM comment AS m JOIN MyTree AS t ON m.parent_id = t.id
|
|
|
|
// )
|
|
|
|
// SELECT * FROM MyTree;
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[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")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct Comment {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: CommentId,
|
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub post_id: PostId,
|
|
|
|
pub parent_id: Option<CommentId>,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub content: String,
|
|
|
|
pub removed: bool,
|
|
|
|
pub read: bool, // Whether the recipient has read the comment or not
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: bool,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub ap_id: DbUrl,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub local: bool,
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[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_alias_1")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct CommentAlias1 {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: CommentId,
|
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub post_id: PostId,
|
|
|
|
pub parent_id: Option<CommentId>,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub content: String,
|
|
|
|
pub removed: bool,
|
|
|
|
pub read: bool, // Whether the recipient has read the comment or not
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: bool,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub ap_id: DbUrl,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub local: bool,
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Clone, Default)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "comment")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct CommentForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub post_id: PostId,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub content: String,
|
2021-04-08 11:29:08 +00:00
|
|
|
pub parent_id: Option<CommentId>,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub read: Option<bool>,
|
|
|
|
pub published: Option<chrono::NaiveDateTime>,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: Option<bool>,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub ap_id: Option<DbUrl>,
|
2021-03-20 20:59:07 +00:00
|
|
|
pub local: Option<bool>,
|
2020-12-18 17:27:25 +00:00
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(PartialEq, 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")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct CommentLike {
|
|
|
|
pub id: i32,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub person_id: PersonId,
|
|
|
|
pub comment_id: CommentId,
|
|
|
|
pub post_id: PostId, // TODO this is redundant
|
2020-12-18 17:27:25 +00:00
|
|
|
pub score: i16,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Clone)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "comment_like")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct CommentLikeForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub person_id: PersonId,
|
|
|
|
pub comment_id: CommentId,
|
|
|
|
pub post_id: PostId, // TODO this is redundant
|
2020-12-18 17:27:25 +00:00
|
|
|
pub score: i16,
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(PartialEq, Debug)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
|
|
|
#[cfg_attr(feature = "full", belongs_to(Comment))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "comment_saved")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct CommentSaved {
|
|
|
|
pub id: i32,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub comment_id: CommentId,
|
|
|
|
pub person_id: PersonId,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "comment_saved")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct CommentSavedForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub comment_id: CommentId,
|
|
|
|
pub person_id: PersonId,
|
2020-12-18 17:27:25 +00:00
|
|
|
}
|