2022-08-18 19:11:19 +00:00
|
|
|
use crate::newtypes::{CommunityId, DbUrl, LanguageId, PersonId, PostId};
|
2022-05-03 17:44:13 +00:00
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::{post, post_like, post_read, post_saved};
|
2022-11-02 19:18:22 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2023-04-26 04:26:10 +00:00
|
|
|
use serde_with::skip_serializing_none;
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use ts_rs::TS;
|
2022-11-02 19:18:22 +00:00
|
|
|
use typed_builder::TypedBuilder;
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2023-04-26 04:26:10 +00:00
|
|
|
#[skip_serializing_none]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Clone, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(Queryable, Identifiable, TS))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = post))]
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(export))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A 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,
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(type = "string"))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// An optional link / url for the post.
|
2021-03-02 12:41:48 +00:00
|
|
|
pub url: Option<DbUrl>,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// An optional post body, in markdown.
|
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,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether the post is removed.
|
2020-12-18 17:27:25 +00:00
|
|
|
pub removed: bool,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether the post is locked.
|
2020-12-18 17:27:25 +00:00
|
|
|
pub locked: bool,
|
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether the post is deleted.
|
2020-12-18 17:27:25 +00:00
|
|
|
pub deleted: bool,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether the post is NSFW.
|
2020-12-18 17:27:25 +00:00
|
|
|
pub nsfw: bool,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A title for the link.
|
2020-12-18 17:27:25 +00:00
|
|
|
pub embed_title: Option<String>,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A description for the link.
|
2020-12-18 17:27:25 +00:00
|
|
|
pub embed_description: Option<String>,
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(type = "string"))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A thumbnail picture url.
|
2021-03-02 12:41:48 +00:00
|
|
|
pub thumbnail_url: Option<DbUrl>,
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(type = "string"))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// The federated activity id / ap_id.
|
2021-03-02 12:41:48 +00:00
|
|
|
pub ap_id: DbUrl,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether the post is local.
|
2020-12-18 17:27:25 +00:00
|
|
|
pub local: bool,
|
2023-04-26 04:26:10 +00:00
|
|
|
#[cfg_attr(feature = "full", ts(type = "string"))]
|
2023-05-10 19:20:39 +00:00
|
|
|
/// A video url for the link.
|
2023-04-17 19:19:51 +00:00
|
|
|
pub embed_video_url: Option<DbUrl>,
|
2022-08-18 19:11:19 +00:00
|
|
|
pub language_id: LanguageId,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether the post is featured to its community.
|
2022-12-12 11:17:10 +00:00
|
|
|
pub featured_community: bool,
|
2023-05-10 19:20:39 +00:00
|
|
|
/// Whether the post is featured to its site.
|
2022-12-12 11:17:10 +00:00
|
|
|
pub featured_local: bool,
|
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 = post))]
|
2022-10-27 09:24:07 +00:00
|
|
|
pub struct PostInsertForm {
|
|
|
|
#[builder(!default)]
|
2020-12-18 17:27:25 +00:00
|
|
|
pub name: String,
|
2022-10-27 09:24:07 +00:00
|
|
|
#[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 community_id: CommunityId,
|
2021-04-15 03:37:51 +00:00
|
|
|
pub nsfw: Option<bool>,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub url: Option<DbUrl>,
|
|
|
|
pub body: Option<String>,
|
|
|
|
pub removed: Option<bool>,
|
|
|
|
pub locked: Option<bool>,
|
|
|
|
pub updated: Option<chrono::NaiveDateTime>,
|
|
|
|
pub published: Option<chrono::NaiveDateTime>,
|
|
|
|
pub deleted: Option<bool>,
|
|
|
|
pub embed_title: Option<String>,
|
|
|
|
pub embed_description: Option<String>,
|
|
|
|
pub embed_video_url: Option<DbUrl>,
|
|
|
|
pub thumbnail_url: Option<DbUrl>,
|
|
|
|
pub ap_id: Option<DbUrl>,
|
|
|
|
pub local: Option<bool>,
|
|
|
|
pub language_id: Option<LanguageId>,
|
2022-12-12 11:17:10 +00:00
|
|
|
pub featured_community: Option<bool>,
|
|
|
|
pub featured_local: Option<bool>,
|
2022-10-27 09:24:07 +00:00
|
|
|
}
|
|
|
|
|
2023-08-08 09:41:41 +00:00
|
|
|
#[derive(Debug, Clone, Default)]
|
2022-10-27 09:24:07 +00:00
|
|
|
#[cfg_attr(feature = "full", derive(AsChangeset))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = post))]
|
|
|
|
pub struct PostUpdateForm {
|
|
|
|
pub name: Option<String>,
|
|
|
|
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>,
|
2022-10-27 09:24:07 +00:00
|
|
|
pub updated: Option<Option<chrono::NaiveDateTime>>,
|
2020-12-18 17:27:25 +00:00
|
|
|
pub deleted: 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>,
|
2022-12-12 11:17:10 +00:00
|
|
|
pub featured_community: Option<bool>,
|
|
|
|
pub featured_local: Option<bool>,
|
2020-12-18 17:27:25 +00:00
|
|
|
}
|
|
|
|
|
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::post::Post)))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(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))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(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-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::post::Post)))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(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))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(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-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::post::Post)))]
|
|
|
|
#[cfg_attr(feature = "full", diesel(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))]
|
2022-09-26 14:09:32 +00:00
|
|
|
#[cfg_attr(feature = "full", diesel(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
|
|
|
}
|