mirror of
https://github.com/plausible/analytics.git
synced 2024-11-24 12:42:30 +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
37 lines
600 B
Elixir
37 lines
600 B
Elixir
defmodule PlausibleWeb.BillingView 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 present_date(date) do
|
|
Date.from_iso8601!(date)
|
|
|> Timex.format!("{D} {Mshort} {YYYY}")
|
|
end
|
|
|
|
def reccommended_plan(usage) do
|
|
cond do
|
|
usage < 9000 ->
|
|
"10k / mo"
|
|
|
|
usage < 90_000 ->
|
|
"100k / mo"
|
|
|
|
usage < 900_000 ->
|
|
"1m / mo"
|
|
|
|
true ->
|
|
"custom"
|
|
end
|
|
end
|
|
end
|