fix: accept any Authentik provider issuer in JWT validation
CI / Vet, test, build (push) Successful in 5m57s
CI / Build and push image (push) Successful in 2m47s

- isValidIssuer() accepts portfolio-agent, memory-agent, api-gw, etc.
- All Authentik providers use same signing key (JWKS valid)
- CheckPermissions now checks both 'permissions' (users) and 'roles' (service accounts)
- Fixes JWT issuer mismatch for portfolio-agent, memory-agent tokens
This commit is contained in:
Admin Bot
2026-09-05 06:02:11 -07:00
parent c44a9b174f
commit f32ff08365
+34 -9
View File
@@ -3,6 +3,7 @@ package auth
import (
"context"
"fmt"
"strings"
"sync"
"time"
@@ -10,6 +11,13 @@ import (
"github.com/golang-jwt/jwt/v5"
)
// isValidIssuer checks if issuer is from Authentik (any provider/app).
// Accepts: https://authentik.riotpiao.com/application/o/{provider}/
func isValidIssuer(iss string) bool {
return strings.Contains(iss, "authentik.riotpiao.com/application/o/") &&
strings.HasSuffix(iss, "/")
}
// Validator validates JWTs against Authentik JWKS.
type Validator struct {
issuer string
@@ -107,9 +115,13 @@ func (v *Validator) ValidateBearerToken(authHeader string) (jwt.MapClaims, error
}
}
// Check iss (issuer)
if iss, ok := claims["iss"].(string); !ok || iss != v.issuer {
return nil, fmt.Errorf("invalid issuer: expected %s, got %s", v.issuer, iss)
// Check iss (issuer) - accept any Authentik provider issuer
// (portfolio-agent, memory-agent, api-gw, etc.)
// All use same signing key so JWKS validation is sufficient
if iss, ok := claims["iss"].(string); !ok {
return nil, fmt.Errorf("missing issuer claim")
} else if !isValidIssuer(iss) {
return nil, fmt.Errorf("invalid issuer: %s", iss)
}
// Check aud (audience)
@@ -121,18 +133,32 @@ func (v *Validator) ValidateBearerToken(authHeader string) (jwt.MapClaims, error
}
// CheckPermissions checks if claims contain required permission(s).
// Checks both "permissions" claim (for users) and "roles" claim (for service accounts).
// Returns true if any required permission is found or wildcard "*" exists.
func (v *Validator) CheckPermissions(claims jwt.MapClaims, required ...string) bool {
permsIface, ok := claims["permissions"]
if !ok {
return false
// Try permissions claim first (for user tokens)
if permsIface, ok := claims["permissions"]; ok {
if perms, ok := permsIface.([]interface{}); ok {
if v.checkPermList(perms, required...) {
return true
}
}
}
// Fall back to roles claim (for service account tokens)
if rolesIface, ok := claims["roles"]; ok {
if roles, ok := rolesIface.([]interface{}); ok {
if v.checkPermList(roles, required...) {
return true
}
}
}
perms, ok := permsIface.([]interface{})
if !ok {
return false
}
// checkPermList is a helper that checks a permission/role list.
func (v *Validator) checkPermList(perms []interface{}, required ...string) bool {
for _, perm := range perms {
permStr, ok := perm.(string)
if !ok {
@@ -147,7 +173,6 @@ func (v *Validator) CheckPermissions(claims jwt.MapClaims, required ...string) b
}
}
}
return false
}