2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 06:49:20 +00:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 20:04:54 +00:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-12-04 21:39:18 +00:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.EnsureRePrepended do
|
2018-12-06 11:37:29 +00:00
|
|
|
alias Pleroma.Object
|
2018-12-04 21:39:18 +00:00
|
|
|
|
2019-05-06 02:28:04 +00:00
|
|
|
@moduledoc "Ensure a re: is prepended on replies to a post with a Subject"
|
2021-06-07 19:22:08 +00:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF.Policy
|
2018-12-04 21:39:18 +00:00
|
|
|
|
2018-12-06 14:00:41 +00:00
|
|
|
@reply_prefix Regex.compile!("^re:[[:space:]]*", [:caseless])
|
2019-07-10 05:12:21 +00:00
|
|
|
|
2018-12-04 21:39:18 +00:00
|
|
|
def filter_by_summary(
|
2019-07-10 05:12:21 +00:00
|
|
|
%{data: %{"summary" => parent_summary}} = _in_reply_to,
|
2018-12-04 21:39:18 +00:00
|
|
|
%{"summary" => child_summary} = child
|
|
|
|
)
|
2018-12-06 13:48:12 +00:00
|
|
|
when not is_nil(child_summary) and byte_size(child_summary) > 0 and
|
|
|
|
not is_nil(parent_summary) and byte_size(parent_summary) > 0 do
|
2018-12-06 14:00:41 +00:00
|
|
|
if (child_summary == parent_summary and not Regex.match?(@reply_prefix, child_summary)) or
|
|
|
|
(Regex.match?(@reply_prefix, parent_summary) &&
|
|
|
|
Regex.replace(@reply_prefix, parent_summary, "") == child_summary) do
|
2018-12-04 21:39:18 +00:00
|
|
|
Map.put(child, "summary", "re: " <> child_summary)
|
|
|
|
else
|
|
|
|
child
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-07-10 05:12:21 +00:00
|
|
|
def filter_by_summary(_in_reply_to, child), do: child
|
2018-12-04 21:39:18 +00:00
|
|
|
|
2020-07-29 08:53:08 +00:00
|
|
|
def filter(%{"type" => "Create", "object" => child_object} = object)
|
|
|
|
when is_map(child_object) do
|
2018-12-04 21:39:18 +00:00
|
|
|
child =
|
2019-07-10 05:12:21 +00:00
|
|
|
child_object["inReplyTo"]
|
2021-01-04 12:38:31 +00:00
|
|
|
|> Object.normalize(fetch: false)
|
2019-07-10 05:12:21 +00:00
|
|
|
|> filter_by_summary(child_object)
|
2018-12-04 21:39:18 +00:00
|
|
|
|
|
|
|
object = Map.put(object, "object", child)
|
|
|
|
|
|
|
|
{:ok, object}
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter(object), do: {:ok, object}
|
2019-08-13 21:52:54 +00:00
|
|
|
|
2019-08-13 22:36:24 +00:00
|
|
|
def describe, do: {:ok, %{}}
|
2018-12-04 21:39:18 +00:00
|
|
|
end
|