Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

crude-ownuser

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

crude-ownuser

A plugin for Crude enforcing own user policy on all routes.

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Crude Ownuser

A plugin for Crude enforcing own user policy on all routes.

Build Status

Install

Install the module using NPM

npm install crude-ownuser --save

Documentation

The Crud Own User package applies policies to all CRUD OPs that ensure only records belonging to the current user are being read, edited or deleted.

Quick Use

var crude = require('crude');
var crudeOwnUser = require('crude-ownuser');

var userCrude = crude('/user', controller);

crudeOwnUser(userCrude, {
    // Where to expect the User Data Object on the Express Request Object.
    expressUdoAttribute: 'user',

    // The attribute representing the User Id on the Express Request Object.
    expressUdoIdAttribute: 'id',

    // How the user id attribute is named on the model.
    schemaUserId: 'userId',
});

The Crude Own User package will enforce the policy by augmenting the incoming query with the user id of the current client. If the client is not authenticated (no express UDO is found) then a Not Authenticated (401) error will be returned to the client.

  • v0.0.3, 18 Nov 2014
    • Ensure if not authed that a 401 HTTP code is used.
  • v0.0.2, 17 Sep 2014
    • Adjust main module to latest query middleware Crude feature.
  • v0.0.1, 16 Sep 2014
    • Big Bang

License

Copyright (c) 2014 Thanasis Polychronakis. Licensed under the MIT license.

FAQs

Package last updated on 18 Nov 2014

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc