Skip to content

Commit

Permalink
Mark follow as pending when subscribing to remote community (fixes #3384
Browse files Browse the repository at this point in the history
)
  • Loading branch information
Nutomic committed Jun 29, 2023
1 parent 0464c46 commit 91d28d8
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions crates/api/src/community/follow.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,27 @@ impl Perform for FollowCommunity {

let community_id = data.community_id;
let community = Community::read(context.pool(), community_id).await?;
let community_follower_form = CommunityFollowerForm {
let mut community_follower_form = CommunityFollowerForm {
community_id: data.community_id,
person_id: local_user_view.person.id,
pending: false,
};

if community.local && data.follow {
check_community_ban(local_user_view.person.id, community_id, context.pool()).await?;
check_community_deleted_or_removed(community_id, context.pool()).await?;
if data.follow {
if community.local {
check_community_ban(local_user_view.person.id, community_id, context.pool()).await?;
check_community_deleted_or_removed(community_id, context.pool()).await?;

CommunityFollower::follow(context.pool(), &community_follower_form)
.await
.map_err(|e| LemmyError::from_error_message(e, "community_follower_already_exists"))?;
CommunityFollower::follow(context.pool(), &community_follower_form)
.await
.map_err(|e| LemmyError::from_error_message(e, "community_follower_already_exists"))?;
} else {
// Mark as pending, the actual federation activity is sent via `SendActivity` handler
community_follower_form.pending = true;
CommunityFollower::follow(context.pool(), &community_follower_form)
.await
.map_err(|e| LemmyError::from_error_message(e, "community_follower_already_exists"))?;
}
}
if !data.follow {
CommunityFollower::unfollow(context.pool(), &community_follower_form)
Expand Down

0 comments on commit 91d28d8

Please sign in to comment.