2020-11-24 17:53:43 +00:00
|
|
|
use crate::{
|
2021-08-12 12:48:09 +00:00
|
|
|
check_is_apub_id_valid,
|
2021-10-06 20:20:05 +00:00
|
|
|
context::lemmy_context,
|
|
|
|
generate_outbox_url,
|
2021-10-18 21:36:44 +00:00
|
|
|
objects::{ImageObject, Source},
|
2020-11-24 17:53:43 +00:00
|
|
|
};
|
2020-08-01 13:25:17 +00:00
|
|
|
use activitystreams::{
|
2021-08-12 12:48:09 +00:00
|
|
|
actor::Endpoints,
|
|
|
|
base::AnyBase,
|
2021-10-18 21:36:44 +00:00
|
|
|
chrono::NaiveDateTime,
|
2021-08-12 12:48:09 +00:00
|
|
|
object::{kind::ImageType, Tombstone},
|
|
|
|
primitives::OneOrMany,
|
|
|
|
unparsed::Unparsed,
|
2020-06-03 15:54:15 +00:00
|
|
|
};
|
2021-10-18 21:36:44 +00:00
|
|
|
use chrono::{DateTime, FixedOffset};
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_api_common::blocking;
|
2021-08-12 12:48:09 +00:00
|
|
|
use lemmy_apub_lib::{
|
2021-10-06 20:20:05 +00:00
|
|
|
signatures::PublicKey,
|
2021-10-18 21:36:44 +00:00
|
|
|
traits::{ActorType, ApubObject, FromApub, ToApub},
|
2021-08-12 12:48:09 +00:00
|
|
|
values::{MediaTypeHtml, MediaTypeMarkdown},
|
2021-10-06 20:20:05 +00:00
|
|
|
verify::verify_domains_match,
|
2021-08-12 12:48:09 +00:00
|
|
|
};
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
naive_now,
|
2021-03-11 04:43:11 +00:00
|
|
|
source::person::{Person as DbPerson, PersonForm},
|
2021-10-16 13:33:38 +00:00
|
|
|
DbPool,
|
2020-07-10 18:15:41 +00:00
|
|
|
};
|
2020-09-14 15:29:50 +00:00
|
|
|
use lemmy_utils::{
|
2021-08-12 12:48:09 +00:00
|
|
|
utils::{check_slurs, check_slurs_opt, convert_datetime, markdown_to_html},
|
2020-09-14 15:29:50 +00:00
|
|
|
LemmyError,
|
|
|
|
};
|
2020-09-24 13:53:21 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
2021-08-12 12:48:09 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use serde_with::skip_serializing_none;
|
2021-10-18 21:36:44 +00:00
|
|
|
use std::ops::Deref;
|
2020-07-17 21:11:07 +00:00
|
|
|
use url::Url;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2021-08-12 12:48:09 +00:00
|
|
|
#[derive(Clone, Copy, Debug, Deserialize, Serialize, PartialEq)]
|
|
|
|
pub enum UserTypes {
|
|
|
|
Person,
|
|
|
|
Service,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[skip_serializing_none]
|
|
|
|
#[derive(Clone, Debug, Deserialize, Serialize)]
|
|
|
|
#[serde(rename_all = "camelCase")]
|
|
|
|
pub struct Person {
|
|
|
|
#[serde(rename = "@context")]
|
|
|
|
context: OneOrMany<AnyBase>,
|
|
|
|
#[serde(rename = "type")]
|
|
|
|
kind: UserTypes,
|
|
|
|
id: Url,
|
|
|
|
/// username, set at account creation and can never be changed
|
|
|
|
preferred_username: String,
|
|
|
|
/// displayname (can be changed at any time)
|
|
|
|
name: Option<String>,
|
|
|
|
content: Option<String>,
|
|
|
|
media_type: Option<MediaTypeHtml>,
|
|
|
|
source: Option<Source>,
|
|
|
|
/// user avatar
|
|
|
|
icon: Option<ImageObject>,
|
|
|
|
/// user banner
|
|
|
|
image: Option<ImageObject>,
|
|
|
|
matrix_user_id: Option<String>,
|
|
|
|
inbox: Url,
|
|
|
|
/// mandatory field in activitypub, currently empty in lemmy
|
|
|
|
outbox: Url,
|
|
|
|
endpoints: Endpoints<Url>,
|
|
|
|
public_key: PublicKey,
|
2021-10-21 17:25:35 +00:00
|
|
|
published: Option<DateTime<FixedOffset>>,
|
2021-08-12 12:48:09 +00:00
|
|
|
updated: Option<DateTime<FixedOffset>>,
|
|
|
|
#[serde(flatten)]
|
|
|
|
unparsed: Unparsed,
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: can generate this with a derive macro
|
|
|
|
impl Person {
|
|
|
|
pub(crate) fn id(&self, expected_domain: &Url) -> Result<&Url, LemmyError> {
|
|
|
|
verify_domains_match(&self.id, expected_domain)?;
|
|
|
|
Ok(&self.id)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-18 21:36:44 +00:00
|
|
|
#[derive(Clone, Debug)]
|
|
|
|
pub struct ApubPerson(DbPerson);
|
|
|
|
|
|
|
|
impl Deref for ApubPerson {
|
|
|
|
type Target = DbPerson;
|
|
|
|
fn deref(&self) -> &Self::Target {
|
|
|
|
&self.0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<DbPerson> for ApubPerson {
|
|
|
|
fn from(p: DbPerson) -> Self {
|
|
|
|
ApubPerson { 0: p }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2021-10-18 21:36:44 +00:00
|
|
|
impl ApubObject for ApubPerson {
|
|
|
|
type DataType = LemmyContext;
|
|
|
|
|
|
|
|
fn last_refreshed_at(&self) -> Option<NaiveDateTime> {
|
|
|
|
Some(self.last_refreshed_at)
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn read_from_apub_id(
|
|
|
|
object_id: Url,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<Option<Self>, LemmyError> {
|
|
|
|
Ok(
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
DbPerson::read_from_apub_id(conn, object_id)
|
|
|
|
})
|
|
|
|
.await??
|
|
|
|
.map(Into::into),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn delete(self, context: &LemmyContext) -> Result<(), LemmyError> {
|
|
|
|
blocking(context.pool(), move |conn| {
|
|
|
|
DbPerson::update_deleted(conn, self.id, true)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ActorType for ApubPerson {
|
|
|
|
fn is_local(&self) -> bool {
|
|
|
|
self.local
|
|
|
|
}
|
|
|
|
fn actor_id(&self) -> Url {
|
|
|
|
self.actor_id.to_owned().into_inner()
|
|
|
|
}
|
|
|
|
fn name(&self) -> String {
|
|
|
|
self.name.clone()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn public_key(&self) -> Option<String> {
|
|
|
|
self.public_key.to_owned()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn private_key(&self) -> Option<String> {
|
|
|
|
self.private_key.to_owned()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn inbox_url(&self) -> Url {
|
|
|
|
self.inbox_url.clone().into()
|
|
|
|
}
|
|
|
|
|
|
|
|
fn shared_inbox_url(&self) -> Option<Url> {
|
|
|
|
self.shared_inbox_url.clone().map(|s| s.into_inner())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl ToApub for ApubPerson {
|
2021-08-12 12:48:09 +00:00
|
|
|
type ApubType = Person;
|
2021-10-18 21:36:44 +00:00
|
|
|
type TombstoneType = Tombstone;
|
|
|
|
type DataType = DbPool;
|
2020-04-24 21:30:27 +00:00
|
|
|
|
2021-08-12 12:48:09 +00:00
|
|
|
async fn to_apub(&self, _pool: &DbPool) -> Result<Person, LemmyError> {
|
2021-04-21 21:41:14 +00:00
|
|
|
let kind = if self.bot_account {
|
|
|
|
UserTypes::Service
|
|
|
|
} else {
|
|
|
|
UserTypes::Person
|
|
|
|
};
|
2021-08-12 12:48:09 +00:00
|
|
|
let source = self.bio.clone().map(|bio| Source {
|
|
|
|
content: bio,
|
|
|
|
media_type: MediaTypeMarkdown::Markdown,
|
|
|
|
});
|
|
|
|
let icon = self.avatar.clone().map(|url| ImageObject {
|
|
|
|
kind: ImageType::Image,
|
|
|
|
url: url.into(),
|
|
|
|
});
|
|
|
|
let image = self.banner.clone().map(|url| ImageObject {
|
|
|
|
kind: ImageType::Image,
|
|
|
|
url: url.into(),
|
|
|
|
});
|
|
|
|
|
|
|
|
let person = Person {
|
|
|
|
context: lemmy_context(),
|
|
|
|
kind,
|
|
|
|
id: self.actor_id.to_owned().into_inner(),
|
|
|
|
preferred_username: self.name.clone(),
|
|
|
|
name: self.display_name.clone(),
|
|
|
|
content: self.bio.as_ref().map(|b| markdown_to_html(b)),
|
|
|
|
media_type: self.bio.as_ref().map(|_| MediaTypeHtml::Html),
|
|
|
|
source,
|
|
|
|
icon,
|
|
|
|
image,
|
|
|
|
matrix_user_id: self.matrix_user_id.clone(),
|
2021-10-21 17:25:35 +00:00
|
|
|
published: Some(convert_datetime(self.published)),
|
2021-10-06 20:20:05 +00:00
|
|
|
outbox: generate_outbox_url(&self.actor_id)?.into(),
|
2021-08-12 12:48:09 +00:00
|
|
|
endpoints: Endpoints {
|
|
|
|
shared_inbox: self.shared_inbox_url.clone().map(|s| s.into()),
|
2020-11-18 16:04:35 +00:00
|
|
|
..Default::default()
|
2021-08-12 12:48:09 +00:00
|
|
|
},
|
|
|
|
public_key: self.get_public_key()?,
|
|
|
|
updated: self.updated.map(convert_datetime),
|
|
|
|
unparsed: Default::default(),
|
|
|
|
inbox: self.inbox_url.clone().into(),
|
|
|
|
};
|
|
|
|
Ok(person)
|
2020-04-24 19:55:54 +00:00
|
|
|
}
|
2020-07-01 12:54:29 +00:00
|
|
|
fn to_tombstone(&self) -> Result<Tombstone, LemmyError> {
|
2020-05-01 14:07:38 +00:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-04-24 19:55:54 +00:00
|
|
|
}
|
2020-04-10 13:50:40 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2021-10-18 21:36:44 +00:00
|
|
|
impl FromApub for ApubPerson {
|
2021-08-12 12:48:09 +00:00
|
|
|
type ApubType = Person;
|
2021-10-18 21:36:44 +00:00
|
|
|
type DataType = LemmyContext;
|
2020-10-19 14:29:35 +00:00
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
async fn from_apub(
|
2021-08-12 12:48:09 +00:00
|
|
|
person: &Person,
|
2020-12-08 17:38:48 +00:00
|
|
|
context: &LemmyContext,
|
2021-08-12 12:48:09 +00:00
|
|
|
expected_domain: &Url,
|
2020-10-22 18:27:32 +00:00
|
|
|
_request_counter: &mut i32,
|
2021-10-18 21:36:44 +00:00
|
|
|
) -> Result<ApubPerson, LemmyError> {
|
2021-08-12 12:48:09 +00:00
|
|
|
let actor_id = Some(person.id(expected_domain)?.clone().into());
|
|
|
|
let name = person.preferred_username.clone();
|
|
|
|
let display_name: Option<String> = person.name.clone();
|
|
|
|
let bio = person.source.clone().map(|s| s.content);
|
|
|
|
let shared_inbox = person.endpoints.shared_inbox.clone().map(|s| s.into());
|
|
|
|
let bot_account = match person.kind {
|
|
|
|
UserTypes::Person => false,
|
|
|
|
UserTypes::Service => true,
|
2020-05-16 00:23:20 +00:00
|
|
|
};
|
|
|
|
|
2021-09-22 15:57:09 +00:00
|
|
|
let slur_regex = &context.settings().slur_regex();
|
|
|
|
check_slurs(&name, slur_regex)?;
|
|
|
|
check_slurs_opt(&display_name, slur_regex)?;
|
|
|
|
check_slurs_opt(&bio, slur_regex)?;
|
|
|
|
|
|
|
|
check_is_apub_id_valid(&person.id, false, &context.settings())?;
|
2020-08-05 12:18:08 +00:00
|
|
|
|
2021-08-12 12:48:09 +00:00
|
|
|
let person_form = PersonForm {
|
2020-08-06 12:53:58 +00:00
|
|
|
name,
|
2021-04-01 17:57:45 +00:00
|
|
|
display_name: Some(display_name),
|
2020-11-09 14:29:36 +00:00
|
|
|
banned: None,
|
2021-03-10 22:33:55 +00:00
|
|
|
deleted: None,
|
2021-08-12 12:48:09 +00:00
|
|
|
avatar: Some(person.icon.clone().map(|i| i.url.into())),
|
|
|
|
banner: Some(person.image.clone().map(|i| i.url.into())),
|
2021-10-21 17:25:35 +00:00
|
|
|
published: person.published.map(|u| u.clone().naive_local()),
|
2021-08-12 12:48:09 +00:00
|
|
|
updated: person.updated.map(|u| u.clone().naive_local()),
|
|
|
|
actor_id,
|
2020-09-25 15:16:49 +00:00
|
|
|
bio: Some(bio),
|
2021-03-10 22:33:55 +00:00
|
|
|
local: Some(false),
|
2021-03-22 14:28:00 +00:00
|
|
|
admin: Some(false),
|
2021-08-12 12:48:09 +00:00
|
|
|
bot_account: Some(bot_account),
|
2020-04-07 21:02:32 +00:00
|
|
|
private_key: None,
|
2021-08-12 12:48:09 +00:00
|
|
|
public_key: Some(Some(person.public_key.public_key_pem.clone())),
|
2020-04-07 21:02:32 +00:00
|
|
|
last_refreshed_at: Some(naive_now()),
|
2021-08-12 12:48:09 +00:00
|
|
|
inbox_url: Some(person.inbox.to_owned().into()),
|
2021-02-04 16:34:58 +00:00
|
|
|
shared_inbox_url: Some(shared_inbox),
|
2021-08-12 12:48:09 +00:00
|
|
|
matrix_user_id: Some(person.matrix_user_id.clone()),
|
|
|
|
};
|
|
|
|
let person = blocking(context.pool(), move |conn| {
|
|
|
|
DbPerson::upsert(conn, &person_form)
|
2020-04-07 21:02:32 +00:00
|
|
|
})
|
2021-08-12 12:48:09 +00:00
|
|
|
.await??;
|
2021-10-18 21:36:44 +00:00
|
|
|
Ok(person.into())
|
2020-04-07 21:02:32 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-21 17:25:35 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
use crate::objects::tests::{file_to_json_object, init_context};
|
|
|
|
use assert_json_diff::assert_json_include;
|
|
|
|
use lemmy_db_schema::traits::Crud;
|
|
|
|
use serial_test::serial;
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
#[serial]
|
|
|
|
async fn test_fetch_lemmy_person() {
|
|
|
|
let context = init_context();
|
|
|
|
let json = file_to_json_object("assets/lemmy-person.json");
|
|
|
|
let url = Url::parse("https://lemmy.ml/u/nutomic").unwrap();
|
|
|
|
let mut request_counter = 0;
|
|
|
|
let person = ApubPerson::from_apub(&json, &context, &url, &mut request_counter)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(person.actor_id.clone().into_inner(), url);
|
|
|
|
assert_eq!(person.name, "nutomic");
|
|
|
|
assert!(person.public_key.is_some());
|
|
|
|
assert!(!person.local);
|
|
|
|
assert!(person.bio.is_some());
|
|
|
|
assert_eq!(request_counter, 0);
|
|
|
|
|
|
|
|
let to_apub = person.to_apub(context.pool()).await.unwrap();
|
|
|
|
assert_json_include!(actual: json, expected: to_apub);
|
|
|
|
|
|
|
|
DbPerson::delete(&*context.pool().get().unwrap(), person.id).unwrap();
|
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_rt::test]
|
|
|
|
#[serial]
|
|
|
|
async fn test_fetch_pleroma_person() {
|
|
|
|
let context = init_context();
|
|
|
|
let json = file_to_json_object("assets/pleroma-person.json");
|
|
|
|
let url = Url::parse("https://queer.hacktivis.me/users/lanodan").unwrap();
|
|
|
|
let mut request_counter = 0;
|
|
|
|
let person = ApubPerson::from_apub(&json, &context, &url, &mut request_counter)
|
|
|
|
.await
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
assert_eq!(person.actor_id.clone().into_inner(), url);
|
|
|
|
assert_eq!(person.name, "lanodan");
|
|
|
|
assert!(person.public_key.is_some());
|
|
|
|
assert!(!person.local);
|
|
|
|
assert_eq!(request_counter, 0);
|
|
|
|
// TODO: pleroma uses summary for user profile, while we use content
|
|
|
|
//assert!(person.bio.is_some());
|
|
|
|
|
|
|
|
DbPerson::delete(&*context.pool().get().unwrap(), person.id).unwrap();
|
|
|
|
}
|
|
|
|
}
|