Nutomic
f858d8cbce
* Remove explicit auth params (ref #3725) Only take auth via header or cookie. This requires a new version of lemmy-js-client for api tests to pass. * rework api_crud * remove remaining auth params, move logic to session middleware * fmt, fix test * update js client * remove auth param from api tests * Pass auth as header * add ! * url vars, setHeader * cleanup * fmt * update * Updating for new lemmy-js-client. --------- Co-authored-by: Dessalines <tyhou13@gmx.com> Co-authored-by: Dessalines <dessalines@users.noreply.github.com>
47 lines
1.4 KiB
Rust
47 lines
1.4 KiB
Rust
use actix_web::web::{Data, Json, Query};
|
|
use lemmy_api_common::{
|
|
community::{ListCommunities, ListCommunitiesResponse},
|
|
context::LemmyContext,
|
|
utils::{check_private_instance, is_admin},
|
|
};
|
|
use lemmy_db_schema::source::local_site::LocalSite;
|
|
use lemmy_db_views::structs::LocalUserView;
|
|
use lemmy_db_views_actor::community_view::CommunityQuery;
|
|
use lemmy_utils::error::LemmyError;
|
|
|
|
#[tracing::instrument(skip(context))]
|
|
pub async fn list_communities(
|
|
data: Query<ListCommunities>,
|
|
context: Data<LemmyContext>,
|
|
local_user_view: Option<LocalUserView>,
|
|
) -> Result<Json<ListCommunitiesResponse>, LemmyError> {
|
|
let local_site = LocalSite::read(&mut context.pool()).await?;
|
|
let is_admin = local_user_view
|
|
.as_ref()
|
|
.map(|luv| is_admin(luv).is_ok())
|
|
.unwrap_or_default();
|
|
|
|
check_private_instance(&local_user_view, &local_site)?;
|
|
|
|
let sort = data.sort;
|
|
let listing_type = data.type_;
|
|
let show_nsfw = data.show_nsfw.unwrap_or_default();
|
|
let page = data.page;
|
|
let limit = data.limit;
|
|
let local_user = local_user_view.map(|l| l.local_user);
|
|
let communities = CommunityQuery {
|
|
listing_type,
|
|
show_nsfw,
|
|
sort,
|
|
local_user: local_user.as_ref(),
|
|
page,
|
|
limit,
|
|
is_mod_or_admin: is_admin,
|
|
..Default::default()
|
|
}
|
|
.list(&mut context.pool())
|
|
.await?;
|
|
|
|
// Return the jwt
|
|
Ok(Json(ListCommunitiesResponse { communities }))
|
|
}
|