Socket
Socket
Sign inDemoInstall

actionhero-oauth2-provider

Package Overview
Dependencies
2
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    actionhero-oauth2-provider

ActionHero OAuth2 Provider


Version published
Weekly downloads
4
decreased by-60%
Maintainers
1
Install size
59.9 kB
Created
Weekly downloads
 

Readme

Source

actionhero OAuth2 provider

Create a OAuth2 provider/server with actionhero

Install:

npm install actionhero-oauth2-provider

create a new initializer inside your actionhero project.

e.g. oauth2.js with the following content

var OAuth2Provider = require('actionhero-oauth2-provider');

var provider = new OAuth2Provider(); 



provider.on('validate_user', function(api, connection, next){
  var authorize_url = connection.params.authorize_url;
  if(/*the user is logged in.*/){
    next();
  }else{
    //redirect to the login page
    res.writeHead(303, {Location: '/login'});
    res.end();
    next(false);
  }
});



provider.on('validate_client', function(api, connection, next){
  var client_id = connection.params.client_id;
  
  if(/*client_id valid?*/){
    next();
  }else{
    connection.error = 'invalid client id!';
    next(false);
  }
});


provider.on('validate_grant', function(api, connection, next){
  var client_id = connection.params.client_id;
  var user_id = connection.session.user_id;
  
  if(/*grants exists?*/){
    next();
  }else{
    //redirect
    res.writeHead(303, {Location: '/grant'});
    res.end();
    next(false);
  }
});


provider.on('validate_code', function(api, connection, next){
  var client_id = connection.params.client_id;
  var code = connection.params.code;
  
  if(/*code is valid?*/){
    next();
  }else{
    connection.error = 'invalid code!';
    next(false);
  }
});


provider.on('validate_access_token', function(api, connection, next){
  var client_id = connection.params.client_id;
  var access_token = connection.params.access_token;
  
  if(/*access_token is valid?*/){
    //set session variables here if needed
    next();
  }else{
    connection.error = 'invalid access_token!';
    next(false);
  }
});




provider.on('save_code', function(api, connection, next){
  var user_id = connection.session.user_id;
  var client_id = connection.params.client_id;
  var code = connection.params.code;
  
  //save code here
  next();
});


provider.on('destroy_code', function(api, connection, next){
  var client_id = connection.params.client_id;
  var code = connection.params.code;
  
  //destroy code here
  next();
});



provider.on('save_access_token', function(api, connection, next){
  var client_id = connection.params.client_id;
  var code = connection.params.code;
  var access_token = connection.params.access_token;
  
  //save access_token here
  next();
});


//export the initializer for actionhero
exports.oauth2 = provider.initializer;

Keywords

FAQs

Last updated on 11 Jul 2014

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc