75 lines
3.1 KiB
Elixir
75 lines
3.1 KiB
Elixir
defmodule <%= inspect context.web_module %>.<%= inspect Module.concat(schema.web_namespace, schema.alias) %>SettingsController do
|
|
use <%= inspect context.web_module %>, :controller
|
|
|
|
alias <%= inspect context.module %>
|
|
alias <%= inspect auth_module %>
|
|
|
|
plug :assign_email_and_password_changesets
|
|
|
|
def edit(conn, _params) do
|
|
render(conn, "edit.html")
|
|
end
|
|
|
|
def update(conn, %{"action" => "update_email"} = params) do
|
|
%{"current_password" => password, "<%= schema.singular %>" => <%= schema.singular %>_params} = params
|
|
<%= schema.singular %> = conn.assigns.current_<%= schema.singular %>
|
|
|
|
case <%= inspect context.alias %>.apply_<%= schema.singular %>_email(<%= schema.singular %>, password, <%= schema.singular %>_params) do
|
|
{:ok, applied_<%= schema.singular %>} ->
|
|
<%= inspect context.alias %>.deliver_update_email_instructions(
|
|
applied_<%= schema.singular %>,
|
|
<%= schema.singular %>.email,
|
|
&Routes.<%= schema.route_helper %>_settings_url(conn, :confirm_email, &1)
|
|
)
|
|
|
|
conn
|
|
|> put_flash(
|
|
:info,
|
|
"A link to confirm your email change has been sent to the new address."
|
|
)
|
|
|> redirect(to: Routes.<%= schema.route_helper %>_settings_path(conn, :edit))
|
|
|
|
{:error, changeset} ->
|
|
render(conn, "edit.html", email_changeset: changeset)
|
|
end
|
|
end
|
|
|
|
def update(conn, %{"action" => "update_password"} = params) do
|
|
%{"current_password" => password, "<%= schema.singular %>" => <%= schema.singular %>_params} = params
|
|
<%= schema.singular %> = conn.assigns.current_<%= schema.singular %>
|
|
|
|
case <%= inspect context.alias %>.update_<%= schema.singular %>_password(<%= schema.singular %>, password, <%= schema.singular %>_params) do
|
|
{:ok, <%= schema.singular %>} ->
|
|
conn
|
|
|> put_flash(:info, "Password updated successfully.")
|
|
|> put_session(:<%= schema.singular %>_return_to, Routes.<%= schema.route_helper %>_settings_path(conn, :edit))
|
|
|> <%= inspect schema.alias %>Auth.log_in_<%= schema.singular %>(<%= schema.singular %>)
|
|
|
|
{:error, changeset} ->
|
|
render(conn, "edit.html", password_changeset: changeset)
|
|
end
|
|
end
|
|
|
|
def confirm_email(conn, %{"token" => token}) do
|
|
case <%= inspect context.alias %>.update_<%= schema.singular %>_email(conn.assigns.current_<%= schema.singular %>, token) do
|
|
:ok ->
|
|
conn
|
|
|> put_flash(:info, "Email changed successfully.")
|
|
|> redirect(to: Routes.<%= schema.route_helper %>_settings_path(conn, :edit))
|
|
|
|
:error ->
|
|
conn
|
|
|> put_flash(:error, "Email change link is invalid or it has expired.")
|
|
|> redirect(to: Routes.<%= schema.route_helper %>_settings_path(conn, :edit))
|
|
end
|
|
end
|
|
|
|
defp assign_email_and_password_changesets(conn, _opts) do
|
|
<%= schema.singular %> = conn.assigns.current_<%= schema.singular %>
|
|
|
|
conn
|
|
|> assign(:email_changeset, <%= inspect context.alias %>.change_<%= schema.singular %>_email(<%= schema.singular %>))
|
|
|> assign(:password_changeset, <%= inspect context.alias %>.change_<%= schema.singular %>_password(<%= schema.singular %>))
|
|
end
|
|
end
|