2018-12-23 20:04:54 +00:00
|
|
|
# Pleroma: A lightweight social networking server
|
2018-12-31 15:41:47 +00:00
|
|
|
# Copyright © 2017-2019 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"
|
2018-12-04 21:39:18 +00:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF
|
|
|
|
|
2018-12-06 14:00:41 +00:00
|
|
|
@reply_prefix Regex.compile!("^re:[[:space:]]*", [:caseless])
|
2018-12-04 21:39:18 +00:00
|
|
|
def filter_by_summary(
|
2018-12-09 09:12:48 +00:00
|
|
|
%{"summary" => parent_summary} = _parent,
|
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
|
|
|
|
|
2018-12-09 09:12:48 +00:00
|
|
|
def filter_by_summary(_parent, child), do: child
|
2018-12-04 21:39:18 +00:00
|
|
|
|
|
|
|
def filter(%{"type" => activity_type} = object) when activity_type == "Create" do
|
|
|
|
child = object["object"]
|
2018-12-06 11:37:29 +00:00
|
|
|
in_reply_to = Object.normalize(child["inReplyTo"])
|
2018-12-04 21:39:18 +00:00
|
|
|
|
|
|
|
child =
|
|
|
|
if(in_reply_to,
|
2018-12-06 11:37:29 +00:00
|
|
|
do: filter_by_summary(in_reply_to.data, child),
|
2018-12-04 21:39:18 +00:00
|
|
|
else: child
|
|
|
|
)
|
|
|
|
|
|
|
|
object = Map.put(object, "object", child)
|
|
|
|
|
|
|
|
{:ok, object}
|
|
|
|
end
|
|
|
|
|
|
|
|
def filter(object), do: {:ok, object}
|
|
|
|
end
|