2021-03-25 19:19:40 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
2021-04-26 14:44:19 +00:00
|
|
|
use lemmy_api_common::{blocking, get_local_user_view_from_jwt_opt, person::*};
|
2021-04-15 03:37:51 +00:00
|
|
|
use lemmy_db_queries::{from_opt_str_to_opt_enum, source::person::Person_, SortType};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_db_schema::source::person::*;
|
|
|
|
use lemmy_db_views::{comment_view::CommentQueryBuilder, post_view::PostQueryBuilder};
|
|
|
|
use lemmy_db_views_actor::{
|
|
|
|
community_follower_view::CommunityFollowerView,
|
|
|
|
community_moderator_view::CommunityModeratorView,
|
|
|
|
person_view::PersonViewSafe,
|
|
|
|
};
|
|
|
|
use lemmy_utils::{ApiError, ConnectionId, LemmyError};
|
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for GetPersonDetails {
|
|
|
|
type Response = GetPersonDetailsResponse;
|
|
|
|
|
|
|
|
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;
|
2021-03-25 19:19:40 +00:00
|
|
|
let local_user_view = get_local_user_view_from_jwt_opt(&data.auth, 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
|
|
|
|
2021-04-15 03:37:51 +00:00
|
|
|
let sort: Option<SortType> = from_opt_str_to_opt_enum(&data.sort);
|
2021-03-25 19:19:40 +00:00
|
|
|
|
|
|
|
let username = data
|
|
|
|
.username
|
|
|
|
.to_owned()
|
|
|
|
.unwrap_or_else(|| "admin".to_string());
|
|
|
|
let person_details_id = match data.person_id {
|
|
|
|
Some(id) => id,
|
|
|
|
None => {
|
|
|
|
let person = blocking(context.pool(), move |conn| {
|
|
|
|
Person::find_by_name(conn, &username)
|
|
|
|
})
|
|
|
|
.await?;
|
2021-04-16 13:10:43 +00:00
|
|
|
person
|
|
|
|
.map_err(|_| ApiError::err("couldnt_find_that_username_or_email"))?
|
|
|
|
.id
|
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??;
|
|
|
|
|
|
|
|
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 mut follows = vec![];
|
|
|
|
if let Some(pid) = person_id {
|
|
|
|
if pid == person_details_id {
|
|
|
|
follows = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityFollowerView::for_person(conn, person_details_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let moderates = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityModeratorView::for_person(conn, person_details_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
// Return the jwt
|
|
|
|
Ok(GetPersonDetailsResponse {
|
|
|
|
person_view,
|
|
|
|
follows,
|
|
|
|
moderates,
|
|
|
|
comments,
|
|
|
|
posts,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|