2020-10-12 14:10:09 +00:00
|
|
|
use crate::{
|
2020-11-25 17:44:49 +00:00
|
|
|
extensions::{context::lemmy_context, group_extensions::GroupExtension},
|
2021-01-12 16:12:41 +00:00
|
|
|
fetcher::user::get_or_fetch_and_upsert_user,
|
2020-11-24 17:53:43 +00:00
|
|
|
objects::{
|
|
|
|
check_object_domain,
|
|
|
|
create_tombstone,
|
2020-12-08 17:38:48 +00:00
|
|
|
get_object_from_apub,
|
2020-11-24 17:53:43 +00:00
|
|
|
get_source_markdown_value,
|
|
|
|
set_content_and_source,
|
2020-12-08 17:38:48 +00:00
|
|
|
FromApub,
|
|
|
|
FromApubToForm,
|
|
|
|
ToApub,
|
2020-11-24 17:53:43 +00:00
|
|
|
},
|
2020-10-12 14:10:09 +00:00
|
|
|
ActorType,
|
|
|
|
GroupExt,
|
|
|
|
};
|
|
|
|
use activitystreams::{
|
|
|
|
actor::{kind::GroupType, ApActor, Endpoints, Group},
|
|
|
|
base::BaseExt,
|
2020-11-24 17:53:43 +00:00
|
|
|
object::{ApObject, Image, Tombstone},
|
2020-10-12 14:10:09 +00:00
|
|
|
prelude::*,
|
|
|
|
};
|
|
|
|
use activitystreams_ext::Ext2;
|
|
|
|
use anyhow::Context;
|
2020-12-21 23:27:42 +00:00
|
|
|
use lemmy_db_queries::DbPool;
|
2020-12-21 12:28:12 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
naive_now,
|
2020-12-13 17:04:42 +00:00
|
|
|
source::community::{Community, CommunityForm},
|
2020-10-12 14:10:09 +00:00
|
|
|
};
|
2020-12-21 23:27:42 +00:00
|
|
|
use lemmy_db_views_actor::community_moderator_view::CommunityModeratorView;
|
2020-10-12 14:10:09 +00:00
|
|
|
use lemmy_structs::blocking;
|
|
|
|
use lemmy_utils::{
|
|
|
|
location_info,
|
|
|
|
utils::{check_slurs, check_slurs_opt, convert_datetime},
|
|
|
|
LemmyError,
|
|
|
|
};
|
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl ToApub for Community {
|
2020-10-19 14:29:35 +00:00
|
|
|
type ApubType = GroupExt;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
async fn to_apub(&self, pool: &DbPool) -> Result<GroupExt, LemmyError> {
|
|
|
|
// 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 id = self.id;
|
|
|
|
let moderators = blocking(pool, move |conn| {
|
|
|
|
CommunityModeratorView::for_community(&conn, id)
|
|
|
|
})
|
|
|
|
.await??;
|
2021-01-27 16:42:23 +00:00
|
|
|
let moderators: Vec<Url> = moderators
|
2020-12-06 14:12:51 +00:00
|
|
|
.into_iter()
|
2021-01-27 16:42:23 +00:00
|
|
|
.map(|m| m.moderator.actor_id.into_inner())
|
2020-12-06 14:12:51 +00:00
|
|
|
.collect();
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2020-11-24 17:53:43 +00:00
|
|
|
let mut group = ApObject::new(Group::new());
|
2020-10-12 14:10:09 +00:00
|
|
|
group
|
2020-11-25 17:44:49 +00:00
|
|
|
.set_many_contexts(lemmy_context()?)
|
2021-01-27 16:42:23 +00:00
|
|
|
.set_id(self.actor_id.to_owned().into())
|
2020-10-16 20:44:40 +00:00
|
|
|
.set_name(self.title.to_owned())
|
2020-10-12 14:10:09 +00:00
|
|
|
.set_published(convert_datetime(self.published))
|
|
|
|
.set_many_attributed_tos(moderators);
|
|
|
|
|
|
|
|
if let Some(u) = self.updated.to_owned() {
|
|
|
|
group.set_updated(convert_datetime(u));
|
|
|
|
}
|
|
|
|
if let Some(d) = self.description.to_owned() {
|
2020-11-24 17:53:43 +00:00
|
|
|
set_content_and_source(&mut group, &d)?;
|
2020-10-12 14:10:09 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 18:23:56 +00:00
|
|
|
if let Some(icon_url) = &self.icon {
|
2020-10-12 14:10:09 +00:00
|
|
|
let mut image = Image::new();
|
2020-10-15 18:23:56 +00:00
|
|
|
image.set_url(Url::parse(icon_url)?);
|
2020-10-12 14:10:09 +00:00
|
|
|
group.set_icon(image.into_any_base()?);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(banner_url) = &self.banner {
|
|
|
|
let mut image = Image::new();
|
2020-10-15 18:23:56 +00:00
|
|
|
image.set_url(Url::parse(banner_url)?);
|
2020-10-12 14:10:09 +00:00
|
|
|
group.set_image(image.into_any_base()?);
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut ap_actor = ApActor::new(self.get_inbox_url()?, group);
|
|
|
|
ap_actor
|
2020-10-16 20:44:40 +00:00
|
|
|
.set_preferred_username(self.name.to_owned())
|
2020-10-12 14:10:09 +00:00
|
|
|
.set_outbox(self.get_outbox_url()?)
|
|
|
|
.set_followers(self.get_followers_url()?)
|
|
|
|
.set_endpoints(Endpoints {
|
|
|
|
shared_inbox: Some(self.get_shared_inbox_url()?),
|
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
|
|
|
|
let nsfw = self.nsfw;
|
|
|
|
let category_id = self.category_id;
|
|
|
|
let group_extension = blocking(pool, move |conn| {
|
|
|
|
GroupExtension::new(conn, category_id, nsfw)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
Ok(Ext2::new(
|
|
|
|
ap_actor,
|
|
|
|
group_extension,
|
|
|
|
self.get_public_key_ext()?,
|
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn to_tombstone(&self) -> Result<Tombstone, LemmyError> {
|
2021-01-27 16:42:23 +00:00
|
|
|
create_tombstone(
|
|
|
|
self.deleted,
|
|
|
|
self.actor_id.to_owned().into(),
|
|
|
|
self.updated,
|
|
|
|
GroupType::Group,
|
|
|
|
)
|
2020-10-12 14:10:09 +00:00
|
|
|
}
|
|
|
|
}
|
2020-12-08 17:38:48 +00:00
|
|
|
|
2020-10-12 14:10:09 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-12-08 17:38:48 +00:00
|
|
|
impl FromApub for Community {
|
2020-10-12 14:10:09 +00:00
|
|
|
type ApubType = GroupExt;
|
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
/// Converts a `Group` to `Community`.
|
|
|
|
async fn from_apub(
|
|
|
|
group: &GroupExt,
|
|
|
|
context: &LemmyContext,
|
|
|
|
expected_domain: Url,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<Community, LemmyError> {
|
|
|
|
get_object_from_apub(group, context, expected_domain, request_counter).await
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl FromApubToForm<GroupExt> for CommunityForm {
|
2020-10-12 14:10:09 +00:00
|
|
|
async fn from_apub(
|
|
|
|
group: &GroupExt,
|
|
|
|
context: &LemmyContext,
|
2020-12-08 17:38:48 +00:00
|
|
|
expected_domain: Url,
|
2020-10-22 18:27:32 +00:00
|
|
|
request_counter: &mut i32,
|
2020-10-12 14:10:09 +00:00
|
|
|
) -> Result<Self, LemmyError> {
|
|
|
|
let creator_and_moderator_uris = group.inner.attributed_to().context(location_info!())?;
|
|
|
|
let creator_uri = creator_and_moderator_uris
|
|
|
|
.as_many()
|
|
|
|
.context(location_info!())?
|
|
|
|
.iter()
|
|
|
|
.next()
|
|
|
|
.context(location_info!())?
|
|
|
|
.as_xsd_any_uri()
|
|
|
|
.context(location_info!())?;
|
|
|
|
|
2020-10-22 18:27:32 +00:00
|
|
|
let creator = get_or_fetch_and_upsert_user(creator_uri, context, request_counter).await?;
|
2020-10-12 14:10:09 +00:00
|
|
|
let name = group
|
2020-10-16 20:44:40 +00:00
|
|
|
.inner
|
|
|
|
.preferred_username()
|
|
|
|
.context(location_info!())?
|
|
|
|
.to_string();
|
|
|
|
let title = group
|
2020-10-12 14:10:09 +00:00
|
|
|
.inner
|
|
|
|
.name()
|
|
|
|
.context(location_info!())?
|
|
|
|
.as_one()
|
|
|
|
.context(location_info!())?
|
|
|
|
.as_xsd_string()
|
|
|
|
.context(location_info!())?
|
|
|
|
.to_string();
|
2020-11-24 17:53:43 +00:00
|
|
|
|
|
|
|
let description = get_source_markdown_value(group)?;
|
|
|
|
|
2020-10-12 14:10:09 +00:00
|
|
|
check_slurs(&name)?;
|
|
|
|
check_slurs(&title)?;
|
|
|
|
check_slurs_opt(&description)?;
|
|
|
|
|
|
|
|
let icon = match group.icon() {
|
|
|
|
Some(any_image) => Some(
|
|
|
|
Image::from_any_base(any_image.as_one().context(location_info!())?.clone())
|
|
|
|
.context(location_info!())?
|
|
|
|
.context(location_info!())?
|
|
|
|
.url()
|
|
|
|
.context(location_info!())?
|
|
|
|
.as_single_xsd_any_uri()
|
|
|
|
.map(|u| u.to_string()),
|
|
|
|
),
|
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let banner = match group.image() {
|
|
|
|
Some(any_image) => Some(
|
|
|
|
Image::from_any_base(any_image.as_one().context(location_info!())?.clone())
|
|
|
|
.context(location_info!())?
|
|
|
|
.context(location_info!())?
|
|
|
|
.url()
|
|
|
|
.context(location_info!())?
|
|
|
|
.as_single_xsd_any_uri()
|
|
|
|
.map(|u| u.to_string()),
|
|
|
|
),
|
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(CommunityForm {
|
|
|
|
name,
|
|
|
|
title,
|
|
|
|
description,
|
|
|
|
category_id: group.ext_one.category.identifier.parse::<i32>()?,
|
|
|
|
creator_id: creator.id,
|
|
|
|
removed: None,
|
|
|
|
published: group.inner.published().map(|u| u.to_owned().naive_local()),
|
|
|
|
updated: group.inner.updated().map(|u| u.to_owned().naive_local()),
|
|
|
|
deleted: None,
|
|
|
|
nsfw: group.ext_one.sensitive,
|
2020-10-14 15:34:11 +00:00
|
|
|
actor_id: Some(check_object_domain(group, expected_domain)?),
|
2020-10-12 14:10:09 +00:00
|
|
|
local: false,
|
|
|
|
private_key: None,
|
|
|
|
public_key: Some(group.ext_two.to_owned().public_key.public_key_pem),
|
|
|
|
last_refreshed_at: Some(naive_now()),
|
|
|
|
icon,
|
|
|
|
banner,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|