2020-11-24 17:53:43 +00:00
|
|
|
use crate::{
|
2021-03-24 16:43:18 +00:00
|
|
|
extensions::{context::lemmy_context, person_extension::PersonExtension},
|
2020-12-08 17:38:48 +00:00
|
|
|
objects::{
|
|
|
|
check_object_domain,
|
|
|
|
get_source_markdown_value,
|
|
|
|
set_content_and_source,
|
|
|
|
FromApub,
|
|
|
|
FromApubToForm,
|
|
|
|
ToApub,
|
|
|
|
},
|
2020-11-24 17:53:43 +00:00
|
|
|
ActorType,
|
|
|
|
PersonExt,
|
|
|
|
};
|
2020-08-01 13:25:17 +00:00
|
|
|
use activitystreams::{
|
2020-07-03 12:20:28 +00:00
|
|
|
actor::{ApActor, Endpoints, Person},
|
2020-11-24 17:53:43 +00:00
|
|
|
object::{ApObject, Image, Tombstone},
|
2020-06-03 15:54:15 +00:00
|
|
|
prelude::*,
|
|
|
|
};
|
2021-03-24 16:43:18 +00:00
|
|
|
use activitystreams_ext::Ext2;
|
2020-08-11 14:31:05 +00:00
|
|
|
use anyhow::Context;
|
2021-03-25 19:19:40 +00:00
|
|
|
use lemmy_api_common::blocking;
|
2020-12-21 23:27:42 +00:00
|
|
|
use lemmy_db_queries::{ApubObject, DbPool};
|
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},
|
2020-07-10 18:15:41 +00:00
|
|
|
};
|
2020-09-14 15:29:50 +00:00
|
|
|
use lemmy_utils::{
|
|
|
|
location_info,
|
2021-03-01 17:24:11 +00:00
|
|
|
settings::structs::Settings,
|
2020-09-14 15:29:50 +00:00
|
|
|
utils::{check_slurs, check_slurs_opt, convert_datetime},
|
|
|
|
LemmyError,
|
|
|
|
};
|
2020-09-24 13:53:21 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
2020-07-17 21:11:07 +00:00
|
|
|
use url::Url;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2021-03-10 22:33:55 +00:00
|
|
|
impl ToApub for DbPerson {
|
2020-10-19 14:29:35 +00:00
|
|
|
type ApubType = PersonExt;
|
2020-04-24 21:30:27 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn to_apub(&self, _pool: &DbPool) -> Result<PersonExt, LemmyError> {
|
2020-11-24 17:53:43 +00:00
|
|
|
let mut person = ApObject::new(Person::new());
|
2020-07-03 12:20:28 +00:00
|
|
|
person
|
2020-11-25 17:44:49 +00:00
|
|
|
.set_many_contexts(lemmy_context()?)
|
2021-01-27 16:42:23 +00:00
|
|
|
.set_id(self.actor_id.to_owned().into_inner())
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_published(convert_datetime(self.published));
|
2020-03-12 00:01:25 +00:00
|
|
|
|
2020-04-24 19:55:54 +00:00
|
|
|
if let Some(u) = self.updated {
|
2020-07-17 21:11:07 +00:00
|
|
|
person.set_updated(convert_datetime(u));
|
2020-04-24 19:55:54 +00:00
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-05-16 00:23:20 +00:00
|
|
|
if let Some(avatar_url) = &self.avatar {
|
|
|
|
let mut image = Image::new();
|
2021-03-02 12:41:48 +00:00
|
|
|
image.set_url::<Url>(avatar_url.to_owned().into());
|
2020-07-03 12:20:28 +00:00
|
|
|
person.set_icon(image.into_any_base()?);
|
2020-05-16 00:23:20 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 16:03:46 +00:00
|
|
|
if let Some(banner_url) = &self.banner {
|
|
|
|
let mut image = Image::new();
|
2021-03-02 12:41:48 +00:00
|
|
|
image.set_url::<Url>(banner_url.to_owned().into());
|
2020-08-05 16:03:46 +00:00
|
|
|
person.set_image(image.into_any_base()?);
|
|
|
|
}
|
|
|
|
|
2020-08-04 15:06:27 +00:00
|
|
|
if let Some(bio) = &self.bio {
|
2020-11-24 17:53:43 +00:00
|
|
|
set_content_and_source(&mut person, bio)?;
|
2020-08-04 15:06:27 +00:00
|
|
|
}
|
|
|
|
|
2021-04-01 17:57:45 +00:00
|
|
|
// In apub, the "name" is a display name
|
|
|
|
if let Some(i) = self.display_name.to_owned() {
|
2020-10-16 20:44:40 +00:00
|
|
|
person.set_name(i);
|
|
|
|
}
|
|
|
|
|
2021-02-04 16:34:58 +00:00
|
|
|
let mut ap_actor = ApActor::new(self.inbox_url.clone().into(), person);
|
2020-11-18 16:04:35 +00:00
|
|
|
ap_actor
|
|
|
|
.set_preferred_username(self.name.to_owned())
|
|
|
|
.set_outbox(self.get_outbox_url()?)
|
|
|
|
.set_endpoints(Endpoints {
|
2021-02-04 16:34:58 +00:00
|
|
|
shared_inbox: Some(self.get_shared_inbox_or_inbox_url()),
|
2020-11-18 16:04:35 +00:00
|
|
|
..Default::default()
|
|
|
|
});
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2021-03-24 16:43:18 +00:00
|
|
|
let person_ext = PersonExtension::new(self.matrix_user_id.to_owned())?;
|
|
|
|
Ok(Ext2::new(ap_actor, person_ext, self.get_public_key_ext()?))
|
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-03-10 22:33:55 +00:00
|
|
|
impl FromApub for DbPerson {
|
2020-04-24 21:30:27 +00:00
|
|
|
type ApubType = PersonExt;
|
2020-10-19 14:29:35 +00:00
|
|
|
|
2020-12-08 17:38:48 +00:00
|
|
|
async fn from_apub(
|
|
|
|
person: &PersonExt,
|
|
|
|
context: &LemmyContext,
|
|
|
|
expected_domain: Url,
|
|
|
|
request_counter: &mut i32,
|
2021-03-18 13:24:29 +00:00
|
|
|
mod_action_allowed: bool,
|
2021-03-10 22:33:55 +00:00
|
|
|
) -> Result<DbPerson, LemmyError> {
|
|
|
|
let person_id = person.id_unchecked().context(location_info!())?.to_owned();
|
|
|
|
let domain = person_id.domain().context(location_info!())?;
|
2021-03-01 17:24:11 +00:00
|
|
|
if domain == Settings::get().hostname() {
|
2021-03-10 22:33:55 +00:00
|
|
|
let person = blocking(context.pool(), move |conn| {
|
|
|
|
DbPerson::read_from_apub_id(conn, &person_id.into())
|
2020-12-08 17:38:48 +00:00
|
|
|
})
|
|
|
|
.await??;
|
2021-03-10 22:33:55 +00:00
|
|
|
Ok(person)
|
2020-12-08 17:38:48 +00:00
|
|
|
} else {
|
2021-03-19 16:11:34 +00:00
|
|
|
let person_form = PersonForm::from_apub(
|
2021-03-16 17:26:19 +00:00
|
|
|
person,
|
|
|
|
context,
|
|
|
|
expected_domain,
|
|
|
|
request_counter,
|
2021-03-18 13:24:29 +00:00
|
|
|
mod_action_allowed,
|
2021-03-16 17:26:19 +00:00
|
|
|
)
|
|
|
|
.await?;
|
2021-03-11 04:43:11 +00:00
|
|
|
let person = blocking(context.pool(), move |conn| {
|
|
|
|
DbPerson::upsert(conn, &person_form)
|
|
|
|
})
|
|
|
|
.await??;
|
2021-03-10 22:33:55 +00:00
|
|
|
Ok(person)
|
2020-12-08 17:38:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
2021-03-10 22:33:55 +00:00
|
|
|
impl FromApubToForm<PersonExt> for PersonForm {
|
2020-08-06 12:53:58 +00:00
|
|
|
async fn from_apub(
|
|
|
|
person: &PersonExt,
|
2020-08-18 13:43:50 +00:00
|
|
|
_context: &LemmyContext,
|
2020-12-08 17:38:48 +00:00
|
|
|
expected_domain: Url,
|
2020-10-22 18:27:32 +00:00
|
|
|
_request_counter: &mut i32,
|
2021-03-18 13:24:29 +00:00
|
|
|
_mod_action_allowed: bool,
|
2020-08-06 12:53:58 +00:00
|
|
|
) -> Result<Self, LemmyError> {
|
2020-07-13 13:56:58 +00:00
|
|
|
let avatar = match person.icon() {
|
2020-08-05 16:03:46 +00:00
|
|
|
Some(any_image) => Some(
|
2020-08-11 14:31:05 +00:00
|
|
|
Image::from_any_base(any_image.as_one().context(location_info!())?.clone())?
|
|
|
|
.context(location_info!())?
|
2020-08-05 16:03:46 +00:00
|
|
|
.url()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?
|
2020-08-05 16:03:46 +00:00
|
|
|
.as_single_xsd_any_uri()
|
2021-03-02 12:41:48 +00:00
|
|
|
.map(|url| url.to_owned()),
|
2020-08-05 16:03:46 +00:00
|
|
|
),
|
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
|
|
|
let banner = match person.image() {
|
|
|
|
Some(any_image) => Some(
|
2020-08-11 14:31:05 +00:00
|
|
|
Image::from_any_base(any_image.as_one().context(location_info!())?.clone())
|
|
|
|
.context(location_info!())?
|
|
|
|
.context(location_info!())?
|
2020-08-05 16:03:46 +00:00
|
|
|
.url()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?
|
2020-08-05 16:03:46 +00:00
|
|
|
.as_single_xsd_any_uri()
|
2021-03-02 12:41:48 +00:00
|
|
|
.map(|url| url.to_owned()),
|
2020-08-05 16:03:46 +00:00
|
|
|
),
|
2020-05-16 00:23:20 +00:00
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
2020-10-16 20:44:40 +00:00
|
|
|
let name: String = person
|
|
|
|
.inner
|
|
|
|
.preferred_username()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?
|
2020-08-06 12:53:58 +00:00
|
|
|
.to_string();
|
2021-04-01 17:57:45 +00:00
|
|
|
let display_name: Option<String> = person
|
2020-10-16 20:44:40 +00:00
|
|
|
.name()
|
|
|
|
.map(|n| n.one())
|
|
|
|
.flatten()
|
|
|
|
.map(|n| n.to_owned().xsd_string())
|
|
|
|
.flatten();
|
2020-11-24 17:53:43 +00:00
|
|
|
let bio = get_source_markdown_value(person)?;
|
2021-02-04 16:34:58 +00:00
|
|
|
let shared_inbox = person
|
|
|
|
.inner
|
|
|
|
.endpoints()?
|
|
|
|
.map(|e| e.shared_inbox)
|
|
|
|
.flatten()
|
|
|
|
.map(|s| s.to_owned().into());
|
2020-11-24 17:53:43 +00:00
|
|
|
|
2020-08-06 12:53:58 +00:00
|
|
|
check_slurs(&name)?;
|
2021-04-01 17:57:45 +00:00
|
|
|
check_slurs_opt(&display_name)?;
|
2020-08-06 12:53:58 +00:00
|
|
|
check_slurs_opt(&bio)?;
|
2020-08-05 12:18:08 +00:00
|
|
|
|
2021-03-10 22:33:55 +00:00
|
|
|
Ok(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-03-02 12:41:48 +00:00
|
|
|
avatar: avatar.map(|o| o.map(|i| i.into())),
|
|
|
|
banner: banner.map(|o| o.map(|i| i.into())),
|
2020-09-18 11:04:12 +00:00
|
|
|
published: person.inner.published().map(|u| u.to_owned().naive_local()),
|
2020-07-17 21:11:07 +00:00
|
|
|
updated: person.updated().map(|u| u.to_owned().naive_local()),
|
2021-04-21 13:36:07 +00:00
|
|
|
actor_id: Some(check_object_domain(person, expected_domain, false)?),
|
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),
|
2020-04-07 21:02:32 +00:00
|
|
|
private_key: None,
|
2021-03-24 16:43:18 +00:00
|
|
|
public_key: Some(Some(person.ext_two.public_key.to_owned().public_key_pem)),
|
2020-04-07 21:02:32 +00:00
|
|
|
last_refreshed_at: Some(naive_now()),
|
2021-02-04 16:34:58 +00:00
|
|
|
inbox_url: Some(person.inner.inbox()?.to_owned().into()),
|
|
|
|
shared_inbox_url: Some(shared_inbox),
|
2021-03-24 16:43:18 +00:00
|
|
|
matrix_user_id: Some(person.ext_one.matrix_user_id.to_owned()),
|
2020-04-07 21:02:32 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|