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;
|
2020-03-14 00:05:42 +00:00
|
|
|
use crate::db::post_view::PostView;
|
|
|
|
use activitystreams::{object::apub::Page, object::properties::ObjectProperties};
|
2020-03-12 00:01:25 +00:00
|
|
|
use failure::Error;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-03-14 00:05:42 +00:00
|
|
|
impl PostView {
|
2020-03-12 00:01:25 +00:00
|
|
|
pub fn as_page(&self) -> Result<Page, Error> {
|
2019-12-19 21:59:13 +00:00
|
|
|
let base_url = make_apub_endpoint("post", self.id);
|
|
|
|
let mut page = Page::default();
|
2020-03-12 00:01:25 +00:00
|
|
|
let oprops: &mut ObjectProperties = page.as_mut();
|
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)
|
|
|
|
//.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))?
|
|
|
|
.set_attributed_to_xsd_any_uri(make_apub_endpoint("u", &self.creator_id))?;
|
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("")
|
|
|
|
let url = self.url.as_ref();
|
|
|
|
if url.is_some() && !url.unwrap().is_empty() {
|
|
|
|
oprops.set_url_xsd_any_uri(url.unwrap().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-03-12 00:01:25 +00:00
|
|
|
|
|
|
|
// TODO: need to serve this via actix
|