2020-11-24 17:53:43 +00:00
|
|
|
use crate::{
|
2020-11-25 17:44:49 +00:00
|
|
|
extensions::context::lemmy_context,
|
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::*,
|
|
|
|
};
|
2020-08-01 13:25:17 +00:00
|
|
|
use activitystreams_ext::Ext1;
|
2020-08-11 14:31:05 +00:00
|
|
|
use anyhow::Context;
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db::{ApubObject, DbPool};
|
|
|
|
use lemmy_db_schema::{
|
|
|
|
naive_now,
|
2020-12-13 17:04:42 +00:00
|
|
|
source::user::{UserForm, User_},
|
2020-07-10 18:15:41 +00:00
|
|
|
};
|
2020-12-08 17:38:48 +00:00
|
|
|
use lemmy_structs::blocking;
|
2020-09-14 15:29:50 +00:00
|
|
|
use lemmy_utils::{
|
|
|
|
location_info,
|
2020-12-08 17:38:48 +00:00
|
|
|
settings::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)]
|
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-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()?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_id(Url::parse(&self.actor_id)?)
|
|
|
|
.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 {
|
2020-11-24 17:53:43 +00:00
|
|
|
set_content_and_source(&mut person, bio)?;
|
2020-11-25 13:07:04 +00:00
|
|
|
// Also set summary for compatibility with older Lemmy versions.
|
|
|
|
// TODO: remove this after a while.
|
2020-08-04 15:06:27 +00:00
|
|
|
person.set_summary(bio.to_owned());
|
|
|
|
}
|
|
|
|
|
2020-10-16 20:44:40 +00:00
|
|
|
if let Some(i) = self.preferred_username.to_owned() {
|
|
|
|
person.set_name(i);
|
|
|
|
}
|
|
|
|
|
2020-07-24 15:07:33 +00:00
|
|
|
let mut ap_actor = ApActor::new(self.get_inbox_url()?, 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 {
|
|
|
|
shared_inbox: Some(self.get_shared_inbox_url()?),
|
|
|
|
..Default::default()
|
|
|
|
});
|
2019-12-19 21:59:13 +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-12-08 17:38:48 +00:00
|
|
|
impl FromApub for User_ {
|
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,
|
|
|
|
) -> Result<User_, LemmyError> {
|
|
|
|
let user_id = person.id_unchecked().context(location_info!())?.to_owned();
|
|
|
|
let domain = user_id.domain().context(location_info!())?;
|
|
|
|
if domain == Settings::get().hostname {
|
|
|
|
let user = blocking(context.pool(), move |conn| {
|
|
|
|
User_::read_from_apub_id(conn, user_id.as_str())
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
Ok(user)
|
|
|
|
} else {
|
|
|
|
let user_form =
|
|
|
|
UserForm::from_apub(person, context, expected_domain, request_counter).await?;
|
|
|
|
let user = blocking(context.pool(), move |conn| User_::upsert(conn, &user_form)).await??;
|
|
|
|
Ok(user)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl FromApubToForm<PersonExt> for UserForm {
|
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,
|
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()
|
|
|
|
.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-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();
|
2020-10-16 20:44:40 +00:00
|
|
|
let preferred_username: Option<String> = person
|
|
|
|
.name()
|
|
|
|
.map(|n| n.one())
|
|
|
|
.flatten()
|
|
|
|
.map(|n| n.to_owned().xsd_string())
|
|
|
|
.flatten();
|
2020-09-25 15:16:49 +00:00
|
|
|
|
2020-11-24 17:53:43 +00:00
|
|
|
let bio = get_source_markdown_value(person)?;
|
|
|
|
|
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,
|
2020-11-09 14:29:36 +00:00
|
|
|
banned: None,
|
2020-04-07 21:02:32 +00:00
|
|
|
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()),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|