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-09-21 10:42:28 +00:00
|
|
|
utils::check_private_instance,
|
2022-04-13 18:12:25 +00:00
|
|
|
};
|
2024-02-16 12:24:35 +00:00
|
|
|
use lemmy_db_schema::source::community::Community;
|
2023-09-18 13:44:48 +00:00
|
|
|
use lemmy_db_views::{
|
|
|
|
post_view::PostQuery,
|
2024-02-16 12:24:35 +00:00
|
|
|
structs::{LocalUserView, PaginationCursor, SiteView},
|
2023-09-18 13:44:48 +00:00
|
|
|
};
|
2023-07-10 14:50:07 +00:00
|
|
|
use lemmy_utils::error::{LemmyError, LemmyErrorExt, LemmyErrorType};
|
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>,
|
2023-09-21 10:42:28 +00:00
|
|
|
local_user_view: Option<LocalUserView>,
|
2023-07-03 09:01:41 +00:00
|
|
|
) -> Result<Json<GetPostsResponse>, LemmyError> {
|
2024-02-16 12:24:35 +00:00
|
|
|
let local_site = SiteView::read_local(&mut context.pool()).await?;
|
2022-04-13 18:12:25 +00:00
|
|
|
|
2024-02-16 12:24:35 +00:00
|
|
|
check_private_instance(&local_user_view, &local_site.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
|
|
|
|
};
|
2023-08-11 09:13:14 +00:00
|
|
|
let saved_only = data.saved_only.unwrap_or_default();
|
2023-07-03 09:01:41 +00:00
|
|
|
|
2023-08-11 09:13:14 +00:00
|
|
|
let liked_only = data.liked_only.unwrap_or_default();
|
|
|
|
let disliked_only = data.disliked_only.unwrap_or_default();
|
|
|
|
if liked_only && disliked_only {
|
2023-08-08 09:40:28 +00:00
|
|
|
return Err(LemmyError::from(LemmyErrorType::ContradictingFilters));
|
|
|
|
}
|
|
|
|
|
2023-07-17 10:20:25 +00:00
|
|
|
let listing_type = Some(listing_type_with_default(
|
|
|
|
data.type_,
|
2024-02-16 12:24:35 +00:00
|
|
|
&local_site.local_site,
|
2023-07-17 10:20:25 +00:00
|
|
|
community_id,
|
|
|
|
)?);
|
2023-09-18 13:44:48 +00:00
|
|
|
// parse pagination token
|
|
|
|
let page_after = if let Some(pa) = &data.page_cursor {
|
|
|
|
Some(pa.read(&mut context.pool()).await?)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2023-07-03 09:01:41 +00:00
|
|
|
|
2023-07-17 10:20:25 +00:00
|
|
|
let posts = PostQuery {
|
2023-07-20 14:36:16 +00:00
|
|
|
local_user: local_user_view.as_ref(),
|
2023-07-17 10:20:25 +00:00
|
|
|
listing_type,
|
|
|
|
sort,
|
|
|
|
community_id,
|
|
|
|
saved_only,
|
2023-08-08 09:40:28 +00:00
|
|
|
liked_only,
|
|
|
|
disliked_only,
|
2023-07-17 10:20:25 +00:00
|
|
|
page,
|
2023-09-18 13:44:48 +00:00
|
|
|
page_after,
|
2023-07-17 10:20:25 +00:00
|
|
|
limit,
|
|
|
|
..Default::default()
|
|
|
|
}
|
2024-02-16 12:24:35 +00:00
|
|
|
.list(&local_site.site, &mut context.pool())
|
2023-07-17 10:20:25 +00:00
|
|
|
.await
|
|
|
|
.with_lemmy_type(LemmyErrorType::CouldntGetPosts)?;
|
2023-07-03 09:01:41 +00:00
|
|
|
|
2023-09-18 13:44:48 +00:00
|
|
|
// if this page wasn't empty, then there is a next page after the last post on this page
|
|
|
|
let next_page = posts.last().map(PaginationCursor::after_post);
|
|
|
|
Ok(Json(GetPostsResponse { posts, next_page }))
|
2022-04-13 18:12:25 +00:00
|
|
|
}
|