2020-10-08 16:55:35 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.FollowBotPolicy do
|
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF
|
2021-02-19 15:47:25 +00:00
|
|
|
alias Pleroma.Activity.Queries
|
2020-10-08 17:09:31 +00:00
|
|
|
alias Pleroma.Config
|
2021-02-19 15:47:25 +00:00
|
|
|
alias Pleroma.Repo
|
2020-10-08 16:55:35 +00:00
|
|
|
alias Pleroma.User
|
|
|
|
alias Pleroma.Web.CommonAPI
|
|
|
|
require Logger
|
|
|
|
|
2021-02-19 15:47:25 +00:00
|
|
|
import Ecto.Query
|
|
|
|
|
2020-10-08 16:55:35 +00:00
|
|
|
@impl true
|
|
|
|
def filter(message) do
|
2020-10-08 17:09:31 +00:00
|
|
|
with follower_nickname <- Config.get([:mrf_follow_bot, :follower_nickname]),
|
2020-10-08 17:41:01 +00:00
|
|
|
%User{actor_type: "Service"} = follower <-
|
|
|
|
User.get_cached_by_nickname(follower_nickname),
|
2020-10-08 17:09:31 +00:00
|
|
|
%{"type" => "Create", "object" => %{"type" => "Note"}} <- message do
|
|
|
|
try_follow(follower, message)
|
|
|
|
else
|
|
|
|
nil ->
|
|
|
|
Logger.warn(
|
2020-10-08 17:41:01 +00:00
|
|
|
"#{__MODULE__} skipped because of missing `:mrf_follow_bot, :follower_nickname` configuration, the :follower_nickname
|
|
|
|
account does not exist, or the account is not correctly configured as a bot."
|
2020-10-08 17:09:31 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
{:ok, message}
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
{:ok, message}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp try_follow(follower, message) do
|
2020-10-08 16:55:35 +00:00
|
|
|
Task.start(fn ->
|
2020-10-08 17:09:31 +00:00
|
|
|
to = Map.get(message, "to", [])
|
|
|
|
cc = Map.get(message, "cc", [])
|
|
|
|
actor = [message["actor"]]
|
|
|
|
|
|
|
|
Enum.concat([to, cc, actor])
|
|
|
|
|> List.flatten()
|
2021-02-19 15:59:30 +00:00
|
|
|
|> Enum.uniq()
|
2020-10-08 17:09:31 +00:00
|
|
|
|> User.get_all_by_ap_id()
|
|
|
|
|> Enum.each(fn user ->
|
2021-02-19 15:47:25 +00:00
|
|
|
since_thirty_days_ago = NaiveDateTime.utc_now() |> NaiveDateTime.add(-(86_400 * 30))
|
2020-10-08 17:09:31 +00:00
|
|
|
|
|
|
|
with false <- User.following?(follower, user),
|
2021-02-19 15:47:25 +00:00
|
|
|
false <- User.locked?(user),
|
|
|
|
false <- (user.bio || "") |> String.downcase() |> String.contains?("nobot"),
|
|
|
|
false <- outstanding_follow_request_since?(follower, user, since_thirty_days_ago) do
|
|
|
|
Logger.info("#{__MODULE__}: Follow request from #{follower.nickname} to #{user.nickname}")
|
2020-10-08 17:09:31 +00:00
|
|
|
CommonAPI.follow(follower, user)
|
|
|
|
end
|
|
|
|
end)
|
2020-10-08 16:55:35 +00:00
|
|
|
end)
|
|
|
|
|
|
|
|
{:ok, message}
|
|
|
|
end
|
|
|
|
|
2021-02-19 15:47:25 +00:00
|
|
|
defp outstanding_follow_request_since?(
|
|
|
|
%User{ap_id: follower_id},
|
|
|
|
%User{ap_id: followee_id},
|
|
|
|
since_datetime
|
|
|
|
) do
|
|
|
|
followee_id
|
|
|
|
|> Queries.by_object_id()
|
|
|
|
|> Queries.by_type("Follow")
|
|
|
|
|> where([a], a.inserted_at > ^since_datetime)
|
2021-02-19 20:42:20 +00:00
|
|
|
|> where([a], fragment("? ->> 'state' != 'accept'", a.data))
|
2021-02-19 15:47:25 +00:00
|
|
|
|> where([a], a.actor == ^follower_id)
|
|
|
|
|> Repo.exists?()
|
|
|
|
end
|
|
|
|
|
2020-10-08 16:55:35 +00:00
|
|
|
@impl true
|
|
|
|
def describe do
|
|
|
|
{:ok, %{}}
|
|
|
|
end
|
|
|
|
end
|