2020-12-18 17:27:25 +00:00
|
|
|
use crate::{
|
2021-10-16 11:14:02 +00:00
|
|
|
naive_now,
|
2020-12-18 17:27:25 +00:00
|
|
|
schema::{comment, comment_alias_1, comment_like, comment_saved},
|
|
|
|
source::post::Post,
|
2021-03-18 20:25:21 +00:00
|
|
|
CommentId,
|
2021-03-02 12:41:48 +00:00
|
|
|
DbUrl,
|
2021-03-18 20:25:21 +00:00
|
|
|
PersonId,
|
|
|
|
PostId,
|
2020-12-18 17:27:25 +00:00
|
|
|
};
|
2021-10-06 20:20:05 +00:00
|
|
|
use chrono::NaiveDateTime;
|
|
|
|
use diesel::{ExpressionMethods, PgConnection, QueryDsl, RunQueryDsl};
|
|
|
|
use lemmy_apub_lib::traits::ApubObject;
|
|
|
|
use lemmy_utils::LemmyError;
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-10-06 20:20:05 +00:00
|
|
|
use url::Url;
|
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;
|
|
|
|
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(
|
|
|
|
Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize,
|
|
|
|
)]
|
2020-12-18 17:27:25 +00:00
|
|
|
#[belongs_to(Post)]
|
|
|
|
#[table_name = "comment"]
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
2021-10-19 16:37:01 +00:00
|
|
|
#[derive(
|
|
|
|
Clone, Queryable, Associations, Identifiable, PartialEq, Debug, Serialize, Deserialize,
|
|
|
|
)]
|
2020-12-18 17:27:25 +00:00
|
|
|
#[belongs_to(Post)]
|
|
|
|
#[table_name = "comment_alias_1"]
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
2021-03-20 20:59:07 +00:00
|
|
|
#[derive(Insertable, AsChangeset, Clone, Default)]
|
2020-12-18 17:27:25 +00:00
|
|
|
#[table_name = "comment"]
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug, Clone)]
|
|
|
|
#[belongs_to(Comment)]
|
|
|
|
#[table_name = "comment_like"]
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
|
|
|
#[table_name = "comment_like"]
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Comment)]
|
|
|
|
#[table_name = "comment_saved"]
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset)]
|
|
|
|
#[table_name = "comment_saved"]
|
|
|
|
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
|
|
|
}
|
2021-10-06 20:20:05 +00:00
|
|
|
|
|
|
|
impl ApubObject for Comment {
|
|
|
|
type DataType = PgConnection;
|
|
|
|
|
|
|
|
fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read_from_apub_id(conn: &PgConnection, object_id: Url) -> Result<Option<Self>, LemmyError> {
|
|
|
|
use crate::schema::comment::dsl::*;
|
|
|
|
let object_id: DbUrl = object_id.into();
|
|
|
|
Ok(comment.filter(ap_id.eq(object_id)).first::<Self>(conn).ok())
|
|
|
|
}
|
2021-10-16 11:14:02 +00:00
|
|
|
|
|
|
|
// TODO: duplicate code from Comment::update_deleted(), we should really move all impls to
|
|
|
|
// this crate so we can call that function from here
|
|
|
|
fn delete(self, conn: &PgConnection) -> Result<(), LemmyError> {
|
|
|
|
use crate::schema::comment::dsl::*;
|
|
|
|
diesel::update(comment.find(self.id))
|
|
|
|
.set((deleted.eq(true), updated.eq(naive_now())))
|
|
|
|
.get_result::<Self>(conn)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
2021-10-06 20:20:05 +00:00
|
|
|
}
|