2020-04-24 14:04:36 +00:00
|
|
|
use super::*;
|
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-04-17 15:33:55 +00:00
|
|
|
// Turn a Lemmy user into an ActivityPub person and return it as json.
|
2020-03-16 17:30:25 +00:00
|
|
|
pub async fn get_apub_user(
|
|
|
|
info: Path<UserQuery>,
|
2020-04-24 14:04:36 +00:00
|
|
|
db: DbPoolParam,
|
|
|
|
chat_server: ChatServerParam,
|
2020-03-16 18:19:04 +00:00
|
|
|
) -> Result<HttpResponse<Body>, Error> {
|
2020-03-16 17:30:25 +00:00
|
|
|
let user = User_::find_by_email_or_username(&&db.get()?, &info.user_name)?;
|
2020-03-12 00:01:25 +00:00
|
|
|
|
2020-03-16 17:30:25 +00:00
|
|
|
let mut person = Person::default();
|
|
|
|
let oprops: &mut ObjectProperties = person.as_mut();
|
|
|
|
oprops
|
2020-03-16 18:19:04 +00:00
|
|
|
.set_context_xsd_any_uri(context())?
|
2020-04-10 13:50:40 +00:00
|
|
|
.set_id(user.actor_id.to_string())?
|
2020-04-07 21:02:32 +00:00
|
|
|
.set_name_xsd_string(user.name.to_owned())?
|
2020-03-16 18:19:04 +00:00
|
|
|
.set_published(convert_datetime(user.published))?;
|
2020-03-12 00:01:25 +00:00
|
|
|
|
2020-03-16 17:30:25 +00:00
|
|
|
if let Some(u) = user.updated {
|
|
|
|
oprops.set_updated(convert_datetime(u))?;
|
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-03-16 17:30:25 +00:00
|
|
|
if let Some(i) = &user.preferred_username {
|
|
|
|
oprops.set_name_xsd_string(i.to_owned())?;
|
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-03-19 01:16:17 +00:00
|
|
|
let mut actor_props = ApActorProperties::default();
|
|
|
|
|
|
|
|
actor_props
|
2020-04-10 13:50:40 +00:00
|
|
|
.set_inbox(format!("{}/inbox", &user.actor_id))?
|
|
|
|
.set_outbox(format!("{}/outbox", &user.actor_id))?
|
|
|
|
.set_following(format!("{}/following", &user.actor_id))?
|
|
|
|
.set_liked(format!("{}/liked", &user.actor_id))?;
|
2020-03-12 00:01:25 +00:00
|
|
|
|
2020-04-10 13:50:40 +00:00
|
|
|
let public_key = PublicKey {
|
|
|
|
id: format!("{}#main-key", user.actor_id),
|
|
|
|
owner: user.actor_id.to_owned(),
|
|
|
|
public_key_pem: user.public_key.unwrap(),
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(create_apub_response(
|
|
|
|
&person.extend(actor_props).extend(public_key.to_ext()),
|
|
|
|
))
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
2020-04-07 21:02:32 +00:00
|
|
|
|
|
|
|
impl UserForm {
|
2020-04-17 15:33:55 +00:00
|
|
|
/// Parse an ActivityPub person received from another instance into a Lemmy user.
|
2020-04-07 21:02:32 +00:00
|
|
|
pub fn from_person(person: &PersonExt) -> Result<Self, Error> {
|
2020-04-10 13:50:40 +00:00
|
|
|
let oprops = &person.base.base.object_props;
|
|
|
|
let aprops = &person.base.extension;
|
|
|
|
let public_key: &PublicKey = &person.extension.public_key;
|
|
|
|
|
2020-04-07 21:02:32 +00:00
|
|
|
Ok(UserForm {
|
|
|
|
name: oprops.get_name_xsd_string().unwrap().to_string(),
|
|
|
|
preferred_username: aprops.get_preferred_username().map(|u| u.to_string()),
|
|
|
|
password_encrypted: "".to_string(),
|
|
|
|
admin: false,
|
|
|
|
banned: false,
|
|
|
|
email: None,
|
2020-04-12 14:53:55 +00:00
|
|
|
avatar: None, // -> icon, image
|
2020-04-07 21:02:32 +00:00
|
|
|
updated: oprops
|
|
|
|
.get_updated()
|
|
|
|
.map(|u| u.as_ref().to_owned().naive_local()),
|
|
|
|
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,
|
|
|
|
actor_id: oprops.get_id().unwrap().to_string(),
|
|
|
|
bio: oprops.get_summary_xsd_string().map(|s| s.to_string()),
|
|
|
|
local: false,
|
|
|
|
private_key: None,
|
2020-04-10 13:50:40 +00:00
|
|
|
public_key: Some(public_key.to_owned().public_key_pem),
|
2020-04-07 21:02:32 +00:00
|
|
|
last_refreshed_at: Some(naive_now()),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|