- 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
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
import fs from 'fs-extra'
import ldap from 'ldapjs'
import cfg from '../config'
export default class Auth
{
static login(ctx, next)
{
const data = ctx.request.body
var client = ldap.createClient({ url: cfg.ldapServer })
return new Promise(function(resolve, reject) {
client.on('error', err => {
ctx.body = {result: 0, payload: 'LDAP server not found'}
})
return resolve(next())
client.on('connect', c => {
client.bind( `\\${data.username}`, '${data.passwd}', err => {
if (err)
{
ctx.body = {result: 0, payload: 'Invalid Credentials'}
}
else
{
ctx.body = {result: 1, payload: 'success'}
}
resolve(next())
})
})
})
}
static logout(ctx, next)
{
console.log('log me out')
}
}