2019-12-19 21:59:13 +00:00
|
|
|
use crate::apub::make_apub_endpoint;
|
2020-03-12 00:01:25 +00:00
|
|
|
use crate::convert_datetime;
|
2019-12-19 21:59:13 +00:00
|
|
|
use crate::db::community::Community;
|
|
|
|
use crate::db::community_view::CommunityFollowerView;
|
2020-01-12 15:31:51 +00:00
|
|
|
use crate::db::establish_unpooled_connection;
|
2020-03-14 00:05:42 +00:00
|
|
|
use crate::db::post_view::{PostQueryBuilder, PostView};
|
|
|
|
use activitystreams::collection::apub::OrderedCollection;
|
2020-03-12 00:01:25 +00:00
|
|
|
use activitystreams::{
|
|
|
|
actor::apub::Group, collection::apub::UnorderedCollection, context,
|
|
|
|
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-12 00:01:25 +00:00
|
|
|
use failure::Error;
|
2019-12-19 21:59:13 +00:00
|
|
|
use serde::Deserialize;
|
|
|
|
|
|
|
|
impl Community {
|
2020-03-12 00:01:25 +00:00
|
|
|
pub fn as_group(&self) -> Result<Group, Error> {
|
2020-03-12 02:35:32 +00:00
|
|
|
let base_url = make_apub_endpoint("c", &self.name);
|
2019-12-19 21:59:13 +00:00
|
|
|
|
|
|
|
let mut group = Group::default();
|
2020-03-12 00:01:25 +00:00
|
|
|
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)?;
|
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
|
|
|
|
group
|
2020-03-12 00:01:25 +00:00
|
|
|
.ap_actor_props
|
|
|
|
.set_inbox(format!("{}/inbox", &base_url))?
|
|
|
|
.set_outbox(format!("{}/outbox", &base_url))?
|
|
|
|
.set_followers(format!("{}/followers", &base_url))?;
|
|
|
|
|
|
|
|
Ok(group)
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
|
2020-03-14 00:05:42 +00:00
|
|
|
pub fn get_followers(&self) -> Result<UnorderedCollection, Error> {
|
2019-12-19 21:59:13 +00:00
|
|
|
let base_url = make_apub_endpoint("c", &self.name);
|
|
|
|
|
2020-01-12 15:31:51 +00:00
|
|
|
let connection = establish_unpooled_connection();
|
2019-12-19 21:59:13 +00:00
|
|
|
//As we are an object, we validated that the community id was valid
|
|
|
|
let community_followers = CommunityFollowerView::for_community(&connection, self.id).unwrap();
|
|
|
|
|
2020-03-12 00:01:25 +00:00
|
|
|
let mut collection = UnorderedCollection::default();
|
|
|
|
let oprops: &mut ObjectProperties = collection.as_mut();
|
|
|
|
oprops
|
|
|
|
.set_context_xsd_any_uri(context())?
|
|
|
|
.set_id(base_url)?;
|
2019-12-19 21:59:13 +00:00
|
|
|
collection
|
|
|
|
.collection_props
|
2020-03-12 00:01:25 +00:00
|
|
|
.set_total_items(community_followers.len() as u64)?;
|
|
|
|
Ok(collection)
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
2020-03-14 00:05:42 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct CommunityQuery {
|
|
|
|
community_name: String,
|
|
|
|
}
|
|
|
|
|
2020-03-14 00:05:42 +00:00
|
|
|
// TODO: move all this boilerplate code to routes::federation or such
|
2020-03-12 00:01:25 +00:00
|
|
|
pub async fn get_apub_community(info: Path<CommunityQuery>) -> Result<HttpResponse<Body>, Error> {
|
2020-01-12 15:31:51 +00:00
|
|
|
let connection = establish_unpooled_connection();
|
2019-12-19 21:59:13 +00:00
|
|
|
|
|
|
|
if let Ok(community) = Community::read_from_name(&connection, info.community_name.to_owned()) {
|
2020-03-12 00:01:25 +00:00
|
|
|
Ok(
|
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type("application/activity+json")
|
|
|
|
.body(serde_json::to_string(&community.as_group()?).unwrap()),
|
|
|
|
)
|
2019-12-19 21:59:13 +00:00
|
|
|
} else {
|
2020-03-12 00:01:25 +00:00
|
|
|
Ok(HttpResponse::NotFound().finish())
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-12 00:01:25 +00:00
|
|
|
pub async fn get_apub_community_followers(
|
|
|
|
info: Path<CommunityQuery>,
|
|
|
|
) -> Result<HttpResponse<Body>, Error> {
|
2020-01-12 15:31:51 +00:00
|
|
|
let connection = establish_unpooled_connection();
|
2019-12-19 21:59:13 +00:00
|
|
|
|
|
|
|
if let Ok(community) = Community::read_from_name(&connection, info.community_name.to_owned()) {
|
2020-03-12 00:01:25 +00:00
|
|
|
Ok(
|
|
|
|
HttpResponse::Ok()
|
|
|
|
.content_type("application/activity+json")
|
2020-03-14 00:05:42 +00:00
|
|
|
.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()),
|
2020-03-12 00:01:25 +00:00
|
|
|
)
|
2019-12-19 21:59:13 +00:00
|
|
|
} else {
|
2020-03-12 00:01:25 +00:00
|
|
|
Ok(HttpResponse::NotFound().finish())
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
}
|