2020-05-16 14:04:08 +00:00
|
|
|
use crate::{
|
2020-09-30 16:19:14 +00:00
|
|
|
activity_queue::send_to_community,
|
2020-09-24 13:53:21 +00:00
|
|
|
check_actor_domain,
|
|
|
|
create_apub_response,
|
|
|
|
create_apub_tombstone_response,
|
|
|
|
create_tombstone,
|
|
|
|
extensions::page_extension::PageExtension,
|
|
|
|
fetcher::{get_or_fetch_and_upsert_community, get_or_fetch_and_upsert_user},
|
2020-09-30 16:19:14 +00:00
|
|
|
generate_activity_id,
|
2020-09-24 13:53:21 +00:00
|
|
|
ActorType,
|
|
|
|
ApubLikeableType,
|
|
|
|
ApubObjectType,
|
|
|
|
FromApub,
|
|
|
|
PageExt,
|
|
|
|
ToApub,
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
2020-08-01 13:25:17 +00:00
|
|
|
use activitystreams::{
|
2020-07-28 16:47:26 +00:00
|
|
|
activity::{
|
|
|
|
kind::{CreateType, DeleteType, DislikeType, LikeType, RemoveType, UndoType, UpdateType},
|
2020-07-29 11:46:11 +00:00
|
|
|
Create,
|
|
|
|
Delete,
|
|
|
|
Dislike,
|
|
|
|
Like,
|
|
|
|
Remove,
|
|
|
|
Undo,
|
|
|
|
Update,
|
2020-07-28 16:47:26 +00:00
|
|
|
},
|
2020-09-24 17:43:42 +00:00
|
|
|
object::{kind::PageType, Image, Page, Tombstone},
|
2020-07-14 12:19:33 +00:00
|
|
|
prelude::*,
|
2020-07-17 21:11:07 +00:00
|
|
|
public,
|
2020-07-14 12:19:33 +00:00
|
|
|
};
|
2020-08-01 13:25:17 +00:00
|
|
|
use activitystreams_ext::Ext1;
|
2020-08-18 13:43:50 +00:00
|
|
|
use actix_web::{body::Body, web, HttpResponse};
|
2020-08-11 14:31:05 +00:00
|
|
|
use anyhow::Context;
|
2020-07-10 18:15:41 +00:00
|
|
|
use lemmy_db::{
|
|
|
|
community::Community,
|
|
|
|
post::{Post, PostForm},
|
|
|
|
user::User_,
|
|
|
|
Crud,
|
2020-09-24 13:53:21 +00:00
|
|
|
DbPool,
|
2020-07-10 18:15:41 +00:00
|
|
|
};
|
2020-09-16 13:31:30 +00:00
|
|
|
use lemmy_structs::blocking;
|
2020-09-14 15:29:50 +00:00
|
|
|
use lemmy_utils::{
|
|
|
|
location_info,
|
2020-09-24 17:43:42 +00:00
|
|
|
request::fetch_iframely_and_pictrs_data,
|
2020-09-14 15:29:50 +00:00
|
|
|
utils::{check_slurs, convert_datetime, remove_slurs},
|
|
|
|
LemmyError,
|
|
|
|
};
|
2020-09-24 13:53:21 +00:00
|
|
|
use lemmy_websocket::LemmyContext;
|
2020-06-01 14:17:20 +00:00
|
|
|
use serde::Deserialize;
|
2020-07-17 21:11:07 +00:00
|
|
|
use url::Url;
|
2020-03-16 18:19:04 +00:00
|
|
|
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct PostQuery {
|
|
|
|
post_id: String,
|
|
|
|
}
|
|
|
|
|
2020-04-17 15:33:55 +00:00
|
|
|
/// Return the post json over HTTP.
|
2020-03-16 18:19:04 +00:00
|
|
|
pub async fn get_apub_post(
|
2020-07-01 12:54:29 +00:00
|
|
|
info: web::Path<PostQuery>,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: web::Data<LemmyContext>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<HttpResponse<Body>, LemmyError> {
|
2020-03-16 18:19:04 +00:00
|
|
|
let id = info.post_id.parse::<i32>()?;
|
2020-08-18 13:43:50 +00:00
|
|
|
let post = blocking(context.pool(), move |conn| Post::read(conn, id)).await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-04-29 14:51:25 +00:00
|
|
|
if !post.deleted {
|
2020-08-18 13:43:50 +00:00
|
|
|
Ok(create_apub_response(&post.to_apub(context.pool()).await?))
|
2020-04-29 14:51:25 +00:00
|
|
|
} else {
|
|
|
|
Ok(create_apub_tombstone_response(&post.to_tombstone()?))
|
|
|
|
}
|
2020-03-16 18:19:04 +00:00
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-04-24 21:30:27 +00:00
|
|
|
impl ToApub for Post {
|
2020-05-05 00:04:48 +00:00
|
|
|
type Response = PageExt;
|
2020-04-24 21:30:27 +00:00
|
|
|
|
2020-04-17 15:33:55 +00:00
|
|
|
// Turn a Lemmy post into an ActivityPub page that can be sent out over the network.
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn to_apub(&self, pool: &DbPool) -> Result<PageExt, LemmyError> {
|
2020-07-14 12:19:33 +00:00
|
|
|
let mut page = Page::new();
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let creator_id = self.creator_id;
|
|
|
|
let creator = blocking(pool, move |conn| User_::read(conn, creator_id)).await??;
|
|
|
|
|
|
|
|
let community_id = self.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
2019-12-19 21:59:13 +00:00
|
|
|
|
2020-07-14 12:19:33 +00:00
|
|
|
page
|
2020-03-14 00:05:42 +00:00
|
|
|
// Not needed when the Post is embedded in a collection (like for community outbox)
|
2020-05-05 00:04:48 +00:00
|
|
|
// TODO: need to set proper context defining sensitive/commentsEnabled fields
|
|
|
|
// https://git.asonix.dog/Aardwolf/activitystreams/issues/5
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_id(self.ap_id.parse::<Url>()?)
|
2020-04-13 13:06:41 +00:00
|
|
|
// Use summary field to be consistent with mastodon content warning.
|
2020-04-13 12:13:06 +00:00
|
|
|
// https://mastodon.xyz/@Louisa/103987265222901387.json
|
2020-07-14 12:19:33 +00:00
|
|
|
.set_summary(self.name.to_owned())
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_published(convert_datetime(self.published))
|
2020-07-14 12:19:33 +00:00
|
|
|
.set_to(community.actor_id)
|
|
|
|
.set_attributed_to(creator.actor_id);
|
2019-12-19 21:59:13 +00:00
|
|
|
|
|
|
|
if let Some(body) = &self.body {
|
2020-07-14 12:19:33 +00:00
|
|
|
page.set_content(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-05-05 00:04:48 +00:00
|
|
|
// https://github.com/LemmyNet/lemmy/issues/602
|
2020-03-16 18:19:04 +00:00
|
|
|
let url = self.url.as_ref().filter(|u| !u.is_empty());
|
|
|
|
if let Some(u) = url {
|
2020-07-14 12:19:33 +00:00
|
|
|
page.set_url(u.to_owned());
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
|
2020-05-16 00:23:20 +00:00
|
|
|
if let Some(thumbnail_url) = &self.thumbnail_url {
|
|
|
|
let mut image = Image::new();
|
2020-07-28 15:42:40 +00:00
|
|
|
image.set_url(thumbnail_url.to_string());
|
2020-07-14 12:19:33 +00:00
|
|
|
page.set_image(image.into_any_base()?);
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
|
2020-03-12 00:01:25 +00:00
|
|
|
if let Some(u) = self.updated {
|
2020-07-17 21:11:07 +00:00
|
|
|
page.set_updated(convert_datetime(u));
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
|
|
|
|
2020-05-05 00:04:48 +00:00
|
|
|
let ext = PageExtension {
|
|
|
|
comments_enabled: !self.locked,
|
|
|
|
sensitive: self.nsfw,
|
2020-07-27 15:42:15 +00:00
|
|
|
stickied: self.stickied,
|
2020-05-05 00:04:48 +00:00
|
|
|
};
|
2020-05-18 16:15:26 +00:00
|
|
|
Ok(Ext1::new(page, ext))
|
2020-04-29 14:51:25 +00:00
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
fn to_tombstone(&self) -> Result<Tombstone, LemmyError> {
|
2020-07-28 16:47:26 +00:00
|
|
|
create_tombstone(self.deleted, &self.ap_id, self.updated, PageType::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-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-04-24 21:30:27 +00:00
|
|
|
impl FromApub for PostForm {
|
2020-05-05 00:04:48 +00:00
|
|
|
type ApubType = PageExt;
|
2020-04-24 21:30:27 +00:00
|
|
|
|
2020-04-17 15:33:55 +00:00
|
|
|
/// Parse an ActivityPub page received from another instance into a Lemmy post.
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn from_apub(
|
2020-07-13 13:56:58 +00:00
|
|
|
page: &PageExt,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &LemmyContext,
|
2020-08-06 12:53:58 +00:00
|
|
|
expected_domain: Option<Url>,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<PostForm, LemmyError> {
|
2020-05-18 16:15:26 +00:00
|
|
|
let ext = &page.ext_one;
|
2020-07-14 12:19:33 +00:00
|
|
|
let creator_actor_id = page
|
|
|
|
.inner
|
2020-07-17 21:11:07 +00:00
|
|
|
.attributed_to()
|
2020-07-14 12:19:33 +00:00
|
|
|
.as_ref()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?
|
2020-07-14 12:19:33 +00:00
|
|
|
.as_single_xsd_any_uri()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let creator = get_or_fetch_and_upsert_user(creator_actor_id, context).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-14 12:19:33 +00:00
|
|
|
let community_actor_id = page
|
|
|
|
.inner
|
2020-07-17 21:11:07 +00:00
|
|
|
.to()
|
2020-07-14 12:19:33 +00:00
|
|
|
.as_ref()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?
|
2020-07-14 12:19:33 +00:00
|
|
|
.as_single_xsd_any_uri()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = get_or_fetch_and_upsert_community(community_actor_id, context).await?;
|
2020-07-14 12:19:33 +00:00
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
let thumbnail_url = match &page.inner.image() {
|
2020-08-11 14:31:05 +00:00
|
|
|
Some(any_image) => Image::from_any_base(
|
|
|
|
any_image
|
|
|
|
.to_owned()
|
|
|
|
.as_one()
|
|
|
|
.context(location_info!())?
|
|
|
|
.to_owned(),
|
|
|
|
)?
|
|
|
|
.context(location_info!())?
|
|
|
|
.url()
|
|
|
|
.context(location_info!())?
|
|
|
|
.as_single_xsd_any_uri()
|
|
|
|
.map(|u| u.to_string()),
|
2020-05-16 00:23:20 +00:00
|
|
|
None => None,
|
|
|
|
};
|
2020-09-24 17:43:42 +00:00
|
|
|
let url = page
|
|
|
|
.inner
|
|
|
|
.url()
|
|
|
|
.map(|u| u.as_single_xsd_any_uri())
|
|
|
|
.flatten()
|
|
|
|
.map(|s| s.to_string());
|
2020-05-16 00:23:20 +00:00
|
|
|
|
2020-09-24 17:43:42 +00:00
|
|
|
let (iframely_title, iframely_description, iframely_html, pictrs_thumbnail) =
|
|
|
|
if let Some(url) = &url {
|
|
|
|
fetch_iframely_and_pictrs_data(context.client(), Some(url.to_owned())).await
|
|
|
|
} else {
|
|
|
|
(None, None, None, thumbnail_url)
|
|
|
|
};
|
2020-05-16 03:40:36 +00:00
|
|
|
|
2020-08-06 12:53:58 +00:00
|
|
|
let name = page
|
|
|
|
.inner
|
|
|
|
.summary()
|
|
|
|
.as_ref()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?
|
2020-08-06 12:53:58 +00:00
|
|
|
.as_single_xsd_string()
|
2020-08-11 14:31:05 +00:00
|
|
|
.context(location_info!())?
|
2020-08-06 12:53:58 +00:00
|
|
|
.to_string();
|
2020-07-14 12:19:33 +00:00
|
|
|
let body = page
|
|
|
|
.inner
|
2020-07-17 21:11:07 +00:00
|
|
|
.content()
|
2020-07-14 12:19:33 +00:00
|
|
|
.as_ref()
|
2020-08-11 14:31:05 +00:00
|
|
|
.map(|c| c.as_single_xsd_string())
|
|
|
|
.flatten()
|
|
|
|
.map(|s| s.to_string());
|
2020-08-06 12:53:58 +00:00
|
|
|
check_slurs(&name)?;
|
2020-08-06 19:44:47 +00:00
|
|
|
let body_slurs_removed = body.map(|b| remove_slurs(&b));
|
2020-04-07 16:47:19 +00:00
|
|
|
Ok(PostForm {
|
2020-08-06 12:53:58 +00:00
|
|
|
name,
|
2020-05-16 03:40:36 +00:00
|
|
|
url,
|
2020-08-06 19:44:47 +00:00
|
|
|
body: body_slurs_removed,
|
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-05-05 00:04:48 +00:00
|
|
|
removed: None,
|
|
|
|
locked: Some(!ext.comments_enabled),
|
2020-07-14 12:19:33 +00:00
|
|
|
published: page
|
|
|
|
.inner
|
2020-07-17 21:11:07 +00:00
|
|
|
.published()
|
2020-07-14 12:19:33 +00:00
|
|
|
.as_ref()
|
2020-07-17 21:11:07 +00:00
|
|
|
.map(|u| u.to_owned().naive_local()),
|
2020-07-14 12:19:33 +00:00
|
|
|
updated: page
|
|
|
|
.inner
|
2020-07-17 21:11:07 +00:00
|
|
|
.updated()
|
2020-07-14 12:19:33 +00:00
|
|
|
.as_ref()
|
2020-07-17 21:11:07 +00:00
|
|
|
.map(|u| u.to_owned().naive_local()),
|
2020-05-05 00:04:48 +00:00
|
|
|
deleted: None,
|
|
|
|
nsfw: ext.sensitive,
|
2020-07-27 15:42:15 +00:00
|
|
|
stickied: Some(ext.stickied),
|
2020-09-24 17:43:42 +00:00
|
|
|
embed_title: iframely_title,
|
|
|
|
embed_description: iframely_description,
|
|
|
|
embed_html: iframely_html,
|
|
|
|
thumbnail_url: pictrs_thumbnail,
|
2020-08-31 13:48:02 +00:00
|
|
|
ap_id: Some(check_actor_domain(page, expected_domain)?),
|
2020-04-07 16:47:19 +00:00
|
|
|
local: false,
|
2020-04-03 05:02:43 +00:00
|
|
|
})
|
|
|
|
}
|
2019-12-19 21:59:13 +00:00
|
|
|
}
|
2020-04-27 16:57:00 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-04-27 16:57:00 +00:00
|
|
|
impl ApubObjectType for Post {
|
|
|
|
/// Send out information about a newly created post, to the followers of the community.
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn send_create(&self, creator: &User_, context: &LemmyContext) -> Result<(), LemmyError> {
|
|
|
|
let page = self.to_apub(context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let community_id = self.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut create = Create::new(creator.actor_id.to_owned(), page.into_any_base()?);
|
2020-04-27 16:57:00 +00:00
|
|
|
create
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(CreateType::Create)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-04-27 22:17:02 +00:00
|
|
|
|
2020-09-30 16:19:14 +00:00
|
|
|
send_to_community(creator, &community, create, context).await?;
|
2020-04-27 16:57:00 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Send out information about an edited post, to the followers of the community.
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn send_update(&self, creator: &User_, context: &LemmyContext) -> Result<(), LemmyError> {
|
|
|
|
let page = self.to_apub(context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let community_id = self.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut update = Update::new(creator.actor_id.to_owned(), page.into_any_base()?);
|
2020-04-27 16:57:00 +00:00
|
|
|
update
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(UpdateType::Update)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-04-27 22:17:02 +00:00
|
|
|
|
2020-09-30 16:19:14 +00:00
|
|
|
send_to_community(creator, &community, update, context).await?;
|
2020-04-27 16:57:00 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-04-29 14:51:25 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn send_delete(&self, creator: &User_, context: &LemmyContext) -> Result<(), LemmyError> {
|
|
|
|
let page = self.to_apub(context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let community_id = self.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut delete = Delete::new(creator.actor_id.to_owned(), page.into_any_base()?);
|
2020-04-29 14:51:25 +00:00
|
|
|
delete
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(DeleteType::Delete)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-04-29 14:51:25 +00:00
|
|
|
|
2020-09-30 16:19:14 +00:00
|
|
|
send_to_community(creator, &community, delete, context).await?;
|
2020-05-01 19:01:29 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_undo_delete(
|
|
|
|
&self,
|
|
|
|
creator: &User_,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &LemmyContext,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-08-18 13:43:50 +00:00
|
|
|
let page = self.to_apub(context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let community_id = self.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut delete = Delete::new(creator.actor_id.to_owned(), page.into_any_base()?);
|
2020-05-01 19:01:29 +00:00
|
|
|
delete
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(DeleteType::Delete)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-05-01 19:01:29 +00:00
|
|
|
|
|
|
|
// Undo that fake activity
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut undo = Undo::new(creator.actor_id.to_owned(), delete.into_any_base()?);
|
2020-05-01 19:01:29 +00:00
|
|
|
undo
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(UndoType::Undo)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-05-01 19:01:29 +00:00
|
|
|
|
2020-09-30 16:19:14 +00:00
|
|
|
send_to_community(creator, &community, undo, context).await?;
|
2020-05-03 14:00:59 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn send_remove(&self, mod_: &User_, context: &LemmyContext) -> Result<(), LemmyError> {
|
|
|
|
let page = self.to_apub(context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let community_id = self.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut remove = Remove::new(mod_.actor_id.to_owned(), page.into_any_base()?);
|
2020-05-03 14:00:59 +00:00
|
|
|
remove
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(RemoveType::Remove)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-05-03 14:00:59 +00:00
|
|
|
|
2020-09-30 16:19:14 +00:00
|
|
|
send_to_community(mod_, &community, remove, context).await?;
|
2020-05-03 14:00:59 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn send_undo_remove(&self, mod_: &User_, context: &LemmyContext) -> Result<(), LemmyError> {
|
|
|
|
let page = self.to_apub(context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let community_id = self.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut remove = Remove::new(mod_.actor_id.to_owned(), page.into_any_base()?);
|
2020-05-03 14:00:59 +00:00
|
|
|
remove
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(RemoveType::Remove)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-05-03 14:00:59 +00:00
|
|
|
|
|
|
|
// Undo that fake activity
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut undo = Undo::new(mod_.actor_id.to_owned(), remove.into_any_base()?);
|
2020-05-03 14:00:59 +00:00
|
|
|
undo
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(UndoType::Undo)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-05-03 14:00:59 +00:00
|
|
|
|
2020-09-30 16:19:14 +00:00
|
|
|
send_to_community(mod_, &community, undo, context).await?;
|
2020-04-29 14:51:25 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-04-27 16:57:00 +00:00
|
|
|
}
|
2020-04-28 02:46:09 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-04-28 02:46:09 +00:00
|
|
|
impl ApubLikeableType for Post {
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn send_like(&self, creator: &User_, context: &LemmyContext) -> Result<(), LemmyError> {
|
|
|
|
let page = self.to_apub(context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let community_id = self.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut like = Like::new(creator.actor_id.to_owned(), page.into_any_base()?);
|
2020-04-28 02:46:09 +00:00
|
|
|
like
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(LikeType::Like)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-04-28 02:46:09 +00:00
|
|
|
|
2020-09-30 16:19:14 +00:00
|
|
|
send_to_community(&creator, &community, like, context).await?;
|
2020-04-28 02:46:09 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-08-18 13:43:50 +00:00
|
|
|
async fn send_dislike(&self, creator: &User_, context: &LemmyContext) -> Result<(), LemmyError> {
|
|
|
|
let page = self.to_apub(context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let community_id = self.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut dislike = Dislike::new(creator.actor_id.to_owned(), page.into_any_base()?);
|
2020-04-28 02:46:09 +00:00
|
|
|
dislike
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(DislikeType::Dislike)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-04-28 02:46:09 +00:00
|
|
|
|
2020-09-30 16:19:14 +00:00
|
|
|
send_to_community(&creator, &community, dislike, context).await?;
|
2020-04-28 02:46:09 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-05-04 00:34:04 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_undo_like(
|
|
|
|
&self,
|
|
|
|
creator: &User_,
|
2020-08-18 13:43:50 +00:00
|
|
|
context: &LemmyContext,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<(), LemmyError> {
|
2020-08-18 13:43:50 +00:00
|
|
|
let page = self.to_apub(context.pool()).await?;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let community_id = self.community_id;
|
2020-08-18 13:43:50 +00:00
|
|
|
let community = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??;
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut like = Like::new(creator.actor_id.to_owned(), page.into_any_base()?);
|
2020-05-04 00:34:04 +00:00
|
|
|
like
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(LikeType::Like)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-05-04 00:34:04 +00:00
|
|
|
|
|
|
|
// Undo that fake activity
|
2020-07-17 21:11:07 +00:00
|
|
|
let mut undo = Undo::new(creator.actor_id.to_owned(), like.into_any_base()?);
|
2020-05-04 00:34:04 +00:00
|
|
|
undo
|
2020-08-18 13:43:50 +00:00
|
|
|
.set_context(activitystreams::context())
|
2020-07-28 16:47:26 +00:00
|
|
|
.set_id(generate_activity_id(UndoType::Undo)?)
|
2020-07-17 21:11:07 +00:00
|
|
|
.set_to(public())
|
2020-08-12 14:43:45 +00:00
|
|
|
.set_many_ccs(vec![community.get_followers_url()?]);
|
2020-05-04 00:34:04 +00:00
|
|
|
|
2020-09-30 16:19:14 +00:00
|
|
|
send_to_community(&creator, &community, undo, context).await?;
|
2020-05-07 17:07:33 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|