Compare commits
16 commits
main
...
bugfix/480
| Author | SHA1 | Date | |
|---|---|---|---|
| 2443bc62ac | |||
| 605a897045 | |||
| a244b1b07e | |||
| 679f1404e9 | |||
| a62fceaf28 | |||
| f8e1d39964 | |||
| cc1df449c6 | |||
| 104d945dd1 | |||
| 3cc35d0293 | |||
| d0d7d38c03 | |||
| 0159d5352a | |||
| 15e9a52bc9 | |||
| 6327ea00eb | |||
| 95b666f04f | |||
| 0a7bbc7fa6 | |||
| a6f6f402af |
12 changed files with 433 additions and 47 deletions
|
|
@ -1277,7 +1277,8 @@ mix hex.outdated
|
||||||
|
|
||||||
**SMTP configuration:**
|
**SMTP configuration:**
|
||||||
|
|
||||||
- SMTP can be configured via **ENV variables** (`SMTP_HOST`, `SMTP_PORT`, `SMTP_USERNAME`, `SMTP_PASSWORD`, `SMTP_PASSWORD_FILE`, `SMTP_SSL`) or via **Admin Settings** (database: `smtp_host`, `smtp_port`, `smtp_username`, `smtp_password`, `smtp_ssl`). ENV takes priority (same pattern as OIDC/Vereinfacht).
|
- SMTP can be configured via **ENV variables** (`SMTP_HOST`, `SMTP_PORT`, `SMTP_USERNAME`, `SMTP_PASSWORD`, `SMTP_PASSWORD_FILE`, `SMTP_SSL`) or via **Admin Settings** (database: `smtp_host`, `smtp_port`, `smtp_username`, `smtp_password`, `smtp_ssl`).
|
||||||
|
- **ENV-only policy:** If `SMTP_HOST` is set, SMTP is treated as environment-managed only. All SMTP fields in Settings are read-only, SMTP save action is hidden, and the UI shows a warning when required ENV values are missing (`SMTP_USERNAME`, and `SMTP_PASSWORD` or `SMTP_PASSWORD_FILE`).
|
||||||
- **Sensitive settings in DB:** `smtp_password` and `oidc_client_secret` are excluded from the default read of the Setting resource; they are loaded only via explicit select when needed (e.g. `Mv.Config.smtp_password/0`, `Mv.Config.oidc_client_secret/0`). This avoids exposing secrets through `get_settings()`.
|
- **Sensitive settings in DB:** `smtp_password` and `oidc_client_secret` are excluded from the default read of the Setting resource; they are loaded only via explicit select when needed (e.g. `Mv.Config.smtp_password/0`, `Mv.Config.oidc_client_secret/0`). This avoids exposing secrets through `get_settings()`.
|
||||||
- **Settings cache:** `Mv.Membership.get_settings/0` uses `Mv.Membership.SettingsCache` when the cache process is running (not in test). Cache has a short TTL and is invalidated on every settings update. This avoids repeated DB reads on hot paths (e.g. `RegistrationEnabled` validation, `Layouts.public_page`). In test, the cache is not started so all callers use `get_settings_uncached/0` in the test process (Ecto Sandbox).
|
- **Settings cache:** `Mv.Membership.get_settings/0` uses `Mv.Membership.SettingsCache` when the cache process is running (not in test). Cache has a short TTL and is invalidated on every settings update. This avoids repeated DB reads on hot paths (e.g. `RegistrationEnabled` validation, `Layouts.public_page`). In test, the cache is not started so all callers use `get_settings_uncached/0` in the test process (Ecto Sandbox).
|
||||||
- **Join emails (domain → web):** The domain calls `Mv.Membership.JoinNotifier` (config `:join_notifier`, default `MvWeb.JoinNotifierImpl`) for sending join confirmation, already-member, and already-pending emails. This keeps the domain independent of the web layer; tests can override the notifier.
|
- **Join emails (domain → web):** The domain calls `Mv.Membership.JoinNotifier` (config `:join_notifier`, default `MvWeb.JoinNotifierImpl`) for sending join confirmation, already-member, and already-pending emails. This keeps the domain independent of the web layer; tests can override the notifier.
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,10 @@ Enable configurable SMTP for sending transactional emails (join confirmation, us
|
||||||
| ENV | 1 | Production, Docker, 12-factor |
|
| ENV | 1 | Production, Docker, 12-factor |
|
||||||
| Settings | 2 | Admin UI, dev without ENV |
|
| Settings | 2 | Admin UI, dev without ENV |
|
||||||
|
|
||||||
When an ENV variable is set, the corresponding Settings field is read-only in the UI (with hint "Set by environment").
|
When `SMTP_HOST` is set, SMTP runs in **ENV-only mode**:
|
||||||
|
- all SMTP fields in Settings are read-only,
|
||||||
|
- saving SMTP settings in the UI is disabled,
|
||||||
|
- and the UI shows a warning block if required SMTP ENV values are missing.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
@ -63,6 +66,14 @@ Support **SMTP_PASSWORD_FILE** (path to file containing the password), same patt
|
||||||
- Show a warning in the Settings UI.
|
- Show a warning in the Settings UI.
|
||||||
- Delivery attempts silently fall back to the Local adapter (no crash).
|
- Delivery attempts silently fall back to the Local adapter (no crash).
|
||||||
|
|
||||||
|
### 6.1 Behaviour in ENV-only mode (`SMTP_HOST` set)
|
||||||
|
|
||||||
|
- The SMTP source of truth is environment variables only.
|
||||||
|
- The UI does not allow editing SMTP fields in this mode.
|
||||||
|
- The Settings page shows a warning block when required values are missing:
|
||||||
|
- `SMTP_USERNAME`
|
||||||
|
- `SMTP_PASSWORD` or `SMTP_PASSWORD_FILE`
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 7. Test Email (Settings UI)
|
## 7. Test Email (Settings UI)
|
||||||
|
|
|
||||||
|
|
@ -178,6 +178,18 @@ defmodule Mv.Membership do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Invalidates the global settings cache.
|
||||||
|
|
||||||
|
This should be used by callers that update settings through paths outside of
|
||||||
|
`update_settings/2` (for example, custom form submit flows) to keep reads via
|
||||||
|
`get_settings/0` consistent across views.
|
||||||
|
"""
|
||||||
|
@spec invalidate_settings_cache() :: :ok
|
||||||
|
def invalidate_settings_cache do
|
||||||
|
SettingsCache.invalidate()
|
||||||
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Lists only required custom fields.
|
Lists only required custom fields.
|
||||||
|
|
||||||
|
|
|
||||||
120
lib/mv/config.ex
120
lib/mv/config.ex
|
|
@ -143,6 +143,27 @@ defmodule Mv.Config do
|
||||||
|> parse_and_validate_integer(default)
|
|> parse_and_validate_integer(default)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
# Association name
|
||||||
|
# ENV variable takes priority; fallback to Settings from database.
|
||||||
|
# ---------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Returns the association name.
|
||||||
|
|
||||||
|
Reads from `ASSOCIATION_NAME` env first, then from Settings.
|
||||||
|
"""
|
||||||
|
@spec association_name() :: String.t() | nil
|
||||||
|
def association_name do
|
||||||
|
env_or_setting("ASSOCIATION_NAME", :club_name)
|
||||||
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Returns true if ASSOCIATION_NAME is set (field is read-only in Settings).
|
||||||
|
"""
|
||||||
|
@spec association_name_env_set?() :: boolean()
|
||||||
|
def association_name_env_set?, do: env_set?("ASSOCIATION_NAME")
|
||||||
|
|
||||||
# ---------------------------------------------------------------------------
|
# ---------------------------------------------------------------------------
|
||||||
# Vereinfacht accounting software integration
|
# Vereinfacht accounting software integration
|
||||||
# ENV variables take priority; fallback to Settings from database.
|
# ENV variables take priority; fallback to Settings from database.
|
||||||
|
|
@ -478,48 +499,61 @@ defmodule Mv.Config do
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Returns SMTP port as integer. ENV `SMTP_PORT` (parsed) overrides Settings.
|
Returns SMTP port as integer.
|
||||||
Returns nil when neither ENV nor Settings provide a valid port.
|
|
||||||
|
Policy:
|
||||||
|
- ENV-only mode (`SMTP_HOST` set): read from ENV `SMTP_PORT`
|
||||||
|
- Settings mode: read from Settings only
|
||||||
"""
|
"""
|
||||||
@spec smtp_port() :: non_neg_integer() | nil
|
@spec smtp_port() :: non_neg_integer() | nil
|
||||||
def smtp_port do
|
def smtp_port do
|
||||||
case System.get_env("SMTP_PORT") do
|
if smtp_env_mode?() do
|
||||||
nil ->
|
parse_smtp_port_env(System.get_env("SMTP_PORT"))
|
||||||
|
else
|
||||||
get_from_settings_integer(:smtp_port)
|
get_from_settings_integer(:smtp_port)
|
||||||
|
|
||||||
value when is_binary(value) ->
|
|
||||||
case Integer.parse(String.trim(value)) do
|
|
||||||
{port, _} when port > 0 -> port
|
|
||||||
_ -> nil
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Returns SMTP username. ENV `SMTP_USERNAME` overrides Settings.
|
Returns SMTP username.
|
||||||
|
|
||||||
|
Policy:
|
||||||
|
- ENV-only mode (`SMTP_HOST` set): read from ENV `SMTP_USERNAME`
|
||||||
|
- Settings mode: read from Settings only
|
||||||
"""
|
"""
|
||||||
@spec smtp_username() :: String.t() | nil
|
@spec smtp_username() :: String.t() | nil
|
||||||
def smtp_username do
|
def smtp_username do
|
||||||
smtp_env_or_setting("SMTP_USERNAME", :smtp_username)
|
if smtp_env_mode?() do
|
||||||
|
System.get_env("SMTP_USERNAME") |> trim_nil()
|
||||||
|
else
|
||||||
|
get_from_settings(:smtp_username)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Returns SMTP password.
|
Returns SMTP password.
|
||||||
|
|
||||||
Priority: `SMTP_PASSWORD` ENV > `SMTP_PASSWORD_FILE` (file contents) > Settings.
|
Policy:
|
||||||
|
- ENV-only mode (`SMTP_HOST` set): `SMTP_PASSWORD` > `SMTP_PASSWORD_FILE`
|
||||||
|
- Settings mode: read from Settings only
|
||||||
|
|
||||||
Strips trailing whitespace/newlines from file contents.
|
Strips trailing whitespace/newlines from file contents.
|
||||||
"""
|
"""
|
||||||
@spec smtp_password() :: String.t() | nil
|
@spec smtp_password() :: String.t() | nil
|
||||||
def smtp_password do
|
def smtp_password do
|
||||||
|
if smtp_env_mode?() do
|
||||||
case System.get_env("SMTP_PASSWORD") do
|
case System.get_env("SMTP_PASSWORD") do
|
||||||
nil -> smtp_password_from_file_or_settings()
|
nil -> smtp_password_from_file_or_settings()
|
||||||
value -> trim_nil(value)
|
value -> trim_nil(value)
|
||||||
end
|
end
|
||||||
|
else
|
||||||
|
get_smtp_password_from_settings()
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
defp smtp_password_from_file_or_settings do
|
defp smtp_password_from_file_or_settings do
|
||||||
case System.get_env("SMTP_PASSWORD_FILE") do
|
case System.get_env("SMTP_PASSWORD_FILE") do
|
||||||
nil -> get_smtp_password_from_settings()
|
nil -> nil
|
||||||
path -> read_smtp_password_file(path)
|
path -> read_smtp_password_file(path)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
@ -533,11 +567,18 @@ defmodule Mv.Config do
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Returns SMTP TLS/SSL mode string (e.g. 'tls', 'ssl', 'none').
|
Returns SMTP TLS/SSL mode string (e.g. 'tls', 'ssl', 'none').
|
||||||
ENV `SMTP_SSL` overrides Settings.
|
|
||||||
|
Policy:
|
||||||
|
- ENV-only mode (`SMTP_HOST` set): read from ENV `SMTP_SSL`
|
||||||
|
- Settings mode: read from Settings only
|
||||||
"""
|
"""
|
||||||
@spec smtp_ssl() :: String.t() | nil
|
@spec smtp_ssl() :: String.t() | nil
|
||||||
def smtp_ssl do
|
def smtp_ssl do
|
||||||
smtp_env_or_setting("SMTP_SSL", :smtp_ssl)
|
if smtp_env_mode?() do
|
||||||
|
System.get_env("SMTP_SSL") |> trim_nil()
|
||||||
|
else
|
||||||
|
get_from_settings(:smtp_ssl)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
|
|
@ -549,12 +590,39 @@ defmodule Mv.Config do
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc """
|
@doc """
|
||||||
Returns true when any SMTP ENV variable is set (used in Settings UI for hints).
|
Returns true when SMTP ENV mode is active.
|
||||||
"""
|
"""
|
||||||
@spec smtp_env_configured?() :: boolean()
|
@spec smtp_env_configured?() :: boolean()
|
||||||
def smtp_env_configured? do
|
def smtp_env_configured? do
|
||||||
smtp_host_env_set?() or smtp_port_env_set?() or smtp_username_env_set?() or
|
smtp_env_mode?()
|
||||||
smtp_password_env_set?() or smtp_ssl_env_set?()
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Returns true when SMTP is managed by environment variables.
|
||||||
|
|
||||||
|
Policy: if `SMTP_HOST` is set, SMTP is treated as ENV-only.
|
||||||
|
"""
|
||||||
|
@spec smtp_env_mode?() :: boolean()
|
||||||
|
def smtp_env_mode? do
|
||||||
|
smtp_host_env_set?()
|
||||||
|
end
|
||||||
|
|
||||||
|
@doc """
|
||||||
|
Returns missing required SMTP ENV keys for ENV-only mode warnings.
|
||||||
|
|
||||||
|
Required in ENV-only mode:
|
||||||
|
- `SMTP_USERNAME`
|
||||||
|
- one of `SMTP_PASSWORD` or `SMTP_PASSWORD_FILE`
|
||||||
|
"""
|
||||||
|
@spec smtp_missing_required_env_keys() :: [String.t()]
|
||||||
|
def smtp_missing_required_env_keys do
|
||||||
|
if smtp_env_mode?() do
|
||||||
|
[]
|
||||||
|
|> maybe_add_missing("SMTP_USERNAME", smtp_username_env_set?())
|
||||||
|
|> maybe_add_missing("SMTP_PASSWORD/SMTP_PASSWORD_FILE", smtp_password_env_set?())
|
||||||
|
else
|
||||||
|
[]
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
@doc "Returns true if SMTP_HOST ENV is set."
|
@doc "Returns true if SMTP_HOST ENV is set."
|
||||||
|
|
@ -618,6 +686,17 @@ defmodule Mv.Config do
|
||||||
@spec mail_from_email_env_set?() :: boolean()
|
@spec mail_from_email_env_set?() :: boolean()
|
||||||
def mail_from_email_env_set?, do: env_set?("MAIL_FROM_EMAIL")
|
def mail_from_email_env_set?, do: env_set?("MAIL_FROM_EMAIL")
|
||||||
|
|
||||||
|
defp parse_smtp_port_env(nil), do: nil
|
||||||
|
|
||||||
|
defp parse_smtp_port_env(value) when is_binary(value) do
|
||||||
|
case Integer.parse(String.trim(value)) do
|
||||||
|
{port, _} when port > 0 -> port
|
||||||
|
_ -> nil
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
defp parse_smtp_port_env(_), do: nil
|
||||||
|
|
||||||
# Reads a plain string SMTP setting: ENV first, then Settings.
|
# Reads a plain string SMTP setting: ENV first, then Settings.
|
||||||
defp smtp_env_or_setting(env_key, setting_key) do
|
defp smtp_env_or_setting(env_key, setting_key) do
|
||||||
case System.get_env(env_key) do
|
case System.get_env(env_key) do
|
||||||
|
|
@ -626,6 +705,9 @@ defmodule Mv.Config do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
defp maybe_add_missing(acc, _label, true), do: acc
|
||||||
|
defp maybe_add_missing(acc, label, false), do: acc ++ [label]
|
||||||
|
|
||||||
# Reads an integer setting attribute from Settings.
|
# Reads an integer setting attribute from Settings.
|
||||||
defp get_from_settings_integer(key) do
|
defp get_from_settings_integer(key) do
|
||||||
case Mv.Membership.get_settings() do
|
case Mv.Membership.get_settings() do
|
||||||
|
|
|
||||||
|
|
@ -135,8 +135,11 @@ defmodule MvWeb.Layouts do
|
||||||
slot :inner_block, required: true
|
slot :inner_block, required: true
|
||||||
|
|
||||||
def app(assigns) do
|
def app(assigns) do
|
||||||
# Single get_settings() for layout; derive club_name and join_form_enabled to avoid duplicate query.
|
# Single settings read for layout defaults.
|
||||||
%{club_name: club_name, join_form_enabled: join_form_enabled} = get_layout_settings()
|
# Use an explicitly provided club_name as source of truth to avoid stale
|
||||||
|
# values from cache reads immediately after a settings update in LiveViews.
|
||||||
|
%{club_name: fallback_club_name, join_form_enabled: join_form_enabled} = get_layout_settings()
|
||||||
|
club_name = assigns[:club_name] || fallback_club_name
|
||||||
|
|
||||||
# NOTE: Unprocessed count runs on every page load when join form is enabled; consider
|
# NOTE: Unprocessed count runs on every page load when join form is enabled; consider
|
||||||
# loading only on navigation or caching briefly if performance becomes an issue.
|
# loading only on navigation or caching briefly if performance becomes an issue.
|
||||||
|
|
|
||||||
|
|
@ -65,6 +65,7 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
|> assign(:settings, settings)
|
|> assign(:settings, settings)
|
||||||
|> assign(:locale, locale)
|
|> assign(:locale, locale)
|
||||||
|> assign(:environment, environment)
|
|> assign(:environment, environment)
|
||||||
|
|> assign(:association_name_env_set, Mv.Config.association_name_env_set?())
|
||||||
|> assign(:vereinfacht_env_configured, Mv.Config.vereinfacht_env_configured?())
|
|> assign(:vereinfacht_env_configured, Mv.Config.vereinfacht_env_configured?())
|
||||||
|> assign(:vereinfacht_api_url_env_set, Mv.Config.vereinfacht_api_url_env_set?())
|
|> assign(:vereinfacht_api_url_env_set, Mv.Config.vereinfacht_api_url_env_set?())
|
||||||
|> assign(:vereinfacht_api_key_env_set, Mv.Config.vereinfacht_api_key_env_set?())
|
|> assign(:vereinfacht_api_key_env_set, Mv.Config.vereinfacht_api_key_env_set?())
|
||||||
|
|
@ -86,6 +87,8 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
|> assign(:oidc_client_secret_set, Mv.Config.oidc_client_secret_set?())
|
|> assign(:oidc_client_secret_set, Mv.Config.oidc_client_secret_set?())
|
||||||
|> assign(:registration_enabled, settings.registration_enabled != false)
|
|> assign(:registration_enabled, settings.registration_enabled != false)
|
||||||
|> assign(:smtp_env_configured, Mv.Config.smtp_env_configured?())
|
|> assign(:smtp_env_configured, Mv.Config.smtp_env_configured?())
|
||||||
|
|> assign(:smtp_env_mode, Mv.Config.smtp_env_mode?())
|
||||||
|
|> assign(:smtp_missing_required_env_keys, Mv.Config.smtp_missing_required_env_keys())
|
||||||
|> assign(:smtp_host_env_set, Mv.Config.smtp_host_env_set?())
|
|> assign(:smtp_host_env_set, Mv.Config.smtp_host_env_set?())
|
||||||
|> assign(:smtp_port_env_set, Mv.Config.smtp_port_env_set?())
|
|> assign(:smtp_port_env_set, Mv.Config.smtp_port_env_set?())
|
||||||
|> assign(:smtp_username_env_set, Mv.Config.smtp_username_env_set?())
|
|> assign(:smtp_username_env_set, Mv.Config.smtp_username_env_set?())
|
||||||
|
|
@ -123,6 +126,13 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
<div class="mt-6 space-y-6 max-w-4xl px-4">
|
<div class="mt-6 space-y-6 max-w-4xl px-4">
|
||||||
<%!-- Club Settings Section --%>
|
<%!-- Club Settings Section --%>
|
||||||
<.form_section title={gettext("Club Settings")}>
|
<.form_section title={gettext("Club Settings")}>
|
||||||
|
<%= if @association_name_env_set do %>
|
||||||
|
<p class="text-sm text-base-content/70 mb-4">
|
||||||
|
{gettext(
|
||||||
|
"Association name is set via environment variable ASSOCIATION_NAME. This field is read-only."
|
||||||
|
)}
|
||||||
|
</p>
|
||||||
|
<% end %>
|
||||||
<.form for={@form} id="settings-form" phx-change="validate" phx-submit="save">
|
<.form for={@form} id="settings-form" phx-change="validate" phx-submit="save">
|
||||||
<div class="w-100">
|
<div class="w-100">
|
||||||
<.input
|
<.input
|
||||||
|
|
@ -130,10 +140,18 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
type="text"
|
type="text"
|
||||||
label={gettext("Association Name")}
|
label={gettext("Association Name")}
|
||||||
required
|
required
|
||||||
|
disabled={@association_name_env_set}
|
||||||
|
placeholder={
|
||||||
|
if(@association_name_env_set, do: gettext("From ASSOCIATION_NAME"), else: nil)
|
||||||
|
}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<.button phx-disable-with={gettext("Saving...")} variant="primary">
|
<.button
|
||||||
|
:if={not @association_name_env_set}
|
||||||
|
phx-disable-with={gettext("Saving...")}
|
||||||
|
variant="primary"
|
||||||
|
>
|
||||||
{gettext("Save Name")}
|
{gettext("Save Name")}
|
||||||
</.button>
|
</.button>
|
||||||
</.form>
|
</.form>
|
||||||
|
|
@ -321,12 +339,25 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
</.form_section>
|
</.form_section>
|
||||||
<%!-- SMTP / E-Mail Section --%>
|
<%!-- SMTP / E-Mail Section --%>
|
||||||
<.form_section title={gettext("SMTP / E-Mail")}>
|
<.form_section title={gettext("SMTP / E-Mail")}>
|
||||||
<%= if @smtp_env_configured do %>
|
<%= if @smtp_env_mode do %>
|
||||||
<p class="text-sm text-base-content/70 mb-4">
|
<p class="text-sm text-base-content/70 mb-4">
|
||||||
{gettext("Some values are set via environment variables. Those fields are read-only.")}
|
{gettext(
|
||||||
|
"SMTP is fully managed via environment variables. All SMTP fields are read-only."
|
||||||
|
)}
|
||||||
</p>
|
</p>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
|
<%= if @smtp_env_mode and @smtp_missing_required_env_keys != [] do %>
|
||||||
|
<div class="mb-4 flex items-start gap-2 p-3 rounded-lg border border-warning bg-warning/10 text-warning-aa text-sm">
|
||||||
|
<.icon name="hero-exclamation-triangle" class="size-5 shrink-0 mt-0.5" />
|
||||||
|
<span>
|
||||||
|
{gettext("SMTP environment configuration appears incomplete. Missing: %{keys}",
|
||||||
|
keys: Enum.join(@smtp_missing_required_env_keys, ", ")
|
||||||
|
)}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<% end %>
|
||||||
|
|
||||||
<%= if @environment == :prod and not @smtp_configured do %>
|
<%= if @environment == :prod and not @smtp_configured do %>
|
||||||
<div class="mb-4 flex items-start gap-2 p-3 rounded-lg border border-warning bg-warning/10 text-warning-aa text-sm">
|
<div class="mb-4 flex items-start gap-2 p-3 rounded-lg border border-warning bg-warning/10 text-warning-aa text-sm">
|
||||||
<.icon name="hero-exclamation-triangle" class="size-5 shrink-0 mt-0.5" />
|
<.icon name="hero-exclamation-triangle" class="size-5 shrink-0 mt-0.5" />
|
||||||
|
|
@ -345,7 +376,7 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
field={@form[:smtp_host]}
|
field={@form[:smtp_host]}
|
||||||
type="text"
|
type="text"
|
||||||
label={gettext("Host")}
|
label={gettext("Host")}
|
||||||
disabled={@smtp_host_env_set}
|
disabled={@smtp_env_mode}
|
||||||
placeholder={
|
placeholder={
|
||||||
if(@smtp_host_env_set,
|
if(@smtp_host_env_set,
|
||||||
do: gettext("From SMTP_HOST"),
|
do: gettext("From SMTP_HOST"),
|
||||||
|
|
@ -357,14 +388,14 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
field={@form[:smtp_port]}
|
field={@form[:smtp_port]}
|
||||||
type="number"
|
type="number"
|
||||||
label={gettext("Port")}
|
label={gettext("Port")}
|
||||||
disabled={@smtp_port_env_set}
|
disabled={@smtp_env_mode}
|
||||||
placeholder={if(@smtp_port_env_set, do: gettext("From SMTP_PORT"), else: "587")}
|
placeholder={if(@smtp_port_env_set, do: gettext("From SMTP_PORT"), else: "587")}
|
||||||
/>
|
/>
|
||||||
<.input
|
<.input
|
||||||
field={@form[:smtp_ssl]}
|
field={@form[:smtp_ssl]}
|
||||||
type="select"
|
type="select"
|
||||||
label={gettext("TLS/SSL")}
|
label={gettext("TLS/SSL")}
|
||||||
disabled={@smtp_ssl_env_set}
|
disabled={@smtp_env_mode}
|
||||||
options={[
|
options={[
|
||||||
{gettext("TLS (port 587, recommended)"), "tls"},
|
{gettext("TLS (port 587, recommended)"), "tls"},
|
||||||
{gettext("SSL (port 465)"), "ssl"},
|
{gettext("SSL (port 465)"), "ssl"},
|
||||||
|
|
@ -379,7 +410,7 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
field={@form[:smtp_username]}
|
field={@form[:smtp_username]}
|
||||||
type="text"
|
type="text"
|
||||||
label={gettext("Username")}
|
label={gettext("Username")}
|
||||||
disabled={@smtp_username_env_set}
|
disabled={@smtp_env_mode}
|
||||||
placeholder={
|
placeholder={
|
||||||
if(@smtp_username_env_set,
|
if(@smtp_username_env_set,
|
||||||
do: gettext("From SMTP_USERNAME"),
|
do: gettext("From SMTP_USERNAME"),
|
||||||
|
|
@ -391,7 +422,7 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
field={@form[:smtp_password]}
|
field={@form[:smtp_password]}
|
||||||
type="password"
|
type="password"
|
||||||
label={gettext("Password")}
|
label={gettext("Password")}
|
||||||
disabled={@smtp_password_env_set}
|
disabled={@smtp_env_mode}
|
||||||
placeholder={
|
placeholder={
|
||||||
if(@smtp_password_env_set,
|
if(@smtp_password_env_set,
|
||||||
do: gettext("From SMTP_PASSWORD"),
|
do: gettext("From SMTP_PASSWORD"),
|
||||||
|
|
@ -410,7 +441,7 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
field={@form[:smtp_from_email]}
|
field={@form[:smtp_from_email]}
|
||||||
type="email"
|
type="email"
|
||||||
label={gettext("Sender email (From)")}
|
label={gettext("Sender email (From)")}
|
||||||
disabled={@smtp_from_email_env_set}
|
disabled={@smtp_env_mode}
|
||||||
placeholder={
|
placeholder={
|
||||||
if(@smtp_from_email_env_set,
|
if(@smtp_from_email_env_set,
|
||||||
do: gettext("From MAIL_FROM_EMAIL"),
|
do: gettext("From MAIL_FROM_EMAIL"),
|
||||||
|
|
@ -422,7 +453,7 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
field={@form[:smtp_from_name]}
|
field={@form[:smtp_from_name]}
|
||||||
type="text"
|
type="text"
|
||||||
label={gettext("Sender name (From)")}
|
label={gettext("Sender name (From)")}
|
||||||
disabled={@smtp_from_name_env_set}
|
disabled={@smtp_env_mode}
|
||||||
placeholder={
|
placeholder={
|
||||||
if(@smtp_from_name_env_set, do: gettext("From MAIL_FROM_NAME"), else: "Mila")
|
if(@smtp_from_name_env_set, do: gettext("From MAIL_FROM_NAME"), else: "Mila")
|
||||||
}
|
}
|
||||||
|
|
@ -436,6 +467,7 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
</p>
|
</p>
|
||||||
<.button
|
<.button
|
||||||
:if={
|
:if={
|
||||||
|
not @smtp_env_mode and
|
||||||
not (@smtp_host_env_set and @smtp_port_env_set and @smtp_username_env_set and
|
not (@smtp_host_env_set and @smtp_port_env_set and @smtp_username_env_set and
|
||||||
@smtp_password_env_set and @smtp_ssl_env_set and @smtp_from_email_env_set and
|
@smtp_password_env_set and @smtp_ssl_env_set and @smtp_from_email_env_set and
|
||||||
@smtp_from_name_env_set)
|
@smtp_from_name_env_set)
|
||||||
|
|
@ -903,6 +935,7 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
# Never send blank API key / client secret / smtp password so we do not overwrite stored secrets
|
# Never send blank API key / client secret / smtp password so we do not overwrite stored secrets
|
||||||
setting_params_clean =
|
setting_params_clean =
|
||||||
setting_params
|
setting_params
|
||||||
|
|> drop_env_managed_association_name()
|
||||||
|> drop_blank_vereinfacht_api_key()
|
|> drop_blank_vereinfacht_api_key()
|
||||||
|> drop_blank_oidc_client_secret()
|
|> drop_blank_oidc_client_secret()
|
||||||
|> drop_blank_smtp_password()
|
|> drop_blank_smtp_password()
|
||||||
|
|
@ -911,6 +944,10 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
|
|
||||||
case MvWeb.LiveHelpers.submit_form(socket.assigns.form, setting_params_clean, actor) do
|
case MvWeb.LiveHelpers.submit_form(socket.assigns.form, setting_params_clean, actor) do
|
||||||
{:ok, updated_settings} ->
|
{:ok, updated_settings} ->
|
||||||
|
# Keep cross-view reads consistent after settings updates (layouts/sidebar
|
||||||
|
# read via Membership.get_settings/0).
|
||||||
|
Membership.invalidate_settings_cache()
|
||||||
|
|
||||||
# Use the returned record for the form so saved values show immediately;
|
# Use the returned record for the form so saved values show immediately;
|
||||||
# get_settings() can return cached data without the new attribute until reload.
|
# get_settings() can return cached data without the new attribute until reload.
|
||||||
test_result =
|
test_result =
|
||||||
|
|
@ -1179,10 +1216,19 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
defp drop_env_managed_association_name(params) when is_map(params) do
|
||||||
|
if Mv.Config.association_name_env_set?() do
|
||||||
|
Map.delete(params, "club_name")
|
||||||
|
else
|
||||||
|
params
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
defp assign_form(%{assigns: %{settings: settings}} = socket) do
|
defp assign_form(%{assigns: %{settings: settings}} = socket) do
|
||||||
# Show ENV values in disabled fields (Vereinfacht, OIDC, SMTP); never expose secrets in form
|
# Show ENV values in disabled fields (Association Name, Vereinfacht, OIDC, SMTP); never expose secrets in form
|
||||||
settings_display =
|
settings_display =
|
||||||
settings
|
settings
|
||||||
|
|> merge_association_env_values()
|
||||||
|> merge_vereinfacht_env_values()
|
|> merge_vereinfacht_env_values()
|
||||||
|> merge_oidc_env_values()
|
|> merge_oidc_env_values()
|
||||||
|> merge_smtp_env_values()
|
|> merge_smtp_env_values()
|
||||||
|
|
@ -1209,6 +1255,15 @@ defmodule MvWeb.GlobalSettingsLive do
|
||||||
defp put_if_env_set(map, _key, false, _value), do: map
|
defp put_if_env_set(map, _key, false, _value), do: map
|
||||||
defp put_if_env_set(map, key, true, value), do: Map.put(map, key, value)
|
defp put_if_env_set(map, key, true, value), do: Map.put(map, key, value)
|
||||||
|
|
||||||
|
defp merge_association_env_values(s) do
|
||||||
|
put_if_env_set(
|
||||||
|
s,
|
||||||
|
:club_name,
|
||||||
|
Mv.Config.association_name_env_set?(),
|
||||||
|
Mv.Config.association_name()
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
defp merge_vereinfacht_env_values(s) do
|
defp merge_vereinfacht_env_values(s) do
|
||||||
s
|
s
|
||||||
|> put_if_env_set(
|
|> put_if_env_set(
|
||||||
|
|
|
||||||
|
|
@ -3917,3 +3917,23 @@ msgstr "Offen"
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "join page URL in a new tab"
|
msgid "join page URL in a new tab"
|
||||||
msgstr "Beitrittslink in einem neuen Tab"
|
msgstr "Beitrittslink in einem neuen Tab"
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "SMTP environment configuration appears incomplete. Missing: %{keys}"
|
||||||
|
msgstr "Die SMTP-Umgebungs-Konfiguration ist unvollständig. Fehlend: %{keys}"
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "SMTP is fully managed via environment variables. All SMTP fields are read-only."
|
||||||
|
msgstr "SMTP wird vollständig über Umgebungsvariablen verwaltet. Alle SMTP-Felder sind schreibgeschützt."
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Association name is set via environment variable ASSOCIATION_NAME. This field is read-only."
|
||||||
|
msgstr "Der Vereinsname wird über die Umgebungsvariable ASSOCIATION_NAME gesetzt. Dieses Feld ist schreibgeschützt."
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "From ASSOCIATION_NAME"
|
||||||
|
msgstr "Aus ASSOCIATION_NAME"
|
||||||
|
|
|
||||||
|
|
@ -3917,3 +3917,23 @@ msgstr ""
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "join page URL in a new tab"
|
msgid "join page URL in a new tab"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "SMTP environment configuration appears incomplete. Missing: %{keys}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "SMTP is fully managed via environment variables. All SMTP fields are read-only."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Association name is set via environment variable ASSOCIATION_NAME. This field is read-only."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "From ASSOCIATION_NAME"
|
||||||
|
msgstr ""
|
||||||
|
|
|
||||||
|
|
@ -3917,3 +3917,23 @@ msgstr "Open"
|
||||||
#, elixir-autogen, elixir-format
|
#, elixir-autogen, elixir-format
|
||||||
msgid "join page URL in a new tab"
|
msgid "join page URL in a new tab"
|
||||||
msgstr "join page URL in a new tab"
|
msgstr "join page URL in a new tab"
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "SMTP environment configuration appears incomplete. Missing: %{keys}"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "SMTP is fully managed via environment variables. All SMTP fields are read-only."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "Association name is set via environment variable ASSOCIATION_NAME. This field is read-only."
|
||||||
|
msgstr "Association name is set via environment variable ASSOCIATION_NAME. This field is read-only."
|
||||||
|
|
||||||
|
#: lib/mv_web/live/global_settings_live.ex
|
||||||
|
#, elixir-autogen, elixir-format
|
||||||
|
msgid "From ASSOCIATION_NAME"
|
||||||
|
msgstr "From ASSOCIATION_NAME"
|
||||||
|
|
|
||||||
|
|
@ -23,7 +23,8 @@ defmodule Mv.ConfigSmtpTest do
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "smtp_port/0" do
|
describe "smtp_port/0" do
|
||||||
test "returns parsed integer when SMTP_PORT ENV is set" do
|
test "returns parsed integer when SMTP_PORT ENV is set in ENV-only mode" do
|
||||||
|
set_smtp_env("SMTP_HOST", "smtp.example.com")
|
||||||
set_smtp_env("SMTP_PORT", "587")
|
set_smtp_env("SMTP_PORT", "587")
|
||||||
assert Mv.Config.smtp_port() == 587
|
assert Mv.Config.smtp_port() == 587
|
||||||
after
|
after
|
||||||
|
|
@ -52,13 +53,21 @@ defmodule Mv.ConfigSmtpTest do
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "smtp_env_configured?/0" do
|
describe "smtp_env_configured?/0" do
|
||||||
test "returns true when any SMTP ENV variable is set" do
|
test "returns true when SMTP_HOST is set" do
|
||||||
set_smtp_env("SMTP_HOST", "smtp.example.com")
|
set_smtp_env("SMTP_HOST", "smtp.example.com")
|
||||||
assert Mv.Config.smtp_env_configured?() == true
|
assert Mv.Config.smtp_env_configured?() == true
|
||||||
after
|
after
|
||||||
clear_smtp_env()
|
clear_smtp_env()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "returns false when SMTP_HOST is not set even if other SMTP ENV variables are set" do
|
||||||
|
set_smtp_env("SMTP_USERNAME", "user@example.com")
|
||||||
|
set_smtp_env("SMTP_PASSWORD", "secret")
|
||||||
|
refute Mv.Config.smtp_env_configured?()
|
||||||
|
after
|
||||||
|
clear_smtp_env()
|
||||||
|
end
|
||||||
|
|
||||||
test "returns false when no SMTP ENV variables are set" do
|
test "returns false when no SMTP ENV variables are set" do
|
||||||
clear_smtp_env()
|
clear_smtp_env()
|
||||||
refute Mv.Config.smtp_env_configured?()
|
refute Mv.Config.smtp_env_configured?()
|
||||||
|
|
@ -66,15 +75,17 @@ defmodule Mv.ConfigSmtpTest do
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "smtp_password/0 and SMTP_PASSWORD_FILE" do
|
describe "smtp_password/0 and SMTP_PASSWORD_FILE" do
|
||||||
test "returns value from SMTP_PASSWORD when set" do
|
test "returns value from SMTP_PASSWORD when set in ENV-only mode" do
|
||||||
|
set_smtp_env("SMTP_HOST", "smtp.example.com")
|
||||||
set_smtp_env("SMTP_PASSWORD", "env-secret")
|
set_smtp_env("SMTP_PASSWORD", "env-secret")
|
||||||
assert Mv.Config.smtp_password() == "env-secret"
|
assert Mv.Config.smtp_password() == "env-secret"
|
||||||
after
|
after
|
||||||
clear_smtp_env()
|
clear_smtp_env()
|
||||||
end
|
end
|
||||||
|
|
||||||
test "returns content of file when SMTP_PASSWORD_FILE is set and SMTP_PASSWORD is not" do
|
test "returns content of file when SMTP_PASSWORD_FILE is set in ENV-only mode and SMTP_PASSWORD is not" do
|
||||||
clear_smtp_env()
|
clear_smtp_env()
|
||||||
|
set_smtp_env("SMTP_HOST", "smtp.example.com")
|
||||||
path = Path.join(System.tmp_dir!(), "mv_smtp_test_#{System.unique_integer([:positive])}")
|
path = Path.join(System.tmp_dir!(), "mv_smtp_test_#{System.unique_integer([:positive])}")
|
||||||
File.write!(path, "file-secret\n")
|
File.write!(path, "file-secret\n")
|
||||||
Process.put(:smtp_password_file_path, path)
|
Process.put(:smtp_password_file_path, path)
|
||||||
|
|
@ -85,7 +96,8 @@ defmodule Mv.ConfigSmtpTest do
|
||||||
if path = Process.get(:smtp_password_file_path), do: File.rm(path)
|
if path = Process.get(:smtp_password_file_path), do: File.rm(path)
|
||||||
end
|
end
|
||||||
|
|
||||||
test "SMTP_PASSWORD overrides SMTP_PASSWORD_FILE when both are set" do
|
test "SMTP_PASSWORD overrides SMTP_PASSWORD_FILE in ENV-only mode when both are set" do
|
||||||
|
set_smtp_env("SMTP_HOST", "smtp.example.com")
|
||||||
path = Path.join(System.tmp_dir!(), "mv_smtp_test_#{System.unique_integer([:positive])}")
|
path = Path.join(System.tmp_dir!(), "mv_smtp_test_#{System.unique_integer([:positive])}")
|
||||||
File.write!(path, "file-secret")
|
File.write!(path, "file-secret")
|
||||||
Process.put(:smtp_password_file_path, path)
|
Process.put(:smtp_password_file_path, path)
|
||||||
|
|
|
||||||
26
test/mv_web/components/layouts_test.exs
Normal file
26
test/mv_web/components/layouts_test.exs
Normal file
|
|
@ -0,0 +1,26 @@
|
||||||
|
defmodule MvWeb.LayoutsTest do
|
||||||
|
use MvWeb.ConnCase, async: false
|
||||||
|
|
||||||
|
import Phoenix.LiveViewTest
|
||||||
|
|
||||||
|
alias Mv.Membership
|
||||||
|
alias MvWeb.Layouts
|
||||||
|
|
||||||
|
describe "app/1" do
|
||||||
|
test "prefers provided club_name over settings fallback" do
|
||||||
|
{:ok, settings} = Membership.get_settings()
|
||||||
|
{:ok, _} = Membership.update_settings(settings, %{club_name: "Settings Club Name"})
|
||||||
|
|
||||||
|
html =
|
||||||
|
render_component(&Layouts.app/1, %{
|
||||||
|
flash: %{},
|
||||||
|
current_user: nil,
|
||||||
|
club_name: "Provided Club Name",
|
||||||
|
inner_block: [%{inner_block: fn _, _ -> "content" end}]
|
||||||
|
})
|
||||||
|
|
||||||
|
assert html =~ "Provided Club Name"
|
||||||
|
refute html =~ "Settings Club Name"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
@ -1,8 +1,20 @@
|
||||||
defmodule MvWeb.GlobalSettingsLiveTest do
|
defmodule MvWeb.GlobalSettingsLiveTest do
|
||||||
use MvWeb.ConnCase, async: true
|
use MvWeb.ConnCase, async: false
|
||||||
import Phoenix.LiveViewTest
|
import Phoenix.LiveViewTest
|
||||||
alias Mv.Membership
|
alias Mv.Membership
|
||||||
|
|
||||||
|
@smtp_env_keys [
|
||||||
|
"SMTP_HOST",
|
||||||
|
"SMTP_PORT",
|
||||||
|
"SMTP_USERNAME",
|
||||||
|
"SMTP_PASSWORD",
|
||||||
|
"SMTP_PASSWORD_FILE",
|
||||||
|
"SMTP_SSL",
|
||||||
|
"MAIL_FROM_NAME",
|
||||||
|
"MAIL_FROM_EMAIL"
|
||||||
|
]
|
||||||
|
@association_env_key "ASSOCIATION_NAME"
|
||||||
|
|
||||||
describe "Global Settings LiveView" do
|
describe "Global Settings LiveView" do
|
||||||
setup %{conn: conn} do
|
setup %{conn: conn} do
|
||||||
user = create_test_user(%{email: "admin@example.com"})
|
user = create_test_user(%{email: "admin@example.com"})
|
||||||
|
|
@ -40,6 +52,17 @@ defmodule MvWeb.GlobalSettingsLiveTest do
|
||||||
assert render(view) =~ "Updated Club Name"
|
assert render(view) =~ "Updated Club Name"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
test "updated club name is shown after remount", %{conn: conn} do
|
||||||
|
{:ok, view, _html} = live(conn, ~p"/settings")
|
||||||
|
|
||||||
|
assert view
|
||||||
|
|> form("#settings-form", %{setting: %{club_name: "Remount Club Name"}})
|
||||||
|
|> render_submit()
|
||||||
|
|
||||||
|
{:ok, _view_after_remount, html_after_remount} = live(conn, ~p"/settings")
|
||||||
|
assert html_after_remount =~ "Remount Club Name"
|
||||||
|
end
|
||||||
|
|
||||||
test "shows error when club_name is empty", %{conn: conn} do
|
test "shows error when club_name is empty", %{conn: conn} do
|
||||||
{:ok, view, _html} = live(conn, ~p"/settings")
|
{:ok, view, _html} = live(conn, ~p"/settings")
|
||||||
|
|
||||||
|
|
@ -79,6 +102,34 @@ defmodule MvWeb.GlobalSettingsLiveTest do
|
||||||
"Open"
|
"Open"
|
||||||
)
|
)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@tag :ui
|
||||||
|
test "disables association name input when ASSOCIATION_NAME is set", %{conn: conn} do
|
||||||
|
clear_association_name_env()
|
||||||
|
System.put_env(@association_env_key, "Association Name from ENV")
|
||||||
|
on_exit(fn -> clear_association_name_env() end)
|
||||||
|
|
||||||
|
{:ok, view, _html} = live(conn, ~p"/settings")
|
||||||
|
|
||||||
|
assert has_element?(view, "#setting_club_name[disabled]")
|
||||||
|
assert has_element?(view, "#setting_club_name[placeholder='From ASSOCIATION_NAME']")
|
||||||
|
refute has_element?(view, "#settings-form button", "Save Name")
|
||||||
|
assert render(view) =~ "Association name is set via environment variable ASSOCIATION_NAME"
|
||||||
|
end
|
||||||
|
|
||||||
|
@tag :ui
|
||||||
|
test "keeps association name input editable when ASSOCIATION_NAME is not set", %{conn: conn} do
|
||||||
|
clear_association_name_env()
|
||||||
|
on_exit(fn -> clear_association_name_env() end)
|
||||||
|
|
||||||
|
{:ok, view, _html} = live(conn, ~p"/settings")
|
||||||
|
|
||||||
|
refute has_element?(view, "#setting_club_name[disabled]")
|
||||||
|
assert has_element?(view, "#settings-form button", "Save Name")
|
||||||
|
|
||||||
|
refute render(view) =~
|
||||||
|
"Association name is set via environment variable ASSOCIATION_NAME"
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "SMTP / E-Mail section" do
|
describe "SMTP / E-Mail section" do
|
||||||
|
|
@ -124,6 +175,71 @@ defmodule MvWeb.GlobalSettingsLiveTest do
|
||||||
{:ok, _view, html} = live(conn, ~p"/settings")
|
{:ok, _view, html} = live(conn, ~p"/settings")
|
||||||
assert html =~ "SMTP" or html =~ "E-Mail" or html =~ "Settings"
|
assert html =~ "SMTP" or html =~ "E-Mail" or html =~ "Settings"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@tag :ui
|
||||||
|
test "disables all SMTP inputs when SMTP_HOST is set", %{conn: conn} do
|
||||||
|
clear_smtp_env()
|
||||||
|
System.put_env("SMTP_HOST", "smtp.env-only.example")
|
||||||
|
on_exit(fn -> clear_smtp_env() end)
|
||||||
|
|
||||||
|
{:ok, view, _html} = live(conn, ~p"/settings")
|
||||||
|
|
||||||
|
assert has_element?(view, "#setting_smtp_host[disabled]")
|
||||||
|
assert has_element?(view, "#setting_smtp_port[disabled]")
|
||||||
|
assert has_element?(view, "#setting_smtp_ssl[disabled]")
|
||||||
|
assert has_element?(view, "#setting_smtp_username[disabled]")
|
||||||
|
assert has_element?(view, "#setting_smtp_password[disabled]")
|
||||||
|
assert has_element?(view, "#setting_smtp_from_email[disabled]")
|
||||||
|
assert has_element?(view, "#setting_smtp_from_name[disabled]")
|
||||||
|
end
|
||||||
|
|
||||||
|
@tag :ui
|
||||||
|
test "does not render SMTP save action when SMTP_HOST is set", %{conn: conn} do
|
||||||
|
clear_smtp_env()
|
||||||
|
System.put_env("SMTP_HOST", "smtp.env-only.example")
|
||||||
|
on_exit(fn -> clear_smtp_env() end)
|
||||||
|
|
||||||
|
{:ok, view, _html} = live(conn, ~p"/settings")
|
||||||
|
refute has_element?(view, "#smtp-form button", "Save SMTP Settings")
|
||||||
|
end
|
||||||
|
|
||||||
|
@tag :ui
|
||||||
|
test "shows explicit ENV-only mode hint when SMTP_HOST is set", %{conn: conn} do
|
||||||
|
clear_smtp_env()
|
||||||
|
System.put_env("SMTP_HOST", "smtp.env-only.example")
|
||||||
|
on_exit(fn -> clear_smtp_env() end)
|
||||||
|
|
||||||
|
{:ok, _view, html} = live(conn, ~p"/settings")
|
||||||
|
assert html =~ "SMTP is fully managed via environment variables"
|
||||||
|
end
|
||||||
|
|
||||||
|
@tag :ui
|
||||||
|
test "shows warning block for missing required SMTP ENV values in ENV-only mode", %{
|
||||||
|
conn: conn
|
||||||
|
} do
|
||||||
|
clear_smtp_env()
|
||||||
|
System.put_env("SMTP_HOST", "smtp.env-only.example")
|
||||||
|
on_exit(fn -> clear_smtp_env() end)
|
||||||
|
|
||||||
|
{:ok, _view, html} = live(conn, ~p"/settings")
|
||||||
|
assert html =~ "SMTP environment configuration appears incomplete"
|
||||||
|
assert html =~ "SMTP_USERNAME"
|
||||||
|
assert html =~ "SMTP_PASSWORD/SMTP_PASSWORD_FILE"
|
||||||
|
end
|
||||||
|
|
||||||
|
@tag :ui
|
||||||
|
test "does not enter ENV-only mode when SMTP_HOST is not set", %{conn: conn} do
|
||||||
|
clear_smtp_env()
|
||||||
|
System.put_env("SMTP_USERNAME", "leftover@example.com")
|
||||||
|
on_exit(fn -> clear_smtp_env() end)
|
||||||
|
|
||||||
|
{:ok, view, html} = live(conn, ~p"/settings")
|
||||||
|
|
||||||
|
refute html =~ "SMTP is fully managed via environment variables"
|
||||||
|
refute html =~ "SMTP environment configuration appears incomplete"
|
||||||
|
refute has_element?(view, "#setting_smtp_host[disabled]")
|
||||||
|
refute has_element?(view, "#setting_smtp_username[disabled]")
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "Authentication section when OIDC-only is enabled" do
|
describe "Authentication section when OIDC-only is enabled" do
|
||||||
|
|
@ -190,4 +306,12 @@ defmodule MvWeb.GlobalSettingsLiveTest do
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
defp clear_smtp_env do
|
||||||
|
Enum.each(@smtp_env_keys, &System.delete_env/1)
|
||||||
|
end
|
||||||
|
|
||||||
|
defp clear_association_name_env do
|
||||||
|
System.delete_env(@association_env_key)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue