Merge branch 'static-accept-missing' into 'develop'
[akkoma] / lib / pleroma / web / activity_pub / mrf / anti_link_spam_policy.ex
1 # Pleroma: A lightweight social networking server
2 # Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
3 # SPDX-License-Identifier: AGPL-3.0-only
4
5 defmodule Pleroma.Web.ActivityPub.MRF.AntiLinkSpamPolicy do
6 alias Pleroma.User
7
8 @behaviour Pleroma.Web.ActivityPub.MRF
9
10 require Logger
11
12 # has the user successfully posted before?
13 defp old_user?(%User{} = u) do
14 u.note_count > 0 || u.follower_count > 0
15 end
16
17 # does the post contain links?
18 defp contains_links?(%{"content" => content} = _object) do
19 content
20 |> Floki.parse_fragment!()
21 |> Floki.filter_out("a.mention,a.hashtag,a[rel~=\"tag\"],a.zrl")
22 |> Floki.attribute("a", "href")
23 |> length() > 0
24 end
25
26 defp contains_links?(_), do: false
27
28 @impl true
29 def filter(%{"type" => "Create", "actor" => actor, "object" => object} = message) do
30 with {:ok, %User{} = u} <- User.get_or_fetch_by_ap_id(actor),
31 {:contains_links, true} <- {:contains_links, contains_links?(object)},
32 {:old_user, true} <- {:old_user, old_user?(u)} do
33 {:ok, message}
34 else
35 {:contains_links, false} ->
36 {:ok, message}
37
38 {:old_user, false} ->
39 {:reject, nil}
40
41 {:error, _} ->
42 {:reject, nil}
43
44 e ->
45 Logger.warn("[MRF anti-link-spam] WTF: unhandled error #{inspect(e)}")
46 {:reject, nil}
47 end
48 end
49
50 # in all other cases, pass through
51 def filter(message), do: {:ok, message}
52
53 @impl true
54 def describe, do: {:ok, %{}}
55 end