Files
Claper/lib/claper_web/endpoint.ex
Alex Lion 20abccf384 Merge branch 'feature/real-time-transcription' into v3
# Conflicts:
#	lib/claper_web/live/admin_live/event_live.ex
#	lib/claper_web/live/event_live/manage.ex
#	lib/claper_web/live/event_live/manage.html.heex
#	lib/claper_web/live/event_live/manager_settings_component.ex
#	lib/claper_web/router.ex
#	priv/gettext/de/LC_MESSAGES/default.po
#	priv/gettext/default.pot
#	priv/gettext/en/LC_MESSAGES/default.po
#	priv/gettext/es/LC_MESSAGES/default.po
#	priv/gettext/fr/LC_MESSAGES/default.po
#	priv/gettext/hu/LC_MESSAGES/default.po
#	priv/gettext/it/LC_MESSAGES/default.po
#	priv/gettext/lv/LC_MESSAGES/default.po
#	priv/gettext/nl/LC_MESSAGES/default.po
2026-04-28 17:50:19 +02:00

83 lines
2.3 KiB
Elixir

defmodule ClaperWeb.Endpoint do
use Phoenix.Endpoint, otp_app: :claper
# The session will be stored in the cookie and signed,
# this means its contents can be read but not tampered with.
# Set :encryption_salt if you would also like to encrypt it.
@session_options [
store: :cookie,
key: "_claper_key",
signing_salt: "Tg18Y2zU",
# 30 days
max_age: 24 * 60 * 60 * 30
]
socket "/audio", ClaperWeb.AudioSocket,
websocket: [timeout: 120_000],
longpoll: false
socket "/live", Phoenix.LiveView.Socket,
websocket: [
connect_info: [
session: {__MODULE__, :runtime_opts, []}
]
]
# 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.
plug Plug.Static,
at: "/",
from: :claper,
gzip: false,
only: ClaperWeb.static_paths()
plug Plug.Static,
at: "/uploads",
from: Path.join([Application.compile_env(:claper, :storage_dir), "uploads"]),
gzip: false
# Code reloading can be explicitly enabled under the
# :code_reloader configuration of your endpoint.
if code_reloading? do
socket "/phoenix/live_reload/socket", Phoenix.LiveReloader.Socket
plug Phoenix.LiveReloader
plug Phoenix.CodeReloader
plug Phoenix.Ecto.CheckRepoStatus, otp_app: :claper
end
plug Phoenix.LiveDashboard.RequestLogger,
param_key: "request_logger",
cookie_key: "request_logger"
plug Plug.RequestId
plug Plug.Telemetry, event_prefix: [:phoenix, :endpoint]
plug Plug.Parsers,
parsers: [:urlencoded, :multipart, :json],
pass: ["*/*"],
json_decoder: Phoenix.json_library()
plug Plug.MethodOverride
plug Plug.Head
plug(:runtime_session)
plug RemoteIp,
proxies: {Application, :get_env, [:claper, :remote_ip_proxies, []]},
headers: {Application, :get_env, [:claper, :remote_ip_headers, []]}
plug ClaperWeb.Router
def runtime_session(conn, _opts) do
Plug.run(conn, [{Plug.Session, runtime_opts()}])
end
def runtime_opts() do
@session_options
|> Keyword.put(:same_site, Application.get_env(:claper, __MODULE__)[:same_site_cookie])
|> Keyword.put(:secure, Application.get_env(:claper, __MODULE__)[:secure_cookie])
end
end