1
0
Fork 0
mirror of synced 2024-06-01 18:20:18 +12:00

Improve error handling on openid-configuration request

This commit is contained in:
Rory Powell 2021-07-05 17:28:55 +01:00
parent 624dd20522
commit 0745eedbcc

View file

@ -103,23 +103,27 @@ exports.strategyFactory = async function (callbackUrl) {
}
const response = await fetch(configurationUrl)
if (response.ok) {
const body = await response.json()
return new OIDCStrategy(
{
issuer: body.issuer,
authorizationURL: body.authorization_endpoint,
tokenURL: body.token_endpoint,
userInfoURL: body.userinfo_endpoint,
clientID: clientId,
clientSecret: clientSecret,
callbackURL: callbackUrl,
scope: "profile email",
},
authenticate
)
if (!response.ok) {
throw new Error(`Unexpected response when fetching openid-configuration: ${response.statusText}`)
}
const body = await response.json()
return new OIDCStrategy(
{
issuer: body.issuer,
authorizationURL: body.authorization_endpoint,
tokenURL: body.token_endpoint,
userInfoURL: body.userinfo_endpoint,
clientID: clientId,
clientSecret: clientSecret,
callbackURL: callbackUrl,
scope: "profile email",
},
authenticate
)
} catch (err) {
console.error(err)
throw new Error("Error constructing OIDC authentication strategy", err)