2020-12-08 17:38:48 +00:00
|
|
|
use crate::{
|
|
|
|
extensions::context::lemmy_context,
|
2021-01-12 16:12:41 +00:00
|
|
|
http::{create_apub_response, create_apub_tombstone_response},
|
2020-12-08 17:38:48 +00:00
|
|
|
objects::ToApub,
|
|
|
|
ActorType,
|
|
|
|
};
|
2020-11-18 16:04:35 +00:00
|
|
|
use activitystreams::{
|
|
|
|
base::BaseExt,
|
|
|
|
collection::{CollectionExt, OrderedCollection},
|
|
|
|
};
|
2020-10-12 14:10:09 +00:00
|
|
|
use actix_web::{body::Body, web, HttpResponse};
|
2020-12-21 23:27:42 +00:00
|
|
|
use lemmy_db_queries::source::user::User;
|
2020-12-18 18:38:32 +00:00
|
|
|
use lemmy_db_schema::source::user::User_;
|
2020-10-12 14:10:09 +00:00
|
|
|
use lemmy_structs::blocking;
|
|
|
|
use lemmy_utils::LemmyError;
|
|
|
|
use lemmy_websocket::LemmyContext;
|
|
|
|
use serde::Deserialize;
|
2020-11-18 16:04:35 +00:00
|
|
|
use url::Url;
|
2020-10-12 14:10:09 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct UserQuery {
|
|
|
|
user_name: String,
|
|
|
|
}
|
|
|
|
|
2020-10-19 14:29:35 +00:00
|
|
|
/// Return the ActivityPub json representation of a local user over HTTP.
|
2020-10-12 14:10:09 +00:00
|
|
|
pub async fn get_apub_user_http(
|
|
|
|
info: web::Path<UserQuery>,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse<Body>, LemmyError> {
|
|
|
|
let user_name = info.into_inner().user_name;
|
2021-01-12 16:12:41 +00:00
|
|
|
// TODO: this needs to be able to read deleted users, so that it can send tombstones
|
2020-10-12 14:10:09 +00:00
|
|
|
let user = blocking(context.pool(), move |conn| {
|
|
|
|
User_::find_by_email_or_username(conn, &user_name)
|
|
|
|
})
|
|
|
|
.await??;
|
2021-01-12 16:12:41 +00:00
|
|
|
|
|
|
|
if !user.deleted {
|
|
|
|
let apub = user.to_apub(context.pool()).await?;
|
|
|
|
|
|
|
|
Ok(create_apub_response(&apub))
|
|
|
|
} else {
|
|
|
|
Ok(create_apub_tombstone_response(&user.to_tombstone()?))
|
|
|
|
}
|
2020-10-12 14:10:09 +00:00
|
|
|
}
|
2020-11-18 16:04:35 +00:00
|
|
|
|
|
|
|
pub async fn get_apub_user_outbox(
|
|
|
|
info: web::Path<UserQuery>,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse<Body>, LemmyError> {
|
|
|
|
let user = blocking(context.pool(), move |conn| {
|
|
|
|
User_::read_from_name(&conn, &info.user_name)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-11-19 12:50:43 +00:00
|
|
|
// TODO: populate the user outbox
|
2020-11-18 16:04:35 +00:00
|
|
|
let mut collection = OrderedCollection::new();
|
|
|
|
collection
|
|
|
|
.set_many_items(Vec::<Url>::new())
|
2020-11-25 17:44:49 +00:00
|
|
|
.set_many_contexts(lemmy_context()?)
|
2020-11-18 16:04:35 +00:00
|
|
|
.set_id(user.get_outbox_url()?)
|
|
|
|
.set_total_items(0_u64);
|
|
|
|
Ok(create_apub_response(&collection))
|
|
|
|
}
|
2020-12-16 20:07:48 +00:00
|
|
|
|
|
|
|
pub async fn get_apub_user_inbox(
|
|
|
|
info: web::Path<UserQuery>,
|
|
|
|
context: web::Data<LemmyContext>,
|
|
|
|
) -> Result<HttpResponse<Body>, LemmyError> {
|
|
|
|
let user = blocking(context.pool(), move |conn| {
|
|
|
|
User_::read_from_name(&conn, &info.user_name)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
|
|
|
let mut collection = OrderedCollection::new();
|
|
|
|
collection
|
2021-01-27 16:42:23 +00:00
|
|
|
.set_id(format!("{}/inbox", user.actor_id.into_inner()).parse()?)
|
2020-12-16 20:07:48 +00:00
|
|
|
.set_many_contexts(lemmy_context()?);
|
|
|
|
Ok(create_apub_response(&collection))
|
|
|
|
}
|