2022-11-17 15:23:01 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::newtypes::LtreeDef;
|
|
|
|
use crate::newtypes::{CommentId, DbUrl, LanguageId, PersonId, PostId};
|
2022-11-02 19:18:22 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::{comment, comment_like, comment_saved};
|
2022-11-17 15:23:01 +00:00
|
|
|
#[cfg(feature = "full")]
|
2022-07-30 03:55:59 +00:00
|
|
|
use diesel_ltree::Ltree;
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2022-10-27 09:24:07 +00:00
|
|
|
use typed_builder::TypedBuilder;
|
2020-12-18 17:27:25 +00:00
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Associations, Identifiable))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::post::Post)))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(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,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub content: String,
|
|
|
|
pub removed: bool,
|
|
|
|
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-11-17 15:23:01 +00:00
|
|
|
#[cfg(feature = "full")]
|
2022-07-30 03:55:59 +00:00
|
|
|
#[serde(with = "LtreeDef")]
|
|
|
|
pub path: Ltree,
|
2022-08-17 11:38:52 +00:00
|
|
|
pub distinguished: bool,
|
2022-08-22 20:55:10 +00:00
|
|
|
pub language_id: LanguageId,
|
2020-12-18 17:27:25 +00:00
|
|
|
}
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
#[derive(Debug, Clone, TypedBuilder)]
|
|
|
|
#[builder(field_defaults(default))]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = comment))]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub struct CommentInsertForm {
|
|
|
|
#[builder(!default)]
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
2022-10-27 09:24:07 +00:00
|
|
|
#[builder(!default)]
|
2021-03-18 20:25:21 +00:00
|
|
|
pub post_id: PostId,
|
2022-10-27 09:24:07 +00:00
|
|
|
#[builder(!default)]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub content: String,
|
|
|
|
pub removed: 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>,
|
2022-08-17 11:38:52 +00:00
|
|
|
pub distinguished: Option<bool>,
|
2022-08-22 20:55:10 +00:00
|
|
|
pub language_id: Option<LanguageId>,
|
2020-12-18 17:27:25 +00:00
|
|
|
}
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
#[derive(Debug, Clone, TypedBuilder)]
|
|
|
|
#[builder(field_defaults(default))]
|
|
|
|
#[cfg_attr(feature = "full", derive(AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = comment))]
|
|
|
|
pub struct CommentUpdateForm {
|
|
|
|
pub content: Option<String>,
|
|
|
|
pub removed: Option<bool>,
|
|
|
|
// Don't use a default naive_now here, because the create function does a lot of comment updates
|
|
|
|
pub updated: Option<Option<chrono::NaiveDateTime>>,
|
|
|
|
pub deleted: Option<bool>,
|
|
|
|
pub ap_id: Option<DbUrl>,
|
|
|
|
pub local: Option<bool>,
|
|
|
|
pub distinguished: Option<bool>,
|
|
|
|
pub language_id: Option<LanguageId>,
|
|
|
|
}
|
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(PartialEq, Eq, Debug, Clone)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::comment::Comment)))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(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))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(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-09-26 14:09:32 +00:00
|
|
|
#[derive(PartialEq, Eq, Debug)]
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Identifiable, Queryable, Associations))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(belongs_to(crate::source::comment::Comment)))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(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))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(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
|
|
|
}
|