Implements the model-B2 membership authority (ratified compliance auth design) and inbound token verification.
- GET /v1/users/{id}/memberships: Keycloak supplies user->tenant links + org_roles (attribute projection until the realm migrates to Organizations); registered tenants override status/plan/products from registry tables (source: registry|keycloak). Closes the M5.2-deferred org_roles stub.
- New internal/authn: OIDC discovery + JWKS verification (go-oidc/v3), audience tenant-registry. /healthz + /readyz stay PUBLIC_EXPLICIT; all other routes INTERNAL_SERVICE_ONLY. AUTH_ENABLED=true refuses to start on incomplete config (fail-closed); false (dev default) keeps current behavior.
- Full suite green incl. postgres testcontainers; openapi.yaml updated (contract test passes).
Activation is a separate step (Auth-5): requires the orca-infra env merge and a portal service token (portal currently calls with no auth).
🤖 Generated with [Claude Code](https://claude.com/claude-code)
---------
Co-authored-by: Sharang Parnerkar <30073382+mighty840@users.noreply.github.com>
Reviewed-on: #14
75 lines
2.2 KiB
Go
75 lines
2.2 KiB
Go
package keycloak
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
// userRepresentation is the slice of the Admin API's UserRepresentation we
|
|
// need. Attributes arrive as map[name][]values; the KC admin console writes
|
|
// multivalued attributes either as separate list entries or as one entry
|
|
// joined with "##", so both shapes must be accepted.
|
|
type userRepresentation struct {
|
|
ID string `json:"id"`
|
|
Username string `json:"username"`
|
|
Enabled bool `json:"enabled"`
|
|
Attributes map[string][]string `json:"attributes"`
|
|
}
|
|
|
|
// Memberships implements Adapter against GET /admin/realms/{realm}/users/{id}.
|
|
func (a *HTTPAdapter) Memberships(ctx context.Context, userID string) ([]Claims, error) {
|
|
var u userRepresentation
|
|
resp, err := a.adminCall(ctx, http.MethodGet, "/users/"+userID, nil, &u)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if resp.StatusCode == http.StatusNotFound {
|
|
_ = resp.Body.Close()
|
|
return nil, ErrUserNotFound
|
|
}
|
|
if resp.StatusCode/100 != 2 {
|
|
_ = resp.Body.Close()
|
|
return nil, fmt.Errorf("keycloak get user: %d", resp.StatusCode)
|
|
}
|
|
return claimsFromAttributes(u.Attributes), nil
|
|
}
|
|
|
|
// claimsFromAttributes builds the membership list from a user's attribute
|
|
// projection. A user with no tenant_id and no tenant_slug attribute simply
|
|
// has no memberships — that is a valid state, not an error.
|
|
func claimsFromAttributes(attrs map[string][]string) []Claims {
|
|
c := Claims{
|
|
TenantID: attrValue(attrs, "tenant_id"),
|
|
TenantSlug: attrValue(attrs, "tenant_slug"),
|
|
OrgRoles: attrValues(attrs, "org_roles"),
|
|
Products: attrValues(attrs, "products"),
|
|
Plan: attrValue(attrs, "plan"),
|
|
TenantStatus: attrValue(attrs, "tenant_status"),
|
|
}
|
|
if c.TenantID == "" && c.TenantSlug == "" {
|
|
return []Claims{}
|
|
}
|
|
return []Claims{c}
|
|
}
|
|
|
|
func attrValue(attrs map[string][]string, key string) string {
|
|
if vs := attrValues(attrs, key); len(vs) > 0 {
|
|
return vs[0]
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func attrValues(attrs map[string][]string, key string) []string {
|
|
out := []string{}
|
|
for _, entry := range attrs[key] {
|
|
for _, v := range strings.Split(entry, "##") {
|
|
if v = strings.TrimSpace(v); v != "" {
|
|
out = append(out, v)
|
|
}
|
|
}
|
|
}
|
|
return out
|
|
}
|