2019-09-02 14:29:19 +03:00
|
|
|
defmodule PlausibleWeb.Endpoint do
|
2023-11-20 14:52:20 +03:00
|
|
|
use Plausible
|
2021-03-30 15:51:05 +03:00
|
|
|
use Sentry.PlugCapture
|
2021-04-23 11:56:41 +03:00
|
|
|
use Phoenix.Endpoint, otp_app: :plausible
|
2019-09-02 14:29:19 +03:00
|
|
|
|
2024-09-10 15:15:43 +03:00
|
|
|
on_ce do
|
|
|
|
plug :maybe_handle_acme_challenge
|
|
|
|
plug :maybe_force_ssl, Plug.SSL.init(_no_opts = [])
|
|
|
|
end
|
|
|
|
|
2023-06-22 10:00:07 +03:00
|
|
|
@session_options [
|
2024-09-26 10:43:47 +03:00
|
|
|
# in EE key is replaced dynamically via runtime_session_opts, see below
|
|
|
|
key: "_plausible_key",
|
2023-06-22 10:00:07 +03:00
|
|
|
store: :cookie,
|
2023-08-22 09:18:08 +03:00
|
|
|
signing_salt: "I45i0SKHEku2f3tJh6y4v8gztrb/eG5KGCOe/o/AwFb7VHeuvDOn7AAq6KsdmOFM",
|
2023-06-22 10:00:07 +03:00
|
|
|
# 5 years, this is super long but the SlidingSessionTimeout will log people out if they don't return for 2 weeks
|
|
|
|
max_age: 60 * 60 * 24 * 365 * 5,
|
|
|
|
extra: "SameSite=Lax"
|
2024-09-26 10:43:47 +03:00
|
|
|
# in EE domain is added dynamically via runtime_session_opts, see below
|
2023-06-22 10:00:07 +03:00
|
|
|
]
|
|
|
|
|
2023-10-17 12:03:21 +03:00
|
|
|
socket("/live", Phoenix.LiveView.Socket,
|
|
|
|
websocket: [
|
|
|
|
check_origin: true,
|
2024-01-09 14:28:31 +03:00
|
|
|
connect_info: [
|
|
|
|
:peer_data,
|
|
|
|
:uri,
|
|
|
|
:user_agent,
|
|
|
|
session: {__MODULE__, :runtime_session_opts, []}
|
|
|
|
]
|
2023-10-17 12:03:21 +03:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2019-09-02 14:29:19 +03:00
|
|
|
# Serve at "/" the static files from "priv/static" directory.
|
|
|
|
#
|
|
|
|
# You should set gzip to true if you are running phx.digest
|
|
|
|
# when deploying your static files in production.
|
2023-08-22 09:18:08 +03:00
|
|
|
plug(PlausibleWeb.Tracker)
|
|
|
|
plug(PlausibleWeb.Favicon)
|
2021-05-18 15:24:45 +03:00
|
|
|
|
2024-03-19 14:07:30 +03:00
|
|
|
static_paths = ~w(css js images favicon.ico)
|
|
|
|
|
|
|
|
static_paths =
|
2024-04-29 09:05:33 +03:00
|
|
|
on_ee do
|
2024-03-19 14:07:30 +03:00
|
|
|
# NOTE: The Cloud uses custom robots.txt from https://github.com/plausible/website: https://plausible.io/robots.txt
|
|
|
|
static_paths
|
|
|
|
else
|
|
|
|
static_paths ++ ["robots.txt"]
|
|
|
|
end
|
|
|
|
|
2024-09-03 14:54:11 +03:00
|
|
|
static_compression =
|
|
|
|
if Plausible.ce?() do
|
|
|
|
[brotli: true, gzip: true]
|
|
|
|
else
|
|
|
|
[gzip: false]
|
|
|
|
end
|
|
|
|
|
|
|
|
plug(
|
|
|
|
Plug.Static,
|
|
|
|
[at: "/", from: :plausible, only: static_paths] ++ static_compression
|
2023-08-22 09:18:08 +03:00
|
|
|
)
|
2019-09-02 14:29:19 +03:00
|
|
|
|
2024-04-29 09:05:33 +03:00
|
|
|
on_ee do
|
2023-11-20 14:52:20 +03:00
|
|
|
plug(Plug.Static,
|
|
|
|
at: "/kaffy",
|
|
|
|
from: :kaffy,
|
|
|
|
gzip: false,
|
|
|
|
only: ~w(assets)
|
|
|
|
)
|
|
|
|
end
|
2021-01-07 11:42:45 +03:00
|
|
|
|
2019-09-02 14:29:19 +03:00
|
|
|
# Code reloading can be explicitly enabled under the
|
|
|
|
# :code_reloader configuration of your endpoint.
|
|
|
|
if code_reloading? do
|
2023-08-22 09:18:08 +03:00
|
|
|
socket("/phoenix/live_reload/socket", Phoenix.LiveReloader.Socket)
|
|
|
|
plug(Phoenix.LiveReloader)
|
|
|
|
plug(Phoenix.CodeReloader)
|
2019-09-02 14:29:19 +03:00
|
|
|
end
|
|
|
|
|
2023-08-22 09:18:08 +03:00
|
|
|
plug(Plug.RequestId)
|
|
|
|
plug(PromEx.Plug, prom_ex_module: Plausible.PromEx)
|
2024-04-09 08:49:45 +03:00
|
|
|
plug(Plug.Telemetry, event_prefix: [:phoenix, :endpoint], log: false)
|
2019-09-02 14:29:19 +03:00
|
|
|
|
2023-08-22 09:18:08 +03:00
|
|
|
plug(Plug.Parsers,
|
2019-09-02 14:29:19 +03:00
|
|
|
parsers: [:urlencoded, :multipart, :json],
|
|
|
|
pass: ["*/*"],
|
|
|
|
json_decoder: Phoenix.json_library()
|
2023-08-22 09:18:08 +03:00
|
|
|
)
|
2019-09-02 14:29:19 +03:00
|
|
|
|
2023-08-22 09:18:08 +03:00
|
|
|
plug(Sentry.PlugContext)
|
2021-03-30 15:51:05 +03:00
|
|
|
|
2023-08-22 09:18:08 +03:00
|
|
|
plug(Plug.MethodOverride)
|
|
|
|
plug(Plug.Head)
|
2019-09-02 14:29:19 +03:00
|
|
|
|
2023-10-17 14:15:27 +03:00
|
|
|
plug(:runtime_session)
|
2019-09-02 14:29:19 +03:00
|
|
|
|
2023-08-22 09:18:08 +03:00
|
|
|
plug(CORSPlug)
|
|
|
|
plug(PlausibleWeb.Router)
|
|
|
|
|
|
|
|
def secure_cookie?, do: config!(:secure_cookie)
|
2023-06-27 14:37:21 +03:00
|
|
|
|
|
|
|
def websocket_url() do
|
2023-08-22 09:18:08 +03:00
|
|
|
config!(:websocket_url)
|
2023-06-27 14:37:21 +03:00
|
|
|
end
|
2023-06-28 11:16:32 +03:00
|
|
|
|
2023-10-17 14:15:27 +03:00
|
|
|
def runtime_session(conn, _opts) do
|
2023-10-17 12:03:21 +03:00
|
|
|
Plug.run(conn, [{Plug.Session, runtime_session_opts()}])
|
|
|
|
end
|
|
|
|
|
2023-10-17 14:15:27 +03:00
|
|
|
def runtime_session_opts() do
|
2024-09-05 13:05:40 +03:00
|
|
|
session_options =
|
|
|
|
on_ee do
|
|
|
|
# `host()` provided by Phoenix.Endpoint's compilation hooks
|
|
|
|
# is used to inject the domain - this way we can authenticate
|
|
|
|
# websocket requests within single root domain, in case websocket_url()
|
|
|
|
# returns a ws{s}:// scheme (in which case SameSite=Lax is not applicable).
|
|
|
|
Keyword.put(@session_options, :domain, host())
|
2024-09-26 10:43:47 +03:00
|
|
|
|> Keyword.put(:key, "_plausible_#{Application.fetch_env!(:plausible, :environment)}")
|
2024-09-05 13:05:40 +03:00
|
|
|
else
|
|
|
|
# CE setup is simpler and we don't need to worry about WS domain being different
|
|
|
|
@session_options
|
|
|
|
end
|
|
|
|
|
|
|
|
session_options
|
2023-08-22 09:18:08 +03:00
|
|
|
|> Keyword.put(:secure, secure_cookie?())
|
|
|
|
end
|
|
|
|
|
|
|
|
defp config!(key) do
|
|
|
|
:plausible
|
|
|
|
|> Application.fetch_env!(__MODULE__)
|
|
|
|
|> Keyword.fetch!(key)
|
2023-06-28 11:16:32 +03:00
|
|
|
end
|
2024-09-10 15:15:43 +03:00
|
|
|
|
|
|
|
on_ce do
|
|
|
|
require SiteEncrypt
|
|
|
|
@behaviour SiteEncrypt
|
|
|
|
@force_https_key {:plausible, :force_https}
|
|
|
|
@allow_acme_challenges_key {:plausible, :allow_acme_challenges}
|
|
|
|
|
|
|
|
@doc false
|
|
|
|
def force_https do
|
|
|
|
:persistent_term.put(@force_https_key, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
@doc false
|
|
|
|
def allow_acme_challenges do
|
|
|
|
:persistent_term.put(@allow_acme_challenges_key, true)
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_handle_acme_challenge(conn, _opts) do
|
|
|
|
if :persistent_term.get(@allow_acme_challenges_key, false) do
|
|
|
|
SiteEncrypt.AcmeChallenge.call(conn, _endpoint = __MODULE__)
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
defp maybe_force_ssl(conn, opts) do
|
|
|
|
if :persistent_term.get(@force_https_key, false) do
|
|
|
|
Plug.SSL.call(conn, opts)
|
|
|
|
else
|
|
|
|
conn
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl SiteEncrypt
|
|
|
|
def handle_new_cert, do: :ok
|
|
|
|
|
|
|
|
@doc false
|
|
|
|
def app_env_config do
|
|
|
|
# this function is being used by site_encrypt
|
|
|
|
Application.get_env(:plausible, _endpoint = __MODULE__, [])
|
|
|
|
end
|
|
|
|
|
|
|
|
@impl SiteEncrypt
|
|
|
|
def certification do
|
|
|
|
selfhost_config = Application.fetch_env!(:plausible, :selfhost)
|
|
|
|
config = Keyword.fetch!(selfhost_config, :site_encrypt)
|
|
|
|
|
|
|
|
domain = Keyword.fetch!(config, :domain)
|
|
|
|
email = Keyword.fetch!(config, :email)
|
|
|
|
db_folder = Keyword.fetch!(config, :db_folder)
|
|
|
|
directory_url = Keyword.fetch!(config, :directory_url)
|
|
|
|
|
|
|
|
SiteEncrypt.configure(
|
|
|
|
mode: :auto,
|
|
|
|
log_level: :notice,
|
|
|
|
client: :certbot,
|
|
|
|
domains: [domain],
|
|
|
|
emails: [email],
|
|
|
|
db_folder: db_folder,
|
|
|
|
directory_url: directory_url
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
2019-09-02 14:29:19 +03:00
|
|
|
end
|