add option to not unfollow on block, and option to not federate outgoing blocks
This commit is contained in:
parent
45a935f0bd
commit
2847fc8f90
|
@ -57,7 +57,10 @@
|
|||
public: true,
|
||||
quarantined_instances: []
|
||||
|
||||
config :pleroma, :activitypub, accept_blocks: true
|
||||
config :pleroma, :activitypub,
|
||||
accept_blocks: true,
|
||||
unfollow_blocked: true,
|
||||
outgoing_blocks: true
|
||||
|
||||
config :pleroma, :mrf_simple,
|
||||
media_removal: [],
|
||||
|
|
|
@ -240,18 +240,28 @@ def delete(%Object{data: %{"id" => id, "actor" => actor}} = object, local \\ tru
|
|||
end
|
||||
end
|
||||
|
||||
def block(blocker, blocked, activity_id \\ nil, local \\ true) do
|
||||
follow_activity = fetch_latest_follow(blocker, blocked)
|
||||
@ap_config Application.get_env(:pleroma, :activitypub)
|
||||
@unfollow_blocked Keyword.get(@ap_config, :unfollow_blocked)
|
||||
@outgoing_blocks Keyword.get(@ap_config, :outgoing_blocks)
|
||||
|
||||
def block(blocker, blocked, activity_id \\ nil, local \\ true) do
|
||||
|
||||
with true <- unfollow_blocked do
|
||||
follow_activity = fetch_latest_follow(blocker, blocked)
|
||||
if follow_activity do
|
||||
unfollow(blocker, blocked, nil, local)
|
||||
end
|
||||
end
|
||||
|
||||
with true <- outgoing_blocks do
|
||||
with block_data <- make_block_data(blocker, blocked, activity_id),
|
||||
{:ok, activity} <- insert(block_data, local),
|
||||
:ok <- maybe_federate(activity) do
|
||||
{:ok, activity}
|
||||
end
|
||||
else
|
||||
{:ok, nil}
|
||||
end
|
||||
end
|
||||
|
||||
def unblock(blocker, blocked, activity_id \\ nil, local \\ true) do
|
||||
|
|
Loading…
Reference in New Issue