philomena/lib/philomena_web/views/user_attribution_view.ex

20 lines
492 B
Elixir
Raw Normal View History

2019-10-04 02:53:30 +02:00
defmodule PhilomenaWeb.UserAttributionView do
2019-11-11 17:56:34 +01:00
alias Philomena.Attribution
use Bitwise
2019-10-04 02:53:30 +02:00
use PhilomenaWeb, :view
2019-11-11 17:56:34 +01:00
def anonymous_name(object) do
salt = anonymous_name_salt()
id = Attribution.object_identifier(object)
user_id = Attribution.best_user_identifier(object)
(:erlang.crc32(salt <> id <> user_id) &&& 0xffff)
|> Integer.to_string(16)
end
defp anonymous_name_salt do
Application.get_env(:philomena, :anonymous_name_salt)
|> to_string()
end
2019-10-04 02:53:30 +02:00
end