🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

accounts-api

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

accounts-api

An accounts api that follows a few contraints to try and make it easy to plug into a node http server

1.0.0
latest
Source
npm
Version published
Weekly downloads
13
116.67%
Maintainers
1
Weekly downloads
 
Created
Source

accounts-api Build Status

This app follows a few constraints to try and make it easy to plug into a node http server.

The goal is a simple API resource that can be used on its own or in other servers.

The file organization and approach is inspired in part by django's idea of apps.

Usage

To use it, you'd include it in the server like this:

var http = require('http')
var response = require('response')
var level = require('level')
var db = level('db')
var accounts = require('accounts-api')(db)

var server = http.createServer(function (req, res) {
  /* 
  * if req.url matches a route, it will return, 
  * otherwise, another part of the application can respond 
  */
  if (accounts.serve(req, res)) return
  response().json({ message: 'hi' }).pipe(res)
})

server.listen(4444)

Account roles

By default, there are three roles an account can have: admin, owner, collaborator

  • admin
    • is a boolean, and gives site-wide access
    • implies create, read, update, and delete scopes for all models
  • owner
    • is an array of keys for models that the account has created or for which the account has been granted owner status
    • implies create, read, update, and delete scopes on all models the account is an owner
  • collaborator
    • is an array of keys for models for which the account has been granted collaborator status
    • implies create, read, and update scopes on all models the account is a collaborator

Here's how you might check to see if a user is the owner of a model:

var access = auth.checkRoles(obj.key, account)
if (access && access.role === 'owner') {
  // do the things that owners can do
}

Account scopes

Scopes are granular permissions for models or other arbitrary actions in your application.

By default there is an accounts scope, and all users are allowed to read accounts.

Here's an example of adding a custom posts scope to accounts so you can check if an account has the proper scope in other parts of your application:

var createAccounts = require('accounts-api')({
  secret: 'test',
  scopes: {
    posts: {
      type: 'object',
      properties: {
        actions: {
          type: 'array',
          items: { type: 'string', enum: ['create', 'read', 'update', 'delete'] }
        }
      },
      default: { actions: ['create', 'read'] }
    }
  }
})

var accounts = createAccounts({ db: memdb() })

To check if an account has the proper scope:

auth.checkScopes(['read:posts', 'create:posts'], account)

Todo

  • decide how to handle static assets, and how they might be handled across the application

Structure

  • index.js
    • this module provides the model, handler, and routes modules of the app
    • it also provides a serve method that is used to match req.url to the app's routes
  • routes.js
    • a simple router that takes the handler as an argument, and matches routes to handler methods
  • handler.js
    • takes the model as an argument, and parses requests to perform operations with the model
  • model.js
    • provides CRUD and other necessary actions like validation, indexing, etc. This is based on accountdown and leveldb.

Keywords

accounts

FAQs

Package last updated on 03 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts