mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-17 08:50:15 +01:00
23 lines
576 B
JavaScript
23 lines
576 B
JavaScript
|
|
const passport = require('passport');
|
||
|
|
|
||
|
|
const requireLdapAuth = (req, res, next) => {
|
||
|
|
passport.authenticate('ldapauth', (err, user, info) => {
|
||
|
|
if (err) {
|
||
|
|
console.log({
|
||
|
|
title: '(requireLdapAuth) Error at passport.authenticate',
|
||
|
|
parameters: [{ name: 'error', value: err }],
|
||
|
|
});
|
||
|
|
return next(err);
|
||
|
|
}
|
||
|
|
if (!user) {
|
||
|
|
console.log({
|
||
|
|
title: '(requireLdapAuth) Error: No user',
|
||
|
|
});
|
||
|
|
return res.status(422).send(info);
|
||
|
|
}
|
||
|
|
req.user = user;
|
||
|
|
next();
|
||
|
|
})(req, res, next);
|
||
|
|
};
|
||
|
|
module.exports = requireLdapAuth;
|