mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-10 12:05:57 +00:00
0bfbd74e59
* Combined tables try 2
* Finishing up combined report table.
* Fix ts optionals.
* Adding tests, triggers, and history updates for report_combined.
* Adding profile.
* Add cursor pagination to report_combined view (#5244)
* add pagination cursor
* store timestamp instead of id in cursor (partial)
* Revert "store timestamp instead of id in cursor (partial)"
This reverts commit 89359dde4b
.
* use paginated query builder
* Fixing migration and paged API.
* Using dullbananas trigger procedure
* Removing pointless list routes, reorganizing tests.
* Fixing column XOR check.
* Forgot to remove list report actions.
* Cleanup.
* Use internal tagging.
* Fixing api tests.
* Adding a few indexes.
* Fixing migration name.
* Fixing unique constraints.
* Addressing PR comments.
* Start working on profile combined
* Adding views and replaceable schema.
* A few changes to profile view.
- Separating the profile fetch from its combined content fetch.
- Starting to separate saved_only into its own combined view.
* Finishing up combined person_saved and person_content.
* Fixing api tests.
* Moving to api-v4 routes.
* Fixing imports.
* Update crates/db_views/src/report_combined_view.rs
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
* Update crates/db_views/src/report_combined_view.rs
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
* Update crates/db_views/src/report_combined_view.rs
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
* Update migrations/2024-12-02-181601_add_report_combined_table/up.sql
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
* Update migrations/2024-12-02-181601_add_report_combined_table/up.sql
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
* Fixing import and fmt.
* Fixing null types in postgres.
* Comment out err.
* Fixing TS issues.
* Using dullbananas trigger procedure
* Addressing PR comments.
* Removing serialization
* Removing serialization
* Fixing duped trigger.
* Remove saved_only test.
* Remove pointless post_tags types.
* Remove pointless index.
* Changing published to saved for person_saved_combined.
---------
Co-authored-by: dullbananas <dull.bananas0@gmail.com>
166 lines
5.2 KiB
Rust
166 lines
5.2 KiB
Rust
use lemmy_db_schema::{
|
|
newtypes::{CommentId, CommunityId, LanguageId, LocalUserId, PostId},
|
|
CommentSortType,
|
|
ListingType,
|
|
};
|
|
use lemmy_db_views::structs::{CommentView, VoteView};
|
|
use serde::{Deserialize, Serialize};
|
|
use serde_with::skip_serializing_none;
|
|
#[cfg(feature = "full")]
|
|
use ts_rs::TS;
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Default, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// Create a comment.
|
|
pub struct CreateComment {
|
|
pub content: String,
|
|
pub post_id: PostId,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub parent_id: Option<CommentId>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub language_id: Option<LanguageId>,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Default, Copy, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// Fetch an individual comment.
|
|
pub struct GetComment {
|
|
pub id: CommentId,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Default, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// Edit a comment.
|
|
pub struct EditComment {
|
|
pub comment_id: CommentId,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub content: Option<String>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub language_id: Option<LanguageId>,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Copy, Default, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// Distinguish a comment (IE speak as moderator).
|
|
pub struct DistinguishComment {
|
|
pub comment_id: CommentId,
|
|
pub distinguished: bool,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Copy, Default, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// Delete your own comment.
|
|
pub struct DeleteComment {
|
|
pub comment_id: CommentId,
|
|
pub deleted: bool,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Default, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// Remove a comment (only doable by mods).
|
|
pub struct RemoveComment {
|
|
pub comment_id: CommentId,
|
|
pub removed: bool,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub reason: Option<String>,
|
|
}
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Copy, Default, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// Save / bookmark a comment.
|
|
pub struct SaveComment {
|
|
pub comment_id: CommentId,
|
|
pub save: bool,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// A comment response.
|
|
pub struct CommentResponse {
|
|
pub comment_view: CommentView,
|
|
pub recipient_ids: Vec<LocalUserId>,
|
|
}
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Copy, Default, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// Like a comment.
|
|
pub struct CreateCommentLike {
|
|
pub comment_id: CommentId,
|
|
/// Must be -1, 0, or 1 .
|
|
pub score: i16,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Default, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// Get a list of comments.
|
|
pub struct GetComments {
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub type_: Option<ListingType>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub sort: Option<CommentSortType>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub max_depth: Option<i32>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub page: Option<i64>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub limit: Option<i64>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub community_id: Option<CommunityId>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub community_name: Option<String>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub post_id: Option<PostId>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub parent_id: Option<CommentId>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub liked_only: Option<bool>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub disliked_only: Option<bool>,
|
|
}
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// The comment list response.
|
|
pub struct GetCommentsResponse {
|
|
pub comments: Vec<CommentView>,
|
|
}
|
|
|
|
#[skip_serializing_none]
|
|
#[derive(Debug, Serialize, Deserialize, Clone, Copy, Default, PartialEq, Eq, Hash)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// List comment likes. Admins-only.
|
|
pub struct ListCommentLikes {
|
|
pub comment_id: CommentId,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub page: Option<i64>,
|
|
#[cfg_attr(feature = "full", ts(optional))]
|
|
pub limit: Option<i64>,
|
|
}
|
|
|
|
#[derive(Debug, Serialize, Deserialize, Clone)]
|
|
#[cfg_attr(feature = "full", derive(TS))]
|
|
#[cfg_attr(feature = "full", ts(export))]
|
|
/// The comment likes response
|
|
pub struct ListCommentLikesResponse {
|
|
pub comment_likes: Vec<VoteView>,
|
|
}
|