Browse Source

Shorten names in links.

tags/v0.9.9
Roger Braun 7 years ago
parent
commit
c6aa60c829
2 changed files with 3 additions and 2 deletions
  1. +2
    -1
      lib/pleroma/web/twitter_api/utils.ex
  2. +1
    -1
      test/web/twitter_api/twitter_api_test.exs

+ 2
- 1
lib/pleroma/web/twitter_api/utils.ex View File

@@ -38,7 +38,8 @@ defmodule Pleroma.Web.TwitterAPI.Utils do
end)

Enum.reduce(mentions, step_one, fn ({match, %User{ap_id: ap_id}, uuid}, text) ->
String.replace(text, uuid, "<a href='#{ap_id}'>#{match}</a>")
short_match = String.split(match, "@") |> tl() |> hd()
String.replace(text, uuid, "<a href='#{ap_id}'>@#{short_match}</a>")
end)
end



+ 1
- 1
test/web/twitter_api/twitter_api_test.exs View File

@@ -263,7 +263,7 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPITest do
archaeme_remote = insert(:user, %{nickname: "archaeme@archae.me"})

mentions = TwitterAPI.parse_mentions(text)
expected_text = "<a href='#{gsimg.ap_id}'>@gsimg</a> According to <a href='#{archaeme.ap_id}'>@archaeme</a>, that is @daggsy. Also hello <a href='#{archaeme_remote.ap_id}'>@archaeme@archae.me</a>"
expected_text = "<a href='#{gsimg.ap_id}'>@gsimg</a> According to <a href='#{archaeme.ap_id}'>@archaeme</a>, that is @daggsy. Also hello <a href='#{archaeme_remote.ap_id}'>@archaeme</a>"

assert Utils.add_user_links(text, mentions) == expected_text
end


Loading…
Cancel
Save