Giter Site home page Giter Site logo

passport-ldap-example's Introduction

An Example to use ldap-authentication as a Passport Strategy

This example uses ldap-authtication to create a Passport LDAP authentication strategy.

Installation

  1. npm install

Work flow

  1. node index.js to start the server
  2. Launch browser and goto http://localhost:4000
  3. Login as prompted
  4. Try different username and password

How does it work

This example uses ldap-authtication and put it in passport-custom to create a complete Passport strategy.

The LDAP server is hosted at forumsys and it has a few simple users to test with.

The information of the LDAP server is saved in config.js file.

ldap-authtication takes the username and password from the submitted form, with the ldap configurations from config.js file, it then constructs an option object:

const CONFIG = require('./config.js')
// ...
let ldapBaseDn = CONFIG.ldap.dn
let options = {
  ldapOpts: {
    url: CONFIG.ldap.url
  },
  userDn: `uid=${req.body.username},${ldapBaseDn}`,
  userPassword: req.body.password,
  userSearchBase: ldapBaseDn,
  usernameAttribute: 'uid'
}

then it calls let user = await authenticate(options) to authenticate and retrieve user from the LDAP server.

I encourage you to check the index.js file for details. Clone this repo and play with it yourself!

passport-ldap-example's People

Contributors

shaozi avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.