Authorization
While authentication is handled by the outer API layer, authorization can, and indeed should, be handled by our domain.
Authorization can be considered business logic, and that's what our domain is all about, business logic! Our domain describes when actions should and should not be allowed, and those decisions can depend on user attributes as well, such as id
or role
.
Say we have an action that creates and updates widgets. One very common bit of authorization is that regular users can only update their own widgets, where as admins can update all widgets.
Let's write this:
What are we doing here?
Let's start with the
createWidget
action. We check to make sure the payload contains a user object and if it does, we make sure to include the user in the generated event.Then in the reducer - whenever we receive a
WidgetCreated
event, we store theuserId
so we can refer back to it later.Finally, whenever the
updateWidget
action is called, we check to make sure that the caller's id matches theuserId
we stored earlier (or if caller is an admin) and if not, we throw anunauthorized
error.
Very simple authorization logic and it fits very neatly into our domain.
Last updated