mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.0 KiB
41 lines
1.0 KiB
'use strict'
|
|
|
|
/* global wiki */
|
|
|
|
// ------------------------------------
|
|
// LDAP Account
|
|
// ------------------------------------
|
|
|
|
const LdapStrategy = require('passport-ldapauth').Strategy
|
|
const fs = require('fs')
|
|
|
|
module.exports = (passport, conf) => {
|
|
passport.use('ldapauth',
|
|
new LdapStrategy({
|
|
server: {
|
|
url: conf.url,
|
|
bindDn: conf.bindDn,
|
|
bindCredentials: conf.bindCredentials,
|
|
searchBase: conf.searchBase,
|
|
searchFilter: conf.searchFilter,
|
|
searchAttributes: ['displayName', 'name', 'cn', 'mail'],
|
|
tlsOptions: (conf.tlsEnabled) ? {
|
|
ca: [
|
|
fs.readFileSync(conf.tlsCertPath)
|
|
]
|
|
} : {}
|
|
},
|
|
usernameField: 'email',
|
|
passReqToCallback: false
|
|
}, (profile, cb) => {
|
|
profile.provider = 'ldap'
|
|
profile.id = profile.dn
|
|
wiki.db.User.processProfile(profile).then((user) => {
|
|
return cb(null, user) || true
|
|
}).catch((err) => {
|
|
return cb(err, null) || true
|
|
})
|
|
}
|
|
))
|
|
}
|