Skip to content
Snippets Groups Projects
Commit c987b4f2 authored by Xiao Gui's avatar Xiao Gui
Browse files

chore: improve logging output

parent c1a67f98
No related branches found
No related tags found
No related merge requests found
...@@ -17,23 +17,27 @@ const cb = (tokenset, {sub, given_name, family_name, ...rest}, done) => { ...@@ -17,23 +17,27 @@ const cb = (tokenset, {sub, given_name, family_name, ...rest}, done) => {
} }
module.exports = async (app) => { module.exports = async (app) => {
const { oidcStrategy } = await configureAuth({ try {
clientId, const { oidcStrategy } = await configureAuth({
clientSecret, clientId,
discoveryUrl, clientSecret,
redirectUri, discoveryUrl,
cb, redirectUri,
scope: 'openid offline_access', cb,
clientConfig: { scope: 'openid offline_access',
redirect_uris: [ redirectUri ], clientConfig: {
response_types: [ 'code' ] redirect_uris: [ redirectUri ],
} response_types: [ 'code' ]
}) }
})
passport.use('hbp-oidc', oidcStrategy)
app.get('/hbp-oidc/auth', passport.authenticate('hbp-oidc')) passport.use('hbp-oidc', oidcStrategy)
app.get('/hbp-oidc/cb', passport.authenticate('hbp-oidc', { app.get('/hbp-oidc/auth', passport.authenticate('hbp-oidc'))
successRedirect: '/', app.get('/hbp-oidc/cb', passport.authenticate('hbp-oidc', {
failureRedirect: '/' successRedirect: '/',
})) failureRedirect: '/'
}))
} catch (e) {
console.error(e)
}
} }
...@@ -20,9 +20,7 @@ class Logger { ...@@ -20,9 +20,7 @@ class Logger {
username, username,
password password
} = this } = this
const auth = username !== '' ? `${username}:${password}@` : '' const auth = username !== '' ? `${username}:${password}@` : ''
const url = `${protocol}://${auth}${host}:${port}/${name}.${qs.escape(logLevel)}` const url = `${protocol}://${auth}${host}:${port}/${name}.${qs.escape(logLevel)}`
const formData = { const formData = {
......
...@@ -37,28 +37,22 @@ if (process.env.FLUENT_HOST) { ...@@ -37,28 +37,22 @@ if (process.env.FLUENT_HOST) {
} }
} }
const emitInfo = message => log.emit('info', { const emitInfo = message => log.emit('info', { message }, handleRequestCallback)
message
}, handleRequestCallback)
const emitWarn = message => log.emit('warn', { const emitWarn = message => log.emit('warn', { message }, handleRequestCallback)
message
}, handleRequestCallback)
const emitError = message => log.emit('error', { const emitError = message => log.emit('error', { message }, handleRequestCallback)
message
}, handleRequestCallback)
console.log('starting fluentd logging') console.log('starting fluentd logging')
console.log = function () { console.log = function () {
emitInfo(arguments) emitInfo([...arguments])
} }
console.warn = function () { console.warn = function () {
emitWarn(arguments) emitWarn([...arguments])
} }
console.emitError = function () { console.emitError = function () {
emitError(arguments) emitError([...arguments])
} }
} }
......
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