2020-05-16 14:04:08 +00:00
|
|
|
use crate::{
|
2020-08-06 12:53:58 +00:00
|
|
|
api::{check_slurs, check_slurs_opt},
|
2020-07-10 18:15:41 +00:00
|
|
|
apub::{
|
2020-08-31 13:48:02 +00:00
|
|
|
activities::generate_activity_id,
|
|
|
|
activity_queue::send_activity,
|
2020-08-06 12:53:58 +00:00
|
|
|
check_actor_domain,
|
2020-07-29 11:46:11 +00:00
|
|
|
create_apub_response,
|
2020-08-11 14:31:05 +00:00
|
|
|
fetcher::get_or_fetch_and_upsert_actor,
|
2020-07-29 11:46:11 +00:00
|
|
|
insert_activity,
|
|
|
|
ActorType,
|
|
|
|
FromApub,
|
|
|
|
PersonExt,
|
|
|
|
ToApub,
|
2020-05-16 14:04:08 +00:00
|
|
|
},
|
2020-07-10 18:15:41 +00:00
|
|
|
blocking,
|
2020-07-29 11:46:11 +00:00
|
|
|
DbPool,
|
2020-08-18 13:43:50 +00:00
|
|
|
LemmyContext,
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
2020-08-01 13:25:17 +00:00
|
|
|
use activitystreams::{
|
2020-07-28 16:47:26 +00:00
|
|
|
activity::{
|
|
|
|
kind::{FollowType, UndoType},
|
2020-07-29 11:46:11 +00:00
|
|
|
Follow,
|
|
|
|
Undo,
|
2020-07-28 16:47:26 +00:00
|
|
|
},
|
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-18 13:43:50 +00:00
|
|
|
use actix_web::{body::Body, web, HttpResponse};
|
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-01 14:25:34 +00:00
|
|
|
use lemmy_utils::{convert_datetime, location_info, LemmyError};
|
2020-05-16 14:04:08 +00:00
|
|
|
use serde::Deserialize;
|
2020-07-17 21:11:07 +00:00
|
|
|
use url::Url;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-03-16 17:30:25 +00:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct UserQuery {
|
|
|
|
user_name: String,
|
|
|
|
}
|
|
|
|
|
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_ {
|
|
|
|
type Response = PersonExt;
|
|
|
|
|
2020-04-24 19:55:54 +00:00
|
|
|
// Turn a Lemmy Community into an ActivityPub group that can be sent out over the network.
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn to_apub(&self, _pool: &DbPool) -> Result<PersonExt, LemmyError> {
|
2020-04-24 19:55:54 +00:00
|
|
|
// TODO go through all these to_string and to_owned()
|
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-07-03 12:20:28 +00:00
|
|
|
image.set_url(avatar_url.to_owned());
|
|
|
|
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();
|
|
|
|
image.set_url(banner_url.to_owned());
|
|
|
|
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-07-03 12:20:28 +00:00
|
|
|
ap_actor
|
2020-07-24 15:07:33 +00:00
|
|
|
.set_outbox(self.get_outbox_url()?)
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_followers(self.get_followers_url()?)
|
2020-07-03 12:20:28 +00:00
|
|
|
.set_following(self.get_following_url().parse()?)
|
|
|
|
.set_liked(self.get_liked_url().parse()?)
|
|
|
|
.set_endpoints(Endpoints {
|
2020-08-11 14:31:05 +00:00
|
|
|
shared_inbox: Some(self.get_shared_inbox_url()?),
|
2020-07-03 12:20:28 +00:00
|
|
|
..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 19:55:54 +00:00
|
|
|
impl ActorType for User_ {
|
2020-07-17 21:11:07 +00:00
|
|
|
fn actor_id_str(&self) -> String {
|
2020-04-24 19:55:54 +00:00
|
|
|
self.actor_id.to_owned()
|
|
|
|
}
|
2020-04-25 02:34:51 +00:00
|
|
|
|
2020-08-11 14:31:05 +00:00
|
|
|
fn public_key(&self) -> Option<String> {
|
|
|
|
self.public_key.to_owned()
|
2020-04-25 02:34:51 +00:00
|
|
|
}
|
2020-04-26 17:20:42 +00:00
|
|
|
|
2020-08-11 14:31:05 +00:00
|
|
|
fn private_key(&self) -> Option<String> {
|
|
|
|
self.private_key.to_owned()
|
2020-05-14 13:38:07 +00:00
|
|
|
}
|
|
|
|
|
2020-04-26 17:20:42 +00:00
|
|
|
/// As a given local user, send out a follow request to a remote community.
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_follow(
|
|
|
|
&self,
|
2020-08-11 14:31:05 +00:00
|
|
|
follow_actor_id: &Url,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &LemmyContext,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-08-11 14:31:05 +00:00
|
|
|
let mut follow = Follow::new(self.actor_id.to_owned(), follow_actor_id.as_str());
|
2020-07-28 16:47:26 +00:00
|
|
|
follow
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(FollowType::Follow)?);
|
2020-08-18 13:43:50 +00:00
|
|
|
let follow_actor = get_or_fetch_and_upsert_actor(follow_actor_id, context).await?;
|
2020-08-11 14:31:05 +00:00
|
|
|
let to = follow_actor.get_inbox_url()?;
|
2020-04-27 22:17:02 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
insert_activity(self.id, follow.clone(), true, context.pool()).await?;
|
2020-04-27 22:17:02 +00:00
|
|
|
|
2020-08-31 13:48:02 +00:00
|
|
|
send_activity(context.activity_queue(), follow, self, vec![to])?;
|
2020-04-26 17:20:42 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-04-28 17:46:25 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_unfollow(
|
|
|
|
&self,
|
2020-08-11 14:31:05 +00:00
|
|
|
follow_actor_id: &Url,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &LemmyContext,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-08-11 14:31:05 +00:00
|
|
|
let mut follow = Follow::new(self.actor_id.to_owned(), follow_actor_id.as_str());
|
2020-07-28 16:47:26 +00:00
|
|
|
follow
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(FollowType::Follow)?);
|
2020-08-18 13:43:50 +00:00
|
|
|
let follow_actor = get_or_fetch_and_upsert_actor(follow_actor_id, context).await?;
|
2020-05-04 02:41:45 +00:00
|
|
|
|
2020-08-11 14:31:05 +00:00
|
|
|
let to = follow_actor.get_inbox_url()?;
|
2020-05-04 02:41:45 +00:00
|
|
|
|
|
|
|
// Undo that fake activity
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut undo = Undo::new(Url::parse(&self.actor_id)?, follow.into_any_base()?);
|
2020-07-28 16:47:26 +00:00
|
|
|
undo
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(UndoType::Undo)?);
|
2020-05-04 02:41:45 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
insert_activity(self.id, undo.clone(), true, context.pool()).await?;
|
2020-05-04 02:41:45 +00:00
|
|
|
|
2020-08-31 13:48:02 +00:00
|
|
|
send_activity(context.activity_queue(), undo, self, vec![to])?;
|
2020-05-04 02:41:45 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn send_delete(&self, _creator: &User_, _context: &LemmyContext) -> Result<(), LemmyError> {
|
2020-04-28 17:46:25 +00:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-05-01 19:01:29 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_undo_delete(
|
|
|
|
&self,
|
|
|
|
_creator: &User_,
|
2020-08-18 13:43:50 +00:00
|
|
|
_context: &LemmyContext,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-05-01 19:01:29 +00:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-05-03 14:00:59 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn send_remove(&self, _creator: &User_, _context: &LemmyContext) -> Result<(), LemmyError> {
|
2020-05-03 14:00:59 +00:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_undo_remove(
|
|
|
|
&self,
|
|
|
|
_creator: &User_,
|
2020-08-18 13:43:50 +00:00
|
|
|
_context: &LemmyContext,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-05-03 14:00:59 +00:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-05-04 02:41:45 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_accept_follow(
|
|
|
|
&self,
|
2020-07-17 21:11:07 +00:00
|
|
|
_follow: Follow,
|
2020-08-18 13:43:50 +00:00
|
|
|
_context: &LemmyContext,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-05-04 02:41:45 +00:00
|
|
|
unimplemented!()
|
|
|
|
}
|
|
|
|
|
2020-08-11 14:31:05 +00:00
|
|
|
async fn get_follower_inboxes(&self, _pool: &DbPool) -> Result<Vec<Url>, LemmyError> {
|
2020-05-04 02:41:45 +00:00
|
|
|
unimplemented!()
|
|
|
|
}
|
2020-07-23 14:36:45 +00:00
|
|
|
|
|
|
|
fn user_id(&self) -> i32 {
|
|
|
|
self.id
|
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
2020-04-07 21:02:32 +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-04-17 15:33:55 +00:00
|
|
|
/// Parse an ActivityPub person received from another instance into a Lemmy user.
|
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());
|
|
|
|
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,
|
|
|
|
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-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-08-31 13:48:02 +00:00
|
|
|
actor_id: Some(check_actor_domain(person, expected_domain)?),
|
2020-08-06 12:53:58 +00:00
|
|
|
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()),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2020-04-24 19:55:54 +00:00
|
|
|
|
|
|
|
/// Return the user json over HTTP.
|
|
|
|
pub async fn get_apub_user_http(
|
2020-07-01 12:54:29 +00:00
|
|
|
info: web::Path<UserQuery>,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<HttpResponse<Body>, LemmyError> {
|
|
|
|
let user_name = info.into_inner().user_name;
|
2020-08-18 13:43:50 +00:00
|
|
|
let user = blocking(context.pool(), move |conn| {
|
2020-07-20 19:32:15 +00:00
|
|
|
User_::find_by_email_or_username(conn, &user_name)
|
2020-07-01 12:54:29 +00:00
|
|
|
})
|
|
|
|
.await??;
|
2020-08-18 13:43:50 +00:00
|
|
|
let u = user.to_apub(context.pool()).await?;
|
2020-04-24 19:55:54 +00:00
|
|
|
Ok(create_apub_response(&u))
|
|
|
|
}
|