diff options
author | lain <lain@soykaf.club> | 2018-12-26 12:39:35 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-12-26 12:39:35 +0100 |
commit | 5811e65e67591b06238de66470c03744e0d83e2d (patch) | |
tree | 2fa0c03884b8fb2437f0721a7283dd3f75ed5c80 /lib | |
parent | 922abcda61298a7bca48894cb9a51a52fdeab1ed (diff) | |
download | pleroma-5811e65e67591b06238de66470c03744e0d83e2d.tar.gz |
Add some hard limits on inserted activities.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub.ex | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex index 188060780..8b2f764e4 100644 --- a/lib/pleroma/web/activity_pub/activity_pub.ex +++ b/lib/pleroma/web/activity_pub/activity_pub.ex @@ -56,10 +56,18 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do end end + defp check_remote_limit(%{"object" => %{"content" => content}}) do + limit = Pleroma.Config.get([:instance, :remote_limit]) + String.length(content) <= limit + end + + defp check_remote_limit(_), do: true + def insert(map, local \\ true) when is_map(map) do with nil <- Activity.normalize(map), map <- lazy_put_activity_defaults(map), :ok <- check_actor_is_active(map["actor"]), + {_, true} <- {:remote_limit_error, check_remote_limit(map)}, {:ok, map} <- MRF.filter(map), :ok <- insert_full_object(map) do {recipients, _, _} = get_recipients(map) |