summaryrefslogtreecommitdiffstats
path: root/server/src/apub/user.rs
blob: 6e196bb216aadf5726a31f94f9644f553969af8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
use crate::apub::{create_apub_response, make_apub_endpoint, EndpointType};
use crate::convert_datetime;
use crate::db::user::User_;
use activitystreams::{
  actor::{properties::ApActorProperties, Person},
  context,
  ext::Extensible,
  object::properties::ObjectProperties,
};
use actix_web::body::Body;
use actix_web::web::Path;
use actix_web::HttpResponse;
use actix_web::{web, Result};
use diesel::r2d2::{ConnectionManager, Pool};
use diesel::PgConnection;
use failure::Error;
use serde::Deserialize;

#[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(EndpointType::User, &user.name);

  let mut person = Person::default();
  let oprops: &mut ObjectProperties = person.as_mut();
  oprops
    .set_context_xsd_any_uri(context())?
    .set_id(base_url.to_string())?
    .set_published(convert_datetime(user.published))?;

  if let Some(u) = user.updated {
    oprops.set_updated(convert_datetime(u))?;
  }

  if let Some(i) = &user.preferred_username {
    oprops.set_name_xsd_string(i.to_owned())?;
  }

  let mut actor_props = ApActorProperties::default();

  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))?;

  Ok(create_apub_response(&person.extend(actor_props)))
}