2020-03-16 17:30:25 +00:00
|
|
|
use crate::apub::{make_apub_endpoint, create_apub_response};
|
2020-03-12 00:01:25 +00:00
|
|
|
use crate::convert_datetime;
|
2019-12-19 21:59:13 +00:00
|
|
|
use crate::db::user::User_;
|
2020-03-12 00:01:25 +00:00
|
|
|
use activitystreams::{actor::apub::Person, context, object::properties::ObjectProperties};
|
2019-12-19 21:59:13 +00:00
|
|
|
use actix_web::body::Body;
|
|
|
|
use actix_web::web::Path;
|
|
|
|
use actix_web::HttpResponse;
|
2020-03-12 00:01:25 +00:00
|
|
|
use failure::Error;
|
2019-12-19 21:59:13 +00:00
|
|
|
use serde::Deserialize;
|
2020-03-16 17:30:25 +00:00
|
|
|
use diesel::r2d2::{ConnectionManager, Pool};
|
|
|
|
use diesel::PgConnection;
|
|
|
|
use actix_web::{web, Result};
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-03-16 17:30:25 +00:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct UserQuery {
|
|
|
|
user_name: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn get_apub_user(
|
|
|
|
info: Path<UserQuery>,
|
|
|
|
db: web::Data<Pool<ConnectionManager<PgConnection>>>,) -> Result<HttpResponse<Body>, Error> {
|
|
|
|
let user = User_::find_by_email_or_username(&&db.get()?, &info.user_name)?;
|
|
|
|
let base_url = make_apub_endpoint("u", &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-12 00:01:25 +00:00
|
|
|
.set_context_xsd_any_uri(context())?
|
|
|
|
.set_id(base_url.to_string())?
|
2020-03-16 17:30:25 +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-16 17:30:25 +00:00
|
|
|
person
|
2020-03-12 00:01:25 +00:00
|
|
|
.ap_actor_props
|
|
|
|
.set_inbox(format!("{}/inbox", &base_url))?
|
|
|
|
.set_outbox(format!("{}/outbox", &base_url))?
|
|
|
|
.set_following(format!("{}/following", &base_url))?
|
|
|
|
.set_liked(format!("{}/liked", &base_url))?;
|
|
|
|
|
2020-03-16 17:30:25 +00:00
|
|
|
Ok(create_apub_response(serde_json::to_string(&person)?))
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|