2020-10-12 14:10:09 +00:00
|
|
|
pub mod activities;
|
2021-10-29 10:32:42 +00:00
|
|
|
pub(crate) mod activity_lists;
|
2021-10-27 16:03:07 +00:00
|
|
|
pub(crate) mod collections;
|
2021-10-06 20:20:05 +00:00
|
|
|
mod context;
|
2020-04-10 11:37:35 +00:00
|
|
|
pub mod fetcher;
|
2021-07-17 16:20:44 +00:00
|
|
|
pub mod http;
|
2021-08-05 11:00:29 +00:00
|
|
|
pub mod migrations;
|
2020-10-12 14:10:09 +00:00
|
|
|
pub mod objects;
|
2021-10-29 10:32:42 +00:00
|
|
|
pub mod protocol;
|
2020-04-24 14:04:36 +00:00
|
|
|
|
2021-10-27 16:03:07 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
|
|
|
|
2021-10-06 20:20:05 +00:00
|
|
|
use crate::fetcher::post_or_comment::PostOrComment;
|
2020-08-11 14:31:05 +00:00
|
|
|
use anyhow::{anyhow, Context};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_api_common::blocking;
|
2021-10-28 15:25:26 +00:00
|
|
|
use lemmy_apub_lib::webfinger::{webfinger_resolve_actor, WebfingerType};
|
2021-10-28 11:46:48 +00:00
|
|
|
use lemmy_db_schema::{newtypes::DbUrl, source::activity::Activity, DbPool};
|
2021-03-01 17:24:11 +00:00
|
|
|
use lemmy_utils::{location_info, settings::structs::Settings, LemmyError};
|
2021-10-06 20:20:05 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
2020-10-22 16:12:43 +00:00
|
|
|
use std::net::IpAddr;
|
2020-07-17 21:11:07 +00:00
|
|
|
use url::{ParseError, Url};
|
2020-04-24 14:04:36 +00:00
|
|
|
|
2020-10-19 14:29:35 +00:00
|
|
|
/// Checks if the ID is allowed for sending or receiving.
|
|
|
|
///
|
|
|
|
/// In particular, it checks for:
|
|
|
|
/// - federation being enabled (if its disabled, only local URLs are allowed)
|
|
|
|
/// - the correct scheme (either http or https)
|
|
|
|
/// - URL being in the allowlist (if it is active)
|
|
|
|
/// - URL not being in the blocklist (if it is active)
|
|
|
|
///
|
2021-11-02 13:18:12 +00:00
|
|
|
/// `use_strict_allowlist` should be true only when parsing a remote community, or when parsing a
|
|
|
|
/// post/comment in a local community.
|
2021-08-12 12:48:09 +00:00
|
|
|
pub(crate) fn check_is_apub_id_valid(
|
|
|
|
apub_id: &Url,
|
|
|
|
use_strict_allowlist: bool,
|
2021-09-22 15:57:09 +00:00
|
|
|
settings: &Settings,
|
2021-08-12 12:48:09 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-08-18 13:12:03 +00:00
|
|
|
let domain = apub_id.domain().context(location_info!())?.to_string();
|
2021-01-15 01:18:18 +00:00
|
|
|
let local_instance = settings.get_hostname_without_port()?;
|
2020-08-18 13:12:03 +00:00
|
|
|
|
2021-08-04 21:13:51 +00:00
|
|
|
if !settings.federation.enabled {
|
2020-08-18 13:12:03 +00:00
|
|
|
return if domain == local_instance {
|
|
|
|
Ok(())
|
|
|
|
} else {
|
|
|
|
Err(
|
|
|
|
anyhow!(
|
|
|
|
"Trying to connect with {}, but federation is disabled",
|
|
|
|
domain
|
|
|
|
)
|
|
|
|
.into(),
|
|
|
|
)
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-10-22 16:12:43 +00:00
|
|
|
let host = apub_id.host_str().context(location_info!())?;
|
|
|
|
let host_as_ip = host.parse::<IpAddr>();
|
|
|
|
if host == "localhost" || host_as_ip.is_ok() {
|
2021-02-05 16:15:29 +00:00
|
|
|
return Err(anyhow!("invalid hostname {}: {}", host, apub_id).into());
|
2020-10-22 16:12:43 +00:00
|
|
|
}
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
if apub_id.scheme() != settings.get_protocol_string() {
|
2021-02-05 16:15:29 +00:00
|
|
|
return Err(anyhow!("invalid apub id scheme {}: {}", apub_id.scheme(), apub_id).into());
|
2020-04-17 17:34:18 +00:00
|
|
|
}
|
|
|
|
|
2021-04-21 13:36:07 +00:00
|
|
|
// TODO: might be good to put the part above in one method, and below in another
|
|
|
|
// (which only gets called in apub::objects)
|
|
|
|
// -> no that doesnt make sense, we still need the code below for blocklist and strict allowlist
|
2021-09-22 15:57:09 +00:00
|
|
|
if let Some(blocked) = settings.to_owned().federation.blocked_instances {
|
2021-04-21 13:36:07 +00:00
|
|
|
if blocked.contains(&domain) {
|
|
|
|
return Err(anyhow!("{} is in federation blocklist", domain).into());
|
|
|
|
}
|
|
|
|
}
|
2021-03-01 17:24:11 +00:00
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
if let Some(mut allowed) = settings.to_owned().federation.allowed_instances {
|
2021-04-21 13:36:07 +00:00
|
|
|
// Only check allowlist if this is a community, or strict allowlist is enabled.
|
2021-09-22 15:57:09 +00:00
|
|
|
let strict_allowlist = settings.to_owned().federation.strict_allowlist;
|
2021-04-21 13:36:07 +00:00
|
|
|
if use_strict_allowlist || strict_allowlist {
|
|
|
|
// need to allow this explicitly because apub receive might contain objects from our local
|
|
|
|
// instance.
|
|
|
|
allowed.push(local_instance);
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2021-04-21 13:36:07 +00:00
|
|
|
if !allowed.contains(&domain) {
|
|
|
|
return Err(anyhow!("{} not in federation allowlist", domain).into());
|
|
|
|
}
|
2020-08-13 20:26:49 +00:00
|
|
|
}
|
2020-04-17 17:34:18 +00:00
|
|
|
}
|
2021-04-21 13:36:07 +00:00
|
|
|
|
|
|
|
Ok(())
|
2020-04-17 17:34:18 +00:00
|
|
|
}
|
2020-04-24 19:55:54 +00:00
|
|
|
|
2021-02-04 16:34:58 +00:00
|
|
|
pub enum EndpointType {
|
|
|
|
Community,
|
2021-03-10 22:33:55 +00:00
|
|
|
Person,
|
2021-02-04 16:34:58 +00:00
|
|
|
Post,
|
|
|
|
Comment,
|
|
|
|
PrivateMessage,
|
|
|
|
}
|
|
|
|
|
2021-07-20 04:29:50 +00:00
|
|
|
/// Generates an apub endpoint for a given domain, IE xyz.tld
|
2021-10-25 16:09:21 +00:00
|
|
|
pub fn generate_local_apub_endpoint(
|
2021-02-04 16:34:58 +00:00
|
|
|
endpoint_type: EndpointType,
|
|
|
|
name: &str,
|
2021-07-20 04:29:50 +00:00
|
|
|
domain: &str,
|
2021-03-02 12:41:48 +00:00
|
|
|
) -> Result<DbUrl, ParseError> {
|
2021-02-04 16:34:58 +00:00
|
|
|
let point = match endpoint_type {
|
|
|
|
EndpointType::Community => "c",
|
2021-03-10 22:33:55 +00:00
|
|
|
EndpointType::Person => "u",
|
2021-02-04 16:34:58 +00:00
|
|
|
EndpointType::Post => "post",
|
|
|
|
EndpointType::Comment => "comment",
|
|
|
|
EndpointType::PrivateMessage => "private_message",
|
|
|
|
};
|
|
|
|
|
2021-07-20 04:29:50 +00:00
|
|
|
Ok(Url::parse(&format!("{}/{}/{}", domain, point, name))?.into())
|
|
|
|
}
|
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
pub fn generate_followers_url(actor_id: &DbUrl) -> Result<DbUrl, ParseError> {
|
2021-02-04 16:34:58 +00:00
|
|
|
Ok(Url::parse(&format!("{}/followers", actor_id))?.into())
|
|
|
|
}
|
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
pub fn generate_inbox_url(actor_id: &DbUrl) -> Result<DbUrl, ParseError> {
|
2021-02-04 16:34:58 +00:00
|
|
|
Ok(Url::parse(&format!("{}/inbox", actor_id))?.into())
|
|
|
|
}
|
|
|
|
|
2021-03-02 12:41:48 +00:00
|
|
|
pub fn generate_shared_inbox_url(actor_id: &DbUrl) -> Result<DbUrl, LemmyError> {
|
2021-07-31 20:58:11 +00:00
|
|
|
let actor_id: Url = actor_id.clone().into();
|
2021-02-04 16:34:58 +00:00
|
|
|
let url = format!(
|
|
|
|
"{}://{}{}/inbox",
|
|
|
|
&actor_id.scheme(),
|
|
|
|
&actor_id.host_str().context(location_info!())?,
|
|
|
|
if let Some(port) = actor_id.port() {
|
|
|
|
format!(":{}", port)
|
|
|
|
} else {
|
|
|
|
"".to_string()
|
|
|
|
},
|
|
|
|
);
|
|
|
|
Ok(Url::parse(&url)?.into())
|
|
|
|
}
|
|
|
|
|
2021-10-06 20:20:05 +00:00
|
|
|
pub fn generate_outbox_url(actor_id: &DbUrl) -> Result<DbUrl, ParseError> {
|
|
|
|
Ok(Url::parse(&format!("{}/outbox", actor_id))?.into())
|
|
|
|
}
|
|
|
|
|
2021-08-17 18:04:58 +00:00
|
|
|
fn generate_moderators_url(community_id: &DbUrl) -> Result<DbUrl, LemmyError> {
|
2021-03-08 13:40:28 +00:00
|
|
|
Ok(Url::parse(&format!("{}/moderators", community_id))?.into())
|
|
|
|
}
|
|
|
|
|
2021-07-20 04:29:50 +00:00
|
|
|
/// Takes in a shortname of the type dessalines@xyz.tld or dessalines (assumed to be local), and outputs the actor id.
|
|
|
|
/// Used in the API for communities and users.
|
2021-10-25 16:09:21 +00:00
|
|
|
pub async fn get_actor_id_from_name(
|
|
|
|
webfinger_type: WebfingerType,
|
2021-07-20 04:29:50 +00:00
|
|
|
short_name: &str,
|
2021-10-25 16:09:21 +00:00
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<DbUrl, LemmyError> {
|
2021-07-20 04:29:50 +00:00
|
|
|
let split = short_name.split('@').collect::<Vec<&str>>();
|
|
|
|
|
|
|
|
let name = split[0];
|
|
|
|
|
|
|
|
// If there's no @, its local
|
2021-10-25 16:09:21 +00:00
|
|
|
if split.len() == 1 {
|
|
|
|
let domain = context.settings().get_protocol_and_hostname();
|
|
|
|
let endpoint_type = match webfinger_type {
|
|
|
|
WebfingerType::Person => EndpointType::Person,
|
|
|
|
WebfingerType::Group => EndpointType::Community,
|
|
|
|
};
|
|
|
|
Ok(generate_local_apub_endpoint(endpoint_type, name, &domain)?)
|
2021-07-20 04:29:50 +00:00
|
|
|
} else {
|
2021-10-25 16:09:21 +00:00
|
|
|
let protocol = context.settings().get_protocol_string();
|
|
|
|
Ok(
|
|
|
|
webfinger_resolve_actor(name, split[1], webfinger_type, context.client(), protocol)
|
|
|
|
.await?
|
|
|
|
.into(),
|
|
|
|
)
|
|
|
|
}
|
2021-07-20 04:29:50 +00:00
|
|
|
}
|
|
|
|
|
2020-10-19 14:29:35 +00:00
|
|
|
/// Store a sent or received activity in the database, for logging purposes. These records are not
|
|
|
|
/// persistent.
|
2021-11-16 02:07:07 +00:00
|
|
|
async fn insert_activity(
|
2020-10-23 12:29:56 +00:00
|
|
|
ap_id: &Url,
|
2021-11-16 02:07:07 +00:00
|
|
|
activity: serde_json::Value,
|
2020-07-10 18:15:41 +00:00
|
|
|
local: bool,
|
2020-11-06 13:06:47 +00:00
|
|
|
sensitive: bool,
|
2020-07-10 18:15:41 +00:00
|
|
|
pool: &DbPool,
|
2021-11-16 02:07:07 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2021-03-02 12:41:48 +00:00
|
|
|
let ap_id = ap_id.to_owned().into();
|
2020-07-10 18:15:41 +00:00
|
|
|
blocking(pool, move |conn| {
|
2021-11-16 02:07:07 +00:00
|
|
|
Activity::insert(conn, ap_id, activity, local, sensitive)
|
2020-07-10 18:15:41 +00:00
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
Ok(())
|
|
|
|
}
|