mirror of
https://github.com/netbirdio/netbird.git
synced 2025-01-09 15:38:26 +01:00
[management] Preserve jwt groups when accessing API with PAT (#3128)
* Skip JWT group sync for token-based authentication Signed-off-by: bcmmbaga <bethuelmbaga12@gmail.com> * Add tests Signed-off-by: bcmmbaga <bethuelmbaga12@gmail.com> --------- Signed-off-by: bcmmbaga <bethuelmbaga12@gmail.com>
This commit is contained in:
parent
abbdf20f65
commit
2bdb4cb44a
@ -1252,6 +1252,12 @@ func (am *DefaultAccountManager) GetAccountIDFromToken(ctx context.Context, clai
|
|||||||
// syncJWTGroups processes the JWT groups for a user, updates the account based on the groups,
|
// syncJWTGroups processes the JWT groups for a user, updates the account based on the groups,
|
||||||
// and propagates changes to peers if group propagation is enabled.
|
// and propagates changes to peers if group propagation is enabled.
|
||||||
func (am *DefaultAccountManager) syncJWTGroups(ctx context.Context, accountID string, claims jwtclaims.AuthorizationClaims) error {
|
func (am *DefaultAccountManager) syncJWTGroups(ctx context.Context, accountID string, claims jwtclaims.AuthorizationClaims) error {
|
||||||
|
if claim, exists := claims.Raw[jwtclaims.IsToken]; exists {
|
||||||
|
if isToken, ok := claim.(bool); ok && isToken {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
settings, err := am.Store.GetAccountSettings(ctx, store.LockingStrengthShare, accountID)
|
settings, err := am.Store.GetAccountSettings(ctx, store.LockingStrengthShare, accountID)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
|
@ -2729,6 +2729,19 @@ func TestAccount_SetJWTGroups(t *testing.T) {
|
|||||||
|
|
||||||
assert.NoError(t, manager.Store.SaveAccount(context.Background(), account), "unable to save account")
|
assert.NoError(t, manager.Store.SaveAccount(context.Background(), account), "unable to save account")
|
||||||
|
|
||||||
|
t.Run("skip sync for token auth type", func(t *testing.T) {
|
||||||
|
claims := jwtclaims.AuthorizationClaims{
|
||||||
|
UserId: "user1",
|
||||||
|
Raw: jwt.MapClaims{"groups": []interface{}{"group3"}, "is_token": true},
|
||||||
|
}
|
||||||
|
err = manager.syncJWTGroups(context.Background(), "accountID", claims)
|
||||||
|
assert.NoError(t, err, "unable to sync jwt groups")
|
||||||
|
|
||||||
|
user, err := manager.Store.GetUserByUserID(context.Background(), store.LockingStrengthShare, "user1")
|
||||||
|
assert.NoError(t, err, "unable to get user")
|
||||||
|
assert.Len(t, user.AutoGroups, 0, "JWT groups should not be synced")
|
||||||
|
})
|
||||||
|
|
||||||
t.Run("empty jwt groups", func(t *testing.T) {
|
t.Run("empty jwt groups", func(t *testing.T) {
|
||||||
claims := jwtclaims.AuthorizationClaims{
|
claims := jwtclaims.AuthorizationClaims{
|
||||||
UserId: "user1",
|
UserId: "user1",
|
||||||
@ -2822,7 +2835,7 @@ func TestAccount_SetJWTGroups(t *testing.T) {
|
|||||||
assert.Len(t, user.AutoGroups, 1, "new group should be added")
|
assert.Len(t, user.AutoGroups, 1, "new group should be added")
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("remove all JWT groups", func(t *testing.T) {
|
t.Run("remove all JWT groups when list is empty", func(t *testing.T) {
|
||||||
claims := jwtclaims.AuthorizationClaims{
|
claims := jwtclaims.AuthorizationClaims{
|
||||||
UserId: "user1",
|
UserId: "user1",
|
||||||
Raw: jwt.MapClaims{"groups": []interface{}{}},
|
Raw: jwt.MapClaims{"groups": []interface{}{}},
|
||||||
@ -2833,7 +2846,20 @@ func TestAccount_SetJWTGroups(t *testing.T) {
|
|||||||
user, err := manager.Store.GetUserByUserID(context.Background(), store.LockingStrengthShare, "user1")
|
user, err := manager.Store.GetUserByUserID(context.Background(), store.LockingStrengthShare, "user1")
|
||||||
assert.NoError(t, err, "unable to get user")
|
assert.NoError(t, err, "unable to get user")
|
||||||
assert.Len(t, user.AutoGroups, 1, "only non-JWT groups should remain")
|
assert.Len(t, user.AutoGroups, 1, "only non-JWT groups should remain")
|
||||||
assert.Contains(t, user.AutoGroups, "group1", " group1 should still be present")
|
assert.Contains(t, user.AutoGroups, "group1", "group1 should still be present")
|
||||||
|
})
|
||||||
|
|
||||||
|
t.Run("remove all JWT groups when claim does not exist", func(t *testing.T) {
|
||||||
|
claims := jwtclaims.AuthorizationClaims{
|
||||||
|
UserId: "user2",
|
||||||
|
Raw: jwt.MapClaims{},
|
||||||
|
}
|
||||||
|
err = manager.syncJWTGroups(context.Background(), "accountID", claims)
|
||||||
|
assert.NoError(t, err, "unable to sync jwt groups")
|
||||||
|
|
||||||
|
user, err := manager.Store.GetUserByUserID(context.Background(), store.LockingStrengthShare, "user2")
|
||||||
|
assert.NoError(t, err, "unable to get user")
|
||||||
|
assert.Len(t, user.AutoGroups, 0, "all JWT groups should be removed")
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -175,6 +175,7 @@ func (m *AuthMiddleware) checkPATFromRequest(w http.ResponseWriter, r *http.Requ
|
|||||||
claimMaps[m.audience+jwtclaims.AccountIDSuffix] = account.Id
|
claimMaps[m.audience+jwtclaims.AccountIDSuffix] = account.Id
|
||||||
claimMaps[m.audience+jwtclaims.DomainIDSuffix] = account.Domain
|
claimMaps[m.audience+jwtclaims.DomainIDSuffix] = account.Domain
|
||||||
claimMaps[m.audience+jwtclaims.DomainCategorySuffix] = account.DomainCategory
|
claimMaps[m.audience+jwtclaims.DomainCategorySuffix] = account.DomainCategory
|
||||||
|
claimMaps[jwtclaims.IsToken] = true
|
||||||
jwtToken := jwt.NewWithClaims(jwt.SigningMethodHS256, claimMaps)
|
jwtToken := jwt.NewWithClaims(jwt.SigningMethodHS256, claimMaps)
|
||||||
newRequest := r.WithContext(context.WithValue(r.Context(), jwtclaims.TokenUserProperty, jwtToken)) //nolint
|
newRequest := r.WithContext(context.WithValue(r.Context(), jwtclaims.TokenUserProperty, jwtToken)) //nolint
|
||||||
// Update the current request with the new context information.
|
// Update the current request with the new context information.
|
||||||
|
@ -22,6 +22,8 @@ const (
|
|||||||
LastLoginSuffix = "nb_last_login"
|
LastLoginSuffix = "nb_last_login"
|
||||||
// Invited claim indicates that an incoming JWT is from a user that just accepted an invitation
|
// Invited claim indicates that an incoming JWT is from a user that just accepted an invitation
|
||||||
Invited = "nb_invited"
|
Invited = "nb_invited"
|
||||||
|
// IsToken claim indicates that auth type from the user is a token
|
||||||
|
IsToken = "is_token"
|
||||||
)
|
)
|
||||||
|
|
||||||
// ExtractClaims Extract function type
|
// ExtractClaims Extract function type
|
||||||
|
Loading…
Reference in New Issue
Block a user