summaryrefslogtreecommitdiff
path: root/lib/pleroma/web/activity_pub/mrf/no_placeholder_text_policy.ex
blob: 3ae81e025949ae4b7d6b0bcc86162584104d2883 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Pleroma: A lightweight social networking server
# Copyright © 2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Web.ActivityPub.MRF.NoPlaceholderTextPolicy do
  @moduledoc "Ensure no content placeholder is present (such as the dot from mastodon)"
  @behaviour Pleroma.Web.ActivityPub.MRF

  @impl true
  def filter(
        %{
          "type" => "Create",
          "object" => %{"content" => content, "attachment" => _attachment} = child_object
        } = object
      )
      when content in [".", "<p>.</p>"] do
    child_object =
      child_object
      |> Map.put("content", "")

    object =
      object
      |> Map.put("object", child_object)

    {:ok, object}
  end

  @impl true
  def filter(object), do: {:ok, object}

  @impl true
  def describe, do: {:ok, %{}}
end