mirror of
https://github.com/LemmyNet/lemmy.git
synced 2025-01-12 13:05:55 +00:00
38 lines
1.1 KiB
Rust
38 lines
1.1 KiB
Rust
use crate::generate_followers_url;
|
|
use activitystreams_kinds::collection::CollectionType;
|
|
use lemmy_api_common::blocking;
|
|
use lemmy_db_schema::source::community::Community;
|
|
use lemmy_db_views_actor::community_follower_view::CommunityFollowerView;
|
|
use lemmy_utils::LemmyError;
|
|
use lemmy_websocket::LemmyContext;
|
|
use serde::{Deserialize, Serialize};
|
|
use url::Url;
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
pub(crate) struct GroupFollowers {
|
|
id: Url,
|
|
r#type: CollectionType,
|
|
total_items: i32,
|
|
items: Vec<()>,
|
|
}
|
|
|
|
impl GroupFollowers {
|
|
pub(crate) async fn new(
|
|
community: Community,
|
|
context: &LemmyContext,
|
|
) -> Result<GroupFollowers, LemmyError> {
|
|
let community_id = community.id;
|
|
let community_followers = blocking(context.pool(), move |conn| {
|
|
CommunityFollowerView::for_community(conn, community_id)
|
|
})
|
|
.await??;
|
|
|
|
Ok(GroupFollowers {
|
|
id: generate_followers_url(&community.actor_id)?.into(),
|
|
r#type: CollectionType::Collection,
|
|
total_items: community_followers.len() as i32,
|
|
items: vec![],
|
|
})
|
|
}
|
|
}
|