Shove all changes in one commit

Moderators: reorganize :admin_api pipeline in Router

Add block notify from Soapbox
This commit is contained in:
Sam Therapy 2021-07-28 14:54:36 -05:00
parent fa8e2ffa3f
commit 33c0a207ba
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
4 changed files with 139 additions and 2 deletions

View File

@ -0,0 +1,90 @@
# Pleroma: A lightweight social networking server
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.ActivityPub.MRF.AntiHellthreadPolicy do
@moduledoc "Notify local users upon remote block."
@behaviour Pleroma.Web.ActivityPub.MRF.Policy
alias Pleroma.User
alias Pleroma.Web.CommonAPI
defp is_block_or_unblock(%{"type" => "Block", "object" => object}),
do: {true, "blocked", object}
defp is_block_or_unblock(%{
"type" => "Undo",
"object" => %{"type" => "Block", "object" => object}
}),
do: {true, "unblocked", object}
defp is_block_or_unblock(_), do: {false, nil, nil}
defp is_remote_or_displaying_local?(%User{local: false}), do: true
defp is_remote_or_displaying_local?(_),
do: Pleroma.Config.get([:mrf_anti_hellthread_policy, :display_local])
@impl true
def filter(message) do
with {true, action, object} <- is_block_or_unblock(message),
%User{} = actor <- User.get_cached_by_ap_id(message["actor"]),
%User{} = recipient <- User.get_cached_by_ap_id(object),
true <- recipient.local,
true <- is_remote_or_displaying_local?(actor),
false <- User.blocks_user?(recipient, actor) do
bot_user = Pleroma.Config.get([:mrf_anti_hellthread_policy, :user])
_reply =
CommonAPI.post(User.get_by_nickname(bot_user), %{
status:
"@" <> recipient.nickname <> " you have been " <> action <> " by @" <> actor.nickname,
visibility: "direct"
})
end
{:ok, message}
end
@impl true
@spec config_description :: %{
children: [
%{
description: <<_::200, _::_*24>>,
key: :display_local | :user,
suggestions: [...],
type: :boolean | :string
},
...
],
description: <<_::296>>,
key: :mrf_anti_hellthread_policy,
label: <<_::208>>,
related_policy: <<_::384>>
}
def config_description do
%{
key: :mrf_anti_hellthread_policy,
related_policy: "Pleroma.Web.ActivityPub.MRF.AntiHellthreadPolicy",
label: "MRF Anti Hellthread Policy",
description: "Notify local users upon remote block.",
children: [
%{
key: :user,
type: :string,
description: "The user who will notify of the block",
suggestions: ["blockbot"]
},
%{
key: :display_local,
type: :boolean,
description: "Display blocks from local users as well?",
suggestions: [false]
}
]
}
end
@impl true
def describe, do: {:ok, %{}}
end

View File

@ -0,0 +1,23 @@
defmodule Pleroma.Web.ActivityPub.MRF.RacismRemover do
require Logger
@behaviour Pleroma.Web.ActivityPub.MRF.Policy
@impl true
def filter(%{"type" => "Delete", "actor" => actor} = object) do
actor_info = URI.parse(actor)
if actor_info.host == "froth.zone" do
Logger.warn("DELETE from local, not rejecting: #{inspect(object)}")
{:ok, object}
else
Logger.warn("DELETE rejected: #{inspect(object)}")
{:reject, object}
end
end
@impl true
def filter(object), do: {:ok, object}
@impl true
def describe, do: {:ok, %{}}
end

View File

@ -0,0 +1,24 @@
defmodule Pleroma.Web.ActivityPub.MRF.RemoveSponsorship do
@behaviour Pleroma.Web.ActivityPub.MRF.Policy
@impl true
def filter(
%{
"type" => "Create",
"object" => %{"content" => content, "attachment" => _} = _child_object
} = object
) do
nc =
content
|> String.replace(~r/(<p>=&gt;|ufgloves).*/, "")
|> String.replace(~r/<p>--<br \/>Original: <a href="https:\/\/www\.twitter\.com\/.*/, "")
{:ok, put_in(object, ["object", "content"], nc)}
end
@impl true
def filter(object), do: {:ok, object}
@impl true
def describe, do: {:ok, %{}}
end

View File

@ -292,7 +292,7 @@ defmodule Pleroma.Web.Router do
scope "/api/v1/pleroma/emoji", Pleroma.Web.PleromaAPI do
scope "/pack" do
pipe_through(:admin_api)
pipe_through([:admin_api, :require_admin])
post("/", EmojiPackController, :create)
patch("/", EmojiPackController, :update)
@ -307,7 +307,7 @@ defmodule Pleroma.Web.Router do
# Modifying packs
scope "/packs" do
pipe_through(:admin_api)
pipe_through([:admin_api, :require_admin])
get("/import", EmojiPackController, :import_from_filesystem)
get("/remote", EmojiPackController, :remote)