transmogrifier: reject activities lacking a valid ID

This commit is contained in:
William Pitcock 2018-08-23 01:23:02 +00:00
parent d5bdd55b5d
commit 52b44184b4
1 changed files with 6 additions and 0 deletions

View File

@ -177,6 +177,12 @@ def fix_content_map(%{"contentMap" => content_map} = object) do
def fix_content_map(object), do: object
# disallow objects with bogus IDs
def handle_incoming(%{"id" => nil}), do: :error
def handle_incoming(%{"id" => ""}), do: :error
# length of https:// = 8, should validate better, but good enough for now.
def handle_incoming(%{"id" => id}) when not (is_binary(id) and length(id) > 8), do: :error
# TODO: validate those with a Ecto scheme
# - tags
# - emoji