2022-08-18 19:11:19 +00:00
|
|
|
use crate::newtypes::{CommunityId, DbUrl, LanguageId, PersonId, PostId};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2022-05-03 17:44:13 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::{post, post_like, post_read, post_saved};
|
|
|
|
|
|
|
|
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "post")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct Post {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub id: PostId,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub name: String,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub url: Option<DbUrl>,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub body: Option<String>,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub community_id: CommunityId,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub removed: bool,
|
|
|
|
pub locked: bool,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: bool,
|
|
|
|
pub nsfw: bool,
|
|
|
|
pub stickied: bool,
|
|
|
|
pub embed_title: Option<String>,
|
|
|
|
pub embed_description: Option<String>,
|
2022-06-02 21:44:47 +00:00
|
|
|
pub embed_video_url: Option<DbUrl>,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub thumbnail_url: Option<DbUrl>,
|
|
|
|
pub ap_id: DbUrl,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub local: bool,
|
2022-08-18 19:11:19 +00:00
|
|
|
pub language_id: LanguageId,
|
2020-12-18 17:27:25 +00:00
|
|
|
}
|
|
|
|
|
2022-05-03 17:44:13 +00:00
|
|
|
#[derive(Default)]
|
|
|
|
#[cfg_attr(feature = "full", derive(Insertable, AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "post")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct PostForm {
|
|
|
|
pub name: String,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub community_id: CommunityId,
|
2021-04-15 03:37:51 +00:00
|
|
|
pub nsfw: Option<bool>,
|
2022-07-29 13:04:21 +00:00
|
|
|
pub url: Option<Option<DbUrl>>,
|
|
|
|
pub body: Option<Option<String>>,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub locked: Option<bool>,
|
|
|
|
pub published: Option<chrono::NaiveDateTime>,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: Option<bool>,
|
|
|
|
pub stickied: Option<bool>,
|
2022-07-29 13:04:21 +00:00
|
|
|
pub embed_title: Option<Option<String>>,
|
|
|
|
pub embed_description: Option<Option<String>>,
|
|
|
|
pub embed_video_url: Option<Option<DbUrl>>,
|
|
|
|
pub thumbnail_url: Option<Option<DbUrl>>,
|
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-18 19:11:19 +00:00
|
|
|
pub language_id: Option<LanguageId>,
|
2020-12-18 17:27:25 +00:00
|
|
|
}
|
|
|
|
|
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(Post))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "post_like")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct PostLike {
|
|
|
|
pub id: i32,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub post_id: PostId,
|
|
|
|
pub person_id: PersonId,
|
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 = "post_like")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct PostLikeForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub post_id: PostId,
|
|
|
|
pub person_id: PersonId,
|
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(Post))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "post_saved")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct PostSaved {
|
|
|
|
pub id: i32,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub post_id: PostId,
|
|
|
|
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 = "post_saved")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct PostSavedForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub post_id: PostId,
|
|
|
|
pub person_id: PersonId,
|
2020-12-18 17:27:25 +00:00
|
|
|
}
|
|
|
|
|
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(Post))]
|
|
|
|
#[cfg_attr(feature = "full", table_name = "post_read")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct PostRead {
|
|
|
|
pub id: i32,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub post_id: PostId,
|
|
|
|
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 = "post_read")]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub struct PostReadForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub post_id: PostId,
|
|
|
|
pub person_id: PersonId,
|
2020-12-18 17:27:25 +00:00
|
|
|
}
|