Commit 2013ee4f authored by NGPixel's avatar NGPixel

fix: failed auth strategy prevent local auth from initializing

parent 7cb6de0d
...@@ -77,21 +77,25 @@ module.exports = { ...@@ -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)
stg.config.callbackURL = `${WIKI.config.host}/login/${stg.key}/callback` strategy.config = stg.config
strategy.init(passport, stg.config)
strategy.config = stg.config
WIKI.auth.strategies[stg.key] = { WIKI.auth.strategies[stg.key] = {
...strategy, ...strategy,
...stg ...stg
}
WIKI.logger.info(`Authentication Strategy ${stg.key}: [ OK ]`)
} catch (err) {
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)
} }
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment