summaryrefslogtreecommitdiffstats
path: root/server/src/apub/community.rs
blob: d66bbc0196dc05e9774e0ecefd148251bd18bd1e (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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
use super::*;

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

impl ToApub for Community {
  type Response = GroupExt;

  // Turn a Lemmy Community into an ActivityPub group that can be sent out over the network.
  fn to_apub(&self, conn: &PgConnection) -> Result<GroupExt, Error> {
    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(self.actor_id.to_owned())?
      .set_name_xsd_string(self.name.to_owned())?
      .set_published(convert_datetime(self.published))?
      .set_attributed_to_xsd_any_uri(creator.actor_id)?;

    if let Some(u) = self.updated.to_owned() {
      oprops.set_updated(convert_datetime(u))?;
    }
    if let Some(d) = self.description.to_owned() {
      // TODO: this should be html, also add source field with raw markdown
      //       -> same for post.content and others
      oprops.set_summary_xsd_string(d)?;
    }

    let mut endpoint_props = EndpointProperties::default();

    endpoint_props.set_shared_inbox(self.get_shared_inbox_url())?;

    let mut actor_props = ApActorProperties::default();

    actor_props
      .set_preferred_username(self.title.to_owned())?
      .set_inbox(self.get_inbox_url())?
      .set_outbox(self.get_outbox_url())?
      .set_endpoints(endpoint_props)?
      .set_followers(self.get_followers_url())?;

    Ok(group.extend(actor_props).extend(self.get_public_key_ext()))
  }
}

impl ActorType for Community {
  fn actor_id(&self) -> String {
    self.actor_id.to_owned()
  }

  fn public_key(&self) -> String {
    self.public_key.to_owned().unwrap()
  }

  /// As a local community, accept the follow request from a remote user.
  fn send_accept_follow(&self, follow: &Follow) -> Result<(), Error> {
    let actor_uri = follow
      .follow_props
      .get_actor_xsd_any_uri()
      .unwrap()
      .to_string();

    let mut accept = Accept::new();
    accept
      .object_props
      .set_context_xsd_any_uri(context())?
      // TODO: needs proper id
      .set_id(
        follow
          .follow_props
          .get_actor_xsd_any_uri()
          .unwrap()
          .to_string(),
      )?;
    accept
      .accept_props
      .set_actor_xsd_any_uri(self.actor_id.to_owned())?
      .set_object_base_box(BaseBox::from_concrete(follow.clone())?)?;
    let to = format!("{}/inbox", actor_uri);
    send_activity(
      &accept,
      &self.private_key.to_owned().unwrap(),
      &self.actor_id,
      vec![to],
    )?;
    Ok(())
  }

  /// For a given community, returns the inboxes of all followers.
  fn get_follower_inboxes(&self, conn: &PgConnection) -> Result<Vec<String>, Error> {
    debug!("got here.");

    Ok(
      CommunityFollowerView::for_community(conn, self.id)?
        .into_iter()
        // TODO eventually this will have to use the inbox or shared_inbox column, meaning that view
        // will have to change
        .map(|c| {
          // If the user is local, but the community isn't, get the community shared inbox
          // and vice versa
          if c.user_local && !c.community_local {
            get_shared_inbox(&c.community_actor_id)
          } else if !c.user_local && c.community_local {
            get_shared_inbox(&c.user_actor_id)
          } else {
            "".to_string()
          }
        })
        .filter(|s| !s.is_empty())
        .unique()
        .collect(),
    )
  }
}

impl FromApub for CommunityForm {
  type ApubType = GroupExt;

  /// Parse an ActivityPub group received from another instance into a Lemmy community.
  fn from_apub(group: &GroupExt, conn: &PgConnection) -> Result<Self, Error> {
    let oprops = &group.base.base.object_props;
    let aprops = &group.base.extension;
    let public_key: &PublicKey = &group.extension.public_key;

    let _followers_uri = Url::parse(&aprops.get_followers().unwrap().to_string())?;
    let _outbox_uri = Url::parse(&aprops.get_outbox().to_string())?;
    // TODO don't do extra fetching here
    // let _outbox = fetch_remote_object::<OrderedCollection>(&outbox_uri)?;
    // let _followers = fetch_remote_object::<UnorderedCollection>(&followers_uri)?;
    let apub_id = &oprops.get_attributed_to_xsd_any_uri().unwrap().to_string();
    let creator = get_or_fetch_and_upsert_remote_user(&apub_id, conn)?;

    Ok(CommunityForm {
      name: oprops.get_name_xsd_string().unwrap().to_string(),
      title: aprops.get_preferred_username().unwrap().to_string(),
      // TODO: should be parsed as html and tags like <script> removed (or use markdown source)
      //       -> same for post.content etc
      description: oprops.get_content_xsd_string().map(|s| s.to_string()),
      category_id: 1, // -> peertube uses `"category": {"identifier": "9","name": "Comedy"},`
      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: Some(public_key.to_owned().public_key_pem),
      last_refreshed_at: Some(naive_now()),
    })
  }
}

/// Return the community json over HTTP.
pub async fn get_apub_community_http(
  info: Path<CommunityQuery>,
  db: DbPoolParam,
) -> Result<HttpResponse<Body>, Error> {
  let community = Community::read_from_name(&&db.get()?, &info.community_name)?;
  let c = community.to_apub(&db.get().unwrap())?;
  Ok(create_apub_response(&c))
}

/// Returns an empty followers collection, only populating the siz (for privacy).
// TODO this needs to return the actual followers, and the to: field needs this
pub async fn get_apub_community_followers(
  info: Path<CommunityQuery>,
  db: DbPoolParam,
) -> Result<HttpResponse<Body>, Error> {
  let community = Community::read_from_name(&&db.get()?, &info.community_name)?;

  let conn = db.get()?;

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

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

// TODO should not be doing this
// Returns an UnorderedCollection with the latest posts from the community.
//pub async fn get_apub_community_outbox(
//  info: Path<CommunityQuery>,
//  db: DbPoolParam,
//  chat_server: ChatServerParam,
//) -> Result<HttpResponse<Body>, Error> {
//  let community = Community::read_from_name(&&db.get()?, &info.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(community.actor_id)?;
//  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))
//}