2018-12-23 21:04:54 +01:00
|
|
|
# Pleroma: A lightweight social networking server
|
2021-01-13 07:49:20 +01:00
|
|
|
# Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
|
2018-12-23 21:04:54 +01:00
|
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2018-04-14 11:20:18 +02:00
|
|
|
defmodule Pleroma.Web.ActivityPub.MRF.DropPolicy do
|
|
|
|
require Logger
|
2019-05-06 04:28:04 +02:00
|
|
|
@moduledoc "Drop and log everything received"
|
2018-05-10 18:34:09 +02:00
|
|
|
@behaviour Pleroma.Web.ActivityPub.MRF
|
2018-04-14 11:20:18 +02:00
|
|
|
|
2018-05-10 18:34:09 +02:00
|
|
|
@impl true
|
2018-04-14 11:20:18 +02:00
|
|
|
def filter(object) do
|
2019-12-11 11:46:07 +01:00
|
|
|
Logger.debug("REJECTING #{inspect(object)}")
|
2018-04-14 11:20:18 +02:00
|
|
|
{:reject, object}
|
|
|
|
end
|
2019-08-13 23:52:54 +02:00
|
|
|
|
|
|
|
@impl true
|
2019-08-14 00:36:24 +02:00
|
|
|
def describe, do: {:ok, %{}}
|
2018-04-14 11:20:18 +02:00
|
|
|
end
|