2021-07-17 16:20:44 +00:00
|
|
|
use crate::{
|
|
|
|
generate_moderators_url,
|
2021-10-28 15:25:26 +00:00
|
|
|
insert_activity,
|
2022-06-02 14:33:41 +00:00
|
|
|
local_instance,
|
2021-10-18 21:36:44 +00:00
|
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
2022-06-02 14:33:41 +00:00
|
|
|
ActorType,
|
|
|
|
CONTEXT,
|
|
|
|
};
|
|
|
|
use activitypub_federation::{
|
2022-06-08 15:45:39 +00:00
|
|
|
core::{activity_queue::send_activity, object_id::ObjectId},
|
2022-06-02 14:33:41 +00:00
|
|
|
deser::context::WithContext,
|
2022-06-08 15:45:39 +00:00
|
|
|
traits::{ActivityHandler, Actor},
|
2021-07-17 16:20:44 +00:00
|
|
|
};
|
2021-11-19 17:47:06 +00:00
|
|
|
use activitystreams_kinds::public;
|
2022-03-16 20:11:49 +00:00
|
|
|
use anyhow::anyhow;
|
2022-11-26 02:04:46 +00:00
|
|
|
use lemmy_api_common::LemmyContext;
|
2022-10-27 09:24:07 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
newtypes::CommunityId,
|
|
|
|
source::{community::Community, local_site::LocalSite},
|
|
|
|
};
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_views_actor::structs::{CommunityPersonBanView, CommunityView};
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2021-10-29 10:32:42 +00:00
|
|
|
use serde::Serialize;
|
2022-06-02 14:33:41 +00:00
|
|
|
use std::ops::Deref;
|
2021-11-23 12:16:47 +00:00
|
|
|
use tracing::info;
|
2021-07-27 22:18:50 +00:00
|
|
|
use url::{ParseError, Url};
|
|
|
|
use uuid::Uuid;
|
2021-07-17 16:20:44 +00:00
|
|
|
|
2022-02-07 19:23:12 +00:00
|
|
|
pub mod block;
|
2021-07-17 16:20:44 +00:00
|
|
|
pub mod community;
|
2022-02-14 15:14:24 +00:00
|
|
|
pub mod create_or_update;
|
2021-07-17 16:20:44 +00:00
|
|
|
pub mod deletion;
|
|
|
|
pub mod following;
|
|
|
|
pub mod voting;
|
|
|
|
|
|
|
|
/// Checks that the specified Url actually identifies a Person (by fetching it), and that the person
|
|
|
|
/// doesn't have a site ban.
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-07-17 16:20:44 +00:00
|
|
|
async fn verify_person(
|
2021-10-18 21:36:44 +00:00
|
|
|
person_id: &ObjectId<ApubPerson>,
|
2021-07-17 16:20:44 +00:00
|
|
|
context: &LemmyContext,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<(), LemmyError> {
|
2021-12-06 22:54:34 +00:00
|
|
|
let person = person_id
|
2022-11-09 10:05:00 +00:00
|
|
|
.dereference(context, local_instance(context).await, request_counter)
|
2021-12-06 22:54:34 +00:00
|
|
|
.await?;
|
2021-07-17 16:20:44 +00:00
|
|
|
if person.banned {
|
2022-03-16 20:11:49 +00:00
|
|
|
let err = anyhow!("Person {} is banned", person_id);
|
|
|
|
return Err(LemmyError::from_error_message(err, "banned"));
|
2021-07-17 16:20:44 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-07-27 22:18:50 +00:00
|
|
|
/// Fetches the person and community to verify their type, then checks if person is banned from site
|
|
|
|
/// or community.
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-07-31 14:57:37 +00:00
|
|
|
pub(crate) async fn verify_person_in_community(
|
2021-10-18 21:36:44 +00:00
|
|
|
person_id: &ObjectId<ApubPerson>,
|
2021-10-28 11:46:48 +00:00
|
|
|
community: &ApubCommunity,
|
2021-07-27 22:18:50 +00:00
|
|
|
context: &LemmyContext,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<(), LemmyError> {
|
2021-12-06 22:54:34 +00:00
|
|
|
let person = person_id
|
2022-11-09 10:05:00 +00:00
|
|
|
.dereference(context, local_instance(context).await, request_counter)
|
2021-12-06 22:54:34 +00:00
|
|
|
.await?;
|
2021-10-28 11:46:48 +00:00
|
|
|
if person.banned {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("Person is banned from site"));
|
2021-10-28 11:46:48 +00:00
|
|
|
}
|
|
|
|
let person_id = person.id;
|
|
|
|
let community_id = community.id;
|
2022-11-09 10:05:00 +00:00
|
|
|
let is_banned = CommunityPersonBanView::get(context.pool(), person_id, community_id)
|
|
|
|
.await
|
|
|
|
.is_ok();
|
|
|
|
if is_banned {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("Person is banned from community"));
|
2021-10-28 11:46:48 +00:00
|
|
|
}
|
2021-07-17 16:20:44 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-10-10 15:20:36 +00:00
|
|
|
/// Verify that mod action in community was performed by a moderator.
|
2022-04-04 14:46:49 +00:00
|
|
|
///
|
|
|
|
/// * `mod_id` - Activitypub ID of the mod or admin who performed the action
|
|
|
|
/// * `object_id` - Activitypub ID of the actor or object that is being moderated
|
|
|
|
/// * `community` - The community inside which moderation is happening
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-07-27 22:18:50 +00:00
|
|
|
pub(crate) async fn verify_mod_action(
|
2022-04-04 14:46:49 +00:00
|
|
|
mod_id: &ObjectId<ApubPerson>,
|
|
|
|
object_id: &Url,
|
2022-10-10 15:20:36 +00:00
|
|
|
community_id: CommunityId,
|
2021-07-17 16:20:44 +00:00
|
|
|
context: &LemmyContext,
|
2021-10-06 20:20:05 +00:00
|
|
|
request_counter: &mut i32,
|
2021-07-17 16:20:44 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2022-10-10 15:20:36 +00:00
|
|
|
let mod_ = mod_id
|
2022-11-09 10:05:00 +00:00
|
|
|
.dereference(context, local_instance(context).await, request_counter)
|
2021-07-17 16:20:44 +00:00
|
|
|
.await?;
|
2022-04-04 14:46:49 +00:00
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
let is_mod_or_admin =
|
|
|
|
CommunityView::is_mod_or_admin(context.pool(), mod_.id, community_id).await?;
|
2022-10-10 15:20:36 +00:00
|
|
|
if is_mod_or_admin {
|
|
|
|
return Ok(());
|
|
|
|
}
|
2022-04-04 14:46:49 +00:00
|
|
|
|
2022-10-10 15:20:36 +00:00
|
|
|
// mod action comes from the same instance as the moderated object, so it was presumably done
|
|
|
|
// by an instance admin.
|
|
|
|
// TODO: federate instance admin status and check it here
|
|
|
|
if mod_id.inner().domain() == object_id.domain() {
|
|
|
|
return Ok(());
|
2021-07-17 16:20:44 +00:00
|
|
|
}
|
2022-10-10 15:20:36 +00:00
|
|
|
|
|
|
|
Err(LemmyError::from_message("Not a mod"))
|
2021-07-17 16:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// For Add/Remove community moderator activities, check that the target field actually contains
|
|
|
|
/// /c/community/moderators. Any different values are unsupported.
|
2021-09-25 15:44:52 +00:00
|
|
|
fn verify_add_remove_moderator_target(
|
|
|
|
target: &Url,
|
2021-10-28 12:47:56 +00:00
|
|
|
community: &ApubCommunity,
|
2021-09-25 15:44:52 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2021-11-05 00:24:10 +00:00
|
|
|
if target != &generate_moderators_url(&community.actor_id)?.into() {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("Unkown target url"));
|
2021-07-17 16:20:44 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
2021-07-27 22:18:50 +00:00
|
|
|
|
2021-11-06 17:44:34 +00:00
|
|
|
pub(crate) fn verify_is_public(to: &[Url], cc: &[Url]) -> Result<(), LemmyError> {
|
2021-11-16 00:58:15 +00:00
|
|
|
if ![to, cc].iter().any(|set| set.contains(&public())) {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message("Object is not public"));
|
2021-10-21 17:25:35 +00:00
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-12-01 20:52:49 +00:00
|
|
|
pub(crate) fn verify_community_matches(
|
|
|
|
a: &ApubCommunity,
|
|
|
|
b: CommunityId,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
if a.id != b {
|
|
|
|
return Err(LemmyError::from_message("Invalid community"));
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-10-14 16:33:19 +00:00
|
|
|
pub(crate) fn check_community_deleted_or_removed(community: &Community) -> Result<(), LemmyError> {
|
|
|
|
if community.deleted || community.removed {
|
2021-12-06 14:54:47 +00:00
|
|
|
Err(LemmyError::from_message(
|
|
|
|
"New post or comment cannot be created in deleted or removed community",
|
|
|
|
))
|
2021-10-14 16:33:19 +00:00
|
|
|
} else {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-27 22:18:50 +00:00
|
|
|
/// Generate a unique ID for an activity, in the format:
|
|
|
|
/// `http(s)://example.com/receive/create/202daf0a-1489-45df-8d2e-c8a3173fed36`
|
2021-09-22 15:57:09 +00:00
|
|
|
fn generate_activity_id<T>(kind: T, protocol_and_hostname: &str) -> Result<Url, ParseError>
|
2021-07-27 22:18:50 +00:00
|
|
|
where
|
|
|
|
T: ToString,
|
|
|
|
{
|
|
|
|
let id = format!(
|
|
|
|
"{}/activities/{}/{}",
|
2021-09-22 15:57:09 +00:00
|
|
|
protocol_and_hostname,
|
2021-07-27 22:18:50 +00:00
|
|
|
kind.to_string().to_lowercase(),
|
|
|
|
Uuid::new_v4()
|
|
|
|
);
|
|
|
|
Url::parse(&id)
|
|
|
|
}
|
2021-10-28 15:25:26 +00:00
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2022-06-08 15:45:39 +00:00
|
|
|
async fn send_lemmy_activity<Activity, ActorT>(
|
2021-10-28 15:25:26 +00:00
|
|
|
context: &LemmyContext,
|
2022-06-08 15:45:39 +00:00
|
|
|
activity: Activity,
|
|
|
|
actor: &ActorT,
|
|
|
|
inbox: Vec<Url>,
|
2021-10-28 15:25:26 +00:00
|
|
|
sensitive: bool,
|
2022-06-08 15:45:39 +00:00
|
|
|
) -> Result<(), LemmyError>
|
|
|
|
where
|
|
|
|
Activity: ActivityHandler + Serialize,
|
|
|
|
ActorT: Actor + ActorType,
|
|
|
|
Activity: ActivityHandler<Error = LemmyError>,
|
|
|
|
{
|
2022-11-09 10:05:00 +00:00
|
|
|
let federation_enabled = LocalSite::read(context.pool())
|
|
|
|
.await
|
2022-10-27 09:24:07 +00:00
|
|
|
.map(|l| l.federation_enabled)
|
|
|
|
.unwrap_or(false);
|
|
|
|
if !federation_enabled {
|
2022-10-17 18:29:18 +00:00
|
|
|
return Ok(());
|
|
|
|
}
|
2022-10-27 09:24:07 +00:00
|
|
|
|
2022-06-08 15:45:39 +00:00
|
|
|
info!("Sending activity {}", activity.id().to_string());
|
2022-06-02 14:33:41 +00:00
|
|
|
let activity = WithContext::new(activity, CONTEXT.deref().clone());
|
2021-10-28 15:25:26 +00:00
|
|
|
|
2021-11-16 02:07:07 +00:00
|
|
|
let object_value = serde_json::to_value(&activity)?;
|
2022-06-08 15:45:39 +00:00
|
|
|
insert_activity(activity.id(), object_value, true, sensitive, context.pool()).await?;
|
|
|
|
|
|
|
|
send_activity(
|
|
|
|
activity,
|
|
|
|
actor.get_public_key(),
|
|
|
|
actor.private_key().expect("actor has private key"),
|
|
|
|
inbox,
|
2022-11-09 10:05:00 +00:00
|
|
|
local_instance(context).await,
|
2022-06-08 15:45:39 +00:00
|
|
|
)
|
2022-06-02 14:33:41 +00:00
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(())
|
2021-10-28 15:25:26 +00:00
|
|
|
}
|