2021-08-19 21:24:33 +00:00
|
|
|
use crate::{
|
|
|
|
activities::{
|
2021-10-06 20:20:05 +00:00
|
|
|
community::{announce::AnnouncableActivities, send_to_community},
|
2021-08-19 21:24:33 +00:00
|
|
|
generate_activity_id,
|
|
|
|
verify_activity,
|
|
|
|
verify_add_remove_moderator_target,
|
|
|
|
verify_mod_action,
|
|
|
|
verify_person_in_community,
|
|
|
|
},
|
2021-10-06 20:20:05 +00:00
|
|
|
context::lemmy_context,
|
2021-09-25 15:44:52 +00:00
|
|
|
fetcher::object_id::ObjectId,
|
2021-08-19 21:24:33 +00:00
|
|
|
generate_moderators_url,
|
2021-10-18 21:36:44 +00:00
|
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
2021-08-19 21:24:33 +00:00
|
|
|
};
|
|
|
|
use activitystreams::{
|
|
|
|
activity::kind::RemoveType,
|
|
|
|
base::AnyBase,
|
|
|
|
primitives::OneOrMany,
|
|
|
|
unparsed::Unparsed,
|
|
|
|
};
|
|
|
|
use lemmy_api_common::blocking;
|
2021-10-06 20:20:05 +00:00
|
|
|
use lemmy_apub_lib::{
|
|
|
|
data::Data,
|
|
|
|
traits::{ActivityFields, ActivityHandler, ActorType},
|
2021-10-22 16:21:26 +00:00
|
|
|
values::PublicUrl,
|
2021-10-06 20:20:05 +00:00
|
|
|
};
|
2021-10-16 13:33:38 +00:00
|
|
|
use lemmy_db_schema::{
|
2021-10-18 21:36:44 +00:00
|
|
|
source::community::{CommunityModerator, CommunityModeratorForm},
|
2021-10-16 13:33:38 +00:00
|
|
|
traits::Joinable,
|
2021-08-19 21:24:33 +00:00
|
|
|
};
|
|
|
|
use lemmy_utils::LemmyError;
|
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize, ActivityFields)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct RemoveMod {
|
2021-10-18 21:36:44 +00:00
|
|
|
actor: ObjectId<ApubPerson>,
|
2021-10-22 16:21:26 +00:00
|
|
|
to: [PublicUrl; 1],
|
2021-10-18 21:36:44 +00:00
|
|
|
pub(in crate::activities) object: ObjectId<ApubPerson>,
|
|
|
|
cc: [ObjectId<ApubCommunity>; 1],
|
2021-08-19 21:24:33 +00:00
|
|
|
#[serde(rename = "type")]
|
|
|
|
kind: RemoveType,
|
|
|
|
// if target is set, this is means remove mod from community
|
2021-10-22 16:21:26 +00:00
|
|
|
pub(in crate::activities) target: Url,
|
2021-08-19 21:24:33 +00:00
|
|
|
id: Url,
|
|
|
|
#[serde(rename = "@context")]
|
|
|
|
context: OneOrMany<AnyBase>,
|
|
|
|
#[serde(flatten)]
|
|
|
|
unparsed: Unparsed,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RemoveMod {
|
|
|
|
pub async fn send(
|
2021-10-18 21:36:44 +00:00
|
|
|
community: &ApubCommunity,
|
|
|
|
removed_mod: &ApubPerson,
|
|
|
|
actor: &ApubPerson,
|
2021-08-19 21:24:33 +00:00
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<(), LemmyError> {
|
2021-09-22 15:57:09 +00:00
|
|
|
let id = generate_activity_id(
|
|
|
|
RemoveType::Remove,
|
|
|
|
&context.settings().get_protocol_and_hostname(),
|
|
|
|
)?;
|
2021-08-19 21:24:33 +00:00
|
|
|
let remove = RemoveMod {
|
2021-09-25 15:44:52 +00:00
|
|
|
actor: ObjectId::new(actor.actor_id()),
|
2021-10-22 16:21:26 +00:00
|
|
|
to: [PublicUrl::Public],
|
2021-09-25 15:44:52 +00:00
|
|
|
object: ObjectId::new(removed_mod.actor_id()),
|
2021-10-22 16:21:26 +00:00
|
|
|
target: generate_moderators_url(&community.actor_id)?.into(),
|
2021-08-19 21:24:33 +00:00
|
|
|
id: id.clone(),
|
|
|
|
context: lemmy_context(),
|
2021-09-25 15:44:52 +00:00
|
|
|
cc: [ObjectId::new(community.actor_id())],
|
2021-08-19 21:24:33 +00:00
|
|
|
kind: RemoveType::Remove,
|
|
|
|
unparsed: Default::default(),
|
|
|
|
};
|
|
|
|
|
|
|
|
let activity = AnnouncableActivities::RemoveMod(remove);
|
2021-10-06 20:20:05 +00:00
|
|
|
let inboxes = vec![removed_mod.shared_inbox_or_inbox_url()];
|
|
|
|
send_to_community(activity, &id, actor, community, inboxes, context).await
|
2021-08-19 21:24:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl ActivityHandler for RemoveMod {
|
2021-10-06 20:20:05 +00:00
|
|
|
type DataType = LemmyContext;
|
2021-08-19 21:24:33 +00:00
|
|
|
async fn verify(
|
|
|
|
&self,
|
2021-10-06 20:20:05 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2021-08-19 21:24:33 +00:00
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<(), LemmyError> {
|
2021-09-22 15:57:09 +00:00
|
|
|
verify_activity(self, &context.settings())?;
|
2021-10-22 16:21:26 +00:00
|
|
|
verify_person_in_community(&self.actor, &self.cc[0], context, request_counter).await?;
|
|
|
|
verify_mod_action(&self.actor, &self.cc[0], context, request_counter).await?;
|
|
|
|
verify_add_remove_moderator_target(&self.target, &self.cc[0])?;
|
2021-08-19 21:24:33 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn receive(
|
|
|
|
self,
|
2021-10-06 20:20:05 +00:00
|
|
|
context: &Data<LemmyContext>,
|
2021-08-19 21:24:33 +00:00
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<(), LemmyError> {
|
2021-10-22 16:21:26 +00:00
|
|
|
let community = self.cc[0].dereference(context, request_counter).await?;
|
|
|
|
let remove_mod = self.object.dereference(context, request_counter).await?;
|
2021-08-19 21:24:33 +00:00
|
|
|
|
2021-10-22 16:21:26 +00:00
|
|
|
let form = CommunityModeratorForm {
|
|
|
|
community_id: community.id,
|
|
|
|
person_id: remove_mod.id,
|
|
|
|
};
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
CommunityModerator::leave(conn, &form)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
// TODO: send websocket notification about removed mod
|
|
|
|
Ok(())
|
2021-08-19 21:24:33 +00:00
|
|
|
}
|
|
|
|
}
|