summaryrefslogtreecommitdiffstats
path: root/server/src/apub/community.rs
blob: 59c9329b4732dcf5b45c0819b2883a058bb4c6c0 (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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
use crate::apub::fetcher::{fetch_remote_object, fetch_remote_user};
use crate::apub::*;
use crate::db::community::{Community, CommunityForm};
use crate::db::community_view::CommunityFollowerView;
use crate::db::establish_unpooled_connection;
use crate::db::post::Post;
use crate::db::user::User_;
use crate::db::Crud;
use crate::settings::Settings;
use crate::{convert_datetime, naive_now};
use activitystreams::actor::properties::ApActorProperties;
use activitystreams::collection::OrderedCollection;
use activitystreams::{
  actor::Group, collection::UnorderedCollection, 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;
use url::Url;

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

pub async fn get_apub_community_list(
  db: web::Data<Pool<ConnectionManager<PgConnection>>>,
) -> Result<HttpResponse<Body>, Error> {
  // TODO: implement pagination
  let communities = Community::list_local(&db.get().unwrap())?
    .iter()
    .map(|c| c.as_group(&db.get().unwrap()))
    .collect::<Result<Vec<GroupExt>, Error>>()?;
  let mut collection = UnorderedCollection::default();
  let oprops: &mut ObjectProperties = collection.as_mut();
  oprops.set_context_xsd_any_uri(context())?.set_id(format!(
    "{}://{}/federation/communities",
    get_apub_protocol_string(),
    Settings::get().hostname
  ))?;

  collection
    .collection_props
    .set_total_items(communities.len() as u64)?
    .set_many_items_base_boxes(communities)?;
  Ok(create_apub_response(&collection))
}

impl Community {
  fn as_group(&self, conn: &PgConnection) -> Result<GroupExt, Error> {
    let base_url = make_apub_endpoint(EndpointType::Community, &self.name);

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

    let creator = User_::read(conn, self.creator_id)?;
    oprops
      .set_context_xsd_any_uri(context())?
      .set_id(base_url.to_owned())?
      .set_name_xsd_string(self.name.to_owned())?
      .set_published(convert_datetime(self.published))?
      .set_attributed_to_xsd_any_uri(make_apub_endpoint(EndpointType::User, &creator.name))?;

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

    let mut actor_props = ApActorProperties::default();

    actor_props
      .set_preferred_username(self.title.to_owned())?
      .set_inbox(format!("{}/inbox", &base_url))?
      .set_outbox(format!("{}/outbox", &base_url))?
      .set_followers(format!("{}/followers", &base_url))?;

    Ok(group.extend(actor_props))
  }
}

impl CommunityForm {
  pub fn from_group(group: &GroupExt, conn: &PgConnection) -> Result<Self, Error> {
    let followers_uri = Url::parse(&group.extension.get_followers().unwrap().to_string())?;
    let outbox_uri = Url::parse(&group.extension.get_outbox().to_string())?;
    let _outbox = fetch_remote_object::<OrderedCollection>(&outbox_uri)?;
    let _followers = fetch_remote_object::<UnorderedCollection>(&followers_uri)?;
    let oprops = &group.base.object_props;
    let aprops = &group.extension;
    let apub_id = Url::parse(&oprops.get_attributed_to_xsd_any_uri().unwrap().to_string())?;
    let creator = fetch_remote_user(&apub_id, conn)?;
    Ok(CommunityForm {
      name: oprops.get_name_xsd_string().unwrap().to_string(),
      title: aprops.get_preferred_username().unwrap().to_string(),
      description: oprops.get_summary_xsd_string().map(|s| s.to_string()),
      category_id: 1,
      creator_id: creator.id,
      removed: None,
      published: oprops
        .get_published()
        .map(|u| u.as_ref().to_owned().naive_local()),
      updated: oprops
        .get_updated()
        .map(|u| u.as_ref().to_owned().naive_local()),
      deleted: None,
      nsfw: false,
      actor_id: oprops.get_id().unwrap().to_string(),
      local: false,
      private_key: None,
      public_key: None,
      last_refreshed_at: Some(naive_now()),
    })
  }
}

pub async fn get_apub_community_http(
  info: Path<CommunityQuery>,
  db: web::Data<Pool<ConnectionManager<PgConnection>>>,
) -> Result<HttpResponse<Body>, Error> {
  let community = Community::read_from_name(&&db.get()?, info.community_name.to_owned())?;
  let c = community.as_group(&db.get().unwrap())?;
  Ok(create_apub_response(&c))
}

pub async fn get_apub_community_followers(
  info: Path<CommunityQuery>,
  db: web::Data<Pool<ConnectionManager<PgConnection>>>,
) -> Result<HttpResponse<Body>, Error> {
  let community = Community::read_from_name(&&db.get()?, info.community_name.to_owned())?;
  let base_url = make_apub_endpoint(EndpointType::Community, &community.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, community.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(create_apub_response(&collection))
}

pub async fn get_apub_community_outbox(
  info: Path<CommunityQuery>,
  db: web::Data<Pool<ConnectionManager<PgConnection>>>,
) -> Result<HttpResponse<Body>, Error> {
  let community = Community::read_from_name(&&db.get()?, info.community_name.to_owned())?;
  let base_url = make_apub_endpoint(EndpointType::Community, &community.name);

  let conn = establish_unpooled_connection();
  //As we are an object, we validated that the community id was valid
  let community_posts: Vec<Post> = Post::list_for_community(&conn, community.id)?;

  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_base_boxes(
      community_posts
        .iter()
        .map(|c| c.as_page(&conn).unwrap())
        .collect(),
    )?
    .set_total_items(community_posts.len() as u64)?;

  Ok(create_apub_response(&collection))
}