2020-04-24 14:04:36 +00:00
|
|
|
use super::*;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-03-16 17:30:25 +00:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct CommunityQuery {
|
|
|
|
community_name: String,
|
|
|
|
}
|
2020-03-12 00:01:25 +00:00
|
|
|
|
2020-04-24 21:30:27 +00:00
|
|
|
impl ToApub for Community {
|
|
|
|
type Response = GroupExt;
|
|
|
|
|
2020-04-17 15:33:55 +00:00
|
|
|
// Turn a Lemmy Community into an ActivityPub group that can be sent out over the network.
|
2020-04-29 14:51:25 +00:00
|
|
|
fn to_apub(&self, conn: &PgConnection) -> Result<GroupExt, Error> {
|
2020-04-03 05:02:43 +00:00
|
|
|
let mut group = Group::default();
|
|
|
|
let oprops: &mut ObjectProperties = group.as_mut();
|
|
|
|
|
2020-05-03 14:00:59 +00:00
|
|
|
// The attributed to, is an ordered vector with the creator actor_ids first,
|
|
|
|
// then the rest of the moderators
|
|
|
|
// TODO Technically the instance admins can mod the community, but lets
|
|
|
|
// ignore that for now
|
|
|
|
let moderators = CommunityModeratorView::for_community(&conn, self.id)?
|
|
|
|
.into_iter()
|
|
|
|
.map(|m| m.user_actor_id)
|
|
|
|
.collect();
|
|
|
|
|
2020-04-03 05:02:43 +00:00
|
|
|
oprops
|
|
|
|
.set_context_xsd_any_uri(context())?
|
2020-04-10 13:50:40 +00:00
|
|
|
.set_id(self.actor_id.to_owned())?
|
2020-04-03 05:02:43 +00:00
|
|
|
.set_name_xsd_string(self.name.to_owned())?
|
|
|
|
.set_published(convert_datetime(self.published))?
|
2020-05-03 14:00:59 +00:00
|
|
|
.set_many_attributed_to_xsd_any_uris(moderators)?;
|
2020-04-03 05:02:43 +00:00
|
|
|
|
|
|
|
if let Some(u) = self.updated.to_owned() {
|
|
|
|
oprops.set_updated(convert_datetime(u))?;
|
|
|
|
}
|
|
|
|
if let Some(d) = self.description.to_owned() {
|
2020-04-10 12:45:48 +00:00
|
|
|
// TODO: this should be html, also add source field with raw markdown
|
|
|
|
// -> same for post.content and others
|
2020-04-03 05:02:43 +00:00
|
|
|
oprops.set_summary_xsd_string(d)?;
|
|
|
|
}
|
2020-03-14 00:05:42 +00:00
|
|
|
|
2020-04-26 17:20:42 +00:00
|
|
|
let mut endpoint_props = EndpointProperties::default();
|
|
|
|
|
|
|
|
endpoint_props.set_shared_inbox(self.get_shared_inbox_url())?;
|
|
|
|
|
2020-04-03 05:02:43 +00:00
|
|
|
let mut actor_props = ApActorProperties::default();
|
2020-03-19 01:16:17 +00:00
|
|
|
|
2020-04-03 05:02:43 +00:00
|
|
|
actor_props
|
|
|
|
.set_preferred_username(self.title.to_owned())?
|
2020-04-13 13:06:41 +00:00
|
|
|
.set_inbox(self.get_inbox_url())?
|
|
|
|
.set_outbox(self.get_outbox_url())?
|
2020-04-26 17:20:42 +00:00
|
|
|
.set_endpoints(endpoint_props)?
|
2020-04-13 13:06:41 +00:00
|
|
|
.set_followers(self.get_followers_url())?;
|
2020-04-10 13:50:40 +00:00
|
|
|
|
2020-04-29 14:51:25 +00:00
|
|
|
Ok(group.extend(actor_props).extend(self.get_public_key_ext()))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_tombstone(&self) -> Result<Tombstone, Error> {
|
2020-05-01 14:07:38 +00:00
|
|
|
create_tombstone(
|
|
|
|
self.deleted,
|
|
|
|
&self.actor_id,
|
|
|
|
self.updated,
|
|
|
|
GroupType.to_string(),
|
|
|
|
)
|
2020-04-03 05:02:43 +00:00
|
|
|
}
|
2020-04-24 19:55:54 +00:00
|
|
|
}
|
2020-04-13 13:06:41 +00:00
|
|
|
|
2020-04-24 19:55:54 +00:00
|
|
|
impl ActorType for Community {
|
|
|
|
fn actor_id(&self) -> String {
|
|
|
|
self.actor_id.to_owned()
|
2020-04-13 13:06:41 +00:00
|
|
|
}
|
2020-04-25 02:34:51 +00:00
|
|
|
|
|
|
|
fn public_key(&self) -> String {
|
|
|
|
self.public_key.to_owned().unwrap()
|
|
|
|
}
|
2020-04-26 17:20:42 +00:00
|
|
|
|
|
|
|
/// As a local community, accept the follow request from a remote user.
|
2020-04-27 22:17:02 +00:00
|
|
|
fn send_accept_follow(&self, follow: &Follow, conn: &PgConnection) -> Result<(), Error> {
|
2020-04-26 17:20:42 +00:00
|
|
|
let actor_uri = follow
|
|
|
|
.follow_props
|
|
|
|
.get_actor_xsd_any_uri()
|
|
|
|
.unwrap()
|
|
|
|
.to_string();
|
2020-04-28 04:16:02 +00:00
|
|
|
let id = format!("{}/accept/{}", self.actor_id, uuid::Uuid::new_v4());
|
2020-04-26 17:20:42 +00:00
|
|
|
|
|
|
|
let mut accept = Accept::new();
|
|
|
|
accept
|
|
|
|
.object_props
|
|
|
|
.set_context_xsd_any_uri(context())?
|
2020-04-27 22:17:02 +00:00
|
|
|
.set_id(id)?;
|
2020-04-26 17:20:42 +00:00
|
|
|
accept
|
|
|
|
.accept_props
|
|
|
|
.set_actor_xsd_any_uri(self.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(BaseBox::from_concrete(follow.clone())?)?;
|
|
|
|
let to = format!("{}/inbox", actor_uri);
|
2020-04-27 22:17:02 +00:00
|
|
|
|
|
|
|
// Insert the sent activity into the activity table
|
|
|
|
let activity_form = activity::ActivityForm {
|
|
|
|
user_id: self.creator_id,
|
|
|
|
data: serde_json::to_value(&accept)?,
|
|
|
|
local: true,
|
|
|
|
updated: None,
|
|
|
|
};
|
|
|
|
activity::Activity::create(&conn, &activity_form)?;
|
|
|
|
|
2020-04-26 17:20:42 +00:00
|
|
|
send_activity(
|
|
|
|
&accept,
|
|
|
|
&self.private_key.to_owned().unwrap(),
|
|
|
|
&self.actor_id,
|
|
|
|
vec![to],
|
|
|
|
)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
2020-04-27 16:57:00 +00:00
|
|
|
|
2020-05-01 14:07:38 +00:00
|
|
|
fn send_delete(&self, creator: &User_, conn: &PgConnection) -> Result<(), Error> {
|
|
|
|
let group = self.to_apub(conn)?;
|
|
|
|
let id = format!("{}/delete/{}", self.actor_id, uuid::Uuid::new_v4());
|
|
|
|
|
2020-04-28 17:46:25 +00:00
|
|
|
let mut delete = Delete::default();
|
2020-05-01 14:07:38 +00:00
|
|
|
populate_object_props(&mut delete.object_props, &self.get_followers_url(), &id)?;
|
|
|
|
|
2020-04-28 17:46:25 +00:00
|
|
|
delete
|
|
|
|
.delete_props
|
2020-05-01 14:07:38 +00:00
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(group)?;
|
2020-04-28 17:46:25 +00:00
|
|
|
|
|
|
|
// Insert the sent activity into the activity table
|
|
|
|
let activity_form = activity::ActivityForm {
|
|
|
|
user_id: self.creator_id,
|
|
|
|
data: serde_json::to_value(&delete)?,
|
|
|
|
local: true,
|
|
|
|
updated: None,
|
|
|
|
};
|
|
|
|
activity::Activity::create(&conn, &activity_form)?;
|
|
|
|
|
2020-05-01 14:07:38 +00:00
|
|
|
// Note: For an accept, since it was automatic, no one pushed a button,
|
|
|
|
// the community was the actor.
|
|
|
|
// But for delete, the creator is the actor, and does the signing
|
2020-04-28 17:46:25 +00:00
|
|
|
send_activity(
|
|
|
|
&delete,
|
2020-05-01 14:07:38 +00:00
|
|
|
&creator.private_key.as_ref().unwrap(),
|
|
|
|
&creator.actor_id,
|
2020-04-28 17:46:25 +00:00
|
|
|
self.get_follower_inboxes(&conn)?,
|
|
|
|
)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-05-01 19:01:29 +00:00
|
|
|
fn send_undo_delete(&self, creator: &User_, conn: &PgConnection) -> Result<(), Error> {
|
|
|
|
let group = self.to_apub(conn)?;
|
|
|
|
let id = format!("{}/delete/{}", self.actor_id, uuid::Uuid::new_v4());
|
|
|
|
|
|
|
|
let mut delete = Delete::default();
|
|
|
|
populate_object_props(&mut delete.object_props, &self.get_followers_url(), &id)?;
|
|
|
|
|
|
|
|
delete
|
|
|
|
.delete_props
|
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(group)?;
|
|
|
|
|
2020-05-03 14:22:25 +00:00
|
|
|
// TODO
|
2020-05-01 19:01:29 +00:00
|
|
|
// Undo that fake activity
|
|
|
|
let undo_id = format!("{}/undo/delete/{}", self.actor_id, uuid::Uuid::new_v4());
|
|
|
|
let mut undo = Undo::default();
|
|
|
|
|
|
|
|
populate_object_props(&mut undo.object_props, &self.get_followers_url(), &undo_id)?;
|
|
|
|
|
|
|
|
undo
|
|
|
|
.undo_props
|
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(delete)?;
|
|
|
|
|
|
|
|
// Insert the sent activity into the activity table
|
|
|
|
let activity_form = activity::ActivityForm {
|
|
|
|
user_id: self.creator_id,
|
|
|
|
data: serde_json::to_value(&undo)?,
|
|
|
|
local: true,
|
|
|
|
updated: None,
|
|
|
|
};
|
|
|
|
activity::Activity::create(&conn, &activity_form)?;
|
|
|
|
|
|
|
|
// Note: For an accept, since it was automatic, no one pushed a button,
|
|
|
|
// the community was the actor.
|
|
|
|
// But for delete, the creator is the actor, and does the signing
|
|
|
|
send_activity(
|
|
|
|
&undo,
|
|
|
|
&creator.private_key.as_ref().unwrap(),
|
|
|
|
&creator.actor_id,
|
|
|
|
self.get_follower_inboxes(&conn)?,
|
|
|
|
)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-05-03 14:00:59 +00:00
|
|
|
fn send_remove(&self, mod_: &User_, conn: &PgConnection) -> Result<(), Error> {
|
|
|
|
let group = self.to_apub(conn)?;
|
|
|
|
let id = format!("{}/remove/{}", self.actor_id, uuid::Uuid::new_v4());
|
|
|
|
|
|
|
|
let mut remove = Remove::default();
|
|
|
|
populate_object_props(&mut remove.object_props, &self.get_followers_url(), &id)?;
|
|
|
|
|
|
|
|
remove
|
|
|
|
.remove_props
|
|
|
|
.set_actor_xsd_any_uri(mod_.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(group)?;
|
|
|
|
|
|
|
|
// Insert the sent activity into the activity table
|
|
|
|
let activity_form = activity::ActivityForm {
|
|
|
|
user_id: mod_.id,
|
|
|
|
data: serde_json::to_value(&remove)?,
|
|
|
|
local: true,
|
|
|
|
updated: None,
|
|
|
|
};
|
|
|
|
activity::Activity::create(&conn, &activity_form)?;
|
|
|
|
|
|
|
|
// Note: For an accept, since it was automatic, no one pushed a button,
|
|
|
|
// the community was the actor.
|
|
|
|
// But for delete, the creator is the actor, and does the signing
|
|
|
|
send_activity(
|
|
|
|
&remove,
|
|
|
|
&mod_.private_key.as_ref().unwrap(),
|
|
|
|
&mod_.actor_id,
|
|
|
|
self.get_follower_inboxes(&conn)?,
|
|
|
|
)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn send_undo_remove(&self, mod_: &User_, conn: &PgConnection) -> Result<(), Error> {
|
|
|
|
let group = self.to_apub(conn)?;
|
|
|
|
let id = format!("{}/remove/{}", self.actor_id, uuid::Uuid::new_v4());
|
|
|
|
|
|
|
|
let mut remove = Remove::default();
|
|
|
|
populate_object_props(&mut remove.object_props, &self.get_followers_url(), &id)?;
|
|
|
|
|
|
|
|
remove
|
|
|
|
.remove_props
|
|
|
|
.set_actor_xsd_any_uri(mod_.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(group)?;
|
|
|
|
|
|
|
|
// Undo that fake activity
|
|
|
|
let undo_id = format!("{}/undo/remove/{}", self.actor_id, uuid::Uuid::new_v4());
|
|
|
|
let mut undo = Undo::default();
|
|
|
|
|
|
|
|
populate_object_props(&mut undo.object_props, &self.get_followers_url(), &undo_id)?;
|
|
|
|
|
|
|
|
undo
|
|
|
|
.undo_props
|
|
|
|
.set_actor_xsd_any_uri(mod_.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(remove)?;
|
|
|
|
|
|
|
|
// Insert the sent activity into the activity table
|
|
|
|
let activity_form = activity::ActivityForm {
|
|
|
|
user_id: mod_.id,
|
|
|
|
data: serde_json::to_value(&undo)?,
|
|
|
|
local: true,
|
|
|
|
updated: None,
|
|
|
|
};
|
|
|
|
activity::Activity::create(&conn, &activity_form)?;
|
|
|
|
|
|
|
|
// Note: For an accept, since it was automatic, no one pushed a button,
|
|
|
|
// the community was the actor.
|
|
|
|
// But for remove , the creator is the actor, and does the signing
|
|
|
|
send_activity(
|
|
|
|
&undo,
|
|
|
|
&mod_.private_key.as_ref().unwrap(),
|
|
|
|
&mod_.actor_id,
|
|
|
|
self.get_follower_inboxes(&conn)?,
|
|
|
|
)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-04-27 16:57:00 +00:00
|
|
|
/// For a given community, returns the inboxes of all followers.
|
|
|
|
fn get_follower_inboxes(&self, conn: &PgConnection) -> Result<Vec<String>, Error> {
|
|
|
|
Ok(
|
|
|
|
CommunityFollowerView::for_community(conn, self.id)?
|
|
|
|
.into_iter()
|
|
|
|
// TODO eventually this will have to use the inbox or shared_inbox column, meaning that view
|
|
|
|
// will have to change
|
|
|
|
.map(|c| {
|
|
|
|
// If the user is local, but the community isn't, get the community shared inbox
|
|
|
|
// and vice versa
|
|
|
|
if c.user_local && !c.community_local {
|
|
|
|
get_shared_inbox(&c.community_actor_id)
|
|
|
|
} else if !c.user_local && c.community_local {
|
|
|
|
get_shared_inbox(&c.user_actor_id)
|
|
|
|
} else {
|
|
|
|
"".to_string()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.filter(|s| !s.is_empty())
|
|
|
|
.unique()
|
|
|
|
.collect(),
|
|
|
|
)
|
|
|
|
}
|
2020-04-03 09:00:24 +00:00
|
|
|
}
|
2020-04-03 05:02:43 +00:00
|
|
|
|
2020-04-24 21:30:27 +00:00
|
|
|
impl FromApub for CommunityForm {
|
|
|
|
type ApubType = GroupExt;
|
|
|
|
|
2020-04-17 15:33:55 +00:00
|
|
|
/// Parse an ActivityPub group received from another instance into a Lemmy community.
|
2020-04-24 19:55:54 +00:00
|
|
|
fn from_apub(group: &GroupExt, conn: &PgConnection) -> Result<Self, Error> {
|
2020-04-10 13:50:40 +00:00
|
|
|
let oprops = &group.base.base.object_props;
|
|
|
|
let aprops = &group.base.extension;
|
|
|
|
let public_key: &PublicKey = &group.extension.public_key;
|
|
|
|
|
2020-04-24 19:55:54 +00:00
|
|
|
let _followers_uri = Url::parse(&aprops.get_followers().unwrap().to_string())?;
|
|
|
|
let _outbox_uri = Url::parse(&aprops.get_outbox().to_string())?;
|
|
|
|
// TODO don't do extra fetching here
|
|
|
|
// let _outbox = fetch_remote_object::<OrderedCollection>(&outbox_uri)?;
|
|
|
|
// let _followers = fetch_remote_object::<UnorderedCollection>(&followers_uri)?;
|
2020-05-03 14:00:59 +00:00
|
|
|
let mut creator_and_moderator_uris = oprops.get_many_attributed_to_xsd_any_uris().unwrap();
|
|
|
|
let creator = creator_and_moderator_uris
|
|
|
|
.next()
|
|
|
|
.map(|c| get_or_fetch_and_upsert_remote_user(&c.to_string(), &conn).unwrap())
|
|
|
|
.unwrap();
|
2020-04-10 13:50:40 +00:00
|
|
|
|
2020-04-07 16:47:19 +00:00
|
|
|
Ok(CommunityForm {
|
|
|
|
name: oprops.get_name_xsd_string().unwrap().to_string(),
|
2020-04-03 05:02:43 +00:00
|
|
|
title: aprops.get_preferred_username().unwrap().to_string(),
|
2020-04-10 12:45:48 +00:00
|
|
|
// TODO: should be parsed as html and tags like <script> removed (or use markdown source)
|
|
|
|
// -> same for post.content etc
|
|
|
|
description: oprops.get_content_xsd_string().map(|s| s.to_string()),
|
2020-04-12 14:53:55 +00:00
|
|
|
category_id: 1, // -> peertube uses `"category": {"identifier": "9","name": "Comedy"},`
|
2020-04-07 21:02:32 +00:00
|
|
|
creator_id: creator.id,
|
2020-04-07 16:47:19 +00:00
|
|
|
removed: None,
|
2020-04-03 05:02:43 +00:00
|
|
|
published: oprops
|
|
|
|
.get_published()
|
2020-04-07 16:47:19 +00:00
|
|
|
.map(|u| u.as_ref().to_owned().naive_local()),
|
2020-04-03 05:02:43 +00:00
|
|
|
updated: oprops
|
|
|
|
.get_updated()
|
|
|
|
.map(|u| u.as_ref().to_owned().naive_local()),
|
2020-04-07 16:47:19 +00:00
|
|
|
deleted: None,
|
2020-04-03 05:02:43 +00:00
|
|
|
nsfw: false,
|
2020-04-07 16:47:19 +00:00
|
|
|
actor_id: oprops.get_id().unwrap().to_string(),
|
|
|
|
local: false,
|
|
|
|
private_key: None,
|
2020-04-10 13:50:40 +00:00
|
|
|
public_key: Some(public_key.to_owned().public_key_pem),
|
2020-04-07 21:02:32 +00:00
|
|
|
last_refreshed_at: Some(naive_now()),
|
2020-04-03 05:02:43 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-17 15:33:55 +00:00
|
|
|
/// Return the community json over HTTP.
|
2020-04-03 05:02:43 +00:00
|
|
|
pub async fn get_apub_community_http(
|
|
|
|
info: Path<CommunityQuery>,
|
2020-04-24 14:04:36 +00:00
|
|
|
db: DbPoolParam,
|
2020-04-03 05:02:43 +00:00
|
|
|
) -> Result<HttpResponse<Body>, Error> {
|
2020-04-24 14:04:36 +00:00
|
|
|
let community = Community::read_from_name(&&db.get()?, &info.community_name)?;
|
2020-04-29 14:51:25 +00:00
|
|
|
if !community.deleted {
|
|
|
|
Ok(create_apub_response(
|
|
|
|
&community.to_apub(&db.get().unwrap())?,
|
|
|
|
))
|
|
|
|
} else {
|
|
|
|
Ok(create_apub_tombstone_response(&community.to_tombstone()?))
|
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
|
2020-04-17 15:33:55 +00:00
|
|
|
/// Returns an empty followers collection, only populating the siz (for privacy).
|
2020-04-24 14:04:36 +00:00
|
|
|
// TODO this needs to return the actual followers, and the to: field needs this
|
2020-03-12 00:01:25 +00:00
|
|
|
pub async fn get_apub_community_followers(
|
|
|
|
info: Path<CommunityQuery>,
|
2020-04-24 14:04:36 +00:00
|
|
|
db: DbPoolParam,
|
2020-03-12 00:01:25 +00:00
|
|
|
) -> Result<HttpResponse<Body>, Error> {
|
2020-04-24 14:04:36 +00:00
|
|
|
let community = Community::read_from_name(&&db.get()?, &info.community_name)?;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-04-24 19:55:54 +00:00
|
|
|
let conn = db.get()?;
|
|
|
|
|
2020-03-16 17:30:25 +00:00
|
|
|
//As we are an object, we validated that the community id was valid
|
2020-04-24 19:55:54 +00:00
|
|
|
let community_followers = CommunityFollowerView::for_community(&conn, community.id).unwrap();
|
2020-03-16 17:30:25 +00:00
|
|
|
|
|
|
|
let mut collection = UnorderedCollection::default();
|
|
|
|
let oprops: &mut ObjectProperties = collection.as_mut();
|
|
|
|
oprops
|
|
|
|
.set_context_xsd_any_uri(context())?
|
2020-04-14 15:37:23 +00:00
|
|
|
.set_id(community.actor_id)?;
|
2020-03-16 17:30:25 +00:00
|
|
|
collection
|
|
|
|
.collection_props
|
|
|
|
.set_total_items(community_followers.len() as u64)?;
|
2020-03-19 01:16:17 +00:00
|
|
|
Ok(create_apub_response(&collection))
|
2020-03-14 00:05:42 +00:00
|
|
|
}
|
|
|
|
|
2020-04-24 19:55:54 +00:00
|
|
|
// TODO should not be doing this
|
|
|
|
// Returns an UnorderedCollection with the latest posts from the community.
|
|
|
|
//pub async fn get_apub_community_outbox(
|
|
|
|
// info: Path<CommunityQuery>,
|
|
|
|
// db: DbPoolParam,
|
|
|
|
// chat_server: ChatServerParam,
|
|
|
|
//) -> Result<HttpResponse<Body>, Error> {
|
|
|
|
// let community = Community::read_from_name(&&db.get()?, &info.community_name)?;
|
|
|
|
|
|
|
|
// let conn = establish_unpooled_connection();
|
|
|
|
// //As we are an object, we validated that the community id was valid
|
|
|
|
// let community_posts: Vec<Post> = Post::list_for_community(&conn, community.id)?;
|
|
|
|
|
|
|
|
// let mut collection = OrderedCollection::default();
|
|
|
|
// let oprops: &mut ObjectProperties = collection.as_mut();
|
|
|
|
// oprops
|
|
|
|
// .set_context_xsd_any_uri(context())?
|
|
|
|
// .set_id(community.actor_id)?;
|
|
|
|
// collection
|
|
|
|
// .collection_props
|
|
|
|
// .set_many_items_base_boxes(
|
|
|
|
// community_posts
|
|
|
|
// .iter()
|
|
|
|
// .map(|c| c.as_page(&conn).unwrap())
|
|
|
|
// .collect(),
|
|
|
|
// )?
|
|
|
|
// .set_total_items(community_posts.len() as u64)?;
|
|
|
|
|
|
|
|
// Ok(create_apub_response(&collection))
|
|
|
|
//}
|