Authy is now Bodyguard
Due to potential naming conflicts, the package previously known as Authy is now Bodyguard beginning with version 0.2.0.
This renaming also comes with a number of API changes that differ from authy, namely replacing the authorize and scope block-style macros with standard functions. Details are below.
Bodyguard – Simple, Flexibile Authorization
Bodyguard is an authorization library that imposes a simple module naming convention to express authorization.
It supplies some handy functions to DRY up controller actions in Phoenix and other Plug-based apps.
It's inspired by the Ruby gem Pundit, so if you're a fan of Pundit, you'll see where Bodyguard is coming from.
Installation
- Add
bodyguardto your list of dependencies inmix.exs:
```elixir
def deps do
[{:bodyguard, "~> 0.3.0"}]
end
```
- Add
import Bodyguard.Controllerto thecontroller/0method ofweb.exto make its functions available.
```elixir
# lib/my_app/web.ex
defmodule MyApp.Web do
# ...
def controller do
quote do
# ...
import Bodyguard.Controller # <-- new
end
end
end
```
- Add an error view case for handling 403 Forbidden, for when authorization fails.
```elixir
defmodule MyApp.ErrorView do
use MyApp.Web, :view
# ...
def render("403.html", _assigns) do # <-- new
"Forbidden"
end
end
```
Policies
Authorization logic is contained in policy modules – one module per resource to be authorized.
To define a policy for a Post, create a module Post.Policy with the authorization logic defined in can?(user, action, term) functions:
defmodule Post.Policy do
# Admin users are god
def can?(%User{role: :admin}, _action, _post), do: true
# Regular users can modify their own posts
def can?(%User{id: user_id, role: :user}, _action, %Post{user_id: post_user_id})
when user_id == post_user_id, do: true
# Other users (including guest user, nil) can only index and view posts
def can?(_user, :index, Post), do: true
def can?(_user, :show, _post), do: true
# Catch-all: deny everything else
def can?(_, _, _), do: false
end
Policy Scopes
Another idea borrowed from Pundit, policy scopes are a way to embed logic about what resources a particular user can see or otherwise access.
It's just another simple naming convention. Define scope(user, action, opts) functions in your policy module to utilize it.
defmodule Post.Policy
# ...
# Admin sees all posts
def scope(%User{role: :admin}, :index, _opts),
do: Ecto.Query.from(Post)
# User sees their posts only
def scope(%User{role: :user, id: id}, :index, _opts),
do: Ecto.Query.where(Post, user_id: ^id)
# Guest sees published posts only
def scope(nil, :index, _opts),
do: Ecto.Query.where(Post, published: true)
end
Permitted Attributes
The policy module can also specify which schema attributes may be modified by a given user. Define permitted_attributes(user, term) and return a list of atoms.
If you are using Ecto, the result can be passed into Ecto.Changeset.cast/3 to whitelist parameters in a changeset.
defmodule Post.Policy
# ...
# Admins can change anything
def permitted_attributes(%User{role: :admin}, _post) do
[:title, :body, :user_id]
end
# Post authors can only change the post body
def permitted_attributes(%User{id: user_id}, %Post{user_id: post_user_id})
when user_id == post_user_id do
[:body]
end
# Otherwise, blacklist everything
def permitted_attributes(_user, _post), do: []
end
Authorizing Controller Actions
The Bodyguard.Controller module contains helper functions designed to provide authorization in controller actions. You should probably import it in web.ex so it is available to all controllers.
The user to authorize is retrieved from conn.assigns[:current_user].
authorize/3returns the tuple{:ok, conn}on success, and{:error, :unauthorized}on failure.authorize!/3returns a modifiedconnon success, and will raiseBodyguard.NotAuthorizedErroron failure. By default, this exception will cause Plug to return HTTP status code 403 Forbidden.scope/3will call the appropriatescopefunction on your policy module for the current userpermitted_attributes/3will call the appropriatepermitted_attributesfunction on your policy module for the current user- The
verify_authorizedplug will ensure that an authorization check was performed. It runs the check at the end of each action, immediately before returning the response, and will fail if authorization was not performed. mark_authorized/1will explicitly force authorization to succeed
defmodule MyApp.PostController do
use MyApp.Web, :controller
alias MyApp.Post
# Bodyguard.Controller has been imported in web.ex
plug :verify_authorized # <-- is run at the END of each action
def index(conn, _params) do
posts = scope(conn, Post) |> Repo.all # <-- posts in :index are scoped to the current user
conn
|> authorize!(Post) # <-- authorize :index action for Posts in general
|> render("index.html", posts: posts)
end
def show(conn, %{"id" => id}) do
post = scope(conn, Post) |> Repo.get!(id) # <-- scope used for lookup
conn
|> authorize!(post) # <-- authorize the :show action for this post
|> render("show.html", post: post)
end
def new(conn, _params) do
conn = authorize!(conn, Post) # <-- authorize the :new action for posts
changeset = Post.changeset(%Post{})
conn
|> render("new.html", changeset: changeset)
end
def create(conn, %{"post" => post_params}) do
conn = authorize!(conn, Post) # <-- authorize the :create action for posts
changeset = Post.changeset(%Post{}, post_params)
# do insert...
end
def edit(conn, %{"id" => id}) do
post = scope(conn, Post) |> Repo.get!(id) # <-- scope used for lookup
changeset = Post.changeset(post)
conn
|> authorize!(post) # <-- authorize the :edit action for this post
|> render("edit.html", post: post, changeset: changeset)
end
def update(conn, %{"id" => id, "post" => post_params}) do
post = scope(conn, Post) |> Repo.get!(id) # <-- scope used for lookup
conn = authorize!(conn, post) # <-- authorize the :update action for this post
# do update...
end
def delete(conn, %{"id" => id}) do
post = scope(conn, Post) |> Repo.get!(id) # <-- scope used for lookup
conn = authorize!(conn, post) # <-- authorize the :delete action for this post
# do delete...
end
end
Handling "Not Found"
Note that if Repo.get! fails due to an invalid ID, the action will raise an exception and render a 404 Not Found page, which is the desired behavior in most cases.
nil data will not defer to any policy module, and will fail authorization by default. If the :policy option is explicitly specified, then that policy module will be used, passing nil as the data.
Handling authorize!/3 Errors
For Phoenix apps, presenting error views in MyApp.ErrorView is often enough.
For further customization, or for plain Plug apps, authorize!/3 raises directly to the router, so you can use Plug.ErrorHandler to catch errors caused by Bodyguard.
defmodule MyApp.Router do
use MyApp.Web, :router
use Plug.ErrorHandler # <-- new
defp handle_errors(conn, %{reason: %Bodyguard.NotAuthorizedError{}}) do
# redirect or do whatever you want
end
end
Controller-Wide Authorization
For more sensitive controllers (e.g. admin control panels), you may not want to leak the details of a particular resource's existence. In that case, you can pre-authorize before even attempting to fetch the record, additionally authorizing that particular resource once it has been retrieved from the database.
To lock down an entire controller using this technique, use authorize! as a plug. Keep in mind you will have to implement can?/3 functions on the policy to match the module name, even for member actions like :show and :edit:
defmodule MyApp.ManageUserController do
plug :authorize!, User # <-- pre-authorize all actions
# ...
end
Nested Resources
To authenticate a nested resource, it is common to authorize the parent resource before performing the child resource's action. This can also be accomplished via a controller plug.
If the authorization check consists of a simple foreign key comparison (e.g. current_user can only modify a resource if its user_id equals current_user.id), then the resource struct can be constructed in memory without requiring a round-trip to the database.
# router.ex
resources "/companies", CompanyController do
resources "/users", UserController
end
# user_controller.ex
defmodule MyApp.UserController do
plug :authorize_company!
defp authorize_company!(%{params: %{"company_id" => company_id}} = conn) do
# Create this Company in-memory since we only care about its ID
company = %Company{id: company_id}
# Authorize the :update action of the parent company as a generic
# policy for this company's user actions
authorize!(conn, company, action: :update)
end
end
Additional Options
:policy– Override the policy moduleauthorize!(conn, post, policy: FeaturedPost.Policy)scope(conn, Post, policy: FeaturedPost.Policy)permitted_attributes(conn, post, policy: FeaturedPost.Policy):action– Override the actionauthorize!(conn, post, action: :publish)scope(conn, Post, action: :publish):user– Override the current userauthorize!(conn, post, user: other_user)scope(conn, Post, user: other_user)permitted_attributes(conn, post, user: other_user):error_status– Override the HTTP return status when authorization failsauthorize!(conn, post, error_status: 404)
Authorization Outside of Controllers
Policies are just plain old modules, so you can call them directly:
Post.Policy.can?(user, :edit, post) # <-- returns boolean
Post.Policy.scope(user, :index) # <-- returns query for posts
Or you can use the Bodyguard module to determine the policy module automatically.
Bodyguard.authorized?(user, :edit, post) # <-- defers to Post.Policy.can?/3
Bodyguard.scoped(user, :index, Post) # <-- defers to Post.Policy.scope/3
Common Patterns
Policy Helpers
Consider creating a generic policy helper to collect authorization logic that is common to many different parts of your application. Reuse it by importing it into more specific policies.
defmodule MyApp.PolicyHelper do
# common functions here
end
defmodule MyApp.Post.Policy do
import MyApp.PolicyHelper
# ...
end
Controller Policies
What if you have a Phoenix controller that doesn't correspond to one particular resource? Or, maybe you just want to customize how that controller's actions are locked down.
Try creating a policy for the controller itself. MyApp.FooController.Policy is completely acceptable.
Not What You're Looking For?
Check out these other libraries:
Ideas for Future Work
- Add helper for controllers that just returns a boolean (no block)
- Add helpers for views
- Add helpers for Phoenix sockets and channels
- Similar to policy scopes, add policy changesets, which will build a changeset based on a users' privileges
- ...?
- Profit!
License
MIT License, Copyright (c) 2016 Rockwell Schrock
Acknowledgements
Thank you to the following contributors: