2023-07-03 09:01:41 +00:00
|
|
|
use crate::{fetcher::resolve_actor_identifier, objects::community::ApubCommunity};
|
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};
|
2021-12-15 19:49:59 +00:00
|
|
|
use lemmy_api_common::{
|
2022-05-03 17:44:13 +00:00
|
|
|
community::{GetCommunity, GetCommunityResponse},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-05-25 14:50:07 +00:00
|
|
|
utils::{check_private_instance, is_mod_or_admin_opt, local_user_view_from_jwt_opt},
|
2022-04-13 16:37:54 +00:00
|
|
|
};
|
2023-05-21 15:55:32 +00:00
|
|
|
use lemmy_db_schema::source::{
|
|
|
|
actor_language::CommunityLanguage,
|
|
|
|
community::Community,
|
|
|
|
local_site::LocalSite,
|
|
|
|
site::Site,
|
2021-10-16 13:33:38 +00:00
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views_actor::structs::{CommunityModeratorView, CommunityView};
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorExt2, LemmyErrorType};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn read_community(
|
|
|
|
data: Query<GetCommunity>,
|
|
|
|
context: Data<LemmyContext>,
|
|
|
|
) -> Result<Json<GetCommunityResponse>, LemmyError> {
|
|
|
|
let local_user_view = local_user_view_from_jwt_opt(data.auth.as_ref(), &context).await;
|
2023-07-11 13:09:59 +00:00
|
|
|
let local_site = LocalSite::read(&mut context.pool()).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
if data.name.is_none() && data.id.is_none() {
|
2023-07-10 14:50:07 +00:00
|
|
|
return Err(LemmyErrorType::NoIdGiven)?;
|
2023-07-03 09:01:41 +00:00
|
|
|
}
|
2021-12-15 19:49:59 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
check_private_instance(&local_user_view, &local_site)?;
|
2022-07-08 10:21:33 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
let person_id = local_user_view.as_ref().map(|u| u.person.id);
|
2021-12-15 19:49:59 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
let community_id = match data.id {
|
|
|
|
Some(id) => id,
|
|
|
|
None => {
|
|
|
|
let name = data.name.clone().unwrap_or_else(|| "main".to_string());
|
|
|
|
resolve_actor_identifier::<ApubCommunity, Community>(&name, &context, &local_user_view, true)
|
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntFindCommunity)?
|
2023-07-03 09:01:41 +00:00
|
|
|
.id
|
|
|
|
}
|
|
|
|
};
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
let is_mod_or_admin = is_mod_or_admin_opt(
|
|
|
|
&mut context.pool(),
|
|
|
|
local_user_view.as_ref(),
|
|
|
|
Some(community_id),
|
|
|
|
)
|
|
|
|
.await
|
|
|
|
.is_ok();
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
let community_view = CommunityView::read(
|
2023-07-11 13:09:59 +00:00
|
|
|
&mut context.pool(),
|
2023-07-03 09:01:41 +00:00
|
|
|
community_id,
|
|
|
|
person_id,
|
|
|
|
Some(is_mod_or_admin),
|
|
|
|
)
|
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntFindCommunity)?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-07-11 13:09:59 +00:00
|
|
|
let moderators = CommunityModeratorView::for_community(&mut context.pool(), community_id)
|
2023-03-01 03:46:15 +00:00
|
|
|
.await
|
2023-07-10 14:50:07 +00:00
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntFindCommunity)?;
|
2021-07-30 18:44:15 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
let site_id = Site::instance_actor_id_from_url(community_view.community.actor_id.clone().into());
|
2023-07-11 13:09:59 +00:00
|
|
|
let mut site = Site::read_from_apub_id(&mut context.pool(), &site_id.into()).await?;
|
2023-07-03 09:01:41 +00:00
|
|
|
// no need to include metadata for local site (its already available through other endpoints).
|
|
|
|
// this also prevents us from leaking the federation private key.
|
|
|
|
if let Some(s) = &site {
|
|
|
|
if s.actor_id.domain() == Some(context.settings().hostname.as_ref()) {
|
|
|
|
site = None;
|
2022-04-13 16:37:54 +00:00
|
|
|
}
|
2023-07-03 09:01:41 +00:00
|
|
|
}
|
2022-04-13 16:37:54 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
let community_id = community_view.community.id;
|
2023-07-11 13:09:59 +00:00
|
|
|
let discussion_languages = CommunityLanguage::read(&mut context.pool(), community_id).await?;
|
2021-03-25 19:19:40 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
Ok(Json(GetCommunityResponse {
|
|
|
|
community_view,
|
|
|
|
site,
|
|
|
|
moderators,
|
|
|
|
discussion_languages,
|
|
|
|
}))
|
2021-03-25 19:19:40 +00:00
|
|
|
}
|