fix: failed auth strategy prevent local auth from initializing
This commit is contained in:
parent
7cb6de0d72
commit
2013ee4fa2
@ -77,21 +77,25 @@ module.exports = {
|
|||||||
for (let idx in enabledStrategies) {
|
for (let idx in enabledStrategies) {
|
||||||
const stg = enabledStrategies[idx]
|
const stg = enabledStrategies[idx]
|
||||||
if (!stg.isEnabled) { continue }
|
if (!stg.isEnabled) { continue }
|
||||||
|
try {
|
||||||
|
const strategy = require(`../modules/authentication/${stg.key}/authentication.js`)
|
||||||
|
|
||||||
const strategy = require(`../modules/authentication/${stg.key}/authentication.js`)
|
stg.config.callbackURL = `${WIKI.config.host}/login/${stg.key}/callback`
|
||||||
|
strategy.init(passport, stg.config)
|
||||||
|
strategy.config = stg.config
|
||||||
|
|
||||||
stg.config.callbackURL = `${WIKI.config.host}/login/${stg.key}/callback`
|
WIKI.auth.strategies[stg.key] = {
|
||||||
strategy.init(passport, stg.config)
|
...strategy,
|
||||||
strategy.config = stg.config
|
...stg
|
||||||
|
}
|
||||||
WIKI.auth.strategies[stg.key] = {
|
WIKI.logger.info(`Authentication Strategy ${stg.key}: [ OK ]`)
|
||||||
...strategy,
|
} catch (err) {
|
||||||
...stg
|
WIKI.logger.error(`Authentication Strategy ${stg.key}: [ FAILED ]`)
|
||||||
|
WIKI.logger.error(err)
|
||||||
}
|
}
|
||||||
WIKI.logger.info(`Authentication Strategy ${stg.key}: [ OK ]`)
|
|
||||||
}
|
}
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
WIKI.logger.error(`Authentication Strategy: [ FAILED ]`)
|
WIKI.logger.error(`Failed to initialize Authentication Strategies: [ ERROR ]`)
|
||||||
WIKI.logger.error(err)
|
WIKI.logger.error(err)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user