mirror of
https://github.com/plausible/analytics.git
synced 2024-12-28 20:12:44 +03:00
cda031d453
* Implement shared links with a static URL * Separate sessio cookie from shared link cookie
42 lines
938 B
Elixir
42 lines
938 B
Elixir
defmodule PlausibleWeb.SiteView do
|
|
use PlausibleWeb, :view
|
|
|
|
def admin_email do
|
|
Application.get_env(:plausible, :admin_email)
|
|
end
|
|
|
|
def plausible_url do
|
|
PlausibleWeb.Endpoint.url()
|
|
end
|
|
|
|
def base_domain() do
|
|
PlausibleWeb.Endpoint.host()
|
|
end
|
|
|
|
def goal_name(%Plausible.Goal{page_path: page_path}) when is_binary(page_path) do
|
|
"Visit " <> page_path
|
|
end
|
|
|
|
def goal_name(%Plausible.Goal{event_name: name}) when is_binary(name) do
|
|
name
|
|
end
|
|
|
|
def shared_link_dest(site, link) do
|
|
domain = "/share/#{URI.encode_www_form(site.domain)}"
|
|
plausible_url() <> domain <> "?auth=" <> link.slug
|
|
end
|
|
|
|
def snippet(site) do
|
|
tracker =
|
|
if site.custom_domain do
|
|
"https://" <> site.custom_domain.domain <> "/js/index.js"
|
|
else
|
|
"#{plausible_url()}/js/plausible.js"
|
|
end
|
|
|
|
"""
|
|
<script async defer data-domain="#{site.domain}" src="#{tracker}"></script>
|
|
"""
|
|
end
|
|
end
|