2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
2021-12-15 19:49:59 +00:00
|
|
|
use lemmy_api_common::{
|
2022-05-03 17:44:13 +00:00
|
|
|
person::{GetPersonDetails, GetPersonDetailsResponse},
|
|
|
|
utils::{blocking, check_private_instance, get_local_user_view_from_jwt_opt},
|
2021-12-15 19:49:59 +00:00
|
|
|
};
|
2022-03-23 21:27:51 +00:00
|
|
|
use lemmy_apub::{fetcher::resolve_actor_identifier, objects::person::ApubPerson};
|
2022-05-06 20:55:07 +00:00
|
|
|
use lemmy_db_schema::source::person::Person;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::{comment_view::CommentQueryBuilder, post_view::PostQueryBuilder};
|
|
|
|
use lemmy_db_views_actor::structs::{CommunityModeratorView, PersonViewSafe};
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, ConnectionId};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for GetPersonDetails {
|
|
|
|
type Response = GetPersonDetailsResponse;
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip(self, context, _websocket_id))]
|
2021-03-25 19:19:40 +00:00
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
_websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<GetPersonDetailsResponse, LemmyError> {
|
2021-07-05 16:07:26 +00:00
|
|
|
let data: &GetPersonDetails = self;
|
2022-07-08 10:21:33 +00:00
|
|
|
|
|
|
|
// Check to make sure a person name or an id is given
|
|
|
|
if data.username.is_none() && data.person_id.is_none() {
|
|
|
|
return Err(LemmyError::from_message("no_id_given"));
|
|
|
|
}
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let local_user_view =
|
2021-12-06 14:54:47 +00:00
|
|
|
get_local_user_view_from_jwt_opt(data.auth.as_ref(), context.pool(), context.secret())
|
|
|
|
.await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2021-12-15 19:49:59 +00:00
|
|
|
check_private_instance(&local_user_view, context.pool()).await?;
|
|
|
|
|
2021-04-26 14:44:19 +00:00
|
|
|
let show_nsfw = local_user_view.as_ref().map(|t| t.local_user.show_nsfw);
|
|
|
|
let show_bot_accounts = local_user_view
|
|
|
|
.as_ref()
|
|
|
|
.map(|t| t.local_user.show_bot_accounts);
|
|
|
|
let show_read_posts = local_user_view
|
|
|
|
.as_ref()
|
|
|
|
.map(|t| t.local_user.show_read_posts);
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
let person_details_id = match data.person_id {
|
|
|
|
Some(id) => id,
|
|
|
|
None => {
|
2022-04-25 21:16:29 +00:00
|
|
|
if let Some(username) = &data.username {
|
|
|
|
resolve_actor_identifier::<ApubPerson, Person>(username, context)
|
|
|
|
.await
|
|
|
|
.map_err(|e| e.with_message("couldnt_find_that_username_or_email"))?
|
|
|
|
.id
|
|
|
|
} else {
|
|
|
|
return Err(LemmyError::from_message(
|
|
|
|
"couldnt_find_that_username_or_email",
|
|
|
|
));
|
|
|
|
}
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let person_id = local_user_view.map(|uv| uv.person.id);
|
|
|
|
|
|
|
|
// You don't need to return settings for the user, since this comes back with GetSite
|
|
|
|
// `my_user`
|
|
|
|
let person_view = blocking(context.pool(), move |conn| {
|
|
|
|
PersonViewSafe::read(conn, person_details_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2022-05-06 20:55:07 +00:00
|
|
|
let sort = data.sort;
|
2021-03-25 19:19:40 +00:00
|
|
|
let page = data.page;
|
|
|
|
let limit = data.limit;
|
|
|
|
let saved_only = data.saved_only;
|
|
|
|
let community_id = data.community_id;
|
|
|
|
|
|
|
|
let (posts, comments) = blocking(context.pool(), move |conn| {
|
|
|
|
let mut posts_query = PostQueryBuilder::create(conn)
|
2021-04-15 03:37:51 +00:00
|
|
|
.sort(sort)
|
2021-03-25 19:19:40 +00:00
|
|
|
.show_nsfw(show_nsfw)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2021-04-24 22:26:50 +00:00
|
|
|
.show_read_posts(show_read_posts)
|
2021-03-25 19:19:40 +00:00
|
|
|
.saved_only(saved_only)
|
|
|
|
.community_id(community_id)
|
|
|
|
.my_person_id(person_id)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit);
|
|
|
|
|
|
|
|
let mut comments_query = CommentQueryBuilder::create(conn)
|
|
|
|
.my_person_id(person_id)
|
2021-04-21 21:41:14 +00:00
|
|
|
.show_bot_accounts(show_bot_accounts)
|
2021-04-15 03:37:51 +00:00
|
|
|
.sort(sort)
|
2021-03-25 19:19:40 +00:00
|
|
|
.saved_only(saved_only)
|
|
|
|
.community_id(community_id)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit);
|
|
|
|
|
|
|
|
// If its saved only, you don't care what creator it was
|
|
|
|
// Or, if its not saved, then you only want it for that specific creator
|
2021-04-26 13:50:34 +00:00
|
|
|
if !saved_only.unwrap_or(false) {
|
2021-03-25 19:19:40 +00:00
|
|
|
posts_query = posts_query.creator_id(person_details_id);
|
|
|
|
comments_query = comments_query.creator_id(person_details_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
let posts = posts_query.list()?;
|
|
|
|
let comments = comments_query.list()?;
|
|
|
|
|
|
|
|
Ok((posts, comments)) as Result<_, LemmyError>
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let moderates = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityModeratorView::for_person(conn, person_details_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Return the jwt
|
|
|
|
Ok(GetPersonDetailsResponse {
|
|
|
|
person_view,
|
|
|
|
moderates,
|
|
|
|
comments,
|
|
|
|
posts,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|