156 lines
4.8 KiB
Rust
156 lines
4.8 KiB
Rust
use crate::{fetcher::should_refetch_actor, objects::FromApub};
|
|
use anyhow::anyhow;
|
|
use diesel::{NotFound, PgConnection};
|
|
use lemmy_api_common::blocking;
|
|
use lemmy_apub_lib::{traits::ApubObject, APUB_JSON_CONTENT_TYPE};
|
|
use lemmy_db_queries::DbPool;
|
|
use lemmy_db_schema::DbUrl;
|
|
use lemmy_utils::{request::retry, settings::structs::Settings, LemmyError};
|
|
use lemmy_websocket::LemmyContext;
|
|
use reqwest::StatusCode;
|
|
use serde::{Deserialize, Serialize};
|
|
use std::{
|
|
fmt::{Debug, Display, Formatter},
|
|
marker::PhantomData,
|
|
time::Duration,
|
|
};
|
|
use url::Url;
|
|
|
|
/// Maximum number of HTTP requests allowed to handle a single incoming activity (or a single object
|
|
/// fetch through the search). This should be configurable.
|
|
static REQUEST_LIMIT: i32 = 25;
|
|
|
|
#[derive(Clone, PartialEq, Serialize, Deserialize, Debug)]
|
|
pub struct ObjectId<Kind>(Url, #[serde(skip)] PhantomData<Kind>)
|
|
where
|
|
Kind: FromApub + ApubObject<DataType = PgConnection> + Send + 'static,
|
|
for<'de2> <Kind as FromApub>::ApubType: serde::Deserialize<'de2>;
|
|
|
|
impl<Kind> ObjectId<Kind>
|
|
where
|
|
Kind: FromApub + ApubObject<DataType = PgConnection> + Send + 'static,
|
|
for<'de> <Kind as FromApub>::ApubType: serde::Deserialize<'de>,
|
|
{
|
|
pub fn new<T>(url: T) -> Self
|
|
where
|
|
T: Into<Url>,
|
|
{
|
|
ObjectId(url.into(), PhantomData::<Kind>)
|
|
}
|
|
|
|
pub fn inner(&self) -> &Url {
|
|
&self.0
|
|
}
|
|
|
|
/// Fetches an activitypub object, either from local database (if possible), or over http.
|
|
pub async fn dereference(
|
|
&self,
|
|
context: &LemmyContext,
|
|
request_counter: &mut i32,
|
|
) -> Result<Kind, LemmyError> {
|
|
let db_object = self.dereference_from_db(context.pool()).await?;
|
|
|
|
// if its a local object, only fetch it from the database and not over http
|
|
if self.0.domain() == Some(&Settings::get().get_hostname_without_port()?) {
|
|
return match db_object {
|
|
None => Err(NotFound {}.into()),
|
|
Some(o) => Ok(o),
|
|
};
|
|
}
|
|
|
|
if let Some(object) = db_object {
|
|
if let Some(last_refreshed_at) = object.last_refreshed_at() {
|
|
// TODO: rename to should_refetch_object()
|
|
if should_refetch_actor(last_refreshed_at) {
|
|
return self
|
|
.dereference_from_http(context, request_counter, Some(object))
|
|
.await;
|
|
}
|
|
}
|
|
Ok(object)
|
|
} else {
|
|
self
|
|
.dereference_from_http(context, request_counter, None)
|
|
.await
|
|
}
|
|
}
|
|
|
|
/// Fetch an object from the local db. Instead of falling back to http, this throws an error if
|
|
/// the object is not found in the database.
|
|
pub async fn dereference_local(&self, context: &LemmyContext) -> Result<Kind, LemmyError> {
|
|
let object = self.dereference_from_db(context.pool()).await?;
|
|
object.ok_or_else(|| anyhow!("object not found in database {}", self).into())
|
|
}
|
|
|
|
/// returning none means the object was not found in local db
|
|
async fn dereference_from_db(&self, pool: &DbPool) -> Result<Option<Kind>, LemmyError> {
|
|
let id = self.0.clone();
|
|
blocking(pool, move |conn| ApubObject::read_from_apub_id(conn, id)).await?
|
|
}
|
|
|
|
async fn dereference_from_http(
|
|
&self,
|
|
context: &LemmyContext,
|
|
request_counter: &mut i32,
|
|
db_object: Option<Kind>,
|
|
) -> Result<Kind, LemmyError> {
|
|
// dont fetch local objects this way
|
|
debug_assert!(self.0.domain() != Some(&Settings::get().hostname));
|
|
|
|
*request_counter += 1;
|
|
if *request_counter > REQUEST_LIMIT {
|
|
return Err(LemmyError::from(anyhow!("Request limit reached")));
|
|
}
|
|
|
|
let res = retry(|| {
|
|
context
|
|
.client()
|
|
.get(self.0.as_str())
|
|
.header("Accept", APUB_JSON_CONTENT_TYPE)
|
|
.timeout(Duration::from_secs(60))
|
|
.send()
|
|
})
|
|
.await?;
|
|
|
|
if res.status() == StatusCode::GONE {
|
|
if let Some(db_object) = db_object {
|
|
blocking(context.pool(), move |conn| db_object.delete(conn)).await??;
|
|
}
|
|
return Err(anyhow!("Fetched remote object {} which was deleted", self).into());
|
|
}
|
|
|
|
let res2: Kind::ApubType = res.json().await?;
|
|
|
|
Ok(Kind::from_apub(&res2, context, self.inner(), request_counter).await?)
|
|
}
|
|
}
|
|
|
|
impl<Kind> Display for ObjectId<Kind>
|
|
where
|
|
Kind: FromApub + ApubObject<DataType = PgConnection> + Send + 'static,
|
|
for<'de> <Kind as FromApub>::ApubType: serde::Deserialize<'de>,
|
|
{
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
write!(f, "{}", self.0.to_string())
|
|
}
|
|
}
|
|
|
|
impl<Kind> From<ObjectId<Kind>> for Url
|
|
where
|
|
Kind: FromApub + ApubObject<DataType = PgConnection> + Send + 'static,
|
|
for<'de> <Kind as FromApub>::ApubType: serde::Deserialize<'de>,
|
|
{
|
|
fn from(id: ObjectId<Kind>) -> Self {
|
|
id.0
|
|
}
|
|
}
|
|
|
|
impl<Kind> From<ObjectId<Kind>> for DbUrl
|
|
where
|
|
Kind: FromApub + ApubObject<DataType = PgConnection> + Send + 'static,
|
|
for<'de> <Kind as FromApub>::ApubType: serde::Deserialize<'de>,
|
|
{
|
|
fn from(id: ObjectId<Kind>) -> Self {
|
|
id.0.into()
|
|
}
|
|
}
|