logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: 67bfa19b35af6ae4a064b02f3888dd11a218f6fb
parent: 5dc278b1a68a244ad09853ef3e9a100851a51420
Author: Roger Braun <roger@rogerbraun.net>
Date:   Thu, 24 Aug 2017 16:27:37 +0200

Set twitter-style possibly_sensitive boolena.

Diffstat:

Mlib/pleroma/web/twitter_api/representers/activity_representer.ex8++++++--
Mtest/web/twitter_api/representers/activity_representer_test.exs3++-
2 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/lib/pleroma/web/twitter_api/representers/activity_representer.ex b/lib/pleroma/web/twitter_api/representers/activity_representer.ex @@ -112,6 +112,9 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do conversation_id = conversation_id(activity) + tags = activity.data["object"]["tag"] || [] + possibly_sensitive = Enum.member?(tags, "nsfw") + %{ "id" => activity.id, "user" => UserView.render("show.json", %{user: user, for: opts[:for]}), @@ -129,8 +132,9 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do "favorited" => to_boolean(favorited), "repeated" => to_boolean(repeated), "external_url" => object["external_url"], - "tags" => activity.data["object"]["tag"] || [], - "activity_type" => "post" + "tags" => tags, + "activity_type" => "post", + "possibly_sensitive" => possibly_sensitive } end diff --git a/test/web/twitter_api/representers/activity_representer_test.exs b/test/web/twitter_api/representers/activity_representer_test.exs @@ -130,7 +130,8 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do "repeated" => false, "external_url" => "some url", "tags" => ["content", "mentioning", "nsfw"], - "activity_type" => "post" + "activity_type" => "post", + "possibly_sensitive" => true } assert ActivityRepresenter.to_map(activity, %{user: user, for: follower, mentioned: [mentioned_user]}) == expected_status