mirror of
https://github.com/plausible/analytics.git
synced 2024-12-20 08:01:48 +03:00
161 lines
4.8 KiB
Elixir
161 lines
4.8 KiB
Elixir
defmodule PlausibleWeb.Api.ExternalController do
|
|
use PlausibleWeb, :controller
|
|
require Logger
|
|
|
|
def event(conn, _params) do
|
|
params = parse_body(conn)
|
|
|
|
case create_event(conn, params) do
|
|
{:ok, nil} ->
|
|
conn |> send_resp(202, "")
|
|
{:ok, event} ->
|
|
Plausible.Ingest.Session.on_event(event)
|
|
conn |> send_resp(202, "")
|
|
{:error, changeset} ->
|
|
request = Sentry.Plug.build_request_interface_data(conn, [])
|
|
Sentry.capture_message("Error processing event", extra: %{errors: inspect(changeset.errors), params: params, request: request})
|
|
Logger.error("Error processing event: #{inspect(changeset)}")
|
|
conn |> send_resp(400, "")
|
|
end
|
|
end
|
|
|
|
def unload(conn, _params) do
|
|
params = parse_body(conn)
|
|
Plausible.Ingest.Session.on_unload(params["uid"], Timex.now())
|
|
conn |> send_resp(202, "")
|
|
end
|
|
|
|
def error(conn, _params) do
|
|
request = Sentry.Plug.build_request_interface_data(conn, [])
|
|
Sentry.capture_message("JS snippet error", request: request)
|
|
send_resp(conn, 200, "")
|
|
end
|
|
|
|
defp create_event(conn, params) do
|
|
uri = URI.parse(params["url"])
|
|
country_code = Plug.Conn.get_req_header(conn, "cf-ipcountry") |> List.first
|
|
user_agent = Plug.Conn.get_req_header(conn, "user-agent") |> List.first
|
|
if UAInspector.bot?(user_agent) do
|
|
{:ok, nil}
|
|
else
|
|
ua = if user_agent do
|
|
UAInspector.Parser.parse(user_agent)
|
|
end
|
|
|
|
ref = params["referrer"]
|
|
ref = if ref && strip_www(URI.parse(ref).host) !== strip_www(uri.host) && URI.parse(ref).host !== "localhost" do
|
|
RefInspector.parse(ref)
|
|
end
|
|
|
|
event_attrs = %{
|
|
name: params["name"],
|
|
hostname: strip_www(uri.host),
|
|
domain: strip_www(params["domain"]) || strip_www(uri.host),
|
|
pathname: uri.path,
|
|
new_visitor: params["new_visitor"],
|
|
country_code: country_code,
|
|
user_id: params["uid"],
|
|
fingerprint: calculate_fingerprint(conn, params),
|
|
raw_fingerprint: calculate_raw_fingerprint(conn, params),
|
|
operating_system: ua && os_name(ua),
|
|
browser: ua && browser_name(ua),
|
|
referrer_source: ref && referrer_source(uri, ref),
|
|
referrer: ref && clean_referrer(params["referrer"]),
|
|
screen_size: calculate_screen_size(params["screen_width"])
|
|
}
|
|
|
|
Plausible.Event.changeset(%Plausible.Event{}, event_attrs)
|
|
|> Plausible.Repo.insert
|
|
end
|
|
end
|
|
|
|
defp calculate_fingerprint(conn, params) do
|
|
fingerprint = calculate_raw_fingerprint(conn, params)
|
|
|
|
:crypto.hash(:sha256, fingerprint)
|
|
|> Base.encode16
|
|
|> String.downcase
|
|
end
|
|
|
|
defp calculate_raw_fingerprint(conn, params) do
|
|
user_agent = List.first(Plug.Conn.get_req_header(conn, "user-agent")) || ""
|
|
ip_address = to_string(:inet_parse.ntoa(conn.remote_ip)) || ""
|
|
domain = strip_www(params["domain"]) || ""
|
|
Enum.join([user_agent, ip_address, domain], ":")
|
|
end
|
|
|
|
defp calculate_screen_size(nil) , do: nil
|
|
defp calculate_screen_size(width) when width < 576, do: "Mobile"
|
|
defp calculate_screen_size(width) when width < 992, do: "Tablet"
|
|
defp calculate_screen_size(width) when width < 1440, do: "Laptop"
|
|
defp calculate_screen_size(width) when width >= 1440, do: "Desktop"
|
|
|
|
defp clean_referrer(referrer) do
|
|
uri = if referrer do
|
|
URI.parse(String.trim_trailing(referrer, "/"))
|
|
end
|
|
|
|
if uri && uri.scheme in ["http", "https"] do
|
|
host = String.replace_prefix(uri.host, "www.", "")
|
|
host <> (uri.path || "")
|
|
end
|
|
end
|
|
|
|
defp parse_body(conn) do
|
|
{:ok, body, _conn} = Plug.Conn.read_body(conn)
|
|
Jason.decode!(body)
|
|
end
|
|
|
|
defp strip_www(nil), do: nil
|
|
defp strip_www(hostname) do
|
|
String.replace_prefix(hostname, "www.", "")
|
|
end
|
|
|
|
defp browser_name(ua) do
|
|
case ua.client do
|
|
%UAInspector.Result.Client{name: "Mobile Safari"} -> "Safari"
|
|
%UAInspector.Result.Client{name: "Chrome Mobile"} -> "Chrome"
|
|
%UAInspector.Result.Client{name: "Chrome Mobile iOS"} -> "Chrome"
|
|
%UAInspector.Result.Client{type: "mobile app"} -> "Mobile App"
|
|
:unknown -> nil
|
|
client -> client.name
|
|
end
|
|
end
|
|
|
|
defp os_name(ua) do
|
|
case ua.os do
|
|
:unknown -> nil
|
|
os -> os.name
|
|
end
|
|
end
|
|
|
|
defp referrer_source(uri, ref) do
|
|
case ref.source do
|
|
:unknown ->
|
|
query_param_source(uri) || clean_uri(ref.referer)
|
|
source ->
|
|
source
|
|
end
|
|
end
|
|
|
|
defp clean_uri(uri) do
|
|
uri = URI.parse(String.trim(uri))
|
|
if uri.scheme in ["http", "https"] do
|
|
String.replace_leading(uri.host, "www.", "")
|
|
end
|
|
end
|
|
|
|
@source_query_params ["ref", "utm_source", "source"]
|
|
|
|
defp query_param_source(uri) do
|
|
if uri && uri.query do
|
|
Enum.find_value(URI.query_decoder(uri.query), fn {key, val} ->
|
|
if Enum.member?(@source_query_params, key) do
|
|
val
|
|
end
|
|
end)
|
|
end
|
|
end
|
|
|
|
end
|