summaryrefslogtreecommitdiffstats
path: root/server/src/apub/community.rs
blob: 61b0b2ce2e5442866b3d7f811036a571d91a7e45 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
use crate::apub::make_apub_endpoint;
use crate::convert_datetime;
use crate::db::community::Community;
use crate::db::community_view::CommunityFollowerView;
use crate::db::establish_unpooled_connection;
use crate::db::post_view::{PostQueryBuilder, PostView};
use activitystreams::collection::apub::OrderedCollection;
use activitystreams::{
  actor::apub::Group, collection::apub::UnorderedCollection, context,
  object::properties::ObjectProperties,
};
use actix_web::body::Body;
use actix_web::web::Path;
use actix_web::HttpResponse;
use failure::Error;
use serde::Deserialize;

impl Community {
  pub fn as_group(&self) -> Result<Group, Error> {
    let base_url = make_apub_endpoint("c", &self.name);

    let mut group = Group::default();
    let oprops: &mut ObjectProperties = group.as_mut();

    oprops
      .set_context_xsd_any_uri(context())?
      .set_id(base_url.to_owned())?
      .set_name_xsd_string(self.title.to_owned())?
      .set_published(convert_datetime(self.published))?
      .set_attributed_to_xsd_any_uri(make_apub_endpoint("u", &self.creator_id))?;

    if let Some(u) = self.updated.to_owned() {
      oprops.set_updated(convert_datetime(u))?;
    }
    if let Some(d) = self.description.to_owned() {
      oprops.set_summary_xsd_string(d)?;
    }

    group
      .ap_actor_props
      .set_inbox(format!("{}/inbox", &base_url))?
      .set_outbox(format!("{}/outbox", &base_url))?
      .set_followers(format!("{}/followers", &base_url))?;

    Ok(group)
  }

  pub fn get_followers(&self) -> Result<UnorderedCollection, Error> {
    let base_url = make_apub_endpoint("c", &self.name);

    let connection = establish_unpooled_connection();
    //As we are an object, we validated that the community id was valid
    let community_followers = CommunityFollowerView::for_community(&connection, self.id).unwrap();

    let mut collection = UnorderedCollection::default();
    let oprops: &mut ObjectProperties = collection.as_mut();
    oprops
      .set_context_xsd_any_uri(context())?
      .set_id(base_url)?;
    collection
      .collection_props
      .set_total_items(community_followers.len() as u64)?;
    Ok(collection)
  }

  pub fn get_outbox(&self) -> Result<OrderedCollection, Error> {
    let base_url = make_apub_endpoint("c", &self.name);

    let connection = establish_unpooled_connection();
    //As we are an object, we validated that the community id was valid
    let community_posts: Vec<PostView> = PostQueryBuilder::create(&connection)
      .for_community_id(self.id)
      .list()
      .unwrap();

    let mut collection = OrderedCollection::default();
    let oprops: &mut ObjectProperties = collection.as_mut();
    oprops
      .set_context_xsd_any_uri(context())?
      .set_id(base_url)?;
    collection
      .collection_props
      .set_many_items_object_boxs(
        community_posts
          .iter()
          .map(|c| c.as_page().unwrap())
          .collect(),
      )?
      .set_total_items(community_posts.len() as u64)?;

    Ok(collection)
  }
}

#[derive(Deserialize)]
pub struct CommunityQuery {
  community_name: String,
}

// TODO: move all this boilerplate code to routes::federation or such
pub async fn get_apub_community(info: Path<CommunityQuery>) -> Result<HttpResponse<Body>, Error> {
  let connection = establish_unpooled_connection();

  if let Ok(community) = Community::read_from_name(&connection, info.community_name.to_owned()) {
    Ok(
      HttpResponse::Ok()
        .content_type("application/activity+json")
        .body(serde_json::to_string(&community.as_group()?).unwrap()),
    )
  } else {
    Ok(HttpResponse::NotFound().finish())
  }
}

pub async fn get_apub_community_followers(
  info: Path<CommunityQuery>,
) -> Result<HttpResponse<Body>, Error> {
  let connection = establish_unpooled_connection();

  if let Ok(community) = Community::read_from_name(&connection, info.community_name.to_owned()) {
    Ok(
      HttpResponse::Ok()
        .content_type("application/activity+json")
        .body(serde_json::to_string(&community.get_followers()?).unwrap()),
    )
  } else {
    Ok(HttpResponse::NotFound().finish())
  }
}

pub async fn get_apub_community_outbox(
  info: Path<CommunityQuery>,
) -> Result<HttpResponse<Body>, Error> {
  let connection = establish_unpooled_connection();

  if let Ok(community) = Community::read_from_name(&connection, info.community_name.to_owned()) {
    Ok(
      HttpResponse::Ok()
        .content_type("application/activity+json")
        .body(serde_json::to_string(&community.get_outbox()?).unwrap()),
    )
  } else {
    Ok(HttpResponse::NotFound().finish())
  }
}