mirror of
https://github.com/zitadel/zitadel
synced 2024-11-23 19:19:19 +00:00
2bd255106a
* fix: org tests * fix: org tests * fix: user grant test * fix: user grant test * fix: project and project role test * fix: project grant test * fix: project grant test * fix: project member, grant member, app changed tests * fix: application tests * fix: application tests * fix: add oidc app test * fix: add oidc app test * fix: add api keys test * fix: iam policies * fix: iam and org member tests * fix: clock skew validation * revert crypto changes * fix: tests * fix project grant member commands Co-authored-by: Livio Amstutz <livio.a@gmail.com>
50 lines
978 B
Go
50 lines
978 B
Go
package domain
|
|
|
|
import es_models "github.com/caos/zitadel/internal/eventstore/v1/models"
|
|
|
|
type ProjectGrant struct {
|
|
es_models.ObjectRoot
|
|
|
|
GrantID string
|
|
GrantedOrgID string
|
|
State ProjectGrantState
|
|
RoleKeys []string
|
|
}
|
|
|
|
type ProjectGrantIDs struct {
|
|
ProjectID string
|
|
GrantID string
|
|
}
|
|
|
|
type ProjectGrantState int32
|
|
|
|
const (
|
|
ProjectGrantStateUnspecified ProjectGrantState = iota
|
|
ProjectGrantStateActive
|
|
ProjectGrantStateInactive
|
|
ProjectGrantStateRemoved
|
|
)
|
|
|
|
func (p *ProjectGrant) IsValid() bool {
|
|
return p.GrantedOrgID != ""
|
|
}
|
|
|
|
func (g *ProjectGrant) HasInvalidRoles(validRoles []string) bool {
|
|
for _, roleKey := range g.RoleKeys {
|
|
if !containsRoleKey(roleKey, validRoles) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func GetRemovedRoles(existingRoles, newRoles []string) []string {
|
|
removed := make([]string, 0)
|
|
for _, role := range existingRoles {
|
|
if !containsRoleKey(role, newRoles) {
|
|
removed = append(removed, role)
|
|
}
|
|
}
|
|
return removed
|
|
}
|