2020-05-16 14:04:08 +00:00
|
|
|
use crate::{
|
|
|
|
apub::{
|
2020-06-01 14:17:20 +00:00
|
|
|
activities::{populate_object_props, send_activity_to_community},
|
2020-05-16 14:04:08 +00:00
|
|
|
create_apub_response,
|
|
|
|
create_apub_tombstone_response,
|
|
|
|
create_tombstone,
|
2020-05-17 01:09:26 +00:00
|
|
|
fetch_webfinger_url,
|
2020-06-11 15:16:33 +00:00
|
|
|
fetcher::{
|
|
|
|
get_or_fetch_and_insert_remote_comment,
|
|
|
|
get_or_fetch_and_insert_remote_post,
|
|
|
|
get_or_fetch_and_upsert_remote_user,
|
|
|
|
},
|
2020-05-16 14:04:08 +00:00
|
|
|
ActorType,
|
|
|
|
ApubLikeableType,
|
|
|
|
ApubObjectType,
|
|
|
|
FromApub,
|
|
|
|
ToApub,
|
|
|
|
},
|
2020-07-01 12:54:29 +00:00
|
|
|
blocking,
|
2020-05-16 14:04:08 +00:00
|
|
|
convert_datetime,
|
|
|
|
db::{
|
|
|
|
comment::{Comment, CommentForm},
|
|
|
|
community::Community,
|
|
|
|
post::Post,
|
|
|
|
user::User_,
|
|
|
|
Crud,
|
|
|
|
},
|
|
|
|
routes::DbPoolParam,
|
2020-05-17 01:09:26 +00:00
|
|
|
scrape_text_for_mentions,
|
2020-07-01 12:54:29 +00:00
|
|
|
DbPool,
|
|
|
|
LemmyError,
|
2020-05-17 01:09:26 +00:00
|
|
|
MentionData,
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
|
|
|
use activitystreams::{
|
|
|
|
activity::{Create, Delete, Dislike, Like, Remove, Undo, Update},
|
|
|
|
context,
|
2020-05-17 01:09:26 +00:00
|
|
|
link::Mention,
|
2020-06-03 15:10:16 +00:00
|
|
|
object::{kind::NoteType, properties::ObjectProperties, Note},
|
2020-05-16 14:04:08 +00:00
|
|
|
};
|
2020-06-03 15:10:16 +00:00
|
|
|
use activitystreams_new::object::Tombstone;
|
2020-07-01 12:54:29 +00:00
|
|
|
use actix_web::{body::Body, client::Client, web::Path, HttpResponse};
|
2020-05-17 01:09:26 +00:00
|
|
|
use itertools::Itertools;
|
|
|
|
use log::debug;
|
2020-06-01 14:17:20 +00:00
|
|
|
use serde::Deserialize;
|
2020-04-27 16:57:00 +00:00
|
|
|
|
2020-05-13 17:21:32 +00:00
|
|
|
#[derive(Deserialize)]
|
|
|
|
pub struct CommentQuery {
|
|
|
|
comment_id: String,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the post json over HTTP.
|
|
|
|
pub async fn get_apub_comment(
|
|
|
|
info: Path<CommentQuery>,
|
|
|
|
db: DbPoolParam,
|
2020-07-01 12:54:29 +00:00
|
|
|
) -> Result<HttpResponse<Body>, LemmyError> {
|
2020-05-13 17:21:32 +00:00
|
|
|
let id = info.comment_id.parse::<i32>()?;
|
2020-07-01 12:54:29 +00:00
|
|
|
let comment = blocking(&db, move |conn| Comment::read(conn, id)).await??;
|
|
|
|
|
2020-05-13 17:21:32 +00:00
|
|
|
if !comment.deleted {
|
2020-07-01 12:54:29 +00:00
|
|
|
Ok(create_apub_response(&comment.to_apub(&db).await?))
|
2020-05-13 17:21:32 +00:00
|
|
|
} else {
|
|
|
|
Ok(create_apub_tombstone_response(&comment.to_tombstone()?))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-04-27 16:57:00 +00:00
|
|
|
impl ToApub for Comment {
|
|
|
|
type Response = Note;
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn to_apub(&self, pool: &DbPool) -> Result<Note, LemmyError> {
|
2020-04-27 16:57:00 +00:00
|
|
|
let mut comment = Note::default();
|
|
|
|
let oprops: &mut ObjectProperties = comment.as_mut();
|
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 post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
2020-04-27 16:57:00 +00:00
|
|
|
|
|
|
|
// Add a vector containing some important info to the "in_reply_to" field
|
|
|
|
// [post_ap_id, Option(parent_comment_ap_id)]
|
|
|
|
let mut in_reply_to_vec = vec![post.ap_id];
|
|
|
|
|
|
|
|
if let Some(parent_id) = self.parent_id {
|
2020-07-01 12:54:29 +00:00
|
|
|
let parent_comment = blocking(pool, move |conn| Comment::read(conn, parent_id)).await??;
|
|
|
|
|
2020-04-27 16:57:00 +00:00
|
|
|
in_reply_to_vec.push(parent_comment.ap_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
oprops
|
|
|
|
// Not needed when the Post is embedded in a collection (like for community outbox)
|
|
|
|
.set_context_xsd_any_uri(context())?
|
|
|
|
.set_id(self.ap_id.to_owned())?
|
|
|
|
.set_published(convert_datetime(self.published))?
|
|
|
|
.set_to_xsd_any_uri(community.actor_id)?
|
|
|
|
.set_many_in_reply_to_xsd_any_uris(in_reply_to_vec)?
|
|
|
|
.set_content_xsd_string(self.content.to_owned())?
|
|
|
|
.set_attributed_to_xsd_any_uri(creator.actor_id)?;
|
|
|
|
|
|
|
|
if let Some(u) = self.updated {
|
|
|
|
oprops.set_updated(convert_datetime(u))?;
|
|
|
|
}
|
|
|
|
|
2020-04-29 14:51:25 +00:00
|
|
|
Ok(comment)
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
fn to_tombstone(&self) -> Result<Tombstone, LemmyError> {
|
2020-05-01 14:07:38 +00:00
|
|
|
create_tombstone(
|
|
|
|
self.deleted,
|
|
|
|
&self.ap_id,
|
|
|
|
self.updated,
|
|
|
|
NoteType.to_string(),
|
|
|
|
)
|
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 FromApub for CommentForm {
|
|
|
|
type ApubType = Note;
|
|
|
|
|
|
|
|
/// Parse an ActivityPub note received from another instance into a Lemmy comment
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn from_apub(
|
2020-07-03 12:20:28 +00:00
|
|
|
note: &mut Note,
|
2020-07-01 12:54:29 +00:00
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<CommentForm, LemmyError> {
|
2020-04-27 16:57:00 +00:00
|
|
|
let oprops = ¬e.object_props;
|
|
|
|
let creator_actor_id = &oprops.get_attributed_to_xsd_any_uri().unwrap().to_string();
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let creator = get_or_fetch_and_upsert_remote_user(&creator_actor_id, client, pool).await?;
|
2020-04-27 16:57:00 +00:00
|
|
|
|
|
|
|
let mut in_reply_tos = oprops.get_many_in_reply_to_xsd_any_uris().unwrap();
|
|
|
|
let post_ap_id = in_reply_tos.next().unwrap().to_string();
|
|
|
|
|
2020-06-11 15:16:33 +00:00
|
|
|
// This post, or the parent comment might not yet exist on this server yet, fetch them.
|
2020-07-01 12:54:29 +00:00
|
|
|
let post = get_or_fetch_and_insert_remote_post(&post_ap_id, client, pool).await?;
|
2020-06-11 15:16:33 +00:00
|
|
|
|
2020-04-27 16:57:00 +00:00
|
|
|
// The 2nd item, if it exists, is the parent comment apub_id
|
2020-06-11 15:16:33 +00:00
|
|
|
// For deeply nested comments, FromApub automatically gets called recursively
|
2020-04-27 16:57:00 +00:00
|
|
|
let parent_id: Option<i32> = match in_reply_tos.next() {
|
|
|
|
Some(parent_comment_uri) => {
|
2020-06-11 15:16:33 +00:00
|
|
|
let parent_comment_ap_id = &parent_comment_uri.to_string();
|
2020-07-01 12:54:29 +00:00
|
|
|
let parent_comment =
|
|
|
|
get_or_fetch_and_insert_remote_comment(&parent_comment_ap_id, client, pool).await?;
|
2020-04-27 16:57:00 +00:00
|
|
|
|
|
|
|
Some(parent_comment.id)
|
|
|
|
}
|
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
|
|
|
Ok(CommentForm {
|
|
|
|
creator_id: creator.id,
|
|
|
|
post_id: post.id,
|
|
|
|
parent_id,
|
|
|
|
content: oprops
|
|
|
|
.get_content_xsd_string()
|
|
|
|
.map(|c| c.to_string())
|
|
|
|
.unwrap(),
|
|
|
|
removed: None,
|
|
|
|
read: None,
|
|
|
|
published: oprops
|
|
|
|
.get_published()
|
|
|
|
.map(|u| u.as_ref().to_owned().naive_local()),
|
|
|
|
updated: oprops
|
|
|
|
.get_updated()
|
|
|
|
.map(|u| u.as_ref().to_owned().naive_local()),
|
|
|
|
deleted: None,
|
|
|
|
ap_id: oprops.get_id().unwrap().to_string(),
|
|
|
|
local: false,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-04-27 16:57:00 +00:00
|
|
|
impl ApubObjectType for Comment {
|
|
|
|
/// Send out information about a newly created comment, to the followers of the community.
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_create(
|
|
|
|
&self,
|
|
|
|
creator: &User_,
|
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let note = self.to_apub(pool).await?;
|
2020-04-28 04:16:02 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
2020-05-15 16:36:11 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
|
|
|
|
|
|
|
let maa =
|
|
|
|
collect_non_local_mentions_and_addresses(&self.content, &community, client, pool).await?;
|
|
|
|
|
|
|
|
let id = format!("{}/create/{}", self.ap_id, uuid::Uuid::new_v4());
|
2020-04-27 16:57:00 +00:00
|
|
|
let mut create = Create::new();
|
2020-05-15 16:36:11 +00:00
|
|
|
populate_object_props(&mut create.object_props, maa.addressed_ccs, &id)?;
|
|
|
|
|
|
|
|
// Set the mention tags
|
|
|
|
create.object_props.set_many_tag_base_boxes(maa.tags)?;
|
|
|
|
|
2020-04-27 16:57:00 +00:00
|
|
|
create
|
|
|
|
.create_props
|
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
2020-04-29 14:51:25 +00:00
|
|
|
.set_object_base_box(note)?;
|
2020-04-27 22:17:02 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
send_activity_to_community(&creator, &community, maa.inboxes, create, client, pool).await?;
|
2020-04-27 16:57:00 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Send out information about an edited post, to the followers of the community.
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_update(
|
|
|
|
&self,
|
|
|
|
creator: &User_,
|
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let note = self.to_apub(pool).await?;
|
|
|
|
|
|
|
|
let post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
2020-04-28 04:16:02 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let maa =
|
|
|
|
collect_non_local_mentions_and_addresses(&self.content, &community, client, pool).await?;
|
2020-05-15 16:36:11 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
let id = format!("{}/update/{}", self.ap_id, uuid::Uuid::new_v4());
|
2020-04-27 16:57:00 +00:00
|
|
|
let mut update = Update::new();
|
2020-05-15 16:36:11 +00:00
|
|
|
populate_object_props(&mut update.object_props, maa.addressed_ccs, &id)?;
|
|
|
|
|
|
|
|
// Set the mention tags
|
|
|
|
update.object_props.set_many_tag_base_boxes(maa.tags)?;
|
|
|
|
|
2020-04-27 16:57:00 +00:00
|
|
|
update
|
|
|
|
.update_props
|
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
2020-04-29 14:51:25 +00:00
|
|
|
.set_object_base_box(note)?;
|
2020-04-27 22:17:02 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
send_activity_to_community(&creator, &community, maa.inboxes, update, client, pool).await?;
|
2020-04-27 16:57:00 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-04-29 14:51:25 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_delete(
|
|
|
|
&self,
|
|
|
|
creator: &User_,
|
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let note = self.to_apub(pool).await?;
|
|
|
|
|
|
|
|
let post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
|
|
|
|
2020-05-01 14:07:38 +00:00
|
|
|
let id = format!("{}/delete/{}", self.ap_id, uuid::Uuid::new_v4());
|
2020-04-29 14:51:25 +00:00
|
|
|
let mut delete = Delete::default();
|
2020-05-01 14:07:38 +00:00
|
|
|
|
|
|
|
populate_object_props(
|
|
|
|
&mut delete.object_props,
|
2020-05-15 16:36:11 +00:00
|
|
|
vec![community.get_followers_url()],
|
2020-05-01 14:07:38 +00:00
|
|
|
&id,
|
|
|
|
)?;
|
|
|
|
|
2020-04-29 14:51:25 +00:00
|
|
|
delete
|
|
|
|
.delete_props
|
2020-05-01 14:07:38 +00:00
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(note)?;
|
2020-04-29 14:51:25 +00:00
|
|
|
|
2020-06-01 14:17:20 +00:00
|
|
|
send_activity_to_community(
|
|
|
|
&creator,
|
|
|
|
&community,
|
|
|
|
vec![community.get_shared_inbox_url()],
|
|
|
|
delete,
|
2020-07-01 12:54:29 +00:00
|
|
|
client,
|
|
|
|
pool,
|
|
|
|
)
|
|
|
|
.await?;
|
2020-04-29 14:51:25 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-05-01 19:01:29 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_undo_delete(
|
|
|
|
&self,
|
|
|
|
creator: &User_,
|
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let note = self.to_apub(pool).await?;
|
|
|
|
|
|
|
|
let post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
2020-05-01 19:01:29 +00:00
|
|
|
|
|
|
|
// Generate a fake delete activity, with the correct object
|
|
|
|
let id = format!("{}/delete/{}", self.ap_id, uuid::Uuid::new_v4());
|
|
|
|
let mut delete = Delete::default();
|
|
|
|
|
|
|
|
populate_object_props(
|
|
|
|
&mut delete.object_props,
|
2020-05-15 16:36:11 +00:00
|
|
|
vec![community.get_followers_url()],
|
2020-05-01 19:01:29 +00:00
|
|
|
&id,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
delete
|
|
|
|
.delete_props
|
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(note)?;
|
|
|
|
|
2020-05-03 14:22:25 +00:00
|
|
|
// TODO
|
2020-05-01 19:01:29 +00:00
|
|
|
// Undo that fake activity
|
|
|
|
let undo_id = format!("{}/undo/delete/{}", self.ap_id, uuid::Uuid::new_v4());
|
|
|
|
let mut undo = Undo::default();
|
|
|
|
|
|
|
|
populate_object_props(
|
|
|
|
&mut undo.object_props,
|
2020-05-15 16:36:11 +00:00
|
|
|
vec![community.get_followers_url()],
|
2020-05-01 19:01:29 +00:00
|
|
|
&undo_id,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
undo
|
|
|
|
.undo_props
|
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(delete)?;
|
|
|
|
|
2020-06-01 14:17:20 +00:00
|
|
|
send_activity_to_community(
|
|
|
|
&creator,
|
|
|
|
&community,
|
|
|
|
vec![community.get_shared_inbox_url()],
|
|
|
|
undo,
|
2020-07-01 12:54:29 +00:00
|
|
|
client,
|
|
|
|
pool,
|
|
|
|
)
|
|
|
|
.await?;
|
2020-05-01 19:01:29 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-05-03 14:00:59 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_remove(
|
|
|
|
&self,
|
|
|
|
mod_: &User_,
|
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let note = self.to_apub(pool).await?;
|
|
|
|
|
|
|
|
let post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
|
|
|
|
2020-05-03 14:00:59 +00:00
|
|
|
let id = format!("{}/remove/{}", self.ap_id, uuid::Uuid::new_v4());
|
|
|
|
let mut remove = Remove::default();
|
|
|
|
|
|
|
|
populate_object_props(
|
|
|
|
&mut remove.object_props,
|
2020-05-15 16:36:11 +00:00
|
|
|
vec![community.get_followers_url()],
|
2020-05-03 14:00:59 +00:00
|
|
|
&id,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
remove
|
|
|
|
.remove_props
|
|
|
|
.set_actor_xsd_any_uri(mod_.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(note)?;
|
|
|
|
|
2020-06-01 14:17:20 +00:00
|
|
|
send_activity_to_community(
|
|
|
|
&mod_,
|
|
|
|
&community,
|
|
|
|
vec![community.get_shared_inbox_url()],
|
|
|
|
remove,
|
2020-07-01 12:54:29 +00:00
|
|
|
client,
|
|
|
|
pool,
|
|
|
|
)
|
|
|
|
.await?;
|
2020-05-03 14:00:59 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_undo_remove(
|
|
|
|
&self,
|
|
|
|
mod_: &User_,
|
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let note = self.to_apub(pool).await?;
|
|
|
|
|
|
|
|
let post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
2020-05-03 14:00:59 +00:00
|
|
|
|
|
|
|
// Generate a fake delete activity, with the correct object
|
|
|
|
let id = format!("{}/remove/{}", self.ap_id, uuid::Uuid::new_v4());
|
|
|
|
let mut remove = Remove::default();
|
|
|
|
|
|
|
|
populate_object_props(
|
|
|
|
&mut remove.object_props,
|
2020-05-15 16:36:11 +00:00
|
|
|
vec![community.get_followers_url()],
|
2020-05-03 14:00:59 +00:00
|
|
|
&id,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
remove
|
|
|
|
.remove_props
|
|
|
|
.set_actor_xsd_any_uri(mod_.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(note)?;
|
|
|
|
|
|
|
|
// Undo that fake activity
|
|
|
|
let undo_id = format!("{}/undo/remove/{}", self.ap_id, uuid::Uuid::new_v4());
|
|
|
|
let mut undo = Undo::default();
|
|
|
|
|
|
|
|
populate_object_props(
|
|
|
|
&mut undo.object_props,
|
2020-05-15 16:36:11 +00:00
|
|
|
vec![community.get_followers_url()],
|
2020-05-03 14:00:59 +00:00
|
|
|
&undo_id,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
undo
|
|
|
|
.undo_props
|
|
|
|
.set_actor_xsd_any_uri(mod_.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(remove)?;
|
|
|
|
|
2020-06-01 14:17:20 +00:00
|
|
|
send_activity_to_community(
|
|
|
|
&mod_,
|
|
|
|
&community,
|
|
|
|
vec![community.get_shared_inbox_url()],
|
|
|
|
undo,
|
2020-07-01 12:54:29 +00:00
|
|
|
client,
|
|
|
|
pool,
|
|
|
|
)
|
|
|
|
.await?;
|
2020-05-03 14:00:59 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-04-27 16:57:00 +00:00
|
|
|
}
|
2020-04-28 04:16:02 +00:00
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2020-04-28 04:16:02 +00:00
|
|
|
impl ApubLikeableType for Comment {
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_like(
|
|
|
|
&self,
|
|
|
|
creator: &User_,
|
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let note = self.to_apub(pool).await?;
|
|
|
|
|
|
|
|
let post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
|
|
|
|
2020-04-28 04:16:02 +00:00
|
|
|
let id = format!("{}/like/{}", self.ap_id, uuid::Uuid::new_v4());
|
|
|
|
|
|
|
|
let mut like = Like::new();
|
2020-05-15 16:36:11 +00:00
|
|
|
populate_object_props(
|
|
|
|
&mut like.object_props,
|
|
|
|
vec![community.get_followers_url()],
|
|
|
|
&id,
|
|
|
|
)?;
|
2020-04-28 04:16:02 +00:00
|
|
|
like
|
|
|
|
.like_props
|
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
2020-04-29 14:51:25 +00:00
|
|
|
.set_object_base_box(note)?;
|
2020-04-28 04:16:02 +00:00
|
|
|
|
2020-06-01 14:17:20 +00:00
|
|
|
send_activity_to_community(
|
|
|
|
&creator,
|
|
|
|
&community,
|
|
|
|
vec![community.get_shared_inbox_url()],
|
|
|
|
like,
|
2020-07-01 12:54:29 +00:00
|
|
|
client,
|
|
|
|
pool,
|
|
|
|
)
|
|
|
|
.await?;
|
2020-04-28 04:16:02 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn send_dislike(
|
|
|
|
&self,
|
|
|
|
creator: &User_,
|
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let note = self.to_apub(pool).await?;
|
|
|
|
|
|
|
|
let post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
|
|
|
|
2020-04-28 04:16:02 +00:00
|
|
|
let id = format!("{}/dislike/{}", self.ap_id, uuid::Uuid::new_v4());
|
|
|
|
|
|
|
|
let mut dislike = Dislike::new();
|
|
|
|
populate_object_props(
|
|
|
|
&mut dislike.object_props,
|
2020-05-15 16:36:11 +00:00
|
|
|
vec![community.get_followers_url()],
|
2020-04-28 04:16:02 +00:00
|
|
|
&id,
|
|
|
|
)?;
|
|
|
|
dislike
|
|
|
|
.dislike_props
|
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
2020-04-29 14:51:25 +00:00
|
|
|
.set_object_base_box(note)?;
|
2020-04-28 04:16:02 +00:00
|
|
|
|
2020-06-01 14:17:20 +00:00
|
|
|
send_activity_to_community(
|
|
|
|
&creator,
|
|
|
|
&community,
|
|
|
|
vec![community.get_shared_inbox_url()],
|
|
|
|
dislike,
|
2020-07-01 12:54:29 +00:00
|
|
|
client,
|
|
|
|
pool,
|
|
|
|
)
|
|
|
|
.await?;
|
2020-04-28 04:16:02 +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_,
|
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let note = self.to_apub(pool).await?;
|
|
|
|
|
|
|
|
let post_id = self.post_id;
|
|
|
|
let post = blocking(pool, move |conn| Post::read(conn, post_id)).await??;
|
|
|
|
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community = blocking(pool, move |conn| Community::read(conn, community_id)).await??;
|
|
|
|
|
2020-05-04 00:34:04 +00:00
|
|
|
let id = format!("{}/dislike/{}", self.ap_id, uuid::Uuid::new_v4());
|
|
|
|
|
|
|
|
let mut like = Like::new();
|
2020-05-15 16:36:11 +00:00
|
|
|
populate_object_props(
|
|
|
|
&mut like.object_props,
|
|
|
|
vec![community.get_followers_url()],
|
|
|
|
&id,
|
|
|
|
)?;
|
2020-05-04 00:34:04 +00:00
|
|
|
like
|
|
|
|
.like_props
|
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(note)?;
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
// Undo that fake activity
|
|
|
|
let undo_id = format!("{}/undo/like/{}", self.ap_id, uuid::Uuid::new_v4());
|
|
|
|
let mut undo = Undo::default();
|
|
|
|
|
|
|
|
populate_object_props(
|
|
|
|
&mut undo.object_props,
|
2020-05-15 16:36:11 +00:00
|
|
|
vec![community.get_followers_url()],
|
2020-05-04 00:34:04 +00:00
|
|
|
&undo_id,
|
|
|
|
)?;
|
|
|
|
|
|
|
|
undo
|
|
|
|
.undo_props
|
|
|
|
.set_actor_xsd_any_uri(creator.actor_id.to_owned())?
|
|
|
|
.set_object_base_box(like)?;
|
|
|
|
|
2020-06-01 14:17:20 +00:00
|
|
|
send_activity_to_community(
|
|
|
|
&creator,
|
|
|
|
&community,
|
|
|
|
vec![community.get_shared_inbox_url()],
|
|
|
|
undo,
|
2020-07-01 12:54:29 +00:00
|
|
|
client,
|
|
|
|
pool,
|
|
|
|
)
|
|
|
|
.await?;
|
2020-05-04 00:34:04 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
2020-04-28 04:16:02 +00:00
|
|
|
}
|
2020-05-15 16:36:11 +00:00
|
|
|
|
|
|
|
struct MentionsAndAddresses {
|
|
|
|
addressed_ccs: Vec<String>,
|
|
|
|
inboxes: Vec<String>,
|
|
|
|
tags: Vec<Mention>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// This takes a comment, and builds a list of to_addresses, inboxes,
|
|
|
|
/// and mention tags, so they know where to be sent to.
|
|
|
|
/// Addresses are the users / addresses that go in the cc field.
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn collect_non_local_mentions_and_addresses(
|
2020-05-15 16:36:11 +00:00
|
|
|
content: &str,
|
|
|
|
community: &Community,
|
2020-07-01 12:54:29 +00:00
|
|
|
client: &Client,
|
|
|
|
pool: &DbPool,
|
|
|
|
) -> Result<MentionsAndAddresses, LemmyError> {
|
2020-05-15 16:36:11 +00:00
|
|
|
let mut addressed_ccs = vec![community.get_followers_url()];
|
|
|
|
|
|
|
|
// Add the mention tag
|
|
|
|
let mut tags = Vec::new();
|
|
|
|
|
|
|
|
// Get the inboxes for any mentions
|
|
|
|
let mentions = scrape_text_for_mentions(&content)
|
|
|
|
.into_iter()
|
|
|
|
// Filter only the non-local ones
|
|
|
|
.filter(|m| !m.is_local())
|
|
|
|
.collect::<Vec<MentionData>>();
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-05-15 16:36:11 +00:00
|
|
|
let mut mention_inboxes = Vec::new();
|
|
|
|
for mention in &mentions {
|
|
|
|
// TODO should it be fetching it every time?
|
2020-07-01 12:54:29 +00:00
|
|
|
if let Ok(actor_id) = fetch_webfinger_url(mention, client).await {
|
2020-05-15 16:36:11 +00:00
|
|
|
debug!("mention actor_id: {}", actor_id);
|
|
|
|
addressed_ccs.push(actor_id.to_owned());
|
2020-07-01 12:54:29 +00:00
|
|
|
|
|
|
|
let mention_user = get_or_fetch_and_upsert_remote_user(&actor_id, client, pool).await?;
|
2020-05-15 16:36:11 +00:00
|
|
|
let shared_inbox = mention_user.get_shared_inbox_url();
|
2020-07-01 12:54:29 +00:00
|
|
|
|
2020-05-15 16:36:11 +00:00
|
|
|
mention_inboxes.push(shared_inbox);
|
|
|
|
let mut mention_tag = Mention::new();
|
|
|
|
mention_tag
|
|
|
|
.link_props
|
|
|
|
.set_href(actor_id)?
|
|
|
|
.set_name_xsd_string(mention.full_name())?;
|
|
|
|
tags.push(mention_tag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-01 14:17:20 +00:00
|
|
|
let mut inboxes = vec![community.get_shared_inbox_url()];
|
2020-05-15 16:36:11 +00:00
|
|
|
inboxes.extend(mention_inboxes);
|
|
|
|
inboxes = inboxes.into_iter().unique().collect();
|
|
|
|
|
|
|
|
Ok(MentionsAndAddresses {
|
|
|
|
addressed_ccs,
|
|
|
|
inboxes,
|
|
|
|
tags,
|
|
|
|
})
|
|
|
|
}
|