diff options
author | Roger Braun <roger@rogerbraun.net> | 2017-05-15 18:25:21 +0200 |
---|---|---|
committer | Roger Braun <roger@rogerbraun.net> | 2017-05-15 18:25:21 +0200 |
commit | 423194520e3fd1d2b285e7cf34a8ad7476276f5d (patch) | |
tree | 9dcff3ba5820e5a81d2d089a6fda238d208a9370 /lib | |
parent | a0a0d166323e7dabed185eab6e9083a9f73003f3 (diff) | |
download | pleroma-423194520e3fd1d2b285e7cf34a8ad7476276f5d.tar.gz |
Fix mention replacing.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/twitter_api/twitter_api.ex | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/lib/pleroma/web/twitter_api/twitter_api.ex b/lib/pleroma/web/twitter_api/twitter_api.ex index 6503d7222..3b575756d 100644 --- a/lib/pleroma/web/twitter_api/twitter_api.ex +++ b/lib/pleroma/web/twitter_api/twitter_api.ex @@ -243,7 +243,21 @@ defmodule Pleroma.Web.TwitterAPI.TwitterAPI do end def add_user_links(text, mentions) do - Enum.reduce(mentions, text, fn ({match, %User{ap_id: ap_id}}, text) -> String.replace(text, match, "<a href='#{ap_id}'>#{match}</a>") end) + mentions = mentions + |> Enum.sort_by(fn ({name, _}) -> -String.length(name) end) + |> Enum.map(fn({name, user}) -> {name, user, Ecto.UUID.generate} end) + + # This replaces the mention with a unique reference first so it doesn't + # contain parts of other replaced mentions. There probably is a better + # solution for this... + step_one = mentions + |> Enum.reduce(text, fn ({match, _user, uuid}, text) -> + String.replace(text, match, uuid) + 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>") + end) end def register_user(params) do |