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.
71 lines
2.0 KiB
71 lines
2.0 KiB
const passport = require('passport')
|
|
const fs = require('fs-extra')
|
|
const _ = require('lodash')
|
|
const path = require('path')
|
|
|
|
/* global WIKI */
|
|
|
|
module.exports = {
|
|
strategies: {},
|
|
init() {
|
|
this.passport = passport
|
|
|
|
// Serialization user methods
|
|
|
|
passport.serializeUser(function (user, done) {
|
|
done(null, user.id)
|
|
})
|
|
|
|
passport.deserializeUser(function (id, done) {
|
|
WIKI.db.users.query().findById(id).then((user) => {
|
|
if (user) {
|
|
done(null, user)
|
|
} else {
|
|
done(new Error(WIKI.lang.t('auth:errors:usernotfound')), null)
|
|
}
|
|
return true
|
|
}).catch((err) => {
|
|
done(err, null)
|
|
})
|
|
})
|
|
|
|
return this
|
|
},
|
|
async activateStrategies() {
|
|
try {
|
|
// Unload any active strategies
|
|
WIKI.auth.strategies = {}
|
|
const currentStrategies = _.keys(passport._strategies)
|
|
_.pull(currentStrategies, 'session')
|
|
_.forEach(currentStrategies, stg => { passport.unuse(stg) })
|
|
|
|
// Load enabled strategies
|
|
const enabledStrategies = await WIKI.db.authentication.getStrategies()
|
|
for (let idx in enabledStrategies) {
|
|
const stg = enabledStrategies[idx]
|
|
if (!stg.isEnabled) { continue }
|
|
|
|
const strategy = require(`../modules/authentication/${stg.key}/authentication.js`)
|
|
|
|
stg.config.callbackURL = `${WIKI.config.host}/login/${stg.key}/callback` // TODO: config.host
|
|
strategy.init(passport, stg.config)
|
|
|
|
fs.readFile(path.join(WIKI.ROOTPATH, `assets/svg/auth-icon-${strategy.key}.svg`), 'utf8').then(iconData => {
|
|
strategy.icon = iconData
|
|
}).catch(err => {
|
|
if (err.code === 'ENOENT') {
|
|
strategy.icon = '[missing icon]'
|
|
} else {
|
|
WIKI.logger.warn(err)
|
|
}
|
|
})
|
|
WIKI.auth.strategies[stg.key] = strategy
|
|
WIKI.logger.info(`Authentication Strategy ${stg.title}: [ OK ]`)
|
|
}
|
|
} catch (err) {
|
|
WIKI.logger.error(`Authentication Strategy: [ FAILED ]`)
|
|
WIKI.logger.error(err)
|
|
}
|
|
}
|
|
}
|