forked from AkkomaGang/akkoma
Merge remote-tracking branch 'origin/develop' into 2018-12-17-update-frontend
This commit is contained in:
commit
eb2d34eb6c
3 changed files with 26 additions and 2 deletions
|
@ -244,6 +244,11 @@ def render(
|
||||||
|> HTML.filter_tags(User.html_filter_policy(opts[:for]))
|
|> HTML.filter_tags(User.html_filter_policy(opts[:for]))
|
||||||
|> Formatter.emojify(object["emoji"])
|
|> Formatter.emojify(object["emoji"])
|
||||||
|
|
||||||
|
text =
|
||||||
|
content
|
||||||
|
|> String.replace(~r/<br\s?\/?>/, "\n")
|
||||||
|
|> HTML.strip_tags()
|
||||||
|
|
||||||
reply_parent = Activity.get_in_reply_to_activity(activity)
|
reply_parent = Activity.get_in_reply_to_activity(activity)
|
||||||
|
|
||||||
reply_user = reply_parent && User.get_cached_by_ap_id(reply_parent.actor)
|
reply_user = reply_parent && User.get_cached_by_ap_id(reply_parent.actor)
|
||||||
|
@ -253,7 +258,7 @@ def render(
|
||||||
"uri" => activity.data["object"]["id"],
|
"uri" => activity.data["object"]["id"],
|
||||||
"user" => UserView.render("show.json", %{user: user, for: opts[:for]}),
|
"user" => UserView.render("show.json", %{user: user, for: opts[:for]}),
|
||||||
"statusnet_html" => html,
|
"statusnet_html" => html,
|
||||||
"text" => HTML.strip_tags(content),
|
"text" => text,
|
||||||
"is_local" => activity.local,
|
"is_local" => activity.local,
|
||||||
"is_post_verb" => true,
|
"is_post_verb" => true,
|
||||||
"created_at" => created_at,
|
"created_at" => created_at,
|
||||||
|
|
|
@ -86,7 +86,7 @@ def render("user.json", %{user: user = %User{}} = assigns) do
|
||||||
}
|
}
|
||||||
|
|
||||||
if assigns[:token] do
|
if assigns[:token] do
|
||||||
Map.put(data, "token", assigns[:token])
|
Map.put(data, "token", token_string(assigns[:token]))
|
||||||
else
|
else
|
||||||
data
|
data
|
||||||
end
|
end
|
||||||
|
@ -111,4 +111,7 @@ def render("short.json", %{
|
||||||
|
|
||||||
defp image_url(%{"url" => [%{"href" => href} | _]}), do: href
|
defp image_url(%{"url" => [%{"href" => href} | _]}), do: href
|
||||||
defp image_url(_), do: nil
|
defp image_url(_), do: nil
|
||||||
|
|
||||||
|
defp token_string(%Pleroma.Web.OAuth.Token{token: token_str}), do: token_str
|
||||||
|
defp token_string(token), do: token
|
||||||
end
|
end
|
||||||
|
|
|
@ -14,6 +14,22 @@ defmodule Pleroma.Web.TwitterAPI.ActivityViewTest do
|
||||||
import Pleroma.Factory
|
import Pleroma.Factory
|
||||||
import Mock
|
import Mock
|
||||||
|
|
||||||
|
test "a create activity with a html status" do
|
||||||
|
text = """
|
||||||
|
#Bike log - Commute Tuesday\nhttps://pla.bike/posts/20181211/\n#cycling #CHScycling #commute\nMVIMG_20181211_054020.jpg
|
||||||
|
"""
|
||||||
|
|
||||||
|
{:ok, activity} = CommonAPI.post(insert(:user), %{"status" => text})
|
||||||
|
|
||||||
|
result = ActivityView.render("activity.json", activity: activity)
|
||||||
|
|
||||||
|
assert result["statusnet_html"] ==
|
||||||
|
"<a data-tag=\"bike\" href=\"http://localhost:4001/tag/bike\">#Bike</a> log - Commute Tuesday<br /><a href=\"https://pla.bike/posts/20181211/\">https://pla.bike/posts/20181211/</a><br /><a data-tag=\"cycling\" href=\"http://localhost:4001/tag/cycling\">#cycling</a> <a data-tag=\"chscycling\" href=\"http://localhost:4001/tag/chscycling\">#CHScycling</a> <a data-tag=\"commute\" href=\"http://localhost:4001/tag/commute\">#commute</a><br />MVIMG_20181211_054020.jpg"
|
||||||
|
|
||||||
|
assert result["text"] ==
|
||||||
|
"#Bike log - Commute Tuesday\nhttps://pla.bike/posts/20181211/\n#cycling #CHScycling #commute\nMVIMG_20181211_054020.jpg"
|
||||||
|
end
|
||||||
|
|
||||||
test "a create activity with a note" do
|
test "a create activity with a note" do
|
||||||
user = insert(:user)
|
user = insert(:user)
|
||||||
other_user = insert(:user, %{nickname: "shp"})
|
other_user = insert(:user, %{nickname: "shp"})
|
||||||
|
|
Loading…
Reference in a new issue