2021-07-17 16:20:44 +00:00
|
|
|
use crate::{
|
|
|
|
check_is_apub_id_valid,
|
2021-10-28 15:25:26 +00:00
|
|
|
context::WithContext,
|
2021-07-17 16:20:44 +00:00
|
|
|
generate_moderators_url,
|
2021-10-28 15:25:26 +00:00
|
|
|
insert_activity,
|
2021-10-18 21:36:44 +00:00
|
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
2021-07-17 16:20:44 +00:00
|
|
|
};
|
2021-11-19 17:47:06 +00:00
|
|
|
use activitystreams_kinds::public;
|
2021-07-17 16:20:44 +00:00
|
|
|
use anyhow::anyhow;
|
|
|
|
use lemmy_api_common::blocking;
|
2021-10-28 15:25:26 +00:00
|
|
|
use lemmy_apub_lib::{
|
|
|
|
activity_queue::send_activity,
|
2021-11-05 00:24:10 +00:00
|
|
|
object_id::ObjectId,
|
2021-11-03 17:33:51 +00:00
|
|
|
traits::ActorType,
|
2021-10-28 15:25:26 +00:00
|
|
|
verify::verify_domains_match,
|
|
|
|
};
|
2021-10-18 21:36:44 +00:00
|
|
|
use lemmy_db_schema::source::community::Community;
|
2021-10-28 11:46:48 +00:00
|
|
|
use lemmy_db_views_actor::{
|
|
|
|
community_person_ban_view::CommunityPersonBanView,
|
|
|
|
community_view::CommunityView,
|
|
|
|
};
|
2021-07-27 22:18:50 +00:00
|
|
|
use lemmy_utils::{settings::structs::Settings, LemmyError};
|
2021-07-17 16:20:44 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
2021-10-28 15:25:26 +00:00
|
|
|
use log::info;
|
2021-10-29 10:32:42 +00:00
|
|
|
use serde::Serialize;
|
2021-07-27 22:18:50 +00:00
|
|
|
use url::{ParseError, Url};
|
|
|
|
use uuid::Uuid;
|
2021-07-17 16:20:44 +00:00
|
|
|
|
|
|
|
pub mod comment;
|
|
|
|
pub mod community;
|
|
|
|
pub mod deletion;
|
|
|
|
pub mod following;
|
|
|
|
pub mod post;
|
|
|
|
pub mod private_message;
|
|
|
|
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.
|
|
|
|
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-09-25 15:44:52 +00:00
|
|
|
let person = person_id.dereference(context, request_counter).await?;
|
2021-07-17 16:20:44 +00:00
|
|
|
if person.banned {
|
|
|
|
return Err(anyhow!("Person {} is banned", person_id).into());
|
|
|
|
}
|
|
|
|
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-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-09-25 15:44:52 +00:00
|
|
|
let person = person_id.dereference(context, request_counter).await?;
|
2021-10-28 11:46:48 +00:00
|
|
|
if person.banned {
|
|
|
|
return Err(anyhow!("Person is banned from site").into());
|
|
|
|
}
|
|
|
|
let person_id = person.id;
|
|
|
|
let community_id = community.id;
|
|
|
|
let is_banned =
|
|
|
|
move |conn: &'_ _| CommunityPersonBanView::get(conn, person_id, community_id).is_ok();
|
|
|
|
if blocking(context.pool(), is_banned).await? {
|
|
|
|
return Err(anyhow!("Person is banned from community").into());
|
|
|
|
}
|
2021-07-17 16:20:44 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-11-03 17:33:51 +00:00
|
|
|
fn verify_activity(id: &Url, actor: &Url, settings: &Settings) -> Result<(), LemmyError> {
|
|
|
|
check_is_apub_id_valid(actor, false, settings)?;
|
|
|
|
verify_domains_match(id, actor)?;
|
2021-07-17 16:20:44 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-07-27 22:18:50 +00:00
|
|
|
/// Verify that the actor is a community mod. This check is only run if the community is local,
|
|
|
|
/// because in case of remote communities, admins can also perform mod actions. As admin status
|
|
|
|
/// is not federated, we cant verify their actions remotely.
|
|
|
|
pub(crate) async fn verify_mod_action(
|
2021-10-18 21:36:44 +00:00
|
|
|
actor_id: &ObjectId<ApubPerson>,
|
2021-10-28 12:47:56 +00:00
|
|
|
community: &ApubCommunity,
|
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> {
|
|
|
|
if community.local {
|
2021-10-06 20:20:05 +00:00
|
|
|
let actor = actor_id.dereference(context, request_counter).await?;
|
2021-07-17 16:20:44 +00:00
|
|
|
|
|
|
|
// Note: this will also return true for admins in addition to mods, but as we dont know about
|
|
|
|
// remote admins, it doesnt make any difference.
|
|
|
|
let community_id = community.id;
|
|
|
|
let actor_id = actor.id;
|
|
|
|
let is_mod_or_admin = blocking(context.pool(), move |conn| {
|
|
|
|
CommunityView::is_mod_or_admin(conn, actor_id, community_id)
|
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
if !is_mod_or_admin {
|
|
|
|
return Err(anyhow!("Not a mod").into());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// 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-07-17 16:20:44 +00:00
|
|
|
return Err(anyhow!("Unkown target url").into());
|
|
|
|
}
|
|
|
|
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-10-21 17:25:35 +00:00
|
|
|
return Err(anyhow!("Object is not public").into());
|
|
|
|
}
|
|
|
|
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 {
|
|
|
|
Err(anyhow!("New post or comment cannot be created in deleted or removed community").into())
|
|
|
|
} 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
|
|
|
|
|
|
|
async fn send_lemmy_activity<T: Serialize>(
|
|
|
|
context: &LemmyContext,
|
|
|
|
activity: &T,
|
|
|
|
activity_id: &Url,
|
|
|
|
actor: &dyn ActorType,
|
|
|
|
inboxes: Vec<Url>,
|
|
|
|
sensitive: bool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
if !context.settings().federation.enabled || inboxes.is_empty() {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
let activity = WithContext::new(activity);
|
|
|
|
|
|
|
|
info!("Sending activity {}", activity_id.to_string());
|
|
|
|
|
|
|
|
// Don't send anything to ourselves
|
|
|
|
// TODO: this should be a debug assert
|
|
|
|
let hostname = context.settings().get_hostname_without_port()?;
|
|
|
|
let inboxes: Vec<&Url> = inboxes
|
|
|
|
.iter()
|
|
|
|
.filter(|i| i.domain().expect("valid inbox url") != hostname)
|
|
|
|
.collect();
|
|
|
|
|
|
|
|
let serialised_activity = serde_json::to_string(&activity)?;
|
|
|
|
|
2021-11-16 02:07:07 +00:00
|
|
|
let object_value = serde_json::to_value(&activity)?;
|
|
|
|
insert_activity(activity_id, object_value, true, sensitive, context.pool()).await?;
|
2021-10-28 15:25:26 +00:00
|
|
|
|
|
|
|
send_activity(
|
2021-11-16 17:03:09 +00:00
|
|
|
activity_id,
|
2021-10-28 15:25:26 +00:00
|
|
|
actor,
|
|
|
|
inboxes,
|
2021-11-16 17:03:09 +00:00
|
|
|
serialised_activity,
|
2021-10-28 15:25:26 +00:00
|
|
|
context.client(),
|
|
|
|
context.activity_queue(),
|
|
|
|
)
|
|
|
|
.await
|
|
|
|
}
|