2020-10-14 15:34:11 +00:00
|
|
|
use crate::{objects::check_object_domain, ActorType, FromApub, PersonExt, ToApub};
|
2020-08-01 13:25:17 +00:00
|
|
|
use activitystreams::{
|
2020-07-03 12:20:28 +00:00
|
|
|
actor::{ApActor, Endpoints, Person},
|
|
|
|
object::{Image, Tombstone},
|
2020-06-03 15:54:15 +00:00
|
|
|
prelude::*,
|
|
|
|
};
|
2020-08-01 13:25:17 +00:00
|
|
|
use activitystreams_ext::Ext1;
|
2020-08-11 14:31:05 +00:00
|
|
|
use anyhow::Context;
|
2020-07-10 18:15:41 +00:00
|
|
|
use lemmy_db::{
|
|
|
|
naive_now,
|
|
|
|
user::{UserForm, User_},
|
2020-09-24 13:53:21 +00:00
|
|
|
DbPool,
|
2020-07-10 18:15:41 +00:00
|
|
|
};
|
2020-09-14 15:29:50 +00:00
|
|
|
use lemmy_utils::{
|
|
|
|
location_info,
|
|
|
|
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)]
|
2020-04-24 21:30:27 +00:00
|
|
|
impl ToApub for User_ {
|
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-07-03 12:20:28 +00:00
|
|
|
let mut person = Person::new();
|
|
|
|
person
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_id(Url::parse(&self.actor_id)?)
|
2020-07-03 12:20:28 +00:00
|
|
|
.set_name(self.name.to_owned())
|
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();
|
2020-10-15 18:23:56 +00:00
|
|
|
image.set_url(Url::parse(avatar_url)?);
|
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();
|
2020-10-15 18:23:56 +00:00
|
|
|
image.set_url(Url::parse(banner_url)?);
|
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 {
|
|
|
|
person.set_summary(bio.to_owned());
|
|
|
|
}
|
|
|
|
|
2020-07-24 15:07:33 +00:00
|
|
|
let mut ap_actor = ApActor::new(self.get_inbox_url()?, person);
|
2020-10-07 18:19:12 +00:00
|
|
|
ap_actor.set_endpoints(Endpoints {
|
|
|
|
shared_inbox: Some(self.get_shared_inbox_url()?),
|
|
|
|
..Default::default()
|
|
|
|
});
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-07-03 12:20:28 +00:00
|
|
|
if let Some(i) = &self.preferred_username {
|
|
|
|
ap_actor.set_preferred_username(i.to_owned());
|
|
|
|
}
|
2020-03-19 01:16:17 +00:00
|
|
|
|
2020-08-11 14:31:05 +00:00
|
|
|
Ok(Ext1::new(ap_actor, 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)]
|
2020-04-24 21:30:27 +00:00
|
|
|
impl FromApub for UserForm {
|
|
|
|
type ApubType = PersonExt;
|
2020-10-19 14:29:35 +00:00
|
|
|
|
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-08-06 12:53:58 +00:00
|
|
|
expected_domain: Option<Url>,
|
|
|
|
) -> 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()
|
|
|
|
.map(|u| u.to_string()),
|
|
|
|
),
|
|
|
|
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()
|
|
|
|
.map(|u| u.to_string()),
|
|
|
|
),
|
2020-05-16 00:23:20 +00:00
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
2020-08-06 12:53:58 +00:00
|
|
|
let name = person
|
|
|
|
.name()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?
|
2020-08-06 12:53:58 +00:00
|
|
|
.one()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?
|
2020-08-06 12:53:58 +00:00
|
|
|
.as_xsd_string()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?
|
2020-08-06 12:53:58 +00:00
|
|
|
.to_string();
|
|
|
|
let preferred_username = person.inner.preferred_username().map(|u| u.to_string());
|
2020-09-25 15:16:49 +00:00
|
|
|
|
|
|
|
// TODO a limit check (like the API does) might need to be done
|
|
|
|
// here when we federate to other platforms. Same for preferred_username
|
2020-08-06 12:53:58 +00:00
|
|
|
let bio = person
|
|
|
|
.inner
|
|
|
|
.summary()
|
2020-08-11 14:31:05 +00:00
|
|
|
.map(|s| s.as_single_xsd_string())
|
|
|
|
.flatten()
|
|
|
|
.map(|s| s.to_string());
|
2020-08-06 12:53:58 +00:00
|
|
|
check_slurs(&name)?;
|
|
|
|
check_slurs_opt(&preferred_username)?;
|
|
|
|
check_slurs_opt(&bio)?;
|
2020-08-05 12:18:08 +00:00
|
|
|
|
2020-04-07 21:02:32 +00:00
|
|
|
Ok(UserForm {
|
2020-08-06 12:53:58 +00:00
|
|
|
name,
|
2020-09-25 15:16:49 +00:00
|
|
|
preferred_username: Some(preferred_username),
|
2020-04-07 21:02:32 +00:00
|
|
|
password_encrypted: "".to_string(),
|
|
|
|
admin: false,
|
|
|
|
banned: false,
|
|
|
|
email: None,
|
2020-05-16 00:23:20 +00:00
|
|
|
avatar,
|
2020-08-05 16:03:46 +00:00
|
|
|
banner,
|
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()),
|
2020-04-07 21:02:32 +00:00
|
|
|
show_nsfw: false,
|
|
|
|
theme: "".to_string(),
|
|
|
|
default_sort_type: 0,
|
|
|
|
default_listing_type: 0,
|
|
|
|
lang: "".to_string(),
|
|
|
|
show_avatars: false,
|
|
|
|
send_notifications_to_email: false,
|
|
|
|
matrix_user_id: None,
|
2020-10-14 15:34:11 +00:00
|
|
|
actor_id: Some(check_object_domain(person, expected_domain)?),
|
2020-09-25 15:16:49 +00:00
|
|
|
bio: Some(bio),
|
2020-04-07 21:02:32 +00:00
|
|
|
local: false,
|
|
|
|
private_key: None,
|
2020-07-03 12:20:28 +00:00
|
|
|
public_key: Some(person.ext_one.public_key.to_owned().public_key_pem),
|
2020-04-07 21:02:32 +00:00
|
|
|
last_refreshed_at: Some(naive_now()),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|