2022-11-28 14:29:33 +00:00
|
|
|
use crate::{
|
2023-07-03 09:01:41 +00:00
|
|
|
api::listing_type_with_default,
|
2022-11-28 14:29:33 +00:00
|
|
|
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};
|
2022-04-13 18:12:25 +00:00
|
|
|
use lemmy_api_common::{
|
2022-11-28 14:29:33 +00:00
|
|
|
context::LemmyContext,
|
2022-04-19 19:05:08 +00:00
|
|
|
post::{GetPosts, GetPostsResponse},
|
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 18:12:25 +00:00
|
|
|
};
|
2023-03-01 03:46:15 +00:00
|
|
|
use lemmy_db_schema::source::{community::Community, local_site::LocalSite};
|
2022-08-04 19:30:17 +00:00
|
|
|
use lemmy_db_views::post_view::PostQuery;
|
2023-06-06 16:27:22 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
#[tracing::instrument(skip(context))]
|
|
|
|
pub async fn list_posts(
|
|
|
|
data: Query<GetPosts>,
|
|
|
|
context: Data<LemmyContext>,
|
|
|
|
) -> Result<Json<GetPostsResponse>, LemmyError> {
|
|
|
|
let local_user_view = local_user_view_from_jwt_opt(data.auth.as_ref(), &context).await;
|
|
|
|
let local_site = LocalSite::read(context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
check_private_instance(&local_user_view, &local_site)?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
let sort = data.sort;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2023-07-03 09:01:41 +00:00
|
|
|
let page = data.page;
|
|
|
|
let limit = data.limit;
|
|
|
|
let community_id = if let Some(name) = &data.community_name {
|
2023-07-04 11:04:38 +00:00
|
|
|
Some(resolve_actor_identifier::<ApubCommunity, Community>(name, &context, &None, true).await?)
|
2023-07-03 09:01:41 +00:00
|
|
|
.map(|c| c.id)
|
|
|
|
} else {
|
|
|
|
data.community_id
|
|
|
|
};
|
|
|
|
let saved_only = data.saved_only;
|
|
|
|
|
|
|
|
let listing_type = listing_type_with_default(data.type_, &local_site, community_id)?;
|
|
|
|
|
|
|
|
let is_mod_or_admin = is_mod_or_admin_opt(context.pool(), local_user_view.as_ref(), community_id)
|
|
|
|
.await
|
|
|
|
.is_ok();
|
|
|
|
|
|
|
|
let posts = PostQuery::builder()
|
|
|
|
.pool(context.pool())
|
|
|
|
.local_user(local_user_view.map(|l| l.local_user).as_ref())
|
|
|
|
.listing_type(Some(listing_type))
|
|
|
|
.sort(sort)
|
|
|
|
.community_id(community_id)
|
|
|
|
.saved_only(saved_only)
|
|
|
|
.page(page)
|
|
|
|
.limit(limit)
|
|
|
|
.is_mod_or_admin(Some(is_mod_or_admin))
|
|
|
|
.build()
|
|
|
|
.list()
|
|
|
|
.await
|
|
|
|
.map_err(|e| LemmyError::from_error_message(e, "couldnt_get_posts"))?;
|
|
|
|
|
|
|
|
Ok(Json(GetPostsResponse { posts }))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|