use crate::{ objects::{comment::ApubComment, community::ApubCommunity, person::ApubPerson, post::ApubPost}, protocol::objects::{group::Group, note::Note, page::Page, person::Person}, }; use activitypub_federation::{ config::Data, fetch::{object_id::ObjectId, webfinger::webfinger_resolve_actor}, traits::Object, }; use chrono::NaiveDateTime; use lemmy_api_common::context::LemmyContext; use lemmy_utils::error::{LemmyError, LemmyErrorType}; use serde::Deserialize; use url::Url; /// Converts search query to object id. The query can either be an URL, which will be treated as /// ObjectId directly, or a webfinger identifier (@user@example.com or !community@example.com) /// which gets resolved to an URL. #[tracing::instrument(skip_all)] pub(crate) async fn search_query_to_object_id( query: &str, context: &Data, ) -> Result { Ok(match Url::parse(query) { Ok(url) => { // its already an url, just go with it ObjectId::from(url).dereference(context).await? } Err(_) => { // not an url, try to resolve via webfinger let mut chars = query.chars(); let kind = chars.next(); let identifier = chars.as_str(); match kind { Some('@') => SearchableObjects::Person( webfinger_resolve_actor::(identifier, context).await?, ), Some('!') => SearchableObjects::Community( webfinger_resolve_actor::(identifier, context).await?, ), _ => return Err(LemmyErrorType::InvalidQuery)?, } } }) } /// Converts a search query to an object id. The query MUST bbe a URL which will bbe treated /// as the ObjectId directly. If the query is a webfinger identifier (@user@example.com or /// !community@example.com) this method will return an error. #[tracing::instrument(skip_all)] pub(crate) async fn search_query_to_object_id_local( query: &str, context: &Data, ) -> Result { let url = Url::parse(query)?; ObjectId::from(url).dereference_local(context).await } /// The types of ActivityPub objects that can be fetched directly by searching for their ID. #[derive(Debug)] pub(crate) enum SearchableObjects { Person(ApubPerson), Community(ApubCommunity), Post(ApubPost), Comment(ApubComment), } #[derive(Deserialize)] #[serde(untagged)] pub(crate) enum SearchableKinds { Group(Group), Person(Person), Page(Page), Note(Note), } #[async_trait::async_trait] impl Object for SearchableObjects { type DataType = LemmyContext; type Kind = SearchableKinds; type Error = LemmyError; fn last_refreshed_at(&self) -> Option { match self { SearchableObjects::Person(p) => p.last_refreshed_at(), SearchableObjects::Community(c) => c.last_refreshed_at(), SearchableObjects::Post(p) => p.last_refreshed_at(), SearchableObjects::Comment(c) => c.last_refreshed_at(), } } // TODO: this is inefficient, because if the object is not in local db, it will run 4 db queries // before finally returning an error. it would be nice if we could check all 4 tables in // a single query. // we could skip this and always return an error, but then it would always fetch objects // over http, and not be able to mark objects as deleted that were deleted by remote server. #[tracing::instrument(skip_all)] async fn read_from_id( object_id: Url, context: &Data, ) -> Result, LemmyError> { let c = ApubCommunity::read_from_id(object_id.clone(), context).await?; if let Some(c) = c { return Ok(Some(SearchableObjects::Community(c))); } let p = ApubPerson::read_from_id(object_id.clone(), context).await?; if let Some(p) = p { return Ok(Some(SearchableObjects::Person(p))); } let p = ApubPost::read_from_id(object_id.clone(), context).await?; if let Some(p) = p { return Ok(Some(SearchableObjects::Post(p))); } let c = ApubComment::read_from_id(object_id, context).await?; if let Some(c) = c { return Ok(Some(SearchableObjects::Comment(c))); } Ok(None) } #[tracing::instrument(skip_all)] async fn delete(self, data: &Data) -> Result<(), LemmyError> { match self { SearchableObjects::Person(p) => p.delete(data).await, SearchableObjects::Community(c) => c.delete(data).await, SearchableObjects::Post(p) => p.delete(data).await, SearchableObjects::Comment(c) => c.delete(data).await, } } async fn into_json(self, _data: &Data) -> Result { unimplemented!() } #[tracing::instrument(skip_all)] async fn verify( apub: &Self::Kind, expected_domain: &Url, data: &Data, ) -> Result<(), LemmyError> { match apub { SearchableKinds::Group(a) => ApubCommunity::verify(a, expected_domain, data).await, SearchableKinds::Person(a) => ApubPerson::verify(a, expected_domain, data).await, SearchableKinds::Page(a) => ApubPost::verify(a, expected_domain, data).await, SearchableKinds::Note(a) => ApubComment::verify(a, expected_domain, data).await, } } #[tracing::instrument(skip_all)] async fn from_json(apub: Self::Kind, context: &Data) -> Result { use SearchableKinds as SAT; use SearchableObjects as SO; Ok(match apub { SAT::Group(g) => SO::Community(ApubCommunity::from_json(g, context).await?), SAT::Person(p) => SO::Person(ApubPerson::from_json(p, context).await?), SAT::Page(p) => SO::Post(ApubPost::from_json(p, context).await?), SAT::Note(n) => SO::Comment(ApubComment::from_json(n, context).await?), }) } }