mirror of
https://github.com/plausible/analytics.git
synced 2024-12-20 08:01:48 +03:00
ead4a7d560
* Optimize Dockerfile * Update selfhosting documentation * Remove unnecessary files * Remove internal config stuff * Update config * WIP * Use BASE_URL instead of HOST and SCHEME * Add port to endpoint url config * Make config/config.exs on par with config/releases.exs * Add changelog entry * Document configuration change
40 lines
722 B
Elixir
40 lines
722 B
Elixir
defmodule PlausibleWeb.LayoutView do
|
|
use PlausibleWeb, :view
|
|
|
|
def admin_email do
|
|
Application.get_env(:plausible, :admin_email)
|
|
end
|
|
|
|
def base_domain do
|
|
PlausibleWeb.Endpoint.host()
|
|
end
|
|
|
|
def plausible_url do
|
|
PlausibleWeb.Endpoint.url()
|
|
end
|
|
|
|
def home_dest(conn) do
|
|
if conn.assigns[:current_user] do
|
|
"/sites"
|
|
else
|
|
"/"
|
|
end
|
|
end
|
|
|
|
def trial_notificaton(user) do
|
|
case Plausible.Billing.trial_days_left(user) do
|
|
days when days > 1 ->
|
|
"#{days} trial days left"
|
|
|
|
days when days == 1 ->
|
|
"Trial ends tomorrow"
|
|
|
|
days when days == 0 ->
|
|
"Trial ends today"
|
|
|
|
days when days < 0 ->
|
|
"Trial over, upgrade now"
|
|
end
|
|
end
|
|
end
|