mirror of
https://github.com/plausible/analytics.git
synced 2024-11-24 04:32:57 +03:00
20 lines
496 B
Elixir
20 lines
496 B
Elixir
defmodule PlausibleWeb.RemoteIp do
|
|
def get(conn) do
|
|
cf_connecting_ip = List.first(Plug.Conn.get_req_header(conn, "cf-connecting-ip"))
|
|
forwarded_for = List.first(Plug.Conn.get_req_header(conn, "x-forwarded-for"))
|
|
|
|
cond do
|
|
cf_connecting_ip ->
|
|
cf_connecting_ip
|
|
|
|
forwarded_for ->
|
|
String.split(forwarded_for, ",")
|
|
|> Enum.map(&String.trim/1)
|
|
|> List.first()
|
|
|
|
true ->
|
|
to_string(:inet_parse.ntoa(conn.remote_ip))
|
|
end
|
|
end
|
|
end
|