2021-11-03 17:33:51 +00:00
|
|
|
use crate::{
|
|
|
|
objects::{community::ApubCommunity, person::ApubPerson},
|
|
|
|
protocol::objects::{group::Group, person::Person},
|
2022-11-23 23:40:47 +00:00
|
|
|
ActorType,
|
2021-11-03 17:33:51 +00:00
|
|
|
};
|
2022-06-08 15:45:39 +00:00
|
|
|
use activitypub_federation::traits::{Actor, ApubObject};
|
2021-11-19 17:47:06 +00:00
|
|
|
use chrono::NaiveDateTime;
|
2022-06-02 14:33:41 +00:00
|
|
|
use lemmy_utils::error::LemmyError;
|
2021-11-03 17:33:51 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
2022-05-06 23:53:33 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
2021-11-19 17:47:06 +00:00
|
|
|
use url::Url;
|
2021-11-03 17:33:51 +00:00
|
|
|
|
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub enum UserOrCommunity {
|
|
|
|
User(ApubPerson),
|
|
|
|
Community(ApubCommunity),
|
|
|
|
}
|
|
|
|
|
2022-05-06 23:53:33 +00:00
|
|
|
#[derive(Serialize, Deserialize, Clone, Debug)]
|
2021-11-03 17:33:51 +00:00
|
|
|
#[serde(untagged)]
|
|
|
|
pub enum PersonOrGroup {
|
|
|
|
Person(Person),
|
|
|
|
Group(Group),
|
|
|
|
}
|
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq)]
|
2022-05-06 23:53:33 +00:00
|
|
|
pub enum PersonOrGroupType {
|
|
|
|
Person,
|
|
|
|
Group,
|
|
|
|
}
|
|
|
|
|
2021-11-03 17:33:51 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl ApubObject for UserOrCommunity {
|
|
|
|
type DataType = LemmyContext;
|
|
|
|
type ApubType = PersonOrGroup;
|
2022-03-23 21:27:51 +00:00
|
|
|
type DbType = ();
|
2022-06-02 14:33:41 +00:00
|
|
|
type Error = LemmyError;
|
2021-11-03 17:33:51 +00:00
|
|
|
|
|
|
|
fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
|
|
|
|
Some(match self {
|
|
|
|
UserOrCommunity::User(p) => p.last_refreshed_at,
|
|
|
|
UserOrCommunity::Community(p) => p.last_refreshed_at,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-11-03 17:33:51 +00:00
|
|
|
async fn read_from_apub_id(
|
|
|
|
object_id: Url,
|
|
|
|
data: &Self::DataType,
|
|
|
|
) -> Result<Option<Self>, LemmyError> {
|
|
|
|
let person = ApubPerson::read_from_apub_id(object_id.clone(), data).await?;
|
|
|
|
Ok(match person {
|
|
|
|
Some(o) => Some(UserOrCommunity::User(o)),
|
|
|
|
None => ApubCommunity::read_from_apub_id(object_id, data)
|
|
|
|
.await?
|
|
|
|
.map(UserOrCommunity::Community),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-11-03 17:33:51 +00:00
|
|
|
async fn delete(self, data: &Self::DataType) -> Result<(), LemmyError> {
|
|
|
|
match self {
|
|
|
|
UserOrCommunity::User(p) => p.delete(data).await,
|
|
|
|
UserOrCommunity::Community(p) => p.delete(data).await,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-06 12:37:55 +00:00
|
|
|
async fn into_apub(self, _data: &Self::DataType) -> Result<Self::ApubType, LemmyError> {
|
2021-11-03 17:33:51 +00:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-11-06 17:35:14 +00:00
|
|
|
async fn verify(
|
|
|
|
apub: &Self::ApubType,
|
|
|
|
expected_domain: &Url,
|
|
|
|
data: &Self::DataType,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
match apub {
|
|
|
|
PersonOrGroup::Person(a) => {
|
|
|
|
ApubPerson::verify(a, expected_domain, data, request_counter).await
|
|
|
|
}
|
|
|
|
PersonOrGroup::Group(a) => {
|
|
|
|
ApubCommunity::verify(a, expected_domain, data, request_counter).await
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-11-03 17:33:51 +00:00
|
|
|
async fn from_apub(
|
2021-11-06 12:37:55 +00:00
|
|
|
apub: Self::ApubType,
|
2021-11-03 17:33:51 +00:00
|
|
|
data: &Self::DataType,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<Self, LemmyError> {
|
|
|
|
Ok(match apub {
|
2021-11-06 17:35:14 +00:00
|
|
|
PersonOrGroup::Person(p) => {
|
|
|
|
UserOrCommunity::User(ApubPerson::from_apub(p, data, request_counter).await?)
|
|
|
|
}
|
|
|
|
PersonOrGroup::Group(p) => {
|
|
|
|
UserOrCommunity::Community(ApubCommunity::from_apub(p, data, request_counter).await?)
|
|
|
|
}
|
2021-11-03 17:33:51 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-08 15:45:39 +00:00
|
|
|
impl Actor for UserOrCommunity {
|
2022-06-02 14:33:41 +00:00
|
|
|
fn public_key(&self) -> &str {
|
2021-11-03 17:33:51 +00:00
|
|
|
match self {
|
|
|
|
UserOrCommunity::User(p) => p.public_key(),
|
|
|
|
UserOrCommunity::Community(p) => p.public_key(),
|
|
|
|
}
|
|
|
|
}
|
2022-06-08 15:45:39 +00:00
|
|
|
|
|
|
|
fn inbox(&self) -> Url {
|
|
|
|
unimplemented!()
|
|
|
|
}
|
2021-11-03 17:33:51 +00:00
|
|
|
}
|
2022-11-23 23:40:47 +00:00
|
|
|
|
|
|
|
impl ActorType for UserOrCommunity {
|
|
|
|
fn actor_id(&self) -> Url {
|
|
|
|
match self {
|
|
|
|
UserOrCommunity::User(u) => u.actor_id(),
|
|
|
|
UserOrCommunity::Community(c) => c.actor_id(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn private_key(&self) -> Option<String> {
|
|
|
|
match self {
|
|
|
|
UserOrCommunity::User(u) => u.private_key(),
|
|
|
|
UserOrCommunity::Community(c) => c.private_key(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|