UNPKG

21 kBMarkdownView Raw
1<h1 align="center">Welcome to objection-authorize 👋</h1>
2
3[![CircleCI](https://circleci.com/gh/JaneJeon/objection-authorize.svg?style=shield)](https://circleci.com/gh/JaneJeon/objection-authorize)
4[![Coverage](https://codecov.io/gh/JaneJeon/objection-authorize/branch/master/graph/badge.svg)](https://codecov.io/gh/JaneJeon/objection-authorize)
5[![NPM](https://img.shields.io/npm/v/objection-authorize)](https://www.npmjs.com/package/objection-authorize)
6[![Downloads](https://img.shields.io/npm/dt/objection-authorize)](https://www.npmjs.com/package/objection-authorize)
7[![install size](https://packagephobia.now.sh/badge?p=objection-authorize)](https://packagephobia.now.sh/result?p=objection-authorize)
8[![Dependencies](https://img.shields.io/david/JaneJeon/objection-authorize)](https://david-dm.org/JaneJeon/objection-authorize)
9[![Known Vulnerabilities](https://snyk.io//test/github/JaneJeon/objection-authorize/badge.svg?targetFile=package.json)](https://snyk.io//test/github/JaneJeon/objection-authorize?targetFile=package.json)
10[![Docs](https://img.shields.io/badge/docs-github-blue)](https://janejeon.github.io/objection-authorize)
11[![Prettier code style](https://img.shields.io/badge/code_style-prettier-ff69b4.svg)](https://github.com/prettier/prettier)
12
13> isomorphic, &#34;magical&#34; access control integrated with objection.js
14
15This plugin automatically takes away a lot of the manual wiring that you'd need to do if you were to implement your access control on a request/route level, including:
16
17- checking the user against the resource and the ACL
18- filtering request body according to the action and the user's access
19- figuring out _which_ resource to check the user's grants against automatically(!)
20- even filtering the result from a query according to a user's read access!
21
22Not sure why you would need this? Read below for examples or [see here](https://janejeon.dev/integrating-access-control-to-your-node-js-apps) to learn just how complex access control can be and how you can manage said complexity with this plugin!
23
24**TL;DR:**
25
26Before:
27
28```js
29class Post extends Model {}
30
31app.put('/posts/:id', (req, res, next) => {
32 // Need to handle random edge cases like the user not being signed in
33 if (!req.user) next(new Error('must be signed in'))
34
35 // Need to first fetch the post to know "can this user edit this post?"
36 Post.query()
37 .findById(req.params.id)
38 .then(post => {
39 if (req.user.id !== post.authorId || req.user.role !== 'editor')
40 return next(new Error("Cannot edit someone else's post!"))
41
42 // Prevent certain fields from being set after creation
43 const postBody = omit(req.body, ['id', 'views', 'authorId'])
44
45 // Prevent certain fields from being *changed*
46 if (
47 post.visibility === 'public' &&
48 get(postBody, 'visibility') !== post.visibility &&
49 req.user.role !== 'admin'
50 )
51 return next(
52 new Error('Cannot take down a post without admin privileges!')
53 )
54
55 req.user
56 .$relatedQuery('posts')
57 .updateAndFetchById(post.id, postBody)
58 .then(post => {
59 // filter the resulting post based on user's access before sending it over
60 if (req.user.role !== 'admin') post = omit(post, ['superSecretField'])
61
62 res.send(post)
63 })
64 .catch(err => next(err))
65 })
66 .catch(err => next(err))
67})
68
69// And you need to repeat ALL of this validation on the frontend as well...
70```
71
72After:
73
74```js
75// Use the plugin...
76class Post extends require('objection-authorize')(acl, library, opts)(Model) {}
77
78app.put('/posts/:id', (req, res, next) => {
79 // ...and the ACL is automagically hooked in for ALL queries!
80 Post.query()
81 .updateAndFetchById(req.params.id, req.body)
82 .authorize(req.user)
83 .fetchResourceContextFromDB()
84 .diffInputFromResource()
85 .then(post => {
86 res.send(post.authorizeRead(req.user))
87 })
88 .catch(err => next(err))
89})
90
91// AND you can re-use the ACL on the frontend as well *without* any changes!
92```
93
94### 🏠 [Homepage](https://github.com/JaneJeon/objection-authorize)
95
96## Installation
97
98To install the plugin itself:
99
100```sh
101yarn add objection-authorize # or
102npm i objection-authorize --save
103```
104
105Note that Objection.js v1 support was dropped on the v4 release of this plugin, so if you need support for the previous version of the ORM, use v3 of this plugin!
106
107In addition, please respect the peer dependency version of Objection.js (currently it is 2.2.5 or above) as this plugin has to account for bugfixes in the base ORM!
108
109And you can install [@casl/ability](https://github.com/stalniy/casl) as your authorization library. Note that only `@casl/ability` of version 4 or above is supported.
110
111For now, only `@casl/ability` is supported as the authorization library, but this plugin is written in an implementation-agnostic way so that any AuthZ/ACL library could be implemented as long as the library of choice supports _synchronous_ authorization checks.
112
113## Changelog
114
115Starting from the 1.0 release, all changes will be documented at the [releases page](https://github.com/JaneJeon/objection-authorize/releases).
116
117## Terminology
118
119A quick note, I use the following terms interchangeably:
120
121- `resource` and `item(s)` (both refer to model instance(s) that the query is fetching/modifying)
122- `body` and `input` and `inputItem(s)` (all of them refer to the `req.body`/`ctx.body` that you pass to the query to modify said model instances; e.g. `Model.query().findById(id).update(inputItems)`)
123
124## Usage
125
126Plugging in `objection-authorize` to work with your existing authorization setup is as easy as follows:
127
128```js
129const acl = ... // see below for defining acl
130
131const { Model } = require('objection')
132const authorize = require('objection-authorize')(acl, library[, opts])
133
134class Post extends authorize(Model) {
135 // That's it! This is just a regular objection.js model class
136}
137```
138
139### Options
140
141You can pass an _optional_ options object as the third parameter during initialization. The default values are as follows:
142
143```js
144const opts = {
145 defaultRole: 'anonymous',
146 unauthenticatedErrorCode: 401,
147 unauthorizedErrorCode: 403,
148 castDiffToModelClass: true,
149 casl: {
150 useInputItemAsResourceForRelation: false
151 }
152}
153```
154
155For explanations on what each option does, see below:
156
157<details>
158<summary>defaultRole</summary>
159
160When the user object is empty, a "default" user object will be created with the `defaultRole` (e.g. `{ role: opts.defaultRole }`).
161
162</details>
163
164<details>
165<summary>unauthenticatedErrorCode</summary>
166
167Error code thrown when an unauthenticated user is not allowed to access a resource.
168
169</details>
170
171<details>
172<summary>unauthorizedErrorCode</summary>
173
174Error code thrown when an authenticated user is not allowed to access a resource.
175
176</details>
177
178<details>
179<summary>castDiffToModelClass</summary>
180
181When you use `.diffInputFromResource()`, the resource and the inputItem are compared and a diff (an object containing the changes) is fed to your access control checker.
182
183Since the diff is produced as a plain object, we need to cast it to the appropriate model class again so that you can access that model's methods and model-specific fields.
184
185However, in some cases (such as when you're doing some bespoke field/value remapping in `Model.$parseJson()`), casting the object to the model class isn't "safe" to do, and the resulting model instance might contain different values from the raw diff object.
186
187If you want to disable it, just set `opts.castDiffToModelClass` to false and the raw diff object will be fed to the access control functions.
188
189</details>
190
191<details>
192<summary>casl.useInputItemAsResourceForRelation</summary>
193
194Normally, the `item` is used as "resource" since that's what the user is acting _on_.
195
196However, for relation queries (e.g. add `Book` to a `Library`), the user is _really_ acting on the `Book`, not the `Library`. For cases like this, you can set this option to `true` in order to use the `inputItem` (`Book`) as "resource" instead of `item` (`Library`) **ONLY** during relation queries.
197
198</details>
199
200### Methods
201
202After initialization, the following "magic" methods are available for use:
203
204<details>
205<summary>QueryBuilder.authorize(user[, resource[, opts]])</summary>
206
207This is the bread and butter of this library. You can chain `.authorize()` to any Objection Model query (i.e. `Model.query().authorize()`) to authorize that specific ORM call/HTTP request.
208
209First, an explanation of the parameters:
210
211The `user` should be an object representation of the user; typically, you can just plug in `req.user` (express) or `ctx.user` (koa) directly, _even if the user is not signed in_ (aka `req.user === undefined`)!
212
213The `resource` object is an optional parameter, and for most queries, you won't need to manually specify the resource.
214
215The `opts` can be used to override any of the default options that you passed during initialization of this plugin (i.e. you don't have to pass the whole options object in; only the parts you want to override for this specific query).
216
217So, what are we _actually_ checking here with this function?
218
219When you chain `.authorize()` to the ORM query, the query is (typically) doing one of four things: create, read, update, or delete (CRUD) - which is the action they're trying to take. These correspond to the HTTP verbs: GET/POST/PUT/PATCH/DELETE (if you're not familiar with how this is the case, please read up on REST API design).
220
221In addition, the query already provides the following contexts: the resource/item(s) that the user is acting on (e.g. read a **user**'s email, or create a **post**), the body/inputItem(s) that the user is supplying. This is typically the `req.body` that you pass to the `.insert()/.update()/.delete()` query methods, aka _how_ you want to change the resource.
222
223So, given this information, we can just rely on the ACL (see below for how to define it) to check whether the `user` is allowed to take the specified `action` on `resource/items` with the given `body/inputItems`! Specifically, the authorization check involves the following functionalities:
224
2251. Check if the user is allowed to apply the specified `action` on the `items`, and if not, throw an `httpError` with the appropriate HTTP error code
2262. If there's `inputItems`, check if the user is allowed to modify/add the specific fields in `inputItems`. If a user tries to set/modify a property they're not allowed to, error is thrown again.
227
228That's it!
229
230The nuances of this plugin comes with how it's able to drastically simplify said ACL calls & context fetching. For example, while figuring out the `inputItems` might be simple, how does the plugin know which `items` the `action` applies to?
231
232The plugin looks at the following places to fetch the appropriate `resource(s)`:
233
2341. If the `resource` parameter is specified in the `.authorize()` call, it takes precedence and is set as the only item(s) that we check against.
2352. If the `resource` parameter is not specified, then it looks at the model instance (if you're calling `.$query()` or `.$relatedQuery()`)
2363. If you call `.fetchContextFromDB()`, then the plugin executes a pre-emptive SQL SELECT call to fetch the rows that the query would affect.
237
238And once the plugin figures out `items` and `inputItems`, it simply iterates along both arrays and checks the ACL whether the user can take `action` on `items[i]` with input `inputItems[j]`.
239
240That's it.
241
242**TIP**: the `.authorize()` call can happen _anywhere_ within the query chain!
243
244</details>
245
246<details>
247<summary>QueryBuilder.action(action)</summary>
248
249Rather than using the "default" actions (create/read/update/delete), you can override the action per query.
250
251This is useful when you have custom actions in your ACL (such as `promote`) for a specific endpoint/query. Just chain a `.action(customAction)` somewhere in the query (in this case, the `customAction` would be `"promote"`).
252
253</details>
254
255<details>
256<summary>QueryBuilder.inputItem(inputItem)</summary>
257
258For methods that don't support passing `inputItem(s)` (e.g. `.delete()`) but you still want to set the input item/resource, you can call this method to manually override the value of the resource used by the ACL.
259
260</details>
261
262<details>
263<summary>QueryBuilder.fetchResourceContextFromDB()</summary>
264
265Sometimes, you need to know the values of the resource(s) you're trying to access before you can make an authorization decision. So instead of loading the model instance(s) yourself and running `.$query()` on them, you can chain `.fetchResourceContextFromDB()` to your query and automatically populate the `inputs`/resources that would've been affected by the query.
266
267e.g.
268
269```js
270await Person.query()
271 .authorize(user)
272 .where('lastName', 'george')
273 .update({ lastName: 'George' }) // input item
274 .fetchResourceContextFromDB() // Loads all people that would be affected by the update,
275// and runs authorization check on *all* of those individuals against the input item.
276```
277
278</details>
279
280<details>
281<summary>QueryBuilder.diffInputFromResource()</summary>
282
283This method is particularly useful for UPDATE requests, where the client is sending the _entire_ object (rather than just the changes, like PATCH). Obviously, if you put the whole object through the AuthZ check, it will trip up (for example, the client may include the object's id as part of an UPDATE request, and you don't want the ACL to think that the client is trying to change the id)!
284
285Therefore, call this method anywhere along the query chain, and the plugin will automatically diff the input object(s) with whatever the resource is! The beauty of this method is that it also works for _nested fields_, so even if your table includes a JSON field, only the exact diff - all the way down to the nested subfields - will be passed along to the ACL.
286
287e.g.
288
289```js
290Model.query()
291 .authorize(user, { id: 1, foo: { bar: 'baz', a: 0 } })
292 .updateById(id, { id: 1, foo: { bar: 'baz', b: 0 } })
293 .diffInputFromResource() // the diff will be { foo: { b: 0 } }
294```
295
296**NOTE**: the plugin is ONLY able to detect changes to an existing field's value or an addition of a _new_ field, NOT the deletion of an existing field (see above how the implicit deletion of `foo.a` is not included in the diff).
297
298Therefore, care must be taken during UPDATE queries where fields (_especially_ nested fields) may be added/removed dynamically. Having JSON subfields doesn't mean you throw out schema Mongo-style; so if you need to monitor for _deletion_ of a field (rather than mutation or addition), I would recommend assigning all of the possible fields' value with `null`, rather than leaving it out entirely, so that deletions would show up as mutations.
299
300e.g. in the above case, if you wanted to check whether field `foo.a` was deleted or not:
301
302```js
303resource = { id: 1, foo: { bar: 'baz', a: 0, b: null } }
304input = { id: 1, foo: { bar: 'baz', a: null, b: 0 } }
305```
306
307</details>
308
309<details>
310<summary>modelInstance.authorizeRead(user, [action = 'read'[, opts]])</summary>
311
312Prior to objection-authorize v4, the plugin "automatically" filtered any resulting model instances against a user's read access, but it didn't work consistently and I found it to be too hacky, so from v4 and on, you will need to manually call the `.authorizeRead()` on your model instance to filter it according to the user's read access (which can be overridden with the `action` parameter).
313
314This call is synchronous and will return the filtered model instance directly. Note that the result is a plain object, not an instance of the model _class_ anymore, since this call is meant to be for "finalizing" the model instance for returning to the user as a raw JSON.
315
316</details>
317
318## Defining the ACL
319
320The ACL is what actually checks the validity of a request, and `objection-authorize` passes all of the necessary context in the form of function parameters (thus, you should wrap your ACL in the following function format):
321
322```js
323function acl(user, resource, action, body, opts) {
324 // your ACL definition goes here
325}
326```
327
328**NOTE**: while `user` is cast into plain object form (simply due to the fact that `req.user` could be empty, and we would need to create a "fake" user with a default role), `resource` and `body` (aka `item` and `inputItem`) are cast into their respective _Models_ - this is to maintain consistency with the internal Objection.js static hooks' behaviour.
329
330For example, in a query:
331
332```js
333await Person.relatedQuery('pets')
334 .for([1, 2])
335 .insert([{ name: 'doggo' }, { name: 'catto' }])
336 .authorize(user)
337 .fetchContextFromDB()
338```
339
340The `resource` is an instance of model `Person`, and the `body` is an instance of model `Pet`. How do I know what class to wrap it in? Magic! ;)
341
342### @casl/ability
343
344For `casl`, because it doesn't allow dynamically checking against any resource or action, we have to wrap it with a function, and that function takes in `(user, resource, action, body, opts)` and returns an _instance_ of ability.
345
346This is essentially the same as the `defineAbilitiesFor(user)` method described [in the casl docs](https://stalniy.github.io/casl/abilities/2017/07/20/define-abilities.html), but obviously with a lot more context.
347
348So you might define your ability like this (and it doesn't matter if you use `AbilityBuilder` or `Ability`):
349
350```js
351const { AbilityBuilder } = require('@casl/ability')
352
353function acl(user, resource, action, body, opts) {
354 return AbilityBuilder.define((allow, forbid) => {
355 if (user.isAdmin()) {
356 allow('manage', 'all')
357 } else {
358 allow('read', 'all')
359 }
360 })
361}
362```
363
364**TIP**: If you want to cut down on the time it takes to check access, one thing you might want to do is to use the `resource` parameter to ONLY define rules relevant to that resource:
365
366```js
367function acl(user, resource, action, body, opts) {
368 return AbilityBuilder.define((allow, forbid) => {
369 switch (resource.constructor.name) {
370 case 'User':
371 allow('read', 'User')
372 forbid('read', 'User', ['email'])
373 break
374 case 'Post':
375 allow('create', 'Post')
376 forbid('read', 'Post', { private: true })
377 }
378 })
379}
380```
381
382### Note on Resource Names
383
384_For both libraries_, note that the resource name IS the corresponding model's name. So if you have a model class `Post`, you should be referring to that resource as `Post` and not `post` in your ACL definition.
385
386### Note on Sharing the ACL between frontend and the backend
387
388The resources that are passed to this plugin in the backend are typically going to be wrapped in their respective model classes: e.g. `req.user` typically will be an instance of the `User` class, and the resource will _always_ be wrapped with its respective class.
389
390So if you want to share your ACL between frontend and the backend, as the frontend doesn't have access to Objection models, any transformation you have on your models should be _symmetric_.
391
392For example, if you have `user.id` and `post.creatorId` and you hash ID's when you export it to JSON, you want to make sure if `user.id = post.creatorId = 1`, the transformed values are _also_ the same (`user.id = post.creatorId = XYZ`, for example).
393
394This also means that you _shouldn't_ rely on virtuals and asymmetrically-transformed fields on your ACL (if you want to use your ACL on the frontend, that is). For an example of symmetric transformation out in the wild, see https://github.com/JaneJeon/objection-hashid.
395
396## Relation support
397
398With objection-authorize v4, I added _experimental_ relation support, so on your ACL wrapper (the function that takes in 5 parameters - I really should just wrap them in an object but that would break compatibility), now there is an optional, 6th parameter called `relation`:
399
400```js
401function acl(user, resource, action, body, opts, relation) {
402 // your ACL definition goes here
403}
404```
405
406And that `relation` property is simply a string representation of the relation between `item` and `inputItem` that you specified in the resource model's `relationMappings`. So you can use that `relation` key to detect relations and do fancy things with it.
407
408In reality, most of the relation support is well-tested and already proven to be working, as the hardest part was to wrap the `inputItem` in the appropriate related class (rather than using the same class for both the `item` and `inputItem`); it's just that I can't test the `relation` string itself due to some... Objection finnickyness.
409
410## Run tests
411
412```sh
413npm test
414```
415
416## Author
417
418👤 **Jane Jeon**
419
420- Github: [@JaneJeon](https://github.com/JaneJeon)
421
422## 🤝 Contributing
423
424Contributions, issues and feature requests are welcome!<br />Feel free to check [issues page](https://github.com/JaneJeon/objection-authorize/issues).
425
426## Show your support
427
428Give a ⭐️ if this project helped you!
429
430## 📝 License
431
432Copyright © 2021 [Jane Jeon](https://github.com/JaneJeon).<br />
433This project is [LGPL](https://github.com/JaneJeon/objection-authorize/blob/master/LICENSE) licensed (TL;DR: please contribute back any improvements to this library).