2022-06-02 14:33:41 +00:00
|
|
|
use crate::{fetcher::webfinger::webfinger_resolve_actor, ActorType};
|
|
|
|
use activitypub_federation::traits::ApubObject;
|
2022-03-23 21:27:51 +00:00
|
|
|
use itertools::Itertools;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_api_common::utils::blocking;
|
2022-03-23 21:27:51 +00:00
|
|
|
use lemmy_db_schema::traits::ApubActor;
|
2022-06-22 20:24:54 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2022-03-23 21:27:51 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
|
2021-09-25 15:44:52 +00:00
|
|
|
pub mod post_or_comment;
|
2021-03-11 04:43:11 +00:00
|
|
|
pub mod search;
|
2021-11-03 17:33:51 +00:00
|
|
|
pub mod user_or_community;
|
2021-11-16 17:03:09 +00:00
|
|
|
pub mod webfinger;
|
2022-03-23 21:27:51 +00:00
|
|
|
|
|
|
|
/// Resolve actor identifier (eg `!news@example.com`) from local database to avoid network requests.
|
|
|
|
/// This only works for local actors, and remote actors which were previously fetched (so it doesnt
|
|
|
|
/// trigger any new fetch).
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
|
|
pub async fn resolve_actor_identifier<Actor, DbActor>(
|
|
|
|
identifier: &str,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<DbActor, LemmyError>
|
|
|
|
where
|
2022-06-02 14:33:41 +00:00
|
|
|
Actor: ApubObject<DataType = LemmyContext, Error = LemmyError>
|
|
|
|
+ ApubObject<DbType = DbActor>
|
|
|
|
+ ActorType
|
|
|
|
+ Send
|
|
|
|
+ 'static,
|
2022-03-23 21:27:51 +00:00
|
|
|
for<'de2> <Actor as ApubObject>::ApubType: serde::Deserialize<'de2>,
|
|
|
|
DbActor: ApubActor + Send + 'static,
|
|
|
|
{
|
|
|
|
// remote actor
|
|
|
|
if identifier.contains('@') {
|
|
|
|
let (name, domain) = identifier
|
|
|
|
.splitn(2, '@')
|
|
|
|
.collect_tuple()
|
|
|
|
.expect("invalid query");
|
|
|
|
let name = name.to_string();
|
2022-06-22 20:24:54 +00:00
|
|
|
let domain = format!("{}://{}", context.settings().get_protocol_string(), domain);
|
2022-03-23 21:27:51 +00:00
|
|
|
let actor = blocking(context.pool(), move |conn| {
|
|
|
|
DbActor::read_from_name_and_domain(conn, &name, &domain)
|
|
|
|
})
|
|
|
|
.await?;
|
|
|
|
if actor.is_ok() {
|
|
|
|
Ok(actor?)
|
|
|
|
} else {
|
|
|
|
// Fetch the actor from its home instance using webfinger
|
|
|
|
let id = webfinger_resolve_actor::<Actor>(identifier, context, &mut 0).await?;
|
|
|
|
let actor: DbActor = blocking(context.pool(), move |conn| {
|
|
|
|
DbActor::read_from_apub_id(conn, &id)
|
|
|
|
})
|
|
|
|
.await??
|
|
|
|
.expect("actor exists as we fetched just before");
|
|
|
|
Ok(actor)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// local actor
|
|
|
|
else {
|
|
|
|
let identifier = identifier.to_string();
|
|
|
|
Ok(
|
|
|
|
blocking(context.pool(), move |conn| {
|
2022-07-05 21:40:44 +00:00
|
|
|
DbActor::read_from_name(conn, &identifier, false)
|
2022-03-23 21:27:51 +00:00
|
|
|
})
|
|
|
|
.await??,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|