mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Proxy: Fix updating refresh token in OAuth pass-thru (#26885)
* Handle updating refresh token in oauth pass-thru Co-authored-by: Arve Knudsen <arve.knudsen@gmail.com>
This commit is contained in:
parent
9f1165b1f6
commit
900eb8070e
@ -307,7 +307,7 @@ func checkWhiteList(c *models.ReqContext, host string) bool {
|
|||||||
func addOAuthPassThruAuth(c *models.ReqContext, req *http.Request) {
|
func addOAuthPassThruAuth(c *models.ReqContext, req *http.Request) {
|
||||||
authInfoQuery := &models.GetAuthInfoQuery{UserId: c.UserId}
|
authInfoQuery := &models.GetAuthInfoQuery{UserId: c.UserId}
|
||||||
if err := bus.Dispatch(authInfoQuery); err != nil {
|
if err := bus.Dispatch(authInfoQuery); err != nil {
|
||||||
logger.Error("Error fetching oauth information for user", "error", err)
|
logger.Error("Error fetching oauth information for user", "userid", c.UserId, "username", c.Login, "error", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -318,20 +318,21 @@ func addOAuthPassThruAuth(c *models.ReqContext, req *http.Request) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// TokenSource handles refreshing the token if it has expired
|
persistedToken := &oauth2.Token{
|
||||||
token, err := connect.TokenSource(c.Req.Context(), &oauth2.Token{
|
|
||||||
AccessToken: authInfoQuery.Result.OAuthAccessToken,
|
AccessToken: authInfoQuery.Result.OAuthAccessToken,
|
||||||
Expiry: authInfoQuery.Result.OAuthExpiry,
|
Expiry: authInfoQuery.Result.OAuthExpiry,
|
||||||
RefreshToken: authInfoQuery.Result.OAuthRefreshToken,
|
RefreshToken: authInfoQuery.Result.OAuthRefreshToken,
|
||||||
TokenType: authInfoQuery.Result.OAuthTokenType,
|
TokenType: authInfoQuery.Result.OAuthTokenType,
|
||||||
}).Token()
|
}
|
||||||
|
// TokenSource handles refreshing the token if it has expired
|
||||||
|
token, err := connect.TokenSource(c.Req.Context(), persistedToken).Token()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger.Error("Failed to retrieve access token from oauth provider", "provider", authInfoQuery.Result.AuthModule, "error", err)
|
logger.Error("Failed to retrieve access token from OAuth provider", "provider", authInfoQuery.Result.AuthModule, "userid", c.UserId, "username", c.Login, "error", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the tokens are not the same, update the entry in the DB
|
// If the tokens are not the same, update the entry in the DB
|
||||||
if token.AccessToken != authInfoQuery.Result.OAuthAccessToken {
|
if !tokensEq(persistedToken, token) {
|
||||||
updateAuthCommand := &models.UpdateAuthInfoCommand{
|
updateAuthCommand := &models.UpdateAuthInfoCommand{
|
||||||
UserId: authInfoQuery.Result.UserId,
|
UserId: authInfoQuery.Result.UserId,
|
||||||
AuthModule: authInfoQuery.Result.AuthModule,
|
AuthModule: authInfoQuery.Result.AuthModule,
|
||||||
@ -339,10 +340,19 @@ func addOAuthPassThruAuth(c *models.ReqContext, req *http.Request) {
|
|||||||
OAuthToken: token,
|
OAuthToken: token,
|
||||||
}
|
}
|
||||||
if err := bus.Dispatch(updateAuthCommand); err != nil {
|
if err := bus.Dispatch(updateAuthCommand); err != nil {
|
||||||
logger.Error("Failed to update access token during token refresh", "error", err)
|
logger.Error("Failed to update auth info during token refresh", "userid", c.UserId, "username", c.Login, "error", err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
logger.Debug("Updated OAuth info while proxying an OAuth pass-thru request", "userid", c.UserId, "username", c.Login)
|
||||||
}
|
}
|
||||||
req.Header.Del("Authorization")
|
req.Header.Del("Authorization")
|
||||||
req.Header.Add("Authorization", fmt.Sprintf("%s %s", token.Type(), token.AccessToken))
|
req.Header.Add("Authorization", fmt.Sprintf("%s %s", token.Type(), token.AccessToken))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// tokensEq checks for OAuth2 token equivalence given the fields of the struct Grafana is interested in
|
||||||
|
func tokensEq(t1, t2 *oauth2.Token) bool {
|
||||||
|
return t1.AccessToken == t2.AccessToken &&
|
||||||
|
t1.RefreshToken == t2.RefreshToken &&
|
||||||
|
t1.Expiry == t2.Expiry &&
|
||||||
|
t1.TokenType == t2.TokenType
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user