PolicyWonk is a lightweight authorization and resource loading library for any Plug or Phoenix application.
Policy Wonk is almost completely re-written for version 1.0. After living with it for well over a year, I realized there were a set of issues that warranted re-opening the underlying architecture.
- It wasn't compatible with Phoenix 1.3 umbrella apps. Or rather, you couldn't have separate policies for different apps in an umbrella.
- It had a whole mess of complexity that simply wasn't needed. I never used most of the "shortcut" options since the more explicit versions (with slightly more typing) were always clearer.
- Returning errors from Policies was too vague. I want to know errors are being processed!
- The config file data isn't necessary in a more explicit model.
- Naming was inconsistent between policies and resources.
Version 1.0 takes these observations (and more), fixes them, and simplifies the configuration dramatically. It has less code and is overall simpler and faster.
There is a little work to upgrade from a older versions, but the overall shape of your code will stay the same, so the work is small and well worth it.
You can read the full documentation here.
Authentication (Auth-N) is the process of proving that a user or other entity is who/what it claims to be. Tools such as comeonin or guardian are mostly about authentication. Any time you are checking hashes or passwords, you are doing Auth-N.
Authorization (Auth-Z) is the process of deciding what a user/entity is allowed to do after they’ve been authenticated.
Authorization ranges from simple (ensuring somebody is logged in), to very rich (make sure the user has specific permissions to see a resource or that one resource is correctly related to the other resources being manipulated).
Add policy_wonk
to the deps section of your application's mix.exs
file
defp deps do
[
# ...
{:policy_wonk, "~> 1.0.0"}
# ...
]
end
Don't forget to run mix deps.get
Load and enforce the current user in a router:
pipeline :browser_session do
plug MyAppWeb.Resources, :current_user
plug MyAppWeb.Policies, :current_user
end
pipeline :admin do
plug MyAppWeb.Policies, {:admin_permission, "dashboard"}
end
In a controller:
plug MyAppWeb.Policies, {:admin_permission, "dashboard"}
With PolicyWonk, you create policies and loaders for your application. They can be used as plugs in your router or controller or called for yes/no decisions in a template or controller.
This lets you enforce things like "a user is signed in" or "the admin has this permission" in the router. Or you could use a policy to determine if you should render a set of UI.
If a policy fails, it halts your plug chain and lets you decide what to do with the error.
Example policy:
defmodule MyAppWeb.Policies do
use PolicyWonk.Policy # set up support for policies
use PolicyWonk.Enforce # turn this module into an enforcement plug
def policy( assigns, :current_user ) do
case assigns[:current_user] do
%MyApp.Account.User{} ->
:ok
_ ->
{:error, :current_user}
end
end
def policy_error(conn, :current_user) do
MyAppWeb.ErrorHandlers.unauthenticated(conn, "Must be logged in")
end
end
See the the PolicyWonk.Policy
documentation for details.
In addition to evaluating policies in a plug chain, you will often want to test a policy when rendering UI, processing an action in a controller, or somewhere else.
The use PolicyWonk.Policy
call in your policy module adds the enforce!/2
and authorized?/2
functions, which you can use in templates or controllers to decide what UI to show or to raise
an error under certain conditions.
In a template:
<%= if MyAppWeb.Policies.authorized?(@conn, {:admin_permission, "dashboard"}) do %>
<%= link "Admin Dashboard", to: admin_dashboard_path(@conn, :index) %>
<% end %>
In an action in a controller:
def settings(conn, params) do
...
# raise an error if the current user is not the user specified in the url.
MyAppWeb.Policies.enforce!(conn, :user_is_self)
...
end
Resources are similar to policies in that you define functions that can be used in the plug chain.
Instead of making a yes/no enforcement decision, a resource
will load a resource and insert it
into the conn's assigns
map.
defmodule MyAppWeb.Loaders do
use PolicyWonk.Resource # set up support for resources
use PolicyWonk.Load # turn this module into an load resource plug
def resource( _conn, :user, %{"id" => user_id} ) do
case MyApp.Account.get_user(user_id) do
nil -> {:error, :user}
%MyApp.Account.User{} = user -> {:ok, :user, user}
end
end
def resource_error(conn, _resource_id) do
MyAppWeb.ErrorHandlers.resource_not_found( conn )
end
end
See the the PolicyWonk.Resource
documentation for details.
You can read the full documentation here.