Add invisible tags to TwAPI output.
authorRoger Braun <roger@rogerbraun.net>
Thu, 18 May 2017 14:24:41 +0000 (16:24 +0200)
committerRoger Braun <roger@rogerbraun.net>
Thu, 18 May 2017 14:24:41 +0000 (16:24 +0200)
lib/pleroma/web/twitter_api/representers/activity_representer.ex
test/support/httpoison_mock.ex
test/web/twitter_api/representers/activity_representer_test.exs

index 7266a0b2d825f9edba2d2cc7171785a5c04812ef..0303739f5b9fb7e6415ab170ac14342023866a64 100644 (file)
@@ -1,7 +1,7 @@
 defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do
   use Pleroma.Web.TwitterAPI.Representers.BaseRepresenter
   alias Pleroma.Web.TwitterAPI.Representers.{UserRepresenter, ObjectRepresenter}
-  alias Pleroma.{Activity, User}
+  alias Pleroma.{Activity, User, Formatter}
   alias Calendar.Strftime
   alias Pleroma.Web.TwitterAPI.TwitterAPI
 
@@ -72,6 +72,18 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do
     }
   end
 
+  def content_with_tags(content, tags) do
+    tags = tags || []
+    text_content = HtmlSanitizeEx.strip_tags(content)
+    found_tags = Formatter.parse_tags(text_content)
+    |> Enum.map(fn ({_, tag}) -> tag end)
+
+    missing_tags = tags -- found_tags
+    |> Enum.map(&"##{&1}")
+
+    Enum.join([content | missing_tags], "<br>\n")
+  end
+
   def to_map(%Activity{data: %{"object" => %{"content" => content} = object}} = activity, %{user: user} = opts) do
     created_at = object["published"] |> date_to_asctime
     like_count = object["like_count"] || 0
@@ -88,6 +100,8 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenter do
 
     conversation_id = conversation_id(activity)
 
+    content = content_with_tags(content, object["tag"])
+
     %{
       "id" => activity.id,
       "user" => UserRepresenter.to_map(user, opts),
index 420d42a0def34a70e999ca850caa6bffeffdaaf6..54375d92974c2c7c21bb4ac2c626f49d7d7a2ecc 100644 (file)
@@ -23,7 +23,7 @@ defmodule HTTPoisonMock do
       body: File.read!("test/fixtures/httpoison_mock/https___social.heldscal.la_user_23211.xml")
     }}
   end
-  
+
   def get("https://social.heldscal.la/.well-known/webfinger", [Accept: "application/xrd+xml"], [params: [resource: "https://social.heldscal.la/user/29191"]]) do
     {:ok, %Response{
       status_code: 200,
index f4f3c9aba2b79a0109acbcea3d8d4c2a97f77aaf..e3d88e74f82cc024a5552ae47419018b045a25c7 100644 (file)
@@ -67,7 +67,7 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do
       }
     }
 
-    content_html = "Some content mentioning <a href='#{mentioned_user.ap_id}'>@shp</shp>"
+    content_html = "Some #content mentioning <a href='#{mentioned_user.ap_id}'>@shp</shp>"
     content = HtmlSanitizeEx.strip_tags(content_html)
     date = DateTime.from_naive!(~N[2016-05-24 13:26:08.003], "Etc/UTC") |> DateTime.to_iso8601
 
@@ -94,7 +94,8 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do
           ],
           "like_count" => 5,
           "announcement_count" => 3,
-          "context" => "2hu"
+          "context" => "2hu",
+          "tag" => ["nsfw", "content"]
         },
         "published" => date,
         "context" => "2hu"
@@ -107,8 +108,8 @@ defmodule Pleroma.Web.TwitterAPI.Representers.ActivityRepresenterTest do
       "user" => UserRepresenter.to_map(user, %{for: follower}),
       "is_local" => true,
       "attentions" => [],
-      "statusnet_html" => content_html,
-      "text" => content,
+      "statusnet_html" => content_html <> "<br>\n#nsfw",
+      "text" => content <> "\n#nsfw",
       "is_post_verb" => true,
       "created_at" => "Tue May 24 13:26:08 +0000 2016",
       "in_reply_to_status_id" => 213123,