2021-10-28 21:17:59 +00:00
|
|
|
use crate::{
|
2021-11-02 13:18:12 +00:00
|
|
|
check_is_apub_id_valid,
|
2021-10-28 21:17:59 +00:00
|
|
|
collections::{
|
|
|
|
community_moderators::ApubCommunityModerators,
|
|
|
|
community_outbox::ApubCommunityOutbox,
|
|
|
|
},
|
2021-11-03 16:26:09 +00:00
|
|
|
objects::{community::ApubCommunity, get_summary_from_string_or_source},
|
2021-11-19 17:47:06 +00:00
|
|
|
protocol::{objects::Endpoints, ImageObject, Source, Unparsed},
|
2021-10-28 21:17:59 +00:00
|
|
|
};
|
2021-11-19 17:47:06 +00:00
|
|
|
use activitystreams_kinds::actor::GroupType;
|
2021-10-28 21:17:59 +00:00
|
|
|
use chrono::{DateTime, FixedOffset};
|
2021-11-05 00:24:10 +00:00
|
|
|
use lemmy_apub_lib::{object_id::ObjectId, signatures::PublicKey, verify::verify_domains_match};
|
2021-10-28 21:17:59 +00:00
|
|
|
use lemmy_db_schema::{naive_now, source::community::CommunityForm};
|
|
|
|
use lemmy_utils::{
|
|
|
|
utils::{check_slurs, check_slurs_opt},
|
|
|
|
LemmyError,
|
|
|
|
};
|
2021-11-06 17:35:14 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
2021-10-28 21:17:59 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use serde_with::skip_serializing_none;
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
#[skip_serializing_none]
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Group {
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
pub(crate) kind: GroupType,
|
2021-11-03 16:26:09 +00:00
|
|
|
pub(crate) id: ObjectId<ApubCommunity>,
|
2021-10-28 21:17:59 +00:00
|
|
|
/// username, set at account creation and can never be changed
|
|
|
|
pub(crate) preferred_username: String,
|
|
|
|
/// title (can be changed at any time)
|
|
|
|
pub(crate) name: String,
|
|
|
|
pub(crate) summary: Option<String>,
|
|
|
|
pub(crate) source: Option<Source>,
|
|
|
|
pub(crate) icon: Option<ImageObject>,
|
|
|
|
/// banner
|
|
|
|
pub(crate) image: Option<ImageObject>,
|
|
|
|
// lemmy extension
|
|
|
|
pub(crate) sensitive: Option<bool>,
|
|
|
|
// lemmy extension
|
|
|
|
pub(crate) moderators: Option<ObjectId<ApubCommunityModerators>>,
|
|
|
|
pub(crate) inbox: Url,
|
|
|
|
pub(crate) outbox: ObjectId<ApubCommunityOutbox>,
|
|
|
|
pub(crate) followers: Url,
|
2022-01-17 14:40:47 +00:00
|
|
|
pub(crate) endpoints: Option<Endpoints>,
|
2021-10-28 21:17:59 +00:00
|
|
|
pub(crate) public_key: PublicKey,
|
|
|
|
pub(crate) published: Option<DateTime<FixedOffset>>,
|
|
|
|
pub(crate) updated: Option<DateTime<FixedOffset>>,
|
|
|
|
#[serde(flatten)]
|
|
|
|
pub(crate) unparsed: Unparsed,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Group {
|
2021-11-06 17:35:14 +00:00
|
|
|
pub(crate) async fn verify(
|
|
|
|
&self,
|
2021-10-28 21:17:59 +00:00
|
|
|
expected_domain: &Url,
|
2021-11-06 17:35:14 +00:00
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
check_is_apub_id_valid(self.id.inner(), true, &context.settings())?;
|
2021-11-06 12:37:55 +00:00
|
|
|
verify_domains_match(expected_domain, self.id.inner())?;
|
2021-10-28 21:17:59 +00:00
|
|
|
|
2021-11-06 17:35:14 +00:00
|
|
|
let slur_regex = &context.settings().slur_regex();
|
|
|
|
check_slurs(&self.preferred_username, slur_regex)?;
|
|
|
|
check_slurs(&self.name, slur_regex)?;
|
|
|
|
let description = get_summary_from_string_or_source(&self.summary, &self.source);
|
2021-10-28 21:17:59 +00:00
|
|
|
check_slurs_opt(&description, slur_regex)?;
|
2021-11-06 17:35:14 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2021-10-28 21:17:59 +00:00
|
|
|
|
2021-11-08 12:11:24 +00:00
|
|
|
pub(crate) fn into_form(self) -> CommunityForm {
|
|
|
|
CommunityForm {
|
2021-11-06 17:35:14 +00:00
|
|
|
name: self.preferred_username,
|
|
|
|
title: self.name,
|
|
|
|
description: get_summary_from_string_or_source(&self.summary, &self.source),
|
2021-10-28 21:17:59 +00:00
|
|
|
removed: None,
|
2021-11-06 12:37:55 +00:00
|
|
|
published: self.published.map(|u| u.naive_local()),
|
|
|
|
updated: self.updated.map(|u| u.naive_local()),
|
2021-10-28 21:17:59 +00:00
|
|
|
deleted: None,
|
2021-11-06 12:37:55 +00:00
|
|
|
nsfw: Some(self.sensitive.unwrap_or(false)),
|
|
|
|
actor_id: Some(self.id.into()),
|
2021-10-28 21:17:59 +00:00
|
|
|
local: Some(false),
|
|
|
|
private_key: None,
|
2021-11-22 15:10:18 +00:00
|
|
|
public_key: self.public_key.public_key_pem,
|
2021-10-28 21:17:59 +00:00
|
|
|
last_refreshed_at: Some(naive_now()),
|
2021-11-06 12:37:55 +00:00
|
|
|
icon: Some(self.icon.map(|i| i.url.into())),
|
|
|
|
banner: Some(self.image.map(|i| i.url.into())),
|
|
|
|
followers_url: Some(self.followers.into()),
|
|
|
|
inbox_url: Some(self.inbox.into()),
|
2022-01-17 14:40:47 +00:00
|
|
|
shared_inbox_url: Some(self.endpoints.map(|e| e.shared_inbox.into())),
|
2021-11-08 12:11:24 +00:00
|
|
|
}
|
2021-10-28 21:17:59 +00:00
|
|
|
}
|
|
|
|
}
|