lemmy/server/src/apub/user.rs

98 lines
3 KiB
Rust
Raw Normal View History

2020-04-24 14:04:36 +00:00
use super::*;
2020-03-16 17:30:25 +00:00
#[derive(Deserialize)]
pub struct UserQuery {
user_name: String,
}
2020-04-24 19:55:54 +00:00
impl ToApub<PersonExt> for User_ {
// Turn a Lemmy Community into an ActivityPub group that can be sent out over the network.
fn to_apub(&self, _conn: &PgConnection) -> Result<PersonExt, Error> {
// TODO go through all these to_string and to_owned()
let mut person = Person::default();
let oprops: &mut ObjectProperties = person.as_mut();
oprops
.set_context_xsd_any_uri(context())?
.set_id(self.actor_id.to_string())?
.set_name_xsd_string(self.name.to_owned())?
.set_published(convert_datetime(self.published))?;
2020-04-24 19:55:54 +00:00
if let Some(u) = self.updated {
oprops.set_updated(convert_datetime(u))?;
}
2020-04-24 19:55:54 +00:00
if let Some(i) = &self.preferred_username {
oprops.set_name_xsd_string(i.to_owned())?;
}
2020-04-24 19:55:54 +00:00
let mut actor_props = ApActorProperties::default();
2020-04-24 19:55:54 +00:00
actor_props
.set_inbox(self.get_inbox_url())?
.set_outbox(self.get_outbox_url())?
.set_followers(self.get_followers_url())?
.set_following(self.get_following_url())?
.set_liked(self.get_liked_url())?;
2020-03-19 01:16:17 +00:00
2020-04-24 19:55:54 +00:00
let public_key = PublicKey {
id: format!("{}#main-key", self.actor_id),
owner: self.actor_id.to_owned(),
public_key_pem: self.public_key.to_owned().unwrap(),
};
2020-04-24 19:55:54 +00:00
Ok(person.extend(actor_props).extend(public_key.to_ext()))
}
}
2020-04-10 13:50:40 +00:00
2020-04-24 19:55:54 +00:00
impl ActorType for User_ {
fn actor_id(&self) -> String {
self.actor_id.to_owned()
}
}
2020-04-07 21:02:32 +00:00
2020-04-24 19:55:54 +00:00
impl FromApub<PersonExt> for UserForm {
2020-04-17 15:33:55 +00:00
/// Parse an ActivityPub person received from another instance into a Lemmy user.
2020-04-24 19:55:54 +00:00
fn from_apub(person: &PersonExt, _conn: &PgConnection) -> 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,
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()),
})
}
}
2020-04-24 19:55:54 +00:00
/// Return the user json over HTTP.
pub async fn get_apub_user_http(
info: Path<UserQuery>,
db: DbPoolParam,
) -> Result<HttpResponse<Body>, Error> {
let user = User_::find_by_email_or_username(&&db.get()?, &info.user_name)?;
let u = user.to_apub(&db.get().unwrap())?;
Ok(create_apub_response(&u))
}