2021-01-27 16:42:23 +00:00
|
|
|
use crate::{
|
2021-10-16 13:33:38 +00:00
|
|
|
newtypes::{CommunityId, DbUrl, PersonId, PostId},
|
2021-01-27 16:42:23 +00:00
|
|
|
schema::{post, post_like, post_read, post_saved},
|
|
|
|
};
|
2021-10-19 16:37:01 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Queryable, Identifiable, PartialEq, Debug, Serialize, Deserialize)]
|
2020-12-18 17:27:25 +00:00
|
|
|
#[table_name = "post"]
|
|
|
|
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>,
|
|
|
|
pub embed_html: Option<String>,
|
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,
|
|
|
|
}
|
|
|
|
|
2021-03-20 20:59:07 +00:00
|
|
|
#[derive(Insertable, AsChangeset, Default)]
|
2020-12-18 17:27:25 +00:00
|
|
|
#[table_name = "post"]
|
|
|
|
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>,
|
2021-04-08 11:29:08 +00:00
|
|
|
pub url: Option<DbUrl>,
|
|
|
|
pub body: 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>,
|
|
|
|
pub embed_title: Option<String>,
|
|
|
|
pub embed_description: Option<String>,
|
|
|
|
pub embed_html: Option<String>,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub thumbnail_url: Option<DbUrl>,
|
|
|
|
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)]
|
|
|
|
#[belongs_to(Post)]
|
|
|
|
#[table_name = "post_like"]
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset, Clone)]
|
|
|
|
#[table_name = "post_like"]
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Post)]
|
|
|
|
#[table_name = "post_saved"]
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset)]
|
|
|
|
#[table_name = "post_saved"]
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Identifiable, Queryable, Associations, PartialEq, Debug)]
|
|
|
|
#[belongs_to(Post)]
|
|
|
|
#[table_name = "post_read"]
|
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Insertable, AsChangeset)]
|
|
|
|
#[table_name = "post_read"]
|
|
|
|
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
|
|
|
}
|