forked from AkkomaGang/akkoma
add option to not deny follow if blocked (fixed)
This commit is contained in:
parent
e99c73aeba
commit
b3580b6971
2 changed files with 9 additions and 3 deletions
|
@ -62,7 +62,7 @@
|
||||||
unfollow_blocked: true,
|
unfollow_blocked: true,
|
||||||
outgoing_blocks: true
|
outgoing_blocks: true
|
||||||
|
|
||||||
config :pleroma, :activitypub,
|
config :pleroma, :user,
|
||||||
deny_follow_blocked: true
|
deny_follow_blocked: true
|
||||||
|
|
||||||
config :pleroma, :mrf_simple,
|
config :pleroma, :mrf_simple,
|
||||||
|
|
|
@ -168,6 +168,9 @@ def register_changeset(struct, params \\ %{}) do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@user_config Application.get_env(:pleroma, :user)
|
||||||
|
@deny_follow_blocked Keyword.get(@ap_config, :deny_follow_blocked)
|
||||||
|
|
||||||
def maybe_direct_follow(%User{} = follower, %User{info: info} = followed) do
|
def maybe_direct_follow(%User{} = follower, %User{info: info} = followed) do
|
||||||
user_info = user_info(followed)
|
user_info = user_info(followed)
|
||||||
|
|
||||||
|
@ -178,7 +181,7 @@ def maybe_direct_follow(%User{} = follower, %User{info: info} = followed) do
|
||||||
false
|
false
|
||||||
|
|
||||||
# if the users are blocking each other, we shouldn't even be here, but check for it anyway
|
# if the users are blocking each other, we shouldn't even be here, but check for it anyway
|
||||||
User.blocks?(follower, followed) == true or User.blocks?(followed, follower) == true ->
|
deny_follow_blocked and (User.blocks?(follower, followed) or User.blocks?(followed, follower)) ->
|
||||||
false
|
false
|
||||||
|
|
||||||
# if OStatus, then there is no three-way handshake to follow
|
# if OStatus, then there is no three-way handshake to follow
|
||||||
|
@ -197,6 +200,9 @@ def maybe_direct_follow(%User{} = follower, %User{info: info} = followed) do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@user_config Application.get_env(:pleroma, :user)
|
||||||
|
@deny_follow_blocked Keyword.get(@ap_config, :deny_follow_blocked)
|
||||||
|
|
||||||
def follow(%User{} = follower, %User{info: info} = followed) do
|
def follow(%User{} = follower, %User{info: info} = followed) do
|
||||||
ap_followers = followed.follower_address
|
ap_followers = followed.follower_address
|
||||||
|
|
||||||
|
@ -204,7 +210,7 @@ def follow(%User{} = follower, %User{info: info} = followed) do
|
||||||
following?(follower, followed) or info["deactivated"] ->
|
following?(follower, followed) or info["deactivated"] ->
|
||||||
{:error, "Could not follow user: #{followed.nickname} is already on your list."}
|
{:error, "Could not follow user: #{followed.nickname} is already on your list."}
|
||||||
|
|
||||||
blocks?(followed, follower) ->
|
deny_follow_blocked and blocks?(followed, follower) ->
|
||||||
{:error, "Could not follow user: #{followed.nickname} blocked you."}
|
{:error, "Could not follow user: #{followed.nickname} blocked you."}
|
||||||
|
|
||||||
true ->
|
true ->
|
||||||
|
|
Loading…
Reference in a new issue