mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 05:47:32 +00:00
25b97b1bcc
* fix: get my project orgs * fix: get project orgs
90 lines
2.3 KiB
Go
90 lines
2.3 KiB
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/api"
|
|
grpc_util "github.com/caos/zitadel/internal/api/grpc"
|
|
"google.golang.org/grpc/metadata"
|
|
"strconv"
|
|
)
|
|
|
|
type key int
|
|
|
|
const (
|
|
permissionsKey key = 1
|
|
dataKey key = 2
|
|
)
|
|
|
|
type CtxData struct {
|
|
UserID string
|
|
OrgID string
|
|
ProjectID string
|
|
AgentID string
|
|
}
|
|
|
|
func (ctxData CtxData) IsZero() bool {
|
|
return ctxData.UserID == "" || ctxData.OrgID == ""
|
|
}
|
|
|
|
type Grants []*Grant
|
|
|
|
type Grant struct {
|
|
OrgID string
|
|
Roles []string
|
|
}
|
|
|
|
type TokenVerifier interface {
|
|
VerifyAccessToken(ctx context.Context, token string) (string, string, string, error)
|
|
ResolveGrant(ctx context.Context) (*Grant, error)
|
|
GetProjectIDByClientID(ctx context.Context, clientID string) (string, error)
|
|
}
|
|
|
|
func VerifyTokenAndWriteCtxData(ctx context.Context, token, orgID string, t TokenVerifier) (_ context.Context, err error) {
|
|
var userID, projectID, clientID, agentID string
|
|
//TODO: Remove as soon an authentification is implemented
|
|
if CheckInternal(ctx) {
|
|
userID = grpc_util.GetHeader(ctx, api.ZitadelUserID)
|
|
clientID = grpc_util.GetHeader(ctx, api.ZitadelClientID)
|
|
projectID, err = t.GetProjectIDByClientID(ctx, clientID)
|
|
agentID = grpc_util.GetHeader(ctx, api.ZitadelAgentID)
|
|
} else {
|
|
userID, clientID, agentID, err = verifyAccessToken(ctx, token, t)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
projectID, err = t.GetProjectIDByClientID(ctx, clientID)
|
|
logging.LogWithFields("AUTH-GfAoV", "clientID", clientID).OnError(err).Warn("could not read projectid by clientid")
|
|
}
|
|
return context.WithValue(ctx, dataKey, CtxData{UserID: userID, OrgID: orgID, ProjectID: projectID, AgentID: agentID}), nil
|
|
}
|
|
|
|
func SetCtxData(ctx context.Context, ctxData CtxData) context.Context {
|
|
return context.WithValue(ctx, dataKey, ctxData)
|
|
}
|
|
|
|
func GetCtxData(ctx context.Context) CtxData {
|
|
ctxData, _ := ctx.Value(dataKey).(CtxData)
|
|
return ctxData
|
|
}
|
|
|
|
func GetPermissionsFromCtx(ctx context.Context) []string {
|
|
ctxPermission, _ := ctx.Value(permissionsKey).([]string)
|
|
return ctxPermission
|
|
}
|
|
|
|
//TODO: Remove as soon an authentification is implemented
|
|
func CheckInternal(ctx context.Context) bool {
|
|
md, ok := metadata.FromIncomingContext(ctx)
|
|
if !ok {
|
|
return false
|
|
}
|
|
v, ok := md[api.LoginKey]
|
|
if !ok {
|
|
return false
|
|
}
|
|
ok, _ = strconv.ParseBool(v[0])
|
|
return ok
|
|
}
|