2021-07-17 16:20:44 +00:00
|
|
|
use crate::{
|
2021-07-27 22:18:50 +00:00
|
|
|
activities::{
|
2021-10-14 16:33:19 +00:00
|
|
|
check_community_deleted_or_removed,
|
2021-11-15 21:37:19 +00:00
|
|
|
community::{announce::GetCommunity, send_activity_in_community},
|
2021-07-27 22:18:50 +00:00
|
|
|
generate_activity_id,
|
|
|
|
verify_activity,
|
2021-10-25 17:22:34 +00:00
|
|
|
verify_is_public,
|
2021-07-31 17:26:17 +00:00
|
|
|
verify_mod_action,
|
2021-07-27 22:18:50 +00:00
|
|
|
verify_person_in_community,
|
|
|
|
},
|
2021-10-29 10:32:42 +00:00
|
|
|
activity_lists::AnnouncableActivities,
|
2021-10-28 21:17:59 +00:00
|
|
|
objects::{community::ApubCommunity, person::ApubPerson, post::ApubPost},
|
2021-10-29 10:32:42 +00:00
|
|
|
protocol::activities::{create_or_update::post::CreateOrUpdatePost, CreateOrUpdateType},
|
2021-07-27 22:18:50 +00:00
|
|
|
};
|
2021-11-19 17:47:06 +00:00
|
|
|
use activitystreams_kinds::public;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_api_common::utils::blocking;
|
2021-11-03 17:33:51 +00:00
|
|
|
use lemmy_apub_lib::{
|
|
|
|
data::Data,
|
2021-11-05 00:24:10 +00:00
|
|
|
object_id::ObjectId,
|
2021-11-03 17:33:51 +00:00
|
|
|
traits::{ActivityHandler, ActorType, ApubObject},
|
|
|
|
verify::{verify_domains_match, verify_urls_match},
|
|
|
|
};
|
2022-04-07 20:46:10 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::{
|
|
|
|
community::Community,
|
|
|
|
post::{PostLike, PostLikeForm},
|
|
|
|
},
|
|
|
|
traits::{Crud, Likeable},
|
|
|
|
};
|
2021-11-03 17:33:51 +00:00
|
|
|
use lemmy_utils::LemmyError;
|
|
|
|
use lemmy_websocket::{send::send_post_ws_message, LemmyContext, UserOperationCrud};
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
|
2021-07-31 17:26:17 +00:00
|
|
|
impl CreateOrUpdatePost {
|
2021-10-27 16:03:07 +00:00
|
|
|
pub(crate) async fn new(
|
2021-11-06 12:37:55 +00:00
|
|
|
post: ApubPost,
|
2021-10-18 21:36:44 +00:00
|
|
|
actor: &ApubPerson,
|
2021-10-27 16:03:07 +00:00
|
|
|
community: &ApubCommunity,
|
2021-07-31 17:26:17 +00:00
|
|
|
kind: CreateOrUpdateType,
|
|
|
|
context: &LemmyContext,
|
2021-10-27 16:03:07 +00:00
|
|
|
) -> Result<CreateOrUpdatePost, LemmyError> {
|
2021-09-22 15:57:09 +00:00
|
|
|
let id = generate_activity_id(
|
|
|
|
kind.clone(),
|
|
|
|
&context.settings().get_protocol_and_hostname(),
|
|
|
|
)?;
|
2021-10-27 16:03:07 +00:00
|
|
|
Ok(CreateOrUpdatePost {
|
2021-09-25 15:44:52 +00:00
|
|
|
actor: ObjectId::new(actor.actor_id()),
|
2021-10-25 17:22:34 +00:00
|
|
|
to: vec![public()],
|
2021-11-06 12:37:55 +00:00
|
|
|
object: post.into_apub(context).await?,
|
2021-10-28 12:47:56 +00:00
|
|
|
cc: vec![community.actor_id()],
|
2021-07-31 17:26:17 +00:00
|
|
|
kind,
|
2021-08-19 21:24:33 +00:00
|
|
|
id: id.clone(),
|
|
|
|
unparsed: Default::default(),
|
2021-10-27 16:03:07 +00:00
|
|
|
})
|
|
|
|
}
|
2021-12-06 14:54:47 +00:00
|
|
|
|
|
|
|
#[tracing::instrument(skip_all)]
|
2021-10-27 16:03:07 +00:00
|
|
|
pub async fn send(
|
2021-11-06 12:37:55 +00:00
|
|
|
post: ApubPost,
|
2021-10-27 16:03:07 +00:00
|
|
|
actor: &ApubPerson,
|
|
|
|
kind: CreateOrUpdateType,
|
|
|
|
context: &LemmyContext,
|
|
|
|
) -> Result<(), LemmyError> {
|
|
|
|
let community_id = post.community_id;
|
|
|
|
let community: ApubCommunity = blocking(context.pool(), move |conn| {
|
|
|
|
Community::read(conn, community_id)
|
|
|
|
})
|
|
|
|
.await??
|
|
|
|
.into();
|
2021-11-11 19:49:15 +00:00
|
|
|
|
2021-10-27 16:03:07 +00:00
|
|
|
let create_or_update = CreateOrUpdatePost::new(post, actor, &community, kind, context).await?;
|
|
|
|
let id = create_or_update.id.clone();
|
2022-04-01 18:25:19 +00:00
|
|
|
let activity = AnnouncableActivities::CreateOrUpdatePost(Box::new(create_or_update));
|
2021-11-15 21:37:19 +00:00
|
|
|
send_activity_in_community(activity, &id, actor, &community, vec![], context).await
|
2021-07-27 22:18:50 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
#[async_trait::async_trait(?Send)]
|
2021-07-31 17:26:17 +00:00
|
|
|
impl ActivityHandler for CreateOrUpdatePost {
|
2021-10-06 20:20:05 +00:00
|
|
|
type DataType = LemmyContext;
|
2021-12-06 14:54:47 +00:00
|
|
|
|
|
|
|
#[tracing::instrument(skip_all)]
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
async fn verify(
|
|
|
|
&self,
|
2021-10-06 20:20:05 +00:00
|
|
|
context: &Data<LemmyContext>,
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<(), LemmyError> {
|
2021-11-06 17:44:34 +00:00
|
|
|
verify_is_public(&self.to, &self.cc)?;
|
2021-11-03 17:33:51 +00:00
|
|
|
verify_activity(&self.id, self.actor.inner(), &context.settings())?;
|
2021-10-28 11:46:48 +00:00
|
|
|
let community = self.get_community(context, request_counter).await?;
|
|
|
|
verify_person_in_community(&self.actor, &community, context, request_counter).await?;
|
2021-10-14 16:33:19 +00:00
|
|
|
check_community_deleted_or_removed(&community)?;
|
|
|
|
|
2021-07-31 17:26:17 +00:00
|
|
|
match self.kind {
|
|
|
|
CreateOrUpdateType::Create => {
|
2021-11-03 16:26:09 +00:00
|
|
|
verify_domains_match(self.actor.inner(), self.object.id.inner())?;
|
2022-05-06 23:53:33 +00:00
|
|
|
verify_urls_match(self.actor.inner(), self.object.creator()?.inner())?;
|
2021-07-31 17:26:17 +00:00
|
|
|
// Check that the post isnt locked or stickied, as that isnt possible for newly created posts.
|
|
|
|
// However, when fetching a remote post we generate a new create activity with the current
|
|
|
|
// locked/stickied value, so this check may fail. So only check if its a local community,
|
|
|
|
// because then we will definitely receive all create and update activities separately.
|
|
|
|
let is_stickied_or_locked =
|
|
|
|
self.object.stickied == Some(true) || self.object.comments_enabled == Some(false);
|
|
|
|
if community.local && is_stickied_or_locked {
|
2021-12-06 14:54:47 +00:00
|
|
|
return Err(LemmyError::from_message(
|
|
|
|
"New post cannot be stickied or locked",
|
|
|
|
));
|
2021-07-31 17:26:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
CreateOrUpdateType::Update => {
|
2021-10-06 20:20:05 +00:00
|
|
|
let is_mod_action = self.object.is_mod_action(context).await?;
|
2021-07-31 17:26:17 +00:00
|
|
|
if is_mod_action {
|
2022-04-04 14:46:49 +00:00
|
|
|
verify_mod_action(
|
|
|
|
&self.actor,
|
|
|
|
self.object.id.inner(),
|
|
|
|
&community,
|
|
|
|
context,
|
|
|
|
request_counter,
|
|
|
|
)
|
|
|
|
.await?;
|
2021-07-31 17:26:17 +00:00
|
|
|
} else {
|
2021-11-03 16:26:09 +00:00
|
|
|
verify_domains_match(self.actor.inner(), self.object.id.inner())?;
|
2022-05-06 23:53:33 +00:00
|
|
|
verify_urls_match(self.actor.inner(), self.object.creator()?.inner())?;
|
2021-07-31 17:26:17 +00:00
|
|
|
}
|
|
|
|
}
|
2021-07-27 22:18:50 +00:00
|
|
|
}
|
2021-11-06 17:35:14 +00:00
|
|
|
ApubPost::verify(&self.object, self.actor.inner(), context, request_counter).await?;
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
async fn receive(
|
2021-08-12 12:48:09 +00:00
|
|
|
self,
|
2021-10-06 20:20:05 +00:00
|
|
|
context: &Data<LemmyContext>,
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<(), LemmyError> {
|
2021-11-06 17:35:14 +00:00
|
|
|
let post = ApubPost::from_apub(self.object, context, request_counter).await?;
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
|
2022-04-07 20:46:10 +00:00
|
|
|
// author likes their own post by default
|
|
|
|
let like_form = PostLikeForm {
|
|
|
|
post_id: post.id,
|
|
|
|
person_id: post.creator_id,
|
|
|
|
score: 1,
|
|
|
|
};
|
|
|
|
blocking(context.pool(), move |conn: &'_ _| {
|
|
|
|
PostLike::like(conn, &like_form)
|
|
|
|
})
|
|
|
|
.await??;
|
|
|
|
|
2021-07-31 17:26:17 +00:00
|
|
|
let notif_type = match self.kind {
|
|
|
|
CreateOrUpdateType::Create => UserOperationCrud::CreatePost,
|
|
|
|
CreateOrUpdateType::Update => UserOperationCrud::EditPost,
|
|
|
|
};
|
2021-08-17 18:04:58 +00:00
|
|
|
send_post_ws_message(post.id, notif_type, None, None, context).await?;
|
|
|
|
Ok(())
|
Apub inbox rewrite (#1652)
* start to implement apub inbox routing lib
* got something that almost works
* it compiles!
* implemented some more
* move library code to separate crate (most of it)
* convert private message handlers
* convert all comment receivers (except undo comment)
* convert post receiver
* add verify trait
* convert community receivers
* add cc field for all activities which i forgot before
* convert inbox functions, add missing checks
* convert undo like/dislike receivers
* convert undo_delete and undo_remove receivers
* move block/unblock activities
* convert remaining activity receivers
* reimplement http signature verification and other checks
* also use actor type for routing, VerifyActivity and SendActivity traits
* cleanup and restructure apub_receive code
* wip: try to fix activity routing
* implement a (very bad) derive macro for activityhandler
* working activity routing!
* rework pm verify(), fix tests and confirm manually
also remove inbox username check which was broken
* rework following verify(), fix tests and test manually
* fix post/comment create/update, rework voting
* Rewrite remove/delete post/comment, fix tests, test manually
* Rework and fix (un)block user, announce, update post
* some code cleanup
* rework delete/remove activity receivers (still quite messy)
* rewrite, test and fix add/remove mod, update community handlers
* add docs for ActivityHandler derive macro
* dont try to compile macro comments
2021-07-17 16:08:46 +00:00
|
|
|
}
|
|
|
|
}
|
2021-10-28 11:46:48 +00:00
|
|
|
|
|
|
|
#[async_trait::async_trait(?Send)]
|
|
|
|
impl GetCommunity for CreateOrUpdatePost {
|
2021-12-06 14:54:47 +00:00
|
|
|
#[tracing::instrument(skip_all)]
|
2021-10-28 11:46:48 +00:00
|
|
|
async fn get_community(
|
|
|
|
&self,
|
|
|
|
context: &LemmyContext,
|
|
|
|
request_counter: &mut i32,
|
|
|
|
) -> Result<ApubCommunity, LemmyError> {
|
|
|
|
self
|
|
|
|
.object
|
|
|
|
.extract_community(context, request_counter)
|
|
|
|
.await
|
|
|
|
}
|
|
|
|
}
|