Transmogrify outgoing nsfw.

This commit is contained in:
lain 2018-02-18 14:07:13 +01:00
commit 20e6190ead
2 changed files with 15 additions and 0 deletions

View file

@ -100,6 +100,7 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
"""
def prepare_outgoing(%{"type" => "Create", "object" => %{"type" => "Note"} = object} = data) do
object = object
|> set_sensitive
|> add_hashtags
|> add_mention_tags
|> add_attributed_to
@ -144,6 +145,11 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
Map.put(object, "conversation", object["context"])
end
def set_sensitive(object) do
tags = object["tag"] || []
Map.put(object, "sensitive", "nsfw" in tags)
end
def add_attributed_to(object) do
attributedTo = object["attributedTo"] || object["actor"]