2020-04-09 19:04:31 +00:00
|
|
|
use crate::apub::puller::{fetch_remote_community, fetch_remote_user};
|
2020-03-16 18:19:04 +00:00
|
|
|
use crate::apub::{create_apub_response, make_apub_endpoint, EndpointType};
|
2020-04-07 16:47:19 +00:00
|
|
|
use crate::convert_datetime;
|
2020-04-09 19:04:31 +00:00
|
|
|
use crate::db::community::Community;
|
2020-04-07 16:47:19 +00:00
|
|
|
use crate::db::post::{Post, PostForm};
|
2020-04-07 21:02:32 +00:00
|
|
|
use crate::db::user::User_;
|
|
|
|
use crate::db::Crud;
|
|
|
|
use activitystreams::{context, object::properties::ObjectProperties, object::Page};
|
2020-03-16 18:19:04 +00:00
|
|
|
use actix_web::body::Body;
|
|
|
|
use actix_web::web::Path;
|
|
|
|
use actix_web::{web, HttpResponse};
|
|
|
|
use diesel::r2d2::{ConnectionManager, Pool};
|
|
|
|
use diesel::PgConnection;
|
2020-03-12 00:01:25 +00:00
|
|
|
use failure::Error;
|
2020-03-16 18:19:04 +00:00
|
|
|
use serde::Deserialize;
|
2020-04-08 12:37:05 +00:00
|
|
|
use url::Url;
|
2020-03-16 18:19:04 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct PostQuery {
|
|
|
|
post_id: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn get_apub_post(
|
|
|
|
info: Path<PostQuery>,
|
|
|
|
db: web::Data<Pool<ConnectionManager<PgConnection>>>,
|
|
|
|
) -> Result<HttpResponse<Body>, Error> {
|
|
|
|
let id = info.post_id.parse::<i32>()?;
|
2020-04-03 09:00:24 +00:00
|
|
|
let post = Post::read(&&db.get()?, id)?;
|
2020-04-07 21:02:32 +00:00
|
|
|
Ok(create_apub_response(&post.as_page(&db.get().unwrap())?))
|
2020-03-16 18:19:04 +00:00
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-04-03 09:00:24 +00:00
|
|
|
impl Post {
|
2020-04-07 21:02:32 +00:00
|
|
|
pub fn as_page(&self, conn: &PgConnection) -> Result<Page, Error> {
|
2020-03-16 18:19:04 +00:00
|
|
|
let base_url = make_apub_endpoint(EndpointType::Post, &self.id.to_string());
|
2019-12-19 21:59:13 +00:00
|
|
|
let mut page = Page::default();
|
2020-03-12 00:01:25 +00:00
|
|
|
let oprops: &mut ObjectProperties = page.as_mut();
|
2020-04-07 21:02:32 +00:00
|
|
|
let creator = User_::read(conn, self.creator_id)?;
|
2020-04-09 19:04:31 +00:00
|
|
|
let community = Community::read(conn, self.community_id)?;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-03-12 00:01:25 +00:00
|
|
|
oprops
|
2020-03-14 00:05:42 +00:00
|
|
|
// Not needed when the Post is embedded in a collection (like for community outbox)
|
2020-04-07 21:02:32 +00:00
|
|
|
.set_context_xsd_any_uri(context())?
|
2020-03-12 00:01:25 +00:00
|
|
|
.set_id(base_url)?
|
|
|
|
.set_name_xsd_string(self.name.to_owned())?
|
|
|
|
.set_published(convert_datetime(self.published))?
|
2020-04-09 19:04:31 +00:00
|
|
|
.set_to_xsd_any_uri(community.actor_id)?
|
2020-04-07 21:02:32 +00:00
|
|
|
.set_attributed_to_xsd_any_uri(make_apub_endpoint(EndpointType::User, &creator.name))?;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
|
|
|
if let Some(body) = &self.body {
|
2020-03-12 00:01:25 +00:00
|
|
|
oprops.set_content_xsd_string(body.to_owned())?;
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
|
2020-03-14 21:03:05 +00:00
|
|
|
// TODO: hacky code because we get self.url == Some("")
|
2020-03-16 18:19:04 +00:00
|
|
|
// https://github.com/dessalines/lemmy/issues/602
|
|
|
|
let url = self.url.as_ref().filter(|u| !u.is_empty());
|
|
|
|
if let Some(u) = url {
|
|
|
|
oprops.set_url_xsd_any_uri(u.to_owned())?;
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
|
2020-03-12 00:01:25 +00:00
|
|
|
if let Some(u) = self.updated {
|
|
|
|
oprops.set_updated(convert_datetime(u))?;
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
|
2020-03-12 00:01:25 +00:00
|
|
|
Ok(page)
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
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 PostForm {
|
2020-04-07 21:02:32 +00:00
|
|
|
pub fn from_page(page: &Page, conn: &PgConnection) -> Result<PostForm, Error> {
|
2020-04-03 05:02:43 +00:00
|
|
|
let oprops = &page.object_props;
|
2020-04-09 19:04:31 +00:00
|
|
|
let creator_id = Url::parse(&oprops.get_attributed_to_xsd_any_uri().unwrap().to_string())?;
|
|
|
|
let creator = fetch_remote_user(&creator_id, conn)?;
|
|
|
|
let community_id = Url::parse(&oprops.get_to_xsd_any_uri().unwrap().to_string())?;
|
|
|
|
let community = fetch_remote_community(&community_id, conn)?;
|
|
|
|
|
2020-04-07 16:47:19 +00:00
|
|
|
Ok(PostForm {
|
2020-04-03 05:02:43 +00:00
|
|
|
name: oprops.get_name_xsd_string().unwrap().to_string(),
|
|
|
|
url: oprops.get_url_xsd_any_uri().map(|u| u.to_string()),
|
|
|
|
body: oprops.get_content_xsd_string().map(|c| c.to_string()),
|
2020-04-07 21:02:32 +00:00
|
|
|
creator_id: creator.id,
|
2020-04-09 19:04:31 +00:00
|
|
|
community_id: community.id,
|
2020-04-07 16:47:19 +00:00
|
|
|
removed: None,
|
|
|
|
locked: 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
|
|
|
stickied: None,
|
2020-04-03 05:02:43 +00:00
|
|
|
embed_title: None,
|
|
|
|
embed_description: None,
|
|
|
|
embed_html: None,
|
|
|
|
thumbnail_url: None,
|
2020-04-07 16:47:19 +00:00
|
|
|
ap_id: oprops.get_id().unwrap().to_string(),
|
|
|
|
local: false,
|
2020-04-03 05:02:43 +00:00
|
|
|
})
|
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|