2022-05-03 17:44:13 +00:00
|
|
|
use crate::newtypes::{DbUrl, PersonId, PostId, PostReportId};
|
|
|
|
#[cfg(feature = "full")]
|
|
|
|
use crate::schema::post_report;
|
2022-11-02 19:18:22 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2022-05-03 17:44:13 +00:00
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(PartialEq, Eq, Serialize, Deserialize, 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::post::Post)))] // Is this the right assoc?
|
|
|
|
#[cfg_attr(feature = "full", diesel(table_name = post_report))]
|
2020-12-21 13:38:34 +00:00
|
|
|
pub struct PostReport {
|
2021-09-28 10:36:17 +00:00
|
|
|
pub id: PostReportId,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub post_id: PostId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub original_post_name: String,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub original_post_url: Option<DbUrl>,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub original_post_body: Option<String>,
|
|
|
|
pub reason: String,
|
|
|
|
pub resolved: bool,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub resolver_id: Option<PersonId>,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub published: chrono::NaiveDateTime,
|
|
|
|
pub updated: Option<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_report))]
|
2020-12-21 13:38:34 +00:00
|
|
|
pub struct PostReportForm {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub creator_id: PersonId,
|
|
|
|
pub post_id: PostId,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub original_post_name: String,
|
2021-03-02 12:41:48 +00:00
|
|
|
pub original_post_url: Option<DbUrl>,
|
2020-12-21 13:38:34 +00:00
|
|
|
pub original_post_body: Option<String>,
|
|
|
|
pub reason: String,
|
|
|
|
}
|