Browse Source

activitypub: allow mastodon S2S block extension support to be disabled

tags/v0.9.9
William Pitcock 6 years ago
parent
commit
1c926c7b60
2 changed files with 9 additions and 2 deletions
  1. +2
    -0
      config/config.exs
  2. +7
    -2
      lib/pleroma/web/activity_pub/transmogrifier.ex

+ 2
- 0
config/config.exs View File

@@ -56,6 +56,8 @@ config :pleroma, :instance,
rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
public: true

config :pleroma, :activitypub, accept_blocks: true

config :pleroma, :mrf_simple,
media_removal: [],
media_nsfw: [],


+ 7
- 2
lib/pleroma/web/activity_pub/transmogrifier.ex View File

@@ -259,6 +259,9 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
end
end

@ap_config Application.get_env(:pleroma, :activitypub)
@accept_blocks Keyword.get(@ap_config, :accept_blocks)

def handle_incoming(
%{
"type" => "Undo",
@@ -267,7 +270,8 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
"id" => id
} = _data
) do
with %User{local: true} = blocked <- User.get_cached_by_ap_id(blocked),
with true <- @accept_blocks,
%User{local: true} = blocked <- User.get_cached_by_ap_id(blocked),
%User{} = blocker <- User.get_or_fetch_by_ap_id(blocker),
{:ok, activity} <- ActivityPub.unblock(blocker, blocked, id, false) do
User.unblock(blocker, blocked)
@@ -280,7 +284,8 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
def handle_incoming(
%{"type" => "Block", "object" => blocked, "actor" => blocker, "id" => id} = data
) do
with %User{local: true} = blocked = User.get_cached_by_ap_id(blocked),
with true <- @accept_blocks,
%User{local: true} = blocked = User.get_cached_by_ap_id(blocked),
%User{} = blocker = User.get_or_fetch_by_ap_id(blocker),
{:ok, activity} <- ActivityPub.block(blocker, blocked, id, false) do
User.unfollow(blocker, blocked)


Loading…
Cancel
Save