2021-07-17 16:20:44 +00:00
|
|
|
use crate::{
|
|
|
|
check_community_or_site_ban,
|
|
|
|
check_is_apub_id_valid,
|
2021-09-25 15:44:52 +00:00
|
|
|
fetcher::object_id::ObjectId,
|
2021-07-17 16:20:44 +00:00
|
|
|
generate_moderators_url,
|
2021-10-18 21:36:44 +00:00
|
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
2021-07-17 16:20:44 +00:00
|
|
|
};
|
|
|
|
use anyhow::anyhow;
|
|
|
|
use lemmy_api_common::blocking;
|
2021-10-06 20:20:05 +00:00
|
|
|
use lemmy_apub_lib::{traits::ActivityFields, verify::verify_domains_match};
|
2021-10-18 21:36:44 +00:00
|
|
|
use lemmy_db_schema::source::community::Community;
|
2021-07-17 16:20:44 +00:00
|
|
|
use lemmy_db_views_actor::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-07-31 17:26:17 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-10-18 21:36:44 +00:00
|
|
|
use std::ops::Deref;
|
2021-07-31 17:26:17 +00:00
|
|
|
use strum_macros::ToString;
|
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;
|
2021-10-15 14:37:33 +00:00
|
|
|
pub mod report;
|
2021-08-19 21:24:33 +00:00
|
|
|
pub mod undo_remove;
|
2021-07-17 16:20:44 +00:00
|
|
|
pub mod voting;
|
|
|
|
|
2021-07-31 17:26:17 +00:00
|
|
|
#[derive(Clone, Debug, ToString, Deserialize, Serialize)]
|
|
|
|
pub enum CreateOrUpdateType {
|
|
|
|
Create,
|
|
|
|
Update,
|
|
|
|
}
|
|
|
|
|
2021-07-17 16:20:44 +00:00
|
|
|
/// 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
|
|
|
pub(crate) async fn extract_community(
|
2021-07-17 16:20:44 +00:00
|
|
|
cc: &[Url],
|
|
|
|
context: &LemmyContext,
|
|
|
|
request_counter: &mut i32,
|
2021-10-18 21:36:44 +00:00
|
|
|
) -> Result<ApubCommunity, LemmyError> {
|
2021-07-17 16:20:44 +00:00
|
|
|
let mut cc_iter = cc.iter();
|
2021-07-27 22:18:50 +00:00
|
|
|
loop {
|
2021-07-17 16:20:44 +00:00
|
|
|
if let Some(cid) = cc_iter.next() {
|
2021-09-25 15:44:52 +00:00
|
|
|
let cid = ObjectId::new(cid.clone());
|
|
|
|
if let Ok(c) = cid.dereference(context, request_counter).await {
|
2021-07-27 22:18:50 +00:00
|
|
|
break Ok(c);
|
2021-07-17 16:20:44 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return Err(anyhow!("No community found in cc").into());
|
|
|
|
}
|
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>,
|
|
|
|
community_id: &ObjectId<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 community = community_id.dereference(context, request_counter).await?;
|
|
|
|
let person = person_id.dereference(context, request_counter).await?;
|
2021-10-18 21:36:44 +00:00
|
|
|
check_community_or_site_ban(person.deref(), community.id, context.pool()).await
|
2021-07-17 16:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Simply check that the url actually refers to a valid group.
|
|
|
|
async fn verify_community(
|
2021-10-18 21:36:44 +00:00
|
|
|
community_id: &ObjectId<ApubCommunity>,
|
2021-07-17 16:20:44 +00:00
|
|
|
context: &LemmyContext,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<(), LemmyError> {
|
2021-09-25 15:44:52 +00:00
|
|
|
community_id.dereference(context, request_counter).await?;
|
2021-07-17 16:20:44 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
fn verify_activity(activity: &dyn ActivityFields, settings: &Settings) -> Result<(), LemmyError> {
|
|
|
|
check_is_apub_id_valid(activity.actor(), false, settings)?;
|
2021-08-19 21:24:33 +00:00
|
|
|
verify_domains_match(activity.id_unchecked(), activity.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>,
|
|
|
|
community_id: &ObjectId<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> {
|
2021-10-06 20:20:05 +00:00
|
|
|
let community = community_id.dereference_local(context).await?;
|
2021-07-17 16:20:44 +00:00
|
|
|
|
|
|
|
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-18 21:36:44 +00:00
|
|
|
community: &ObjectId<ApubCommunity>,
|
2021-09-25 15:44:52 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
if target != &generate_moderators_url(&community.clone().into())?.into_inner() {
|
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-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)
|
|
|
|
}
|