Nutomic
6f513793cb
* update activitypub-federation crate to 0.4.0 * fixes * apub compiles! * everything compiling! * almost done, federated follow failing * some test fixes * use release * add code back in
98 lines
2.7 KiB
Rust
98 lines
2.7 KiB
Rust
use crate::{
|
|
objects::{comment::ApubComment, community::ApubCommunity, post::ApubPost},
|
|
protocol::{
|
|
objects::{note::Note, page::Page},
|
|
InCommunity,
|
|
},
|
|
};
|
|
use activitypub_federation::{config::Data, traits::Object};
|
|
use chrono::NaiveDateTime;
|
|
use lemmy_api_common::context::LemmyContext;
|
|
use lemmy_db_schema::{
|
|
source::{community::Community, post::Post},
|
|
traits::Crud,
|
|
};
|
|
use lemmy_utils::error::LemmyError;
|
|
use serde::Deserialize;
|
|
use url::Url;
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub enum PostOrComment {
|
|
Post(ApubPost),
|
|
Comment(ApubComment),
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
#[serde(untagged)]
|
|
pub enum PageOrNote {
|
|
Page(Box<Page>),
|
|
Note(Note),
|
|
}
|
|
|
|
#[async_trait::async_trait]
|
|
impl Object for PostOrComment {
|
|
type DataType = LemmyContext;
|
|
type Kind = PageOrNote;
|
|
type Error = LemmyError;
|
|
|
|
fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
|
|
None
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
async fn read_from_id(
|
|
object_id: Url,
|
|
data: &Data<Self::DataType>,
|
|
) -> Result<Option<Self>, LemmyError> {
|
|
let post = ApubPost::read_from_id(object_id.clone(), data).await?;
|
|
Ok(match post {
|
|
Some(o) => Some(PostOrComment::Post(o)),
|
|
None => ApubComment::read_from_id(object_id, data)
|
|
.await?
|
|
.map(PostOrComment::Comment),
|
|
})
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
async fn delete(self, data: &Data<Self::DataType>) -> Result<(), LemmyError> {
|
|
match self {
|
|
PostOrComment::Post(p) => p.delete(data).await,
|
|
PostOrComment::Comment(c) => c.delete(data).await,
|
|
}
|
|
}
|
|
|
|
async fn into_json(self, _data: &Data<Self::DataType>) -> Result<Self::Kind, LemmyError> {
|
|
unimplemented!()
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
async fn verify(
|
|
apub: &Self::Kind,
|
|
expected_domain: &Url,
|
|
data: &Data<Self::DataType>,
|
|
) -> Result<(), LemmyError> {
|
|
match apub {
|
|
PageOrNote::Page(a) => ApubPost::verify(a, expected_domain, data).await,
|
|
PageOrNote::Note(a) => ApubComment::verify(a, expected_domain, data).await,
|
|
}
|
|
}
|
|
|
|
#[tracing::instrument(skip_all)]
|
|
async fn from_json(apub: PageOrNote, context: &Data<LemmyContext>) -> Result<Self, LemmyError> {
|
|
Ok(match apub {
|
|
PageOrNote::Page(p) => PostOrComment::Post(ApubPost::from_json(*p, context).await?),
|
|
PageOrNote::Note(n) => PostOrComment::Comment(ApubComment::from_json(n, context).await?),
|
|
})
|
|
}
|
|
}
|
|
|
|
#[async_trait::async_trait]
|
|
impl InCommunity for PostOrComment {
|
|
async fn community(&self, context: &Data<LemmyContext>) -> Result<ApubCommunity, LemmyError> {
|
|
let cid = match self {
|
|
PostOrComment::Post(p) => p.community_id,
|
|
PostOrComment::Comment(c) => Post::read(context.pool(), c.post_id).await?.community_id,
|
|
};
|
|
Ok(Community::read(context.pool(), cid).await?.into())
|
|
}
|
|
}
|