replace coherence with guardian
This commit is contained in:
parent
90ceb4f6fe
commit
8ac705d8c2
@ -26,21 +26,6 @@ config :logger, :console,
|
||||
# of this file so it overrides the configuration defined above.
|
||||
import_config "#{Mix.env}.exs"
|
||||
|
||||
# %% Coherence Configuration %% Don't remove this line
|
||||
config :coherence,
|
||||
user_schema: Eventos.Accounts.User,
|
||||
repo: Eventos.Repo,
|
||||
module: Eventos,
|
||||
web_module: EventosWeb,
|
||||
router: EventosWeb.Router,
|
||||
messages_backend: EventosWeb.Coherence.Messages,
|
||||
logged_out_url: "/",
|
||||
user_active_field: true,
|
||||
email_from_name: "Your Name",
|
||||
email_from_email: "yourname@example.com",
|
||||
opts: [:invitable, :confirmable, :rememberable, :authenticatable, :recoverable, :lockable, :trackable, :unlockable_with_token, :registerable]
|
||||
|
||||
config :coherence, EventosWeb.Coherence.Mailer,
|
||||
adapter: Swoosh.Adapters.Sendgrid,
|
||||
api_key: "your api key here"
|
||||
# %% End Coherence Configuration %%
|
||||
config :eventos, EventosWeb.Guardian,
|
||||
issuer: "Eventos",
|
||||
secret_key: "ty0WM7YBE3ojvxoUQxo8AERrNpfbXnIJ82ovkPdqbUFw31T5LcK8wGjaOiReVQjo"
|
@ -12,8 +12,8 @@ config :logger, level: :warn
|
||||
# Configure your database
|
||||
config :eventos, Eventos.Repo,
|
||||
adapter: Ecto.Adapters.Postgres,
|
||||
username: "postgres",
|
||||
password: "postgres",
|
||||
username: "elixir",
|
||||
password: "elixir",
|
||||
database: "eventos_test",
|
||||
hostname: "localhost",
|
||||
pool: Ecto.Adapters.SQL.Sandbox
|
||||
|
@ -4,6 +4,7 @@ defmodule Eventos.Accounts do
|
||||
"""
|
||||
|
||||
import Ecto.Query, warn: false
|
||||
import Logger
|
||||
alias Eventos.Repo
|
||||
|
||||
alias Eventos.Accounts.User
|
||||
@ -37,6 +38,32 @@ defmodule Eventos.Accounts do
|
||||
"""
|
||||
def get_user!(id), do: Repo.get!(User, id)
|
||||
|
||||
|
||||
@doc """
|
||||
Get an user by email
|
||||
"""
|
||||
def find(email) do
|
||||
Repo.get_by!(User, email: email)
|
||||
end
|
||||
|
||||
@doc """
|
||||
Authenticate user
|
||||
"""
|
||||
def authenticate(%{user: user, password: password}) do
|
||||
# Does password match the one stored in the database?
|
||||
Logger.debug(user.password_hash)
|
||||
Logger.debug(password)
|
||||
case Comeonin.Argon2.checkpw(password, user.password_hash) do
|
||||
true ->
|
||||
# Yes, create and return the token
|
||||
EventosWeb.Guardian.encode_and_sign(user)
|
||||
_ ->
|
||||
# No, return an error
|
||||
{:error, :unauthorized}
|
||||
end
|
||||
end
|
||||
|
||||
|
||||
@doc """
|
||||
Creates a user.
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
defmodule Eventos.Accounts.User do
|
||||
use Ecto.Schema
|
||||
use Coherence.Schema
|
||||
import Ecto.Changeset
|
||||
alias Eventos.Accounts.{User}
|
||||
|
||||
@ -8,36 +7,40 @@ defmodule Eventos.Accounts.User do
|
||||
schema "users" do
|
||||
field :email, :string
|
||||
field :role, :integer, default: 0
|
||||
field :username, :string
|
||||
field :password, :string, virtual: true
|
||||
field :password_hash, :string
|
||||
field :account_id, :integer
|
||||
|
||||
coherence_schema()
|
||||
|
||||
timestamps()
|
||||
end
|
||||
|
||||
def changeset(user, attrs, :password) do
|
||||
user
|
||||
|> cast(attrs, ~w(password password_confirmation reset_password_token reset_password_sent_at))
|
||||
|> validate_coherence_password_reset(attrs)
|
||||
end
|
||||
|
||||
def changeset(user, attrs, :registration) do
|
||||
user
|
||||
|> cast(attrs, [:username, :email] ++ coherence_fields())
|
||||
|> validate_required([:username, :email])
|
||||
|> validate_format(:email, ~r/@/)
|
||||
|> unique_constraint(:username)
|
||||
|> validate_coherence(attrs)
|
||||
end
|
||||
|
||||
@doc false
|
||||
def changeset(%User{} = user, attrs) do
|
||||
user
|
||||
|> cast(attrs, [:username, :email, :password_hash, :role] ++ coherence_fields())
|
||||
|> validate_required([:username, :email])
|
||||
|> unique_constraint(:username)
|
||||
|> cast(attrs, [:email, :password_hash, :role])
|
||||
|> validate_required([:email])
|
||||
|> unique_constraint(:email)
|
||||
|> validate_format(:email, ~r/@/)
|
||||
|> validate_coherence(attrs)
|
||||
end
|
||||
|
||||
def registration_changeset(struct, params) do
|
||||
struct
|
||||
|> changeset(params)
|
||||
|> cast(params, ~w(password)a, [])
|
||||
|> validate_length(:password, min: 6, max: 100)
|
||||
|> hash_password
|
||||
end
|
||||
|
||||
defp hash_password(changeset) do
|
||||
case changeset do
|
||||
%Ecto.Changeset{valid?: true,
|
||||
changes: %{password: password}} ->
|
||||
put_change(changeset,
|
||||
:password_hash,
|
||||
Comeonin.Argon2.hashpwsalt(password))
|
||||
_ ->
|
||||
changeset
|
||||
end
|
||||
end
|
||||
end
|
||||
|
@ -1,40 +0,0 @@
|
||||
defmodule Eventos.Coherence.Invitation do
|
||||
@moduledoc """
|
||||
Schema to support inviting a someone to create an account.
|
||||
"""
|
||||
use Ecto.Schema
|
||||
import Ecto.Changeset
|
||||
|
||||
|
||||
|
||||
schema "invitations" do
|
||||
field :name, :string
|
||||
field :email, :string
|
||||
field :token, :string
|
||||
|
||||
timestamps()
|
||||
end
|
||||
|
||||
@doc """
|
||||
Creates a changeset based on the `model` and `params`.
|
||||
|
||||
If no params are provided, an invalid changeset is returned
|
||||
with no validation performed.
|
||||
"""
|
||||
@spec changeset(Ecto.Schema.t, Map.t) :: Ecto.Changeset.t
|
||||
def changeset(model, params \\ %{}) do
|
||||
model
|
||||
|> cast(params, ~w(name email token))
|
||||
|> validate_required([:name, :email])
|
||||
|> unique_constraint(:email)
|
||||
|> validate_format(:email, ~r/@/)
|
||||
end
|
||||
|
||||
@doc """
|
||||
Creates a changeset for a new schema
|
||||
"""
|
||||
@spec new_changeset(Map.t) :: Ecto.Changeset.t
|
||||
def new_changeset(params \\ %{}) do
|
||||
changeset %__MODULE__{}, params
|
||||
end
|
||||
end
|
@ -1,44 +0,0 @@
|
||||
defmodule Eventos.Coherence.Rememberable do
|
||||
@moduledoc false
|
||||
use Ecto.Schema
|
||||
|
||||
import Ecto.Changeset
|
||||
import Ecto.Query
|
||||
|
||||
alias Coherence.Config
|
||||
|
||||
|
||||
|
||||
schema "rememberables" do
|
||||
field :series_hash, :string
|
||||
field :token_hash, :string
|
||||
field :token_created_at, Timex.Ecto.DateTime
|
||||
belongs_to :user, Module.concat(Config.module, Config.user_schema)
|
||||
|
||||
timestamps()
|
||||
end
|
||||
|
||||
use Coherence.Rememberable
|
||||
|
||||
@doc """
|
||||
Creates a changeset based on the `model` and `params`.
|
||||
|
||||
If no params are provided, an invalid changeset is returned
|
||||
with no validation performed.
|
||||
"""
|
||||
@spec changeset(Ecto.Schema.t, Map.t) :: Ecto.Changeset.t
|
||||
def changeset(model, params \\ %{}) do
|
||||
model
|
||||
|> cast(params, ~w(series_hash token_hash token_created_at user_id))
|
||||
|> validate_required(~w(series_hash token_hash token_created_at user_id)a)
|
||||
end
|
||||
|
||||
@doc """
|
||||
Creates a changeset for a new schema
|
||||
"""
|
||||
@spec new_changeset(Map.t) :: Ecto.Changeset.t
|
||||
def new_changeset(params \\ %{}) do
|
||||
changeset %Rememberable{}, params
|
||||
end
|
||||
|
||||
end
|
@ -1,141 +0,0 @@
|
||||
defmodule Eventos.Coherence.Schemas do
|
||||
|
||||
use Coherence.Config
|
||||
|
||||
import Ecto.Query
|
||||
|
||||
@user_schema Config.user_schema
|
||||
@repo Config.repo
|
||||
|
||||
def list_user do
|
||||
@repo.all @user_schema
|
||||
end
|
||||
|
||||
def get_by_user(opts) do
|
||||
@repo.get_by @user_schema, opts
|
||||
end
|
||||
|
||||
def get_user(id) do
|
||||
@repo.get @user_schema, id
|
||||
end
|
||||
|
||||
def get_user!(id) do
|
||||
@repo.get! @user_schema, id
|
||||
end
|
||||
|
||||
def get_user_by_email(email) do
|
||||
@repo.get_by @user_schema, email: email
|
||||
end
|
||||
|
||||
def change_user(struct, params) do
|
||||
@user_schema.changeset struct, params
|
||||
end
|
||||
|
||||
def change_user(params) do
|
||||
@user_schema.changeset @user_schema.__struct__, params
|
||||
end
|
||||
|
||||
def change_user do
|
||||
@user_schema.changeset @user_schema.__struct__, %{}
|
||||
end
|
||||
|
||||
def update_user(user, params) do
|
||||
@repo.update change_user(user, params)
|
||||
end
|
||||
|
||||
def create_user(params) do
|
||||
@repo.insert change_user(params)
|
||||
end
|
||||
|
||||
Enum.each [Eventos.Coherence.Invitation, Eventos.Coherence.Rememberable], fn module ->
|
||||
|
||||
name =
|
||||
module
|
||||
|> Module.split
|
||||
|> List.last
|
||||
|> String.downcase
|
||||
|
||||
def unquote(String.to_atom("list_#{name}"))() do
|
||||
@repo.all unquote(module)
|
||||
end
|
||||
|
||||
def unquote(String.to_atom("list_#{name}"))(%Ecto.Query{} = query) do
|
||||
@repo.all query
|
||||
end
|
||||
|
||||
def unquote(String.to_atom("get_#{name}"))(id) do
|
||||
@repo.get unquote(module), id
|
||||
end
|
||||
|
||||
def unquote(String.to_atom("get_#{name}!"))(id) do
|
||||
@repo.get! unquote(module), id
|
||||
end
|
||||
|
||||
def unquote(String.to_atom("get_by_#{name}"))(opts) do
|
||||
@repo.get_by unquote(module), opts
|
||||
end
|
||||
|
||||
def unquote(String.to_atom("change_#{name}"))(struct, params) do
|
||||
unquote(module).changeset(struct, params)
|
||||
end
|
||||
|
||||
def unquote(String.to_atom("change_#{name}"))(params) do
|
||||
unquote(module).new_changeset(params)
|
||||
end
|
||||
|
||||
def unquote(String.to_atom("change_#{name}"))() do
|
||||
unquote(module).new_changeset(%{})
|
||||
end
|
||||
|
||||
def unquote(String.to_atom("create_#{name}"))(params) do
|
||||
@repo.insert unquote(module).new_changeset(params)
|
||||
end
|
||||
|
||||
def unquote(String.to_atom("update_#{name}"))(struct, params) do
|
||||
@repo.update unquote(module).changeset(struct, params)
|
||||
end
|
||||
|
||||
def unquote(String.to_atom("delete_#{name}"))(struct) do
|
||||
@repo.delete struct
|
||||
end
|
||||
end
|
||||
|
||||
def query_by(schema, opts) do
|
||||
Enum.reduce opts, schema, fn {k, v}, query ->
|
||||
where(query, [b], field(b, ^k) == ^v)
|
||||
end
|
||||
end
|
||||
|
||||
def delete_all(%Ecto.Query{} = query) do
|
||||
@repo.delete_all query
|
||||
end
|
||||
|
||||
def delete_all(module) when is_atom(module) do
|
||||
@repo.delete_all module
|
||||
end
|
||||
|
||||
def create(%Ecto.Changeset{} = changeset) do
|
||||
@repo.insert changeset
|
||||
end
|
||||
|
||||
def create!(%Ecto.Changeset{} = changeset) do
|
||||
@repo.insert! changeset
|
||||
end
|
||||
|
||||
def update(%Ecto.Changeset{} = changeset) do
|
||||
@repo.update changeset
|
||||
end
|
||||
|
||||
def update!(%Ecto.Changeset{} = changeset) do
|
||||
@repo.update! changeset
|
||||
end
|
||||
|
||||
def delete(schema) do
|
||||
@repo.delete schema
|
||||
end
|
||||
|
||||
def delete!(schema) do
|
||||
@repo.delete! schema
|
||||
end
|
||||
|
||||
end
|
8
lib/eventos_web/auth_error_handler.ex
Normal file
8
lib/eventos_web/auth_error_handler.ex
Normal file
@ -0,0 +1,8 @@
|
||||
defmodule EventosWeb.AuthErrorHandler do
|
||||
import Plug.Conn
|
||||
|
||||
def auth_error(conn, {type, _reason}, _opts) do
|
||||
body = Poison.encode!(%{message: to_string(type)})
|
||||
send_resp(conn, 401, body)
|
||||
end
|
||||
end
|
11
lib/eventos_web/auth_pipeline.ex
Normal file
11
lib/eventos_web/auth_pipeline.ex
Normal file
@ -0,0 +1,11 @@
|
||||
defmodule EventosWeb.AuthPipeline do
|
||||
|
||||
use Guardian.Plug.Pipeline, otp_app: :eventos,
|
||||
module: EventosWeb.Guradian,
|
||||
error_handler: EventosWeb.AuthErrorHandler
|
||||
|
||||
plug Guardian.Plug.VerifyHeader, claims: %{"typ" => "access"}, realm: :none
|
||||
plug Guardian.Plug.EnsureAuthenticated
|
||||
plug Guardian.Plug.LoadResource, ensure: true
|
||||
|
||||
end
|
@ -1,79 +0,0 @@
|
||||
defmodule EventosWeb.Coherence.Messages do
|
||||
@moduledoc """
|
||||
Application facing messages generated by the Coherence application.
|
||||
|
||||
This module was created by the coh.install mix task. It contains all the
|
||||
messages used in the coherence application except those in other generated
|
||||
files like the view and templates.
|
||||
|
||||
To assist in upgrading Coherence, the `Coherence.Messages behaviour will
|
||||
alway contain every message for the current version. This will help in upgrades
|
||||
to ensure the user had added new the new messages from the current version.
|
||||
"""
|
||||
@behaviour Coherence.Messages
|
||||
|
||||
import EventosWeb.Gettext
|
||||
|
||||
# Change this to override the "coherence" gettext domain. If you would like
|
||||
# the coherence message to be part of your projects domain change it to "default"
|
||||
@domain "coherence"
|
||||
|
||||
##################
|
||||
# Messages
|
||||
|
||||
def account_already_confirmed, do: dgettext(@domain, "Account already confirmed.")
|
||||
def account_is_not_locked, do: dgettext(@domain, "Account is not locked.")
|
||||
def account_updated_successfully, do: dgettext(@domain, "Account updated successfully.")
|
||||
def already_confirmed, do: dgettext(@domain, "already confirmed")
|
||||
def already_locked, do: dgettext(@domain, "already locked")
|
||||
def already_logged_in, do: dgettext(@domain, "Already logged in.")
|
||||
def cant_be_blank, do: dgettext(@domain, "can't be blank")
|
||||
def cant_find_that_token, do: dgettext(@domain, "Can't find that token")
|
||||
def confirmation_email_sent, do: dgettext(@domain, "Confirmation email sent.")
|
||||
def confirmation_token_expired, do: dgettext(@domain, "Confirmation token expired.")
|
||||
def could_not_find_that_email_address, do: dgettext(@domain, "Could not find that email address")
|
||||
def forgot_your_password, do: dgettext(@domain, "Forgot your password?")
|
||||
def http_authentication_required, do: dgettext(@domain, "HTTP Authentication Required")
|
||||
def incorrect_login_or_password(opts), do: dgettext(@domain, "Incorrect %{login_field} or password.", opts)
|
||||
def invalid_current_password, do: dgettext(@domain, "invalid current password")
|
||||
def invalid_invitation, do: dgettext(@domain, "Invalid Invitation. Please contact the site administrator.")
|
||||
def invalid_request, do: dgettext(@domain, "Invalid Request.")
|
||||
def invalid_confirmation_token, do: dgettext(@domain, "Invalid confirmation token.")
|
||||
def invalid_email_or_password, do: dgettext(@domain, "Invalid email or password.")
|
||||
def invalid_invitation_token, do: dgettext(@domain, "Invalid invitation token.")
|
||||
def invalid_reset_token, do: dgettext(@domain, "Invalid reset token.")
|
||||
def invalid_unlock_token, do: dgettext(@domain, "Invalid unlock token.")
|
||||
def invitation_already_sent, do: dgettext(@domain, "Invitation already sent.")
|
||||
def invitation_sent, do: dgettext(@domain, "Invitation sent.")
|
||||
def invite_someone, do: dgettext(@domain, "Invite Someone")
|
||||
def maximum_login_attempts_exceeded, do: dgettext(@domain, "Maximum Login attempts exceeded. Your account has been locked.")
|
||||
def need_an_account, do: dgettext(@domain, "Need An Account?")
|
||||
def not_locked, do: dgettext(@domain, "not locked")
|
||||
def password_reset_token_expired, do: dgettext(@domain, "Password reset token expired.")
|
||||
def password_updated_successfully, do: dgettext(@domain, "Password updated successfully.")
|
||||
def problem_confirming_user_account, do: dgettext(@domain, "Problem confirming user account. Please contact the system administrator.")
|
||||
def registration_created_successfully, do: dgettext(@domain, "Registration created successfully.")
|
||||
def required, do: dgettext(@domain, "required")
|
||||
def resend_confirmation_email, do: dgettext(@domain, "Resend confirmation email")
|
||||
def reset_email_sent, do: dgettext(@domain, "Reset email sent. Check your email for a reset link.")
|
||||
def restricted_area, do: dgettext(@domain, "Restricted Area")
|
||||
def send_an_unlock_email, do: dgettext(@domain, "Send an unlock email")
|
||||
def sign_in, do: dgettext(@domain, "Sign In")
|
||||
def sign_out, do: dgettext(@domain, "Sign Out")
|
||||
def signed_in_successfully, do: dgettext(@domain, "Signed in successfully.")
|
||||
def too_many_failed_login_attempts, do: dgettext(@domain, "Too many failed login attempts. Account has been locked.")
|
||||
def unauthorized_ip_address, do: dgettext(@domain, "Unauthorized IP Address")
|
||||
def unlock_instructions_sent, do: dgettext(@domain, "Unlock Instructions sent.")
|
||||
def user_account_confirmed_successfully, do: dgettext(@domain, "User account confirmed successfully.")
|
||||
def user_already_has_an_account, do: dgettext(@domain, "User already has an account!")
|
||||
def you_must_confirm_your_account, do: dgettext(@domain, "You must confirm your account before you can login.")
|
||||
def your_account_has_been_unlocked, do: dgettext(@domain, "Your account has been unlocked")
|
||||
def your_account_is_not_locked, do: dgettext(@domain, "Your account is not locked.")
|
||||
def verify_user_token(opts),
|
||||
do: dgettext(@domain, "Invalid %{user_token} error: %{error}", opts)
|
||||
def you_are_using_an_invalid_security_token,
|
||||
do: dgettext(@domain, "You are using an invalid security token for this site! This security\n" <>
|
||||
"violation has been logged.\n")
|
||||
def mailer_required, do: dgettext(@domain, "Mailer configuration required!")
|
||||
def account_is_inactive(), do: dgettext(@domain, "Account is inactive!")
|
||||
end
|
@ -1,47 +0,0 @@
|
||||
defmodule EventosWeb.Coherence do
|
||||
@moduledoc false
|
||||
|
||||
def view do
|
||||
quote do
|
||||
use Phoenix.View, root: "lib/eventos_web/templates"
|
||||
# Import convenience functions from controllers
|
||||
|
||||
import Phoenix.Controller, only: [get_csrf_token: 0, get_flash: 2, view_module: 1]
|
||||
|
||||
# Use all HTML functionality (forms, tags, etc)
|
||||
use Phoenix.HTML
|
||||
|
||||
import EventosWeb.Router.Helpers
|
||||
import EventosWeb.ErrorHelpers
|
||||
import EventosWeb.Gettext
|
||||
import EventosWeb.Coherence.ViewHelpers
|
||||
end
|
||||
end
|
||||
|
||||
def controller do
|
||||
quote do
|
||||
use Phoenix.Controller, except: [layout_view: 2]
|
||||
use Coherence.Config
|
||||
use Timex
|
||||
|
||||
import Ecto
|
||||
import Ecto.Query
|
||||
import Plug.Conn
|
||||
import EventosWeb.Router.Helpers
|
||||
import EventosWeb.Gettext
|
||||
import Coherence.ControllerHelpers
|
||||
|
||||
alias Coherence.Config
|
||||
alias Coherence.ControllerHelpers, as: Helpers
|
||||
|
||||
require Redirects
|
||||
end
|
||||
end
|
||||
|
||||
@doc """
|
||||
When used, dispatch to the appropriate controller/view/etc.
|
||||
"""
|
||||
defmacro __using__(which) when is_atom(which) do
|
||||
apply(__MODULE__, which, [])
|
||||
end
|
||||
end
|
@ -1,54 +0,0 @@
|
||||
defmodule Coherence.Redirects do
|
||||
@moduledoc """
|
||||
Define controller action redirection functions.
|
||||
|
||||
This module contains default redirect functions for each of the controller
|
||||
actions that perform redirects. By using this Module you get the following
|
||||
functions:
|
||||
|
||||
* session_create/2
|
||||
* session_delete/2
|
||||
* password_create/2
|
||||
* password_update/2,
|
||||
* unlock_create_not_locked/2
|
||||
* unlock_create_invalid/2
|
||||
* unlock_create/2
|
||||
* unlock_edit_not_locked/2
|
||||
* unlock_edit/2
|
||||
* unlock_edit_invalid/2
|
||||
* registration_create/2
|
||||
* invitation_create/2
|
||||
* confirmation_create/2
|
||||
* confirmation_edit_invalid/2
|
||||
* confirmation_edit_expired/2
|
||||
* confirmation_edit/2
|
||||
* confirmation_edit_error/2
|
||||
|
||||
You can override any of the functions to customize the redirect path. Each
|
||||
function is passed the `conn` and `params` arguments from the controller.
|
||||
|
||||
## Examples
|
||||
|
||||
import EventosWeb.Router.Helpers
|
||||
|
||||
# override the log out action back to the log in page
|
||||
def session_delete(conn, _), do: redirect(conn, to: session_path(conn, :new))
|
||||
|
||||
# redirect the user to the login page after registering
|
||||
def registration_create(conn, _), do: redirect(conn, to: session_path(conn, :new))
|
||||
|
||||
# disable the user_return_to feature on login
|
||||
def session_create(conn, _), do: redirect(conn, to: landing_path(conn, :index))
|
||||
|
||||
"""
|
||||
use Redirects
|
||||
# Uncomment the import below if adding overrides
|
||||
# import EventosWeb.Router.Helpers
|
||||
|
||||
# Add function overrides below
|
||||
|
||||
# Example usage
|
||||
# Uncomment the following line to return the user to the login form after logging out
|
||||
# def session_delete(conn, _), do: redirect(conn, to: session_path(conn, :new))
|
||||
|
||||
end
|
@ -4,4 +4,8 @@ defmodule EventosWeb.PageController do
|
||||
def index(conn, _params) do
|
||||
render conn, "index.html"
|
||||
end
|
||||
|
||||
def app(conn, _params) do
|
||||
render conn, "index.html"
|
||||
end
|
||||
end
|
||||
|
27
lib/eventos_web/controllers/session_controller.ex
Normal file
27
lib/eventos_web/controllers/session_controller.ex
Normal file
@ -0,0 +1,27 @@
|
||||
defmodule EventosWeb.SessionController do
|
||||
use EventosWeb, :controller
|
||||
alias Eventos.Accounts.User
|
||||
alias Eventos.Accounts
|
||||
|
||||
def sign_in(conn, %{"email" => email, "password" => password}) do
|
||||
with %User{} = user <- Accounts.find(email) do
|
||||
# Attempt to authenticate the user
|
||||
with {:ok, token, _claims} <- Accounts.authenticate(%{user: user, password: password}) do
|
||||
# Render the token
|
||||
render conn, "token.json", token: token
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
def sign_out(conn, _params) do
|
||||
conn
|
||||
|> Eventos.Guardian.Plug.sign_out()
|
||||
|> send_resp(204, "")
|
||||
end
|
||||
|
||||
def show(conn, _params) do
|
||||
user = Eventos.Guardian.Plug.current_resource(conn)
|
||||
|
||||
send_resp(conn, 200, Poison.encode!(%{user: user}))
|
||||
end
|
||||
end
|
@ -1,6 +0,0 @@
|
||||
defmodule EventosWeb.Coherence.Mailer do
|
||||
@moduledoc false
|
||||
if Coherence.Config.mailer?() do
|
||||
use Swoosh.Mailer, otp_app: :coherence
|
||||
end
|
||||
end
|
@ -1,82 +0,0 @@
|
||||
Code.ensure_loaded Phoenix.Swoosh
|
||||
|
||||
defmodule EventosWeb.Coherence.UserEmail do
|
||||
@moduledoc false
|
||||
use Phoenix.Swoosh, view: EventosWeb.Coherence.EmailView, layout: {EventosWeb.Coherence.LayoutView, :email}
|
||||
alias Swoosh.Email
|
||||
require Logger
|
||||
alias Coherence.Config
|
||||
import EventosWeb.Gettext
|
||||
|
||||
defp site_name, do: Config.site_name(inspect Config.module)
|
||||
|
||||
def password(user, url) do
|
||||
%Email{}
|
||||
|> from(from_email())
|
||||
|> to(user_email(user))
|
||||
|> add_reply_to()
|
||||
|> subject(dgettext("coherence", "%{site_name} - Reset password instructions", site_name: site_name()))
|
||||
|> render_body("password.html", %{url: url, name: first_name(user.username)})
|
||||
end
|
||||
|
||||
def confirmation(user, url) do
|
||||
%Email{}
|
||||
|> from(from_email())
|
||||
|> to(user_email(user))
|
||||
|> add_reply_to()
|
||||
|> subject(dgettext("coherence", "%{site_name} - Confirm your new account", site_name: site_name()))
|
||||
|> render_body("confirmation.html", %{url: url, name: first_name(user.username)})
|
||||
end
|
||||
|
||||
def invitation(invitation, url) do
|
||||
%Email{}
|
||||
|> from(from_email())
|
||||
|> to(user_email(invitation))
|
||||
|> add_reply_to()
|
||||
|> subject(dgettext("coherence", "%{site_name} - Invitation to create a new account", site_name: site_name()))
|
||||
|> render_body("invitation.html", %{url: url, name: first_name(invitation.name)})
|
||||
end
|
||||
|
||||
def unlock(user, url) do
|
||||
%Email{}
|
||||
|> from(from_email())
|
||||
|> to(user_email(user))
|
||||
|> add_reply_to()
|
||||
|> subject(dgettext("coherence", "%{site_name} - Unlock Instructions", site_name: site_name()))
|
||||
|> render_body("unlock.html", %{url: url, name: first_name(user.username)})
|
||||
end
|
||||
|
||||
defp add_reply_to(mail) do
|
||||
case Coherence.Config.email_reply_to do
|
||||
nil -> mail
|
||||
true -> reply_to mail, from_email()
|
||||
address -> reply_to mail, address
|
||||
end
|
||||
end
|
||||
|
||||
defp first_name(name) do
|
||||
case String.split(name, " ") do
|
||||
[first_name | _] -> first_name
|
||||
_ -> name
|
||||
end
|
||||
end
|
||||
|
||||
defp user_email(user) do
|
||||
{user.username, user.email}
|
||||
end
|
||||
|
||||
defp from_email do
|
||||
case Coherence.Config.email_from do
|
||||
nil ->
|
||||
Logger.error ~s|Need to configure :coherence, :email_from_name, "Name", and :email_from_email, "me@example.com"|
|
||||
nil
|
||||
{name, email} = email_tuple ->
|
||||
if is_nil(name) or is_nil(email) do
|
||||
Logger.error ~s|Need to configure :coherence, :email_from_name, "Name", and :email_from_email, "me@example.com"|
|
||||
nil
|
||||
else
|
||||
email_tuple
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
40
lib/eventos_web/guardian.ex
Normal file
40
lib/eventos_web/guardian.ex
Normal file
@ -0,0 +1,40 @@
|
||||
defmodule EventosWeb.Guardian do
|
||||
use Guardian, otp_app: :eventos, permissions: %{
|
||||
superuser: [:moderate, :super],
|
||||
user: [:base]
|
||||
}
|
||||
|
||||
alias Eventos.Accounts
|
||||
alias Eventos.Accounts.User
|
||||
|
||||
def subject_for_token(user = %User{}, _claims) do
|
||||
{:ok, "User:" <> to_string(user.id)}
|
||||
end
|
||||
|
||||
def subject_for_token(_, _) do
|
||||
{:error, :unknown_resource}
|
||||
end
|
||||
|
||||
def resource_from_claims(%{"sub" => "User:" <> uid_str}) do
|
||||
try do
|
||||
case Integer.parse(uid_str) do
|
||||
{uid, ""} ->
|
||||
{:ok, Accounts.get_user!(uid)}
|
||||
_ ->
|
||||
{:error, :invalid_id}
|
||||
end
|
||||
rescue
|
||||
Ecto.NoResultsError -> {:error, :no_result}
|
||||
end
|
||||
end
|
||||
|
||||
def resource_from_claims(_claims) do
|
||||
{:error, :reason_for_error}
|
||||
end
|
||||
|
||||
# def build_claims(claims, _resource, opts) do
|
||||
# claims = claims
|
||||
# |> encode_permissions_into_claims!(Keyword.get(opts, :permissions))
|
||||
# {:ok, claims}
|
||||
# end
|
||||
end
|
@ -1,63 +1,36 @@
|
||||
defmodule EventosWeb.Router do
|
||||
use EventosWeb, :router
|
||||
use Coherence.Router
|
||||
|
||||
pipeline :browser do
|
||||
plug :accepts, ["html"]
|
||||
plug :fetch_session
|
||||
plug :fetch_flash
|
||||
plug :protect_from_forgery
|
||||
plug :put_secure_browser_headers
|
||||
plug Coherence.Authentication.Session
|
||||
end
|
||||
|
||||
pipeline :protected do
|
||||
plug :accepts, ["html"]
|
||||
plug :fetch_session
|
||||
plug :fetch_flash
|
||||
plug :protect_from_forgery
|
||||
plug :put_secure_browser_headers
|
||||
plug Coherence.Authentication.Session, protected: true
|
||||
end
|
||||
|
||||
pipeline :api do
|
||||
plug :accepts, ["json"]
|
||||
end
|
||||
|
||||
scope "/" do
|
||||
pipe_through :browser
|
||||
coherence_routes()
|
||||
pipeline :api_auth do
|
||||
plug EventosWeb.AuthPipeline
|
||||
end
|
||||
|
||||
# Add this block
|
||||
scope "/" do
|
||||
pipe_through :protected
|
||||
coherence_routes :protected
|
||||
end
|
||||
scope "/api" do
|
||||
pipe_through :api
|
||||
|
||||
scope "/", EventosWeb do
|
||||
pipe_through :browser # Use the default browser stack
|
||||
|
||||
get "/", PageController, :index
|
||||
resources "/users", UserController
|
||||
resources "/accounts", AccountController
|
||||
resources "/events", EventController
|
||||
resources "/categories", CategoryController
|
||||
resources "/tags", TagController
|
||||
resources "/event_accounts", EventAccountsController
|
||||
resources "/event_requests", EventRequestController
|
||||
resources "/groups", GroupController
|
||||
resources "/group_accounts", GroupAccountController
|
||||
resources "/group_requests", GroupRequestController
|
||||
end
|
||||
|
||||
scope "/", EventosWeb do
|
||||
pipe_through :protected
|
||||
# Add protected routes below
|
||||
resources "/users", UserController, only: [:create]
|
||||
post "/sign-in", EventosWeb.SessionController, :sign_in
|
||||
end
|
||||
|
||||
# Other scopes may use custom stacks.
|
||||
scope "/api", EventosWeb do
|
||||
pipe_through :api
|
||||
pipe_through :api_auth
|
||||
|
||||
|
||||
post "/sign-out", SessionController, :sign_out
|
||||
resources "/users", UserController
|
||||
resources "/accounts", AccountController
|
||||
resources "/events", EventController
|
||||
resources "/categories", CategoryController
|
||||
resources "/tags", TagController
|
||||
resources "/event_accounts", EventAccountsController
|
||||
resources "/event_requests", EventRequestController
|
||||
resources "/groups", GroupController
|
||||
resources "/group_accounts", GroupAccountController
|
||||
resources "/group_requests", GroupRequestController
|
||||
end
|
||||
end
|
||||
|
@ -1,17 +0,0 @@
|
||||
<br \>
|
||||
|
||||
<h3><%= dgettext "coherence", "Resend Confirmation Instructions" %></h3>
|
||||
|
||||
<%= form_for @changeset, confirmation_path(@conn, :create), [as: :confirmation], fn f -> %>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Email"), class: "control-label" %>
|
||||
<%= text_input f, :email, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :email %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= submit dgettext("coherence", "Resend Email"), class: "btn btn-primary" %>
|
||||
<%= link dgettext("coherence", "Cancel"), to: Coherence.Config.logged_out_url("/"), class: "btn" %>
|
||||
</div>
|
||||
<% end %>
|
@ -1,11 +0,0 @@
|
||||
<div>
|
||||
<p><%= dgettext "coherence", "Hello %{name}!", name: @name %><p>
|
||||
<p>
|
||||
<%= dgettext "coherence", "Your new account is almost ready. Click the link below to confirm you new account." %>
|
||||
</p>
|
||||
<p>
|
||||
<a href="<%= @url %>"><%= dgettext "coherence", "Confirm my Account" %></a>
|
||||
</p>
|
||||
<p><%= dgettext "coherence", "Thank you!" %></p>
|
||||
</div>
|
||||
|
@ -1,11 +0,0 @@
|
||||
<div>
|
||||
<p><%= dgettext "coherence", "Hello %{name}!", name: @name %><p>
|
||||
<p>
|
||||
<%= dgettext "coherence", "You have been invited to create an Account. Use the link below to create an account." %>
|
||||
</p>
|
||||
<p>
|
||||
<a href="<%= @url %>"><%= dgettext "coherence", "Create my Account" %></a>
|
||||
</p>
|
||||
<p><%= dgettext "coherence", "Thank you!" %></p>
|
||||
</div>
|
||||
|
@ -1,16 +0,0 @@
|
||||
<div>
|
||||
<p><%= dgettext "coherence", "Hello %{name}!", name: @name %><p>
|
||||
<p>
|
||||
<%= dgettext "coherence", "Someone has requested a link to change your password, and you can do this through the link below." %>
|
||||
</p>
|
||||
<p>
|
||||
<a href="<%= @url %>"><%= dgettext "coherence", "Change my password" %></a>
|
||||
</p>
|
||||
<p>
|
||||
<%= dgettext "coherence", "If you didn't request this, please ignore this email." %>
|
||||
</p>
|
||||
<p>
|
||||
<%= dgettext "coherence", "Your password won't change until you access the link above and create a new one." %>
|
||||
</p>
|
||||
</div>
|
||||
|
@ -1,11 +0,0 @@
|
||||
<div>
|
||||
<p><%= dgettext "coherence", "Hello %{name}!", name: @name %><p>
|
||||
<p>
|
||||
<%= dgettext "coherence", "You requested unlock instructions for your locked account. Please click the link below to unlock your account." %>
|
||||
</p>
|
||||
<p>
|
||||
<a href="<%= @url %>"><%= dgettext "coherence", "Unlock my Account" %></a>
|
||||
</p>
|
||||
<p><%= dgettext "coherence", "Thank you!" %></p>
|
||||
</div>
|
||||
|
@ -1,49 +0,0 @@
|
||||
<br \>
|
||||
|
||||
<%= form_for @changeset, invitation_path(@conn, :create_user), fn f -> %>
|
||||
|
||||
<%= if @changeset.action do %>
|
||||
<div class="alert alert-danger">
|
||||
<p><%= dgettext "coherence", "Oops, something went wrong! Please check the errors below." %></p>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<input type="hidden" name="token" value="<%= @token %>">
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Email"), class: "control-label" %>
|
||||
<%= text_input f, :name, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :name %>
|
||||
</div>
|
||||
|
||||
<%= unless (login_field = Coherence.Config.login_field) == :email do %>
|
||||
<div class="form-group">
|
||||
<%= required_label f, login_field, class: "control-label" %>
|
||||
<%= text_input f, login_field, class: "form-control", required: "" %>
|
||||
<%= error_tag f, login_field %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Email"), class: "control-label" %>
|
||||
<%= text_input f, :email, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :email %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Password"), class: "control-label" %>
|
||||
<%= password_input f, :password, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :password %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Password Confirmation"), class: "control-label" %>
|
||||
<%= password_input f, :password_confirmation, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :password_confirmation %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= submit dgettext("coherence", "Create"), class: "btn btn-primary" %>
|
||||
<%= link dgettext("coherence", "Cancel"), to: Coherence.Config.logged_out_url("/"), class: "btn" %>
|
||||
</div>
|
||||
<% end %>
|
@ -1,26 +0,0 @@
|
||||
<%= form_for @changeset, invitation_path(@conn, :create), [as: :invitation], fn f -> %>
|
||||
<%= if @changeset.action do %>
|
||||
<div class="alert alert-danger">
|
||||
<p><%= dgettext "coherence", "Oops, something went wrong! Please check the errors below." %></p>
|
||||
</div>
|
||||
<% end %>
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Name"), class: "control-label" %>
|
||||
<%= text_input f, :name, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :name %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Email"), class: "control-label" %>
|
||||
<%= text_input f, :email, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :email %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= submit dgettext("coherence", "Send Invitation"), class: "btn btn-primary" %>
|
||||
<%= link dgettext("coherence", "Cancel"), to: Coherence.Config.logged_out_url("/"), class: "btn" %>
|
||||
<%= if invitation = @conn.assigns[:invitation] do %>
|
||||
<%= link dgettext("coherence", "Resend Invitation!"), to: invitation_path(@conn, :resend, invitation.id), class: "btn" %>
|
||||
<% end %>
|
||||
</div>
|
||||
<% end %>
|
@ -1,8 +0,0 @@
|
||||
<html>
|
||||
<head>
|
||||
<title><%= @email.subject %></title>
|
||||
</head>
|
||||
<body>
|
||||
<%= render @view_module, @view_template, assigns %>
|
||||
</body>
|
||||
</html>
|
@ -1,25 +0,0 @@
|
||||
<br \>
|
||||
|
||||
<h3><%= dgettext "coherence", "Create a New Password" %></h3>
|
||||
|
||||
<%= form_for @changeset, password_path(@conn, :update, @changeset.data), [as: :password], fn f -> %>
|
||||
|
||||
<%= hidden_input f, :reset_password_token %>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Password"), class: "control-label" %>
|
||||
<%= password_input f, :password, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :password %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Password Confirmation"), class: "control-label" %>
|
||||
<%= password_input f, :password_confirmation, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :password_confirmation %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= submit dgettext("coherence", "Update Password"), class: "btn btn-primary" %>
|
||||
<%= link dgettext("coherence", "Cancel"), to: Coherence.Config.logged_out_url("/"), class: "btn" %>
|
||||
</div>
|
||||
<% end %>
|
@ -1,17 +0,0 @@
|
||||
<br \>
|
||||
|
||||
<h3><%= dgettext "coherence", "Send reset password link" %></h3>
|
||||
|
||||
<%= form_for @changeset, password_path(@conn, :create), [as: :password], fn f -> %>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, :email, class: "control-label" %>
|
||||
<%= text_input f, :email, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :email %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= submit dgettext("coherence", "Reset Password"), class: "btn btn-primary" %>
|
||||
<%= link dgettext("coherence", "Cancel"), to: Coherence.Config.logged_out_url("/"), class: "btn" %>
|
||||
</div>
|
||||
<% end %>
|
@ -1,5 +0,0 @@
|
||||
<h3><%= dgettext "coherence", "Edit Account" %></h3>
|
||||
|
||||
<%= render "form.html", changeset: @changeset,
|
||||
label: dgettext("coherence", "Update"), required: [],
|
||||
action: registration_path(@conn, :update) %>
|
@ -1,58 +0,0 @@
|
||||
<%= form_for @changeset, @action, [as: :registration], fn f -> %>
|
||||
|
||||
<%= if @changeset.action do %>
|
||||
<div class="alert alert-danger">
|
||||
<p><%= dgettext "coherence", "Oops, something went wrong! Please check the errors below." %></p>
|
||||
<ul>
|
||||
<%= for error <- @changeset.errors do %>
|
||||
<li><%= error %></li>
|
||||
<% end %>
|
||||
</ul>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Name"), class: "control-label" %>
|
||||
<%= text_input f, :username, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :username %>
|
||||
</div>
|
||||
|
||||
<%= unless (login_field = Coherence.Config.login_field) == :email do %>
|
||||
<div class="form-group">
|
||||
<%= required_label f, login_field, class: "control-label" %>
|
||||
<%= text_input f, login_field, class: "form-control", required: "" %>
|
||||
<%= error_tag f, login_field %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Email"), class: "control-label" %>
|
||||
<%= text_input f, :email, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :email %>
|
||||
</div>
|
||||
|
||||
<%= if Coherence.Config.require_current_password and not is_nil(@changeset.data.id) do %>
|
||||
<div class="form-group">
|
||||
<%= required_label f, :current_password, class: "control-label" %>
|
||||
<%= password_input f, :current_password, [class: "form-control"] ++ @required %>
|
||||
<%= error_tag f, :current_password %>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Password"), class: "control-label" %>
|
||||
<%= password_input f, :password, [class: "form-control"] ++ @required %>
|
||||
<%= error_tag f, :password %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Password Confirmation"), class: "control-label" %>
|
||||
<%= password_input f, :password_confirmation, [class: "form-control"] ++ @required %>
|
||||
<%= error_tag f, :password_confirmation %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= submit @label, class: "btn btn-primary" %>
|
||||
<%= link dgettext("coherence", "Cancel"), to: Coherence.Config.logged_out_url("/"), class: "btn" %>
|
||||
</div>
|
||||
<% end %>
|
@ -1,5 +0,0 @@
|
||||
<h3><%= dgettext "coherence", "Register Account" %></h3>
|
||||
|
||||
<%= render "form.html", changeset: @changeset,
|
||||
label: dgettext("coherence", "Register"), required: [required: ""],
|
||||
action: registration_path(@conn, :create) %>
|
@ -1,25 +0,0 @@
|
||||
<h2><%= dgettext "coherence", "Show account" %></h2>
|
||||
<ul>
|
||||
<li>
|
||||
<strong><%= dgettext "coherence", "Name:" %></strong>
|
||||
<%= @user.username %>
|
||||
</li>
|
||||
<%= unless (login_field = Coherence.Config.login_field) == :email do %>
|
||||
<li>
|
||||
<strong><%= humanize login_field %></strong>
|
||||
<%= Map.get(@user, login_field) %>
|
||||
</li>
|
||||
<% end %>
|
||||
|
||||
<li>
|
||||
<strong><%= dgettext "coherence", "Email:" %></strong>
|
||||
<%= @user.email %>
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
<%= link dgettext("coherence", "Edit"), to: registration_path(@conn, :edit) %> |
|
||||
<%= link dgettext("coherence", "Delete"),
|
||||
to: registration_path(@conn, :delete),
|
||||
method: :delete,
|
||||
data: [confirm: dgettext("coherence", "Are you sure?")] %>
|
@ -1,35 +0,0 @@
|
||||
<br \>
|
||||
|
||||
<%= form_for @conn, session_path(@conn, :create), [as: :session], fn f -> %>
|
||||
|
||||
<% login_field = Coherence.Config.login_field %>
|
||||
<div class="form-group">
|
||||
<%= required_label f, login_field, class: "control-label" %>
|
||||
<%= text_input f, login_field, class: "form-control", required: "" %>
|
||||
<%= error_tag f, login_field %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Password"), class: "control-label" %>
|
||||
<%= password_input f, :password, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :password %>
|
||||
</div>
|
||||
|
||||
<%= if @remember do %>
|
||||
<div class="form-group">
|
||||
<input type="checkbox" name="remember" id="remember">
|
||||
<label for="remember"><%= dgettext "coherence", "Remember Me?" %></label>
|
||||
</div>
|
||||
<br />
|
||||
<% end %>
|
||||
|
||||
<div class="form-group">
|
||||
<%= submit dgettext("coherence", "Sign In"), class: "btn btn-primary" %>
|
||||
<%= link dgettext("coherence", "Cancel"), to: Coherence.Config.logged_out_url("/"), class: "btn" %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= coherence_links(@conn, :new_session) %>
|
||||
</div>
|
||||
|
||||
<% end %>
|
@ -1,22 +0,0 @@
|
||||
<br \>
|
||||
|
||||
<%= form_for @conn, unlock_path(@conn, :create), [as: :unlock], fn f -> %>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Email"), class: "control-label" %>
|
||||
<%= text_input f, :email, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :email %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= required_label f, dgettext("coherence", "Password"), class: "control-label" %>
|
||||
<%= password_input f, :password, class: "form-control", required: "" %>
|
||||
<%= error_tag f, :password %>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<%= submit dgettext("coherence", "Send Instructions"), class: "btn btn-primary" %>
|
||||
<%= link dgettext("coherence", "Cancel"), to: Coherence.Config.logged_out_url("/"), class: "btn" %>
|
||||
</div>
|
||||
|
||||
<% end %>
|
@ -1,3 +0,0 @@
|
||||
defmodule Coherence.CoherenceView do
|
||||
use EventosWeb.Coherence, :view
|
||||
end
|
@ -1,210 +0,0 @@
|
||||
defmodule EventosWeb.Coherence.ViewHelpers do
|
||||
@moduledoc """
|
||||
Helper functions for Coherence Views.
|
||||
"""
|
||||
use Phoenix.HTML
|
||||
alias Coherence.Config
|
||||
import EventosWeb.Gettext
|
||||
|
||||
@type conn :: Plug.Conn.t
|
||||
@type schema :: Ecto.Schema.t
|
||||
|
||||
@seperator {:safe, " | "}
|
||||
@helpers EventosWeb.Router.Helpers
|
||||
|
||||
@recover_link dgettext("coherence", "Forgot your password?")
|
||||
@unlock_link dgettext("coherence", "Send an unlock email")
|
||||
@register_link dgettext("coherence", "Need An Account?")
|
||||
@invite_link dgettext("coherence", "Invite Someone")
|
||||
@confirm_link dgettext("coherence", "Resend confirmation email")
|
||||
@signin_link dgettext("coherence", "Sign In")
|
||||
@signout_link dgettext("coherence", "Sign Out")
|
||||
|
||||
@doc """
|
||||
Create coherence template links.
|
||||
|
||||
Generates links if the appropriate option is installed. This function
|
||||
can be used to:
|
||||
|
||||
* create links for the new session page `:new_session`
|
||||
* create links for your layout template `:layout`
|
||||
|
||||
|
||||
Defaults are provided based on the options configured for Coherence.
|
||||
However, the defaults can be overridden by passing the following options.
|
||||
|
||||
## Customize the links
|
||||
|
||||
### :new_session Options
|
||||
|
||||
* :recover - customize the recover link (#{@recover_link})
|
||||
* :unlock - customize the unlock link (#{@unlock_link})
|
||||
* :register - customize the register link (#{@register_link})
|
||||
* :confirm - customize the confirm link (#{@confirm_link})
|
||||
|
||||
### :layout Options
|
||||
|
||||
* :list_tag - customize the list tag (:li)
|
||||
* :signout_class - customize the class on the signout link ("navbar-form")
|
||||
* :signin - customize the signin link text (#{@signin_link})
|
||||
* :signout - customize the signout link text (#{@signout_link})
|
||||
* :register - customize the register link text (#{@register_link})
|
||||
|
||||
### Disable links
|
||||
|
||||
If you set an option to false, the link will not be shown. For example, to
|
||||
disable the register link on the layout, use the following in your layout template:
|
||||
|
||||
coherence_links(conn, :layout, register: false)
|
||||
|
||||
## Examples
|
||||
|
||||
coherence_links(conn, :new_session)
|
||||
Generates: #{@recover_link} #{@unlock_link} #{@register_link} #{@confirm_link}
|
||||
|
||||
coherence_links(conn, :new_session, recover: "Password reset", register: false
|
||||
Generates: Password reset #{@unlock_link}
|
||||
|
||||
coherence_links(conn, :layout) # when logged in
|
||||
Generates: User's Name #{@signout_link}
|
||||
|
||||
coherence_links(conn, :layout) # when not logged in
|
||||