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-03-19 16:11:34 +00:00
|
|
|
fetcher::{community::fetch_community_mods, person::get_or_fetch_and_upsert_person},
|
2021-03-08 13:40:28 +00:00
|
|
|
generate_moderators_url,
|
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;
|
2021-03-01 13:08:41 +00:00
|
|
|
use lemmy_api_structs::blocking;
|
2021-03-05 13:45:30 +00:00
|
|
|
use lemmy_db_queries::{DbPool, Joinable};
|
2020-12-21 12:28:12 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
naive_now,
|
2021-03-05 13:45:30 +00:00
|
|
|
source::community::{Community, CommunityForm, CommunityModerator, CommunityModeratorForm},
|
|
|
|
DbUrl,
|
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_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
|
|
|
|
2021-03-08 13:40:28 +00:00
|
|
|
async fn to_apub(&self, _pool: &DbPool) -> Result<GroupExt, LemmyError> {
|
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())
|
2021-03-05 13:45:30 +00:00
|
|
|
.set_published(convert_datetime(self.published));
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
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();
|
2021-03-02 12:41:48 +00:00
|
|
|
image.set_url::<Url>(icon_url.to_owned().into());
|
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();
|
2021-03-02 12:41:48 +00:00
|
|
|
image.set_url::<Url>(banner_url.to_owned().into());
|
2020-10-12 14:10:09 +00:00
|
|
|
group.set_image(image.into_any_base()?);
|
|
|
|
}
|
|
|
|
|
2021-02-04 16:34:58 +00:00
|
|
|
let mut ap_actor = ApActor::new(self.inbox_url.clone().into(), group);
|
2020-10-12 14:10:09 +00:00
|
|
|
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()?)
|
2021-02-04 16:34:58 +00:00
|
|
|
.set_followers(self.followers_url.clone().into())
|
2020-10-12 14:10:09 +00:00
|
|
|
.set_endpoints(Endpoints {
|
2021-02-04 16:34:58 +00:00
|
|
|
shared_inbox: Some(self.get_shared_inbox_or_inbox_url()),
|
2020-10-12 14:10:09 +00:00
|
|
|
..Default::default()
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(Ext2::new(
|
|
|
|
ap_actor,
|
2021-03-08 13:40:28 +00:00
|
|
|
GroupExtension::new(self.nsfw, generate_moderators_url(&self.actor_id)?.into())?,
|
2020-10-12 14:10:09 +00:00
|
|
|
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;
|
|
|
|
|
2021-03-05 13:45:30 +00:00
|
|
|
/// Converts a `Group` to `Community`, inserts it into the database and updates moderators.
|
2020-12-08 17:38:48 +00:00
|
|
|
async fn from_apub(
|
|
|
|
group: &GroupExt,
|
|
|
|
context: &LemmyContext,
|
2021-03-16 17:26:19 +00:00
|
|
|
expected_domain: Url,
|
2020-12-08 17:38:48 +00:00
|
|
|
request_counter: &mut i32,
|
2021-03-18 13:24:29 +00:00
|
|
|
mod_action_allowed: bool,
|
2020-12-08 17:38:48 +00:00
|
|
|
) -> Result<Community, LemmyError> {
|
2021-03-16 17:26:19 +00:00
|
|
|
let community: Community = get_object_from_apub(
|
|
|
|
group,
|
|
|
|
context,
|
|
|
|
expected_domain,
|
|
|
|
request_counter,
|
2021-03-18 13:24:29 +00:00
|
|
|
mod_action_allowed,
|
2021-03-16 17:26:19 +00:00
|
|
|
)
|
|
|
|
.await?;
|
2021-03-05 13:45:30 +00:00
|
|
|
|
2021-03-08 13:40:28 +00:00
|
|
|
let new_moderators = fetch_community_mods(context, group, request_counter).await?;
|
2021-03-05 13:45:30 +00:00
|
|
|
let community_id = community.id;
|
|
|
|
let current_moderators = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityModeratorView::for_community(&conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
// Remove old mods from database which arent in the moderators collection anymore
|
|
|
|
for mod_user in ¤t_moderators {
|
|
|
|
if !new_moderators.contains(&&mod_user.moderator.actor_id.clone().into()) {
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: mod_user.community.id,
|
2021-03-19 16:11:34 +00:00
|
|
|
person_id: mod_user.moderator.id,
|
2021-03-05 13:45:30 +00:00
|
|
|
};
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
CommunityModerator::leave(conn, &community_moderator_form)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Add new mods to database which have been added to moderators collection
|
|
|
|
for mod_uri in new_moderators {
|
2021-03-19 16:11:34 +00:00
|
|
|
let mod_user = get_or_fetch_and_upsert_person(&mod_uri, context, request_counter).await?;
|
2021-03-05 13:45:30 +00:00
|
|
|
let current_mod_uris: Vec<DbUrl> = current_moderators
|
|
|
|
.clone()
|
|
|
|
.iter()
|
|
|
|
.map(|c| c.moderator.actor_id.clone())
|
|
|
|
.collect();
|
|
|
|
if !current_mod_uris.contains(&mod_user.actor_id) {
|
|
|
|
let community_moderator_form = CommunityModeratorForm {
|
|
|
|
community_id: community.id,
|
2021-03-19 16:11:34 +00:00
|
|
|
person_id: mod_user.id,
|
2021-03-05 13:45:30 +00:00
|
|
|
};
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
CommunityModerator::join(conn, &community_moderator_form)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(community)
|
2020-12-08 17:38:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[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,
|
2021-03-16 17:26:19 +00:00
|
|
|
expected_domain: Url,
|
2020-10-22 18:27:32 +00:00
|
|
|
request_counter: &mut i32,
|
2021-03-18 13:24:29 +00:00
|
|
|
_mod_action_allowed: bool,
|
2020-10-12 14:10:09 +00:00
|
|
|
) -> Result<Self, LemmyError> {
|
2021-03-08 13:40:28 +00:00
|
|
|
let moderator_uris = fetch_community_mods(context, group, request_counter).await?;
|
2021-03-05 13:45:30 +00:00
|
|
|
let creator_uri = moderator_uris.first().context(location_info!())?;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
let creator = get_or_fetch_and_upsert_person(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()
|
2021-03-02 12:41:48 +00:00
|
|
|
.map(|u| u.to_owned().into()),
|
2020-10-12 14:10:09 +00:00
|
|
|
),
|
|
|
|
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()
|
2021-03-02 12:41:48 +00:00
|
|
|
.map(|u| u.to_owned().into()),
|
2020-10-12 14:10:09 +00:00
|
|
|
),
|
|
|
|
None => None,
|
|
|
|
};
|
2021-02-04 16:34:58 +00:00
|
|
|
let shared_inbox = group
|
|
|
|
.inner
|
|
|
|
.endpoints()?
|
|
|
|
.map(|e| e.shared_inbox)
|
|
|
|
.flatten()
|
|
|
|
.map(|s| s.to_owned().into());
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
Ok(CommunityForm {
|
|
|
|
name,
|
|
|
|
title,
|
|
|
|
description,
|
|
|
|
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,
|
2021-02-05 13:23:57 +00:00
|
|
|
nsfw: group.ext_one.sensitive.unwrap_or(false),
|
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,
|
2021-02-04 16:34:58 +00:00
|
|
|
followers_url: Some(
|
|
|
|
group
|
|
|
|
.inner
|
|
|
|
.followers()?
|
|
|
|
.context(location_info!())?
|
|
|
|
.to_owned()
|
|
|
|
.into(),
|
|
|
|
),
|
|
|
|
inbox_url: Some(group.inner.inbox()?.to_owned().into()),
|
|
|
|
shared_inbox_url: Some(shared_inbox),
|
2020-10-12 14:10:09 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|