2019-03-31 15:52:20 +00:00
|
|
|
defmodule FrenzyWeb.AccountController do
|
|
|
|
use FrenzyWeb, :controller
|
2019-04-01 15:29:03 +00:00
|
|
|
alias Frenzy.{Repo, User, FervorClient}
|
2019-03-31 15:52:20 +00:00
|
|
|
alias FrenzyWeb.Router.Helpers, as: Routes
|
|
|
|
alias FrenzyWeb.Endpoint
|
|
|
|
|
|
|
|
def show(conn, _params) do
|
2019-04-01 15:29:03 +00:00
|
|
|
user = conn.assigns[:user] |> Repo.preload(:approved_clients)
|
|
|
|
|
|
|
|
clients =
|
|
|
|
user.approved_clients
|
|
|
|
|> Enum.map(fn approved_client ->
|
|
|
|
fervor_client = Repo.get_by(FervorClient, client_id: approved_client.client_id)
|
|
|
|
{approved_client, fervor_client}
|
|
|
|
end)
|
2019-03-31 15:52:20 +00:00
|
|
|
|
|
|
|
render(conn, "show.html", %{
|
2019-04-01 15:29:03 +00:00
|
|
|
user: user,
|
|
|
|
clients: clients
|
2019-03-31 15:52:20 +00:00
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
def change_password(conn, _params) do
|
|
|
|
render(conn, "change_password.html")
|
|
|
|
end
|
|
|
|
|
|
|
|
def do_change_password(conn, %{
|
|
|
|
"old_password" => old,
|
|
|
|
"new_password" => new,
|
|
|
|
"confirm_new_password" => confirm
|
|
|
|
}) do
|
|
|
|
user = conn.assigns[:user] |> Repo.preload([:approved_clients, :groups])
|
|
|
|
|
|
|
|
case Bcrypt.check_pass(user, old) do
|
|
|
|
{:ok, user} ->
|
|
|
|
case new do
|
|
|
|
^old ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "New password cannot be the same as old password.")
|
|
|
|
|> redirect(to: Routes.account_path(Endpoint, :change_password))
|
|
|
|
|
|
|
|
^confirm ->
|
|
|
|
changeset = User.change_password_changeset(user, %{password: new})
|
|
|
|
|
|
|
|
{:ok, user} = Repo.update(changeset)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_flash(:info, "Password changed.")
|
|
|
|
|> redirect(to: Routes.account_path(Endpoint, :show))
|
|
|
|
|
|
|
|
_ ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "New password and confirmation did not match.")
|
|
|
|
|> redirect(to: Routes.account_path(Endpoint, :change_password))
|
|
|
|
end
|
|
|
|
|
|
|
|
{:error, _reason} ->
|
|
|
|
conn
|
|
|
|
|> put_flash(:error, "Invalid old password.")
|
|
|
|
|> redirect(to: Routes.account_path(Endpoint, :change_password))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def do_change_password(conn, _params) do
|
|
|
|
redirect(conn, to: Routes.account_path(Endpoint, :change_password))
|
|
|
|
end
|
2019-03-31 17:19:11 +00:00
|
|
|
|
|
|
|
def change_fever_password(conn, _params) do
|
|
|
|
render(conn, "change_fever_password.html")
|
|
|
|
end
|
|
|
|
|
|
|
|
def do_change_fever_password(conn, %{
|
|
|
|
"new_password" => new
|
|
|
|
}) do
|
|
|
|
user = conn.assigns[:user] |> Repo.preload([:approved_clients, :groups])
|
|
|
|
|
|
|
|
changeset =
|
|
|
|
User.change_fever_password_changeset(user, %{
|
|
|
|
username: user.username,
|
|
|
|
fever_password: new
|
|
|
|
})
|
|
|
|
|
|
|
|
{:ok, user} = Repo.update(changeset)
|
|
|
|
|
|
|
|
conn
|
|
|
|
|> put_flash(:info, "Fever password changed.")
|
|
|
|
|> redirect(to: Routes.account_path(Endpoint, :show))
|
|
|
|
end
|
|
|
|
|
|
|
|
def do_change_fever_password(conn, _params) do
|
|
|
|
redirect(conn, to: Routes.account_path(Endpoint, :change_fever_password))
|
|
|
|
end
|
2019-04-01 15:29:03 +00:00
|
|
|
|
|
|
|
def remove_client(conn, %{"client_id" => client_id}) do
|
|
|
|
user = conn.assigns[:user] |> Repo.preload(:approved_clients)
|
|
|
|
|
|
|
|
approved_client = Enum.find(user.approved_clients, fn c -> c.client_id == client_id end)
|
|
|
|
|
2019-04-01 15:34:26 +00:00
|
|
|
unless is_nil(approved_client) do
|
2019-04-01 15:29:03 +00:00
|
|
|
{:ok, _} = Repo.delete(approved_client)
|
|
|
|
end
|
|
|
|
|
|
|
|
redirect(conn, to: Routes.account_path(Endpoint, :show))
|
|
|
|
end
|
2019-03-31 15:52:20 +00:00
|
|
|
end
|