5d837780f5
* Moving settings to Database. - Moves many settings into the database. Fixes #2285 - Adds a local_site and instance table. Fixes #2365 . Fixes #2368 - Separates SQL update an insert forms, to avoid runtime errors. - Adds TypedBuilder to all the SQL forms, instead of default. * Fix weird clippy issue. * Removing extra lines. * Some fixes from suggestions. * Fixing apub tests. * Using instance creation helper function. * Move forms to their own line. * Trying to fix local_site_data, still broken. * Testing out async * Testing out async 2 * Fixing federation tests. * Trying to fix check features 1. * Starting on adding diesel async. 1/4th done. * Added async to views and schema. * Adding some more async * Compiling now. * Added diesel async. Fixes #2465 * Running clippy --fix * Trying to fix cargo test on drone. * Trying new muslrust. * Trying a custom dns * Trying a custom dns 2 * Trying a custom dns 3 * Trying a custom dns 4 * Trying a custom dns 5 * Trying a custom dns 6 * Trying a custom dns 7 * Addressing PR comments. * Adding check_apub to all verify functions. * Reverting back drone. * Fixing merge * Fix docker images. * Adding missing discussion_languages. * Trying to fix federation tests. * Fix site setup user creation. * Fix clippy * Fix clippy 2 * Test api faster * Try to fix 1 * Try to fix 2 * What are these lines about * Trying to fix 3 * Moving federation test back to top. * Remove logging cat.
93 lines
2.9 KiB
Rust
93 lines
2.9 KiB
Rust
use crate::PerformCrud;
|
|
use actix_web::web::Data;
|
|
use lemmy_api_common::{
|
|
comment::{GetComments, GetCommentsResponse},
|
|
utils::{
|
|
check_private_instance,
|
|
get_local_user_view_from_jwt_opt,
|
|
listing_type_with_site_default,
|
|
},
|
|
};
|
|
use lemmy_apub::{fetcher::resolve_actor_identifier, objects::community::ApubCommunity};
|
|
use lemmy_db_schema::{
|
|
source::{comment::Comment, community::Community, local_site::LocalSite},
|
|
traits::{Crud, DeleteableOrRemoveable},
|
|
};
|
|
use lemmy_db_views::comment_view::CommentQuery;
|
|
use lemmy_utils::{error::LemmyError, ConnectionId};
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
impl PerformCrud for GetComments {
|
|
type Response = GetCommentsResponse;
|
|
|
|
#[tracing::instrument(skip(context, _websocket_id))]
|
|
async fn perform(
|
|
&self,
|
|
context: &Data<LemmyContext>,
|
|
_websocket_id: Option<ConnectionId>,
|
|
) -> Result<GetCommentsResponse, LemmyError> {
|
|
let data: &GetComments = self;
|
|
let local_user_view =
|
|
get_local_user_view_from_jwt_opt(data.auth.as_ref(), context.pool(), context.secret())
|
|
.await?;
|
|
let local_site = LocalSite::read(context.pool()).await?;
|
|
check_private_instance(&local_user_view, &local_site)?;
|
|
|
|
let community_id = data.community_id;
|
|
let listing_type = listing_type_with_site_default(data.type_, &local_site)?;
|
|
|
|
let community_actor_id = if let Some(name) = &data.community_name {
|
|
resolve_actor_identifier::<ApubCommunity, Community>(name, context, true)
|
|
.await
|
|
.ok()
|
|
.map(|c| c.actor_id)
|
|
} else {
|
|
None
|
|
};
|
|
let sort = data.sort;
|
|
let max_depth = data.max_depth;
|
|
let saved_only = data.saved_only;
|
|
let page = data.page;
|
|
let limit = data.limit;
|
|
let parent_id = data.parent_id;
|
|
|
|
// If a parent_id is given, fetch the comment to get the path
|
|
let parent_path = if let Some(parent_id) = parent_id {
|
|
Some(Comment::read(context.pool(), parent_id).await?.path)
|
|
} else {
|
|
None
|
|
};
|
|
|
|
let parent_path_cloned = parent_path.to_owned();
|
|
let post_id = data.post_id;
|
|
let local_user = local_user_view.map(|l| l.local_user);
|
|
let mut comments = CommentQuery::builder()
|
|
.pool(context.pool())
|
|
.listing_type(Some(listing_type))
|
|
.sort(sort)
|
|
.max_depth(max_depth)
|
|
.saved_only(saved_only)
|
|
.community_id(community_id)
|
|
.community_actor_id(community_actor_id)
|
|
.parent_path(parent_path_cloned)
|
|
.post_id(post_id)
|
|
.local_user(local_user.as_ref())
|
|
.page(page)
|
|
.limit(limit)
|
|
.build()
|
|
.list()
|
|
.await
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_get_comments"))?;
|
|
|
|
// Blank out deleted or removed info
|
|
for cv in comments
|
|
.iter_mut()
|
|
.filter(|cv| cv.comment.deleted || cv.comment.removed)
|
|
{
|
|
cv.comment = cv.to_owned().comment.blank_out_deleted_or_removed_info();
|
|
}
|
|
|
|
Ok(GetCommentsResponse { comments })
|
|
}
|
|
}
|