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.
246 lines
7.5 KiB
246 lines
7.5 KiB
8 years ago
|
'use strict'
|
||
|
|
||
|
/* global appconfig, appdata, db, winston */
|
||
|
|
||
|
const fs = require('fs')
|
||
|
|
||
|
module.exports = function (passport) {
|
||
|
// Serialization user methods
|
||
|
|
||
|
passport.serializeUser(function (user, done) {
|
||
|
done(null, user._id)
|
||
|
})
|
||
|
|
||
|
passport.deserializeUser(function (id, done) {
|
||
|
db.User.findById(id).then((user) => {
|
||
|
if (user) {
|
||
|
done(null, user)
|
||
|
} else {
|
||
|
done(new Error('User not found.'), null)
|
||
|
}
|
||
|
return true
|
||
|
}).catch((err) => {
|
||
|
done(err, null)
|
||
|
})
|
||
|
})
|
||
|
|
||
|
// Local Account
|
||
|
|
||
|
if (!appdata.capabilities.manyAuthProviders || (appconfig.auth.local && appconfig.auth.local.enabled)) {
|
||
8 years ago
|
const LocalStrategy = require('passport-local').Strategy
|
||
8 years ago
|
passport.use('local',
|
||
|
new LocalStrategy({
|
||
|
usernameField: 'email',
|
||
|
passwordField: 'password'
|
||
|
},
|
||
|
(uEmail, uPassword, done) => {
|
||
|
db.User.findOne({ email: uEmail, provider: 'local' }).then((user) => {
|
||
|
if (user) {
|
||
|
return user.validatePassword(uPassword).then(() => {
|
||
|
return done(null, user) || true
|
||
|
}).catch((err) => {
|
||
|
return done(err, null)
|
||
|
})
|
||
|
} else {
|
||
|
return done(new Error('INVALID_LOGIN'), null)
|
||
|
}
|
||
|
}).catch((err) => {
|
||
|
done(err, null)
|
||
|
})
|
||
|
}
|
||
|
))
|
||
|
}
|
||
|
|
||
|
// Google ID
|
||
|
|
||
|
if (appdata.capabilities.manyAuthProviders && appconfig.auth.google && appconfig.auth.google.enabled) {
|
||
8 years ago
|
const GoogleStrategy = require('passport-google-oauth20').Strategy
|
||
8 years ago
|
passport.use('google',
|
||
|
new GoogleStrategy({
|
||
|
clientID: appconfig.auth.google.clientId,
|
||
|
clientSecret: appconfig.auth.google.clientSecret,
|
||
|
callbackURL: appconfig.host + '/login/google/callback'
|
||
|
},
|
||
|
(accessToken, refreshToken, profile, cb) => {
|
||
|
db.User.processProfile(profile).then((user) => {
|
||
|
return cb(null, user) || true
|
||
|
}).catch((err) => {
|
||
|
return cb(err, null) || true
|
||
|
})
|
||
|
}
|
||
|
))
|
||
|
}
|
||
|
|
||
|
// Microsoft Accounts
|
||
|
|
||
|
if (appdata.capabilities.manyAuthProviders && appconfig.auth.microsoft && appconfig.auth.microsoft.enabled) {
|
||
8 years ago
|
const WindowsLiveStrategy = require('passport-windowslive').Strategy
|
||
8 years ago
|
passport.use('windowslive',
|
||
|
new WindowsLiveStrategy({
|
||
|
clientID: appconfig.auth.microsoft.clientId,
|
||
|
clientSecret: appconfig.auth.microsoft.clientSecret,
|
||
|
callbackURL: appconfig.host + '/login/ms/callback'
|
||
|
},
|
||
|
function (accessToken, refreshToken, profile, cb) {
|
||
|
db.User.processProfile(profile).then((user) => {
|
||
|
return cb(null, user) || true
|
||
|
}).catch((err) => {
|
||
|
return cb(err, null) || true
|
||
|
})
|
||
|
}
|
||
|
))
|
||
|
}
|
||
|
|
||
|
// Facebook
|
||
|
|
||
|
if (appdata.capabilities.manyAuthProviders && appconfig.auth.facebook && appconfig.auth.facebook.enabled) {
|
||
8 years ago
|
const FacebookStrategy = require('passport-facebook').Strategy
|
||
8 years ago
|
passport.use('facebook',
|
||
|
new FacebookStrategy({
|
||
|
clientID: appconfig.auth.facebook.clientId,
|
||
|
clientSecret: appconfig.auth.facebook.clientSecret,
|
||
|
callbackURL: appconfig.host + '/login/facebook/callback',
|
||
|
profileFields: ['id', 'displayName', 'email']
|
||
|
},
|
||
|
function (accessToken, refreshToken, profile, cb) {
|
||
|
db.User.processProfile(profile).then((user) => {
|
||
|
return cb(null, user) || true
|
||
|
}).catch((err) => {
|
||
|
return cb(err, null) || true
|
||
|
})
|
||
|
}
|
||
|
))
|
||
|
}
|
||
|
|
||
|
// GitHub
|
||
|
|
||
|
if (appdata.capabilities.manyAuthProviders && appconfig.auth.github && appconfig.auth.github.enabled) {
|
||
8 years ago
|
const GitHubStrategy = require('passport-github2').Strategy
|
||
8 years ago
|
passport.use('github',
|
||
|
new GitHubStrategy({
|
||
|
clientID: appconfig.auth.github.clientId,
|
||
|
clientSecret: appconfig.auth.github.clientSecret,
|
||
|
callbackURL: appconfig.host + '/login/github/callback',
|
||
|
scope: [ 'user:email' ]
|
||
|
},
|
||
|
(accessToken, refreshToken, profile, cb) => {
|
||
|
db.User.processProfile(profile).then((user) => {
|
||
|
return cb(null, user) || true
|
||
|
}).catch((err) => {
|
||
|
return cb(err, null) || true
|
||
|
})
|
||
|
}
|
||
|
))
|
||
|
}
|
||
|
|
||
|
// Slack
|
||
|
|
||
|
if (appdata.capabilities.manyAuthProviders && appconfig.auth.slack && appconfig.auth.slack.enabled) {
|
||
8 years ago
|
const SlackStrategy = require('passport-slack').Strategy
|
||
8 years ago
|
passport.use('slack',
|
||
|
new SlackStrategy({
|
||
|
clientID: appconfig.auth.slack.clientId,
|
||
|
clientSecret: appconfig.auth.slack.clientSecret,
|
||
|
callbackURL: appconfig.host + '/login/slack/callback'
|
||
|
},
|
||
|
(accessToken, refreshToken, profile, cb) => {
|
||
|
db.User.processProfile(profile).then((user) => {
|
||
|
return cb(null, user) || true
|
||
|
}).catch((err) => {
|
||
|
return cb(err, null) || true
|
||
|
})
|
||
|
}
|
||
|
))
|
||
|
}
|
||
|
|
||
|
// LDAP
|
||
|
|
||
|
if (appdata.capabilities.manyAuthProviders && appconfig.auth.ldap && appconfig.auth.ldap.enabled) {
|
||
8 years ago
|
const LdapStrategy = require('passport-ldapauth').Strategy
|
||
8 years ago
|
passport.use('ldapauth',
|
||
|
new LdapStrategy({
|
||
|
server: {
|
||
|
url: appconfig.auth.ldap.url,
|
||
|
bindDn: appconfig.auth.ldap.bindDn,
|
||
|
bindCredentials: appconfig.auth.ldap.bindCredentials,
|
||
|
searchBase: appconfig.auth.ldap.searchBase,
|
||
|
searchFilter: appconfig.auth.ldap.searchFilter,
|
||
|
searchAttributes: ['displayName', 'name', 'cn', 'mail'],
|
||
|
tlsOptions: (appconfig.auth.ldap.tlsEnabled) ? {
|
||
|
ca: [
|
||
|
fs.readFileSync(appconfig.auth.ldap.tlsCertPath)
|
||
|
]
|
||
|
} : {}
|
||
|
},
|
||
|
usernameField: 'email',
|
||
|
passReqToCallback: false
|
||
|
},
|
||
|
(profile, cb) => {
|
||
|
profile.provider = 'ldap'
|
||
|
profile.id = profile.dn
|
||
|
db.User.processProfile(profile).then((user) => {
|
||
|
return cb(null, user) || true
|
||
|
}).catch((err) => {
|
||
|
return cb(err, null) || true
|
||
|
})
|
||
|
}
|
||
|
))
|
||
|
}
|
||
|
|
||
8 years ago
|
// AZURE AD
|
||
|
|
||
|
if (appdata.capabilities.manyAuthProviders && appconfig.auth.azure && appconfig.auth.azure.enabled) {
|
||
|
const AzureAdOAuth2Strategy = require('passport-azure-ad-oauth2').Strategy
|
||
|
const jwt = require('jsonwebtoken')
|
||
|
passport.use('azure_ad_oauth2',
|
||
|
new AzureAdOAuth2Strategy({
|
||
|
clientID: appconfig.auth.azure.clientId,
|
||
|
clientSecret: appconfig.auth.azure.clientSecret,
|
||
|
callbackURL: appconfig.host + '/login/azure/callback',
|
||
|
resource: appconfig.auth.azure.resource,
|
||
|
tenant: appconfig.auth.azure.tenant
|
||
|
},
|
||
|
(accessToken, refreshToken, params, profile, cb) => {
|
||
|
let waadProfile = jwt.decode(params.id_token)
|
||
|
waadProfile.id = waadProfile.oid
|
||
|
waadProfile.provider = 'azure'
|
||
|
db.User.processProfile(waadProfile).then((user) => {
|
||
|
return cb(null, user) || true
|
||
|
}).catch((err) => {
|
||
|
return cb(err, null) || true
|
||
|
})
|
||
|
}
|
||
|
))
|
||
|
}
|
||
|
|
||
8 years ago
|
// Create users for first-time
|
||
|
|
||
|
db.onReady.then(() => {
|
||
|
db.User.findOne({ provider: 'local', email: 'guest' }).then((c) => {
|
||
|
if (c < 1) {
|
||
8 years ago
|
// Create guest account
|
||
|
|
||
|
return db.User.create({
|
||
|
provider: 'local',
|
||
|
email: 'guest',
|
||
|
name: 'Guest',
|
||
|
password: '',
|
||
|
rights: [{
|
||
|
role: 'read',
|
||
|
path: '/',
|
||
|
exact: false,
|
||
|
deny: !appconfig.public
|
||
|
}]
|
||
8 years ago
|
}).then(() => {
|
||
8 years ago
|
winston.info('[AUTH] Guest account created successfully!')
|
||
8 years ago
|
}).catch((err) => {
|
||
8 years ago
|
winston.error('[AUTH] An error occured while creating guest account:')
|
||
8 years ago
|
winston.error(err)
|
||
|
})
|
||
|
}
|
||
|
})
|
||
|
|
||
|
return true
|
||
|
})
|
||
|
}
|