2021-09-28 10:36:17 +00:00
|
|
|
use lemmy_db_schema::{CommentId, CommentReportId, CommunityId, LocalUserId, PostId};
|
2020-12-21 16:30:34 +00:00
|
|
|
use lemmy_db_views::{comment_report_view::CommentReportView, comment_view::CommentView};
|
2020-09-01 14:25:34 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-09-01 14:25:34 +00:00
|
|
|
pub struct CreateComment {
|
|
|
|
pub content: String,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub post_id: PostId,
|
2021-04-15 03:37:51 +00:00
|
|
|
pub parent_id: Option<CommentId>,
|
2020-09-01 14:25:34 +00:00
|
|
|
pub form_id: Option<String>,
|
|
|
|
pub auth: String,
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-09-01 14:25:34 +00:00
|
|
|
pub struct EditComment {
|
|
|
|
pub content: String,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub comment_id: CommentId,
|
2020-09-01 14:25:34 +00:00
|
|
|
pub form_id: Option<String>,
|
|
|
|
pub auth: String,
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-09-01 14:25:34 +00:00
|
|
|
pub struct DeleteComment {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub comment_id: CommentId,
|
2020-09-01 14:25:34 +00:00
|
|
|
pub deleted: bool,
|
|
|
|
pub auth: String,
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-09-01 14:25:34 +00:00
|
|
|
pub struct RemoveComment {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub comment_id: CommentId,
|
2020-09-01 14:25:34 +00:00
|
|
|
pub removed: bool,
|
|
|
|
pub reason: Option<String>,
|
|
|
|
pub auth: String,
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-09-01 14:25:34 +00:00
|
|
|
pub struct MarkCommentAsRead {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub comment_id: CommentId,
|
2020-09-01 14:25:34 +00:00
|
|
|
pub read: bool,
|
|
|
|
pub auth: String,
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-09-01 14:25:34 +00:00
|
|
|
pub struct SaveComment {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub comment_id: CommentId,
|
2020-09-01 14:25:34 +00:00
|
|
|
pub save: bool,
|
|
|
|
pub auth: String,
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Serialize, Clone)]
|
2020-09-01 14:25:34 +00:00
|
|
|
pub struct CommentResponse {
|
2020-12-15 19:39:18 +00:00
|
|
|
pub comment_view: CommentView,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub recipient_ids: Vec<LocalUserId>,
|
2020-12-20 01:10:47 +00:00
|
|
|
pub form_id: Option<String>, // An optional front end ID, to tell which is coming back
|
2020-09-01 14:25:34 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-09-01 14:25:34 +00:00
|
|
|
pub struct CreateCommentLike {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub comment_id: CommentId,
|
2020-09-01 14:25:34 +00:00
|
|
|
pub score: i16,
|
|
|
|
pub auth: String,
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-09-01 14:25:34 +00:00
|
|
|
pub struct GetComments {
|
2021-04-15 03:37:51 +00:00
|
|
|
pub type_: Option<String>,
|
|
|
|
pub sort: Option<String>,
|
2020-09-01 14:25:34 +00:00
|
|
|
pub page: Option<i64>,
|
|
|
|
pub limit: Option<i64>,
|
2021-03-18 20:25:21 +00:00
|
|
|
pub community_id: Option<CommunityId>,
|
2020-09-15 19:26:47 +00:00
|
|
|
pub community_name: Option<String>,
|
2021-04-15 03:37:51 +00:00
|
|
|
pub saved_only: Option<bool>,
|
2020-09-01 14:25:34 +00:00
|
|
|
pub auth: Option<String>,
|
|
|
|
}
|
|
|
|
|
2020-09-03 19:45:12 +00:00
|
|
|
#[derive(Serialize)]
|
2020-09-01 14:25:34 +00:00
|
|
|
pub struct GetCommentsResponse {
|
|
|
|
pub comments: Vec<CommentView>,
|
|
|
|
}
|
2020-10-25 02:59:13 +00:00
|
|
|
|
2021-09-28 10:36:17 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-10-25 02:59:13 +00:00
|
|
|
pub struct CreateCommentReport {
|
2021-03-18 20:25:21 +00:00
|
|
|
pub comment_id: CommentId,
|
2020-10-25 02:59:13 +00:00
|
|
|
pub reason: String,
|
|
|
|
pub auth: String,
|
|
|
|
}
|
|
|
|
|
2021-09-28 10:36:17 +00:00
|
|
|
#[derive(Serialize, Clone)]
|
|
|
|
pub struct CommentReportResponse {
|
|
|
|
pub comment_report_view: CommentReportView,
|
2020-10-25 02:59:13 +00:00
|
|
|
}
|
|
|
|
|
2021-09-28 10:36:17 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-10-25 02:59:13 +00:00
|
|
|
pub struct ResolveCommentReport {
|
2021-09-28 10:36:17 +00:00
|
|
|
pub report_id: CommentReportId,
|
2020-10-25 02:59:13 +00:00
|
|
|
pub resolved: bool,
|
|
|
|
pub auth: String,
|
|
|
|
}
|
|
|
|
|
2021-09-28 10:36:17 +00:00
|
|
|
#[derive(Deserialize)]
|
2020-10-25 02:59:13 +00:00
|
|
|
pub struct ListCommentReports {
|
|
|
|
pub page: Option<i64>,
|
|
|
|
pub limit: Option<i64>,
|
2021-09-28 10:36:17 +00:00
|
|
|
/// Only shows the unresolved reports
|
|
|
|
pub unresolved_only: Option<bool>,
|
2020-11-26 12:28:58 +00:00
|
|
|
/// if no community is given, it returns reports for all communities moderated by the auth user
|
2021-09-28 10:36:17 +00:00
|
|
|
pub community_id: Option<CommunityId>,
|
2020-10-25 02:59:13 +00:00
|
|
|
pub auth: String,
|
|
|
|
}
|
|
|
|
|
2021-09-28 10:36:17 +00:00
|
|
|
#[derive(Serialize)]
|
2020-10-25 02:59:13 +00:00
|
|
|
pub struct ListCommentReportsResponse {
|
2021-09-28 10:36:17 +00:00
|
|
|
pub comment_reports: Vec<CommentReportView>,
|
2020-10-25 02:59:13 +00:00
|
|
|
}
|