2023-07-03 09:01:41 +00:00
|
|
|
use crate::fetcher::search::{search_query_to_object_id, SearchableObjects};
|
2023-03-21 15:03:05 +00:00
|
|
|
use activitypub_federation::config::Data;
|
2023-07-03 09:01:41 +00:00
|
|
|
use actix_web::web::{Json, Query};
|
2022-04-13 18:12:25 +00:00
|
|
|
use diesel::NotFound;
|
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-04-13 18:12:25 +00:00
|
|
|
site::{ResolveObject, ResolveObjectResponse},
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::{check_private_instance, local_user_view_from_jwt},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
2022-10-27 09:24:07 +00:00
|
|
|
use lemmy_db_schema::{newtypes::PersonId, source::local_site::LocalSite, utils::DbPool};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views::structs::{CommentView, PostView};
|
2023-03-01 17:19:46 +00:00
|
|
|
use lemmy_db_views_actor::structs::{CommunityView, PersonView};
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt2, LemmyErrorType};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn resolve_object(
|
|
|
|
data: Query<ResolveObject>,
|
|
|
|
context: Data<LemmyContext>,
|
|
|
|
) -> Result<Json<ResolveObjectResponse>, LemmyError> {
|
|
|
|
let local_user_view = local_user_view_from_jwt(&data.auth, &context).await?;
|
2023-07-11 13:09:59 +00:00
|
|
|
let local_site = LocalSite::read(&mut context.pool()).await?;
|
2023-07-03 09:01:41 +00:00
|
|
|
let person_id = local_user_view.person.id;
|
|
|
|
check_private_instance(&Some(local_user_view), &local_site)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
let res = search_query_to_object_id(&data.q, &context)
|
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntFindObject)?;
|
2023-07-11 13:09:59 +00:00
|
|
|
convert_response(res, person_id, &mut context.pool())
|
2023-07-03 09:01:41 +00:00
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntFindObject)
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn convert_response(
|
|
|
|
object: SearchableObjects,
|
2023-03-21 15:03:05 +00:00
|
|
|
user_id: PersonId,
|
2023-07-11 13:09:59 +00:00
|
|
|
pool: &mut DbPool<'_>,
|
2023-07-03 09:01:41 +00:00
|
|
|
) -> Result<Json<ResolveObjectResponse>, LemmyError> {
|
2022-11-19 04:33:54 +00:00
|
|
|
use SearchableObjects::*;
|
2022-04-13 18:12:25 +00:00
|
|
|
let removed_or_deleted;
|
2023-01-20 17:43:23 +00:00
|
|
|
let mut res = ResolveObjectResponse::default();
|
2022-04-13 18:12:25 +00:00
|
|
|
match object {
|
|
|
|
Person(p) => {
|
|
|
|
removed_or_deleted = p.deleted;
|
2023-03-01 17:19:46 +00:00
|
|
|
res.person = Some(PersonView::read(pool, p.id).await?)
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
Community(c) => {
|
|
|
|
removed_or_deleted = c.deleted || c.removed;
|
2023-03-21 15:03:05 +00:00
|
|
|
res.community = Some(CommunityView::read(pool, c.id, Some(user_id), None).await?)
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
Post(p) => {
|
|
|
|
removed_or_deleted = p.deleted || p.removed;
|
2023-03-21 15:03:05 +00:00
|
|
|
res.post = Some(PostView::read(pool, p.id, Some(user_id), None).await?)
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
Comment(c) => {
|
|
|
|
removed_or_deleted = c.deleted || c.removed;
|
2023-03-21 15:03:05 +00:00
|
|
|
res.comment = Some(CommentView::read(pool, c.id, Some(user_id)).await?)
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
// if the object was deleted from database, dont return it
|
|
|
|
if removed_or_deleted {
|
|
|
|
return Err(NotFound {}.into());
|
|
|
|
}
|
2023-07-03 09:01:41 +00:00
|
|
|
Ok(Json(res))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|