2020-04-10 11:37:35 +00:00
|
|
|
use crate::apub::fetcher::{fetch_remote_object, fetch_remote_user};
|
2020-04-10 13:50:40 +00:00
|
|
|
use crate::apub::signatures::PublicKey;
|
2020-04-03 16:32:09 +00:00
|
|
|
use crate::apub::*;
|
2020-04-07 16:47:19 +00:00
|
|
|
use crate::db::community::{Community, CommunityForm};
|
|
|
|
use crate::db::community_view::CommunityFollowerView;
|
2020-01-12 15:31:51 +00:00
|
|
|
use crate::db::establish_unpooled_connection;
|
2020-04-03 09:00:24 +00:00
|
|
|
use crate::db::post::Post;
|
2020-04-07 21:02:32 +00:00
|
|
|
use crate::db::user::User_;
|
|
|
|
use crate::db::Crud;
|
|
|
|
use crate::{convert_datetime, naive_now};
|
2020-04-03 05:02:43 +00:00
|
|
|
use activitystreams::actor::properties::ApActorProperties;
|
2020-03-19 01:16:17 +00:00
|
|
|
use activitystreams::collection::OrderedCollection;
|
2020-03-12 00:01:25 +00:00
|
|
|
use activitystreams::{
|
2020-04-03 05:02:43 +00:00
|
|
|
actor::Group, collection::UnorderedCollection, context, ext::Extensible,
|
2020-03-12 00:01:25 +00:00
|
|
|
object::properties::ObjectProperties,
|
|
|
|
};
|
2019-12-19 21:59:13 +00:00
|
|
|
use actix_web::body::Body;
|
|
|
|
use actix_web::web::Path;
|
|
|
|
use actix_web::HttpResponse;
|
2020-03-16 17:30:25 +00:00
|
|
|
use actix_web::{web, Result};
|
|
|
|
use diesel::r2d2::{ConnectionManager, Pool};
|
|
|
|
use diesel::PgConnection;
|
2020-03-12 00:01:25 +00:00
|
|
|
use failure::Error;
|
2019-12-19 21:59:13 +00:00
|
|
|
use serde::Deserialize;
|
2020-04-08 12:37:05 +00:00
|
|
|
use url::Url;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-03-16 17:30:25 +00:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct CommunityQuery {
|
|
|
|
community_name: String,
|
|
|
|
}
|
2020-03-12 00:01:25 +00:00
|
|
|
|
2020-04-03 09:00:24 +00:00
|
|
|
impl Community {
|
2020-04-17 15:33:55 +00:00
|
|
|
// Turn a Lemmy Community into an ActivityPub group that can be sent out over the network.
|
2020-04-07 21:02:32 +00:00
|
|
|
fn as_group(&self, conn: &PgConnection) -> Result<GroupExt, Error> {
|
2020-04-03 05:02:43 +00:00
|
|
|
let mut group = Group::default();
|
|
|
|
let oprops: &mut ObjectProperties = group.as_mut();
|
|
|
|
|
2020-04-07 21:02:32 +00:00
|
|
|
let creator = User_::read(conn, self.creator_id)?;
|
2020-04-03 05:02:43 +00:00
|
|
|
oprops
|
|
|
|
.set_context_xsd_any_uri(context())?
|
2020-04-10 13:50:40 +00:00
|
|
|
.set_id(self.actor_id.to_owned())?
|
2020-04-03 05:02:43 +00:00
|
|
|
.set_name_xsd_string(self.name.to_owned())?
|
|
|
|
.set_published(convert_datetime(self.published))?
|
2020-04-14 15:37:23 +00:00
|
|
|
.set_attributed_to_xsd_any_uri(creator.actor_id)?;
|
2020-04-03 05:02:43 +00:00
|
|
|
|
|
|
|
if let Some(u) = self.updated.to_owned() {
|
|
|
|
oprops.set_updated(convert_datetime(u))?;
|
|
|
|
}
|
|
|
|
if let Some(d) = self.description.to_owned() {
|
2020-04-10 12:45:48 +00:00
|
|
|
// TODO: this should be html, also add source field with raw markdown
|
|
|
|
// -> same for post.content and others
|
2020-04-03 05:02:43 +00:00
|
|
|
oprops.set_summary_xsd_string(d)?;
|
|
|
|
}
|
2020-03-14 00:05:42 +00:00
|
|
|
|
2020-04-03 05:02:43 +00:00
|
|
|
let mut actor_props = ApActorProperties::default();
|
2020-03-19 01:16:17 +00:00
|
|
|
|
2020-04-03 05:02:43 +00:00
|
|
|
actor_props
|
|
|
|
.set_preferred_username(self.title.to_owned())?
|
2020-04-13 13:06:41 +00:00
|
|
|
.set_inbox(self.get_inbox_url())?
|
|
|
|
.set_outbox(self.get_outbox_url())?
|
|
|
|
.set_followers(self.get_followers_url())?;
|
2020-04-10 13:50:40 +00:00
|
|
|
|
|
|
|
let public_key = PublicKey {
|
|
|
|
id: format!("{}#main-key", self.actor_id),
|
|
|
|
owner: self.actor_id.to_owned(),
|
|
|
|
public_key_pem: self.public_key.to_owned().unwrap(),
|
|
|
|
};
|
2020-03-14 00:05:42 +00:00
|
|
|
|
2020-04-10 13:50:40 +00:00
|
|
|
Ok(group.extend(actor_props).extend(public_key.to_ext()))
|
2020-04-03 05:02:43 +00:00
|
|
|
}
|
2020-04-13 13:06:41 +00:00
|
|
|
|
|
|
|
pub fn get_followers_url(&self) -> String {
|
|
|
|
format!("{}/followers", &self.actor_id)
|
|
|
|
}
|
|
|
|
pub fn get_inbox_url(&self) -> String {
|
|
|
|
format!("{}/inbox", &self.actor_id)
|
|
|
|
}
|
|
|
|
pub fn get_outbox_url(&self) -> String {
|
|
|
|
format!("{}/outbox", &self.actor_id)
|
|
|
|
}
|
2020-04-03 09:00:24 +00:00
|
|
|
}
|
2020-04-03 05:02:43 +00:00
|
|
|
|
2020-04-07 16:47:19 +00:00
|
|
|
impl CommunityForm {
|
2020-04-17 15:33:55 +00:00
|
|
|
/// Parse an ActivityPub group received from another instance into a Lemmy community.
|
2020-04-07 21:02:32 +00:00
|
|
|
pub fn from_group(group: &GroupExt, conn: &PgConnection) -> Result<Self, Error> {
|
2020-04-10 13:50:40 +00:00
|
|
|
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())?;
|
2020-04-08 12:37:05 +00:00
|
|
|
let _outbox = fetch_remote_object::<OrderedCollection>(&outbox_uri)?;
|
|
|
|
let _followers = fetch_remote_object::<UnorderedCollection>(&followers_uri)?;
|
|
|
|
let apub_id = Url::parse(&oprops.get_attributed_to_xsd_any_uri().unwrap().to_string())?;
|
|
|
|
let creator = fetch_remote_user(&apub_id, conn)?;
|
2020-04-10 13:50:40 +00:00
|
|
|
|
2020-04-07 16:47:19 +00:00
|
|
|
Ok(CommunityForm {
|
|
|
|
name: oprops.get_name_xsd_string().unwrap().to_string(),
|
2020-04-03 05:02:43 +00:00
|
|
|
title: aprops.get_preferred_username().unwrap().to_string(),
|
2020-04-10 12:45:48 +00:00
|
|
|
// 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()),
|
2020-04-12 14:53:55 +00:00
|
|
|
category_id: 1, // -> peertube uses `"category": {"identifier": "9","name": "Comedy"},`
|
2020-04-07 21:02:32 +00:00
|
|
|
creator_id: creator.id,
|
2020-04-07 16:47:19 +00:00
|
|
|
removed: None,
|
2020-04-03 05:02:43 +00:00
|
|
|
published: oprops
|
|
|
|
.get_published()
|
2020-04-07 16:47:19 +00:00
|
|
|
.map(|u| u.as_ref().to_owned().naive_local()),
|
2020-04-03 05:02:43 +00:00
|
|
|
updated: oprops
|
|
|
|
.get_updated()
|
|
|
|
.map(|u| u.as_ref().to_owned().naive_local()),
|
2020-04-07 16:47:19 +00:00
|
|
|
deleted: None,
|
2020-04-03 05:02:43 +00:00
|
|
|
nsfw: false,
|
2020-04-07 16:47:19 +00:00
|
|
|
actor_id: oprops.get_id().unwrap().to_string(),
|
|
|
|
local: false,
|
|
|
|
private_key: None,
|
2020-04-10 13:50:40 +00:00
|
|
|
public_key: Some(public_key.to_owned().public_key_pem),
|
2020-04-07 21:02:32 +00:00
|
|
|
last_refreshed_at: Some(naive_now()),
|
2020-04-03 05:02:43 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-17 15:33:55 +00:00
|
|
|
/// Return the community json over HTTP.
|
2020-04-03 05:02:43 +00:00
|
|
|
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())?;
|
2020-04-07 21:02:32 +00:00
|
|
|
let c = community.as_group(&db.get().unwrap())?;
|
2020-04-03 05:02:43 +00:00
|
|
|
Ok(create_apub_response(&c))
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
|
2020-04-17 15:33:55 +00:00
|
|
|
/// Returns an empty followers collection, only populating the siz (for privacy).
|
2020-03-12 00:01:25 +00:00
|
|
|
pub async fn get_apub_community_followers(
|
|
|
|
info: Path<CommunityQuery>,
|
2020-03-16 17:30:25 +00:00
|
|
|
db: web::Data<Pool<ConnectionManager<PgConnection>>>,
|
2020-03-12 00:01:25 +00:00
|
|
|
) -> Result<HttpResponse<Body>, Error> {
|
2020-03-16 17:30:25 +00:00
|
|
|
let community = Community::read_from_name(&&db.get()?, info.community_name.to_owned())?;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-03-16 17:30:25 +00:00
|
|
|
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())?
|
2020-04-14 15:37:23 +00:00
|
|
|
.set_id(community.actor_id)?;
|
2020-03-16 17:30:25 +00:00
|
|
|
collection
|
|
|
|
.collection_props
|
|
|
|
.set_total_items(community_followers.len() as u64)?;
|
2020-03-19 01:16:17 +00:00
|
|
|
Ok(create_apub_response(&collection))
|
2020-03-14 00:05:42 +00:00
|
|
|
}
|
|
|
|
|
2020-04-17 15:33:55 +00:00
|
|
|
/// Returns an UnorderedCollection with the latest posts from the community.
|
2020-03-14 00:05:42 +00:00
|
|
|
pub async fn get_apub_community_outbox(
|
|
|
|
info: Path<CommunityQuery>,
|
2020-03-16 17:30:25 +00:00
|
|
|
db: web::Data<Pool<ConnectionManager<PgConnection>>>,
|
2020-03-14 00:05:42 +00:00
|
|
|
) -> Result<HttpResponse<Body>, Error> {
|
2020-03-16 17:30:25 +00:00
|
|
|
let community = Community::read_from_name(&&db.get()?, info.community_name.to_owned())?;
|
2020-03-14 00:05:42 +00:00
|
|
|
|
2020-04-07 21:02:32 +00:00
|
|
|
let conn = establish_unpooled_connection();
|
2020-03-16 17:30:25 +00:00
|
|
|
//As we are an object, we validated that the community id was valid
|
2020-04-07 21:02:32 +00:00
|
|
|
let community_posts: Vec<Post> = Post::list_for_community(&conn, community.id)?;
|
2020-03-16 17:30:25 +00:00
|
|
|
|
|
|
|
let mut collection = OrderedCollection::default();
|
|
|
|
let oprops: &mut ObjectProperties = collection.as_mut();
|
|
|
|
oprops
|
|
|
|
.set_context_xsd_any_uri(context())?
|
2020-04-14 15:37:23 +00:00
|
|
|
.set_id(community.actor_id)?;
|
2020-03-16 17:30:25 +00:00
|
|
|
collection
|
|
|
|
.collection_props
|
2020-04-03 05:02:43 +00:00
|
|
|
.set_many_items_base_boxes(
|
2020-03-16 17:30:25 +00:00
|
|
|
community_posts
|
|
|
|
.iter()
|
2020-04-07 21:02:32 +00:00
|
|
|
.map(|c| c.as_page(&conn).unwrap())
|
2020-03-16 17:30:25 +00:00
|
|
|
.collect(),
|
|
|
|
)?
|
|
|
|
.set_total_items(community_posts.len() as u64)?;
|
|
|
|
|
2020-03-19 01:16:17 +00:00
|
|
|
Ok(create_apub_response(&collection))
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|