diff options
author | William Pitcock <nenolod@dereferenced.org> | 2018-05-25 09:31:42 +0000 |
---|---|---|
committer | William Pitcock <nenolod@dereferenced.org> | 2018-05-25 09:40:10 +0000 |
commit | e80d91c64a53a9d64e48a528f40987c5b36f2ca5 (patch) | |
tree | d9fa882e7cd7a2b233c9d0cd4111df9a63222bfb /lib/pleroma/user.ex | |
parent | c89b90222c50dcb6f08e8987709dd2bac961f1cb (diff) | |
download | pleroma-e80d91c64a53a9d64e48a528f40987c5b36f2ca5.tar.gz |
introduce User.maybe_direct_follow() and use it where we used to call User.follow()
Diffstat (limited to 'lib/pleroma/user.ex')
-rw-r--r-- | lib/pleroma/user.ex | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lib/pleroma/user.ex b/lib/pleroma/user.ex index 2e57f2b43..e4fb57308 100644 --- a/lib/pleroma/user.ex +++ b/lib/pleroma/user.ex @@ -168,6 +168,35 @@ defmodule Pleroma.User do end end + def maybe_direct_follow(%User{} = follower, %User{info: info} = followed) do + user_info = user_info(followed) + + should_direct_follow = + cond do + # if the account is locked, don't pre-create the relationship + user_info.locked == true -> + false + + # 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 -> + false + + # if OStatus, then there is no three-way handshake to follow + User.ap_enabled?(followed) != true -> + true + + # if there are no other reasons not to, just pre-create the relationship + true -> + true + end + + if should_direct_follow do + follow(follower, followed) + else + follower + end + end + def follow(%User{} = follower, %User{info: info} = followed) do ap_followers = followed.follower_address |