2020-12-18 17:27:25 +00:00
|
|
|
use crate::{
|
|
|
|
schema::{comment, comment_alias_1, comment_like, comment_saved},
|
|
|
|
source::post::Post,
|
2021-03-02 12:41:48 +00:00
|
|
|
DbUrl,
|
2020-12-18 17:27:25 +00:00
|
|
|
};
|
|
|
|
use serde::Serialize;
|
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
|
|
|
#[derive(Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize)]
|
|
|
|
#[belongs_to(Post)]
|
|
|
|
#[table_name = "comment"]
|
|
|
|
pub struct Comment {
|
|
|
|
pub id: i32,
|
|
|
|
pub creator_id: i32,
|
|
|
|
pub post_id: i32,
|
|
|
|
pub parent_id: Option<i32>,
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize)]
|
|
|
|
#[belongs_to(Post)]
|
|
|
|
#[table_name = "comment_alias_1"]
|
|
|
|
pub struct CommentAlias1 {
|
|
|
|
pub id: i32,
|
|
|
|
pub creator_id: i32,
|
|
|
|
pub post_id: i32,
|
|
|
|
pub parent_id: Option<i32>,
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
|
|
|
#[table_name = "comment"]
|
|
|
|
pub struct CommentForm {
|
|
|
|
pub creator_id: i32,
|
|
|
|
pub post_id: i32,
|
|
|
|
pub parent_id: Option<i32>,
|
|
|
|
pub content: String,
|
|
|
|
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>,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub local: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug, Clone)]
|
|
|
|
#[belongs_to(Comment)]
|
|
|
|
#[table_name = "comment_like"]
|
|
|
|
pub struct CommentLike {
|
|
|
|
pub id: i32,
|
2021-02-26 13:49:58 +00:00
|
|
|
pub person_id: i32,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub comment_id: i32,
|
|
|
|
pub post_id: i32, // TODO this is redundant
|
|
|
|
pub score: i16,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
|
|
|
#[table_name = "comment_like"]
|
|
|
|
pub struct CommentLikeForm {
|
2021-02-26 13:49:58 +00:00
|
|
|
pub person_id: i32,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub comment_id: i32,
|
|
|
|
pub post_id: i32, // TODO this is redundant
|
|
|
|
pub score: i16,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Comment)]
|
|
|
|
#[table_name = "comment_saved"]
|
|
|
|
pub struct CommentSaved {
|
|
|
|
pub id: i32,
|
|
|
|
pub comment_id: i32,
|
2021-02-26 13:49:58 +00:00
|
|
|
pub person_id: i32,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset)]
|
|
|
|
#[table_name = "comment_saved"]
|
|
|
|
pub struct CommentSavedForm {
|
|
|
|
pub comment_id: i32,
|
2021-02-26 13:49:58 +00:00
|
|
|
pub person_id: i32,
|
2020-12-18 17:27:25 +00:00
|
|
|
}
|