2022-04-13 18:12:25 +00:00
|
|
|
use crate::PerformCrud;
|
|
|
|
use actix_web::web::Data;
|
|
|
|
use lemmy_api_common::{
|
2022-05-03 17:44:13 +00:00
|
|
|
community::{ListCommunities, ListCommunitiesResponse},
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2023-03-01 03:46:15 +00:00
|
|
|
utils::{check_private_instance, get_local_user_view_from_jwt_opt, is_admin},
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
2023-03-01 03:46:15 +00:00
|
|
|
use lemmy_db_schema::source::local_site::LocalSite;
|
2022-08-04 19:30:17 +00:00
|
|
|
use lemmy_db_views_actor::community_view::CommunityQuery;
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::{error::LemmyError, ConnectionId};
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl PerformCrud for ListCommunities {
|
|
|
|
type Response = ListCommunitiesResponse;
|
|
|
|
|
|
|
|
#[tracing::instrument(skip(context, _websocket_id))]
|
|
|
|
async fn perform(
|
|
|
|
&self,
|
|
|
|
context: &Data<LemmyContext>,
|
|
|
|
_websocket_id: Option<ConnectionId>,
|
|
|
|
) -> Result<ListCommunitiesResponse, LemmyError> {
|
|
|
|
let data: &ListCommunities = self;
|
|
|
|
let local_user_view =
|
|
|
|
get_local_user_view_from_jwt_opt(data.auth.as_ref(), context.pool(), context.secret())
|
|
|
|
.await?;
|
2022-11-09 10:05:00 +00:00
|
|
|
let local_site = LocalSite::read(context.pool()).await?;
|
2023-03-01 03:46:15 +00:00
|
|
|
let is_admin = local_user_view.as_ref().map(|luv| is_admin(luv).is_ok());
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
check_private_instance(&local_user_view, &local_site)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2022-05-06 20:55:07 +00:00
|
|
|
let sort = data.sort;
|
|
|
|
let listing_type = data.type_;
|
2022-04-13 18:12:25 +00:00
|
|
|
let page = data.page;
|
|
|
|
let limit = data.limit;
|
2022-08-19 14:27:39 +00:00
|
|
|
let local_user = local_user_view.map(|l| l.local_user);
|
2023-03-01 03:46:15 +00:00
|
|
|
let communities = CommunityQuery::builder()
|
2022-11-09 10:05:00 +00:00
|
|
|
.pool(context.pool())
|
|
|
|
.listing_type(listing_type)
|
|
|
|
.sort(sort)
|
|
|
|
.local_user(local_user.as_ref())
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
2023-03-01 03:46:15 +00:00
|
|
|
.is_mod_or_admin(is_admin)
|
2022-11-09 10:05:00 +00:00
|
|
|
.build()
|
|
|
|
.list()
|
|
|
|
.await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
|
|
|
// Return the jwt
|
|
|
|
Ok(ListCommunitiesResponse { communities })
|
|
|
|
}
|
|
|
|
}
|