aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/auth.js
blob: 3d2acce1eeb116a7bf3688bf3852e102beaba312 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
'use strict';

var passport = require('passport'),
    LdapStrategy = require('passport-ldapjs').Strategy;

var LDAP_URL = process.env.LDAP_URL;
var LDAP_USERS_BASE_DN = process.env.LDAP_USERS_BASE_DN;

if (LDAP_URL && LDAP_USERS_BASE_DN) {
    console.log('Enable ldap auth');

    exports.ldap = passport.authenticate('ldap', {
        successReturnToOrRedirect: '/',
        failureRedirect: '/login',
        failureFlash: true
    });
} else {
    exports.ldap = function (req, res, next) {
        console.log('ldap auth disabled');
        next();
    };
}

var opts = {
    server: {
        url: LDAP_URL,
    },
    base: LDAP_USERS_BASE_DN,
    search: {
        filter: '(uid={{username}})',
        attributes: ['displayname', 'username', 'mail', 'uid'],
        scope: 'sub'
    },
    uidTag: 'uid',
    usernameField: 'username',
    passwordField: 'password',
};

passport.use(new LdapStrategy(opts, function (profile, done) {
    console.log('ldap', profile);
    done(null, profile);
}));