mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
710652ef24
* feat: project role remove * feat: search queries * feat: search queries * feat: cascade remove/change project role * fix: comment in project grant * fix: remove projecr grant * fix: only search usergrants of my org * fix: delete usergrants * fix: delete usergrants * fix: check if role exists on project grant * feat: bulk add project role * fix: tests * fix: update user grants on project update * fix: return roles * feat: add resourceowner name on project grants * fix: migration number * fix: tests * fix: generate protos * fix: some unnecessary code
182 lines
5.6 KiB
Go
182 lines
5.6 KiB
Go
package grpc
|
|
|
|
import (
|
|
"github.com/caos/logging"
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
grant_model "github.com/caos/zitadel/internal/usergrant/model"
|
|
"github.com/golang/protobuf/ptypes"
|
|
)
|
|
|
|
func usergrantFromModel(grant *grant_model.UserGrant) *UserGrant {
|
|
creationDate, err := ptypes.TimestampProto(grant.CreationDate)
|
|
logging.Log("GRPC-ki9ds").OnError(err).Debug("unable to parse timestamp")
|
|
|
|
changeDate, err := ptypes.TimestampProto(grant.ChangeDate)
|
|
logging.Log("GRPC-sl9ew").OnError(err).Debug("unable to parse timestamp")
|
|
|
|
return &UserGrant{
|
|
Id: grant.AggregateID,
|
|
UserId: grant.UserID,
|
|
State: usergrantStateFromModel(grant.State),
|
|
CreationDate: creationDate,
|
|
ChangeDate: changeDate,
|
|
Sequence: grant.Sequence,
|
|
ProjectId: grant.ProjectID,
|
|
RoleKeys: grant.RoleKeys,
|
|
}
|
|
}
|
|
|
|
func userGrantCreateBulkToModel(u *UserGrantCreateBulk) []*grant_model.UserGrant {
|
|
grants := make([]*grant_model.UserGrant, len(u.UserGrants))
|
|
for i, grant := range u.UserGrants {
|
|
grants[i] = userGrantCreateToModel(grant)
|
|
}
|
|
return grants
|
|
}
|
|
|
|
func userGrantCreateToModel(u *UserGrantCreate) *grant_model.UserGrant {
|
|
return &grant_model.UserGrant{
|
|
ObjectRoot: models.ObjectRoot{AggregateID: u.UserId},
|
|
UserID: u.UserId,
|
|
ProjectID: u.ProjectId,
|
|
RoleKeys: u.RoleKeys,
|
|
}
|
|
}
|
|
|
|
func userGrantUpdateBulkToModel(u *UserGrantUpdateBulk) []*grant_model.UserGrant {
|
|
grants := make([]*grant_model.UserGrant, len(u.UserGrants))
|
|
for i, grant := range u.UserGrants {
|
|
grants[i] = userGrantUpdateToModel(grant)
|
|
}
|
|
return grants
|
|
}
|
|
|
|
func userGrantUpdateToModel(u *UserGrantUpdate) *grant_model.UserGrant {
|
|
return &grant_model.UserGrant{
|
|
ObjectRoot: models.ObjectRoot{AggregateID: u.Id},
|
|
RoleKeys: u.RoleKeys,
|
|
}
|
|
}
|
|
|
|
func userGrantRemoveBulkToModel(u *UserGrantRemoveBulk) []string {
|
|
ids := make([]string, len(u.Ids))
|
|
for i, id := range u.Ids {
|
|
ids[i] = id
|
|
}
|
|
return ids
|
|
}
|
|
|
|
func projectUserGrantUpdateToModel(u *ProjectUserGrantUpdate) *grant_model.UserGrant {
|
|
return &grant_model.UserGrant{
|
|
ObjectRoot: models.ObjectRoot{AggregateID: u.Id},
|
|
RoleKeys: u.RoleKeys,
|
|
}
|
|
}
|
|
|
|
func projectGrantUserGrantCreateToModel(u *ProjectGrantUserGrantCreate) *grant_model.UserGrant {
|
|
return &grant_model.UserGrant{
|
|
UserID: u.UserId,
|
|
ProjectID: u.ProjectId,
|
|
RoleKeys: u.RoleKeys,
|
|
}
|
|
}
|
|
|
|
func projectGrantUserGrantUpdateToModel(u *ProjectGrantUserGrantUpdate) *grant_model.UserGrant {
|
|
return &grant_model.UserGrant{
|
|
ObjectRoot: models.ObjectRoot{AggregateID: u.Id},
|
|
RoleKeys: u.RoleKeys,
|
|
}
|
|
}
|
|
|
|
func userGrantSearchRequestsToModel(project *UserGrantSearchRequest) *grant_model.UserGrantSearchRequest {
|
|
return &grant_model.UserGrantSearchRequest{
|
|
Offset: project.Offset,
|
|
Limit: project.Limit,
|
|
Queries: userGrantSearchQueriesToModel(project.Queries),
|
|
}
|
|
}
|
|
|
|
func userGrantSearchQueriesToModel(queries []*UserGrantSearchQuery) []*grant_model.UserGrantSearchQuery {
|
|
converted := make([]*grant_model.UserGrantSearchQuery, len(queries))
|
|
for i, q := range queries {
|
|
converted[i] = userGrantSearchQueryToModel(q)
|
|
}
|
|
return converted
|
|
}
|
|
|
|
func userGrantSearchQueryToModel(query *UserGrantSearchQuery) *grant_model.UserGrantSearchQuery {
|
|
return &grant_model.UserGrantSearchQuery{
|
|
Key: userGrantSearchKeyToModel(query.Key),
|
|
Method: searchMethodToModel(query.Method),
|
|
Value: query.Value,
|
|
}
|
|
}
|
|
|
|
func userGrantSearchKeyToModel(key UserGrantSearchKey) grant_model.UserGrantSearchKey {
|
|
switch key {
|
|
case UserGrantSearchKey_USERGRANTSEARCHKEY_ORG_ID:
|
|
return grant_model.USERGRANTSEARCHKEY_RESOURCEOWNER
|
|
case UserGrantSearchKey_USERGRANTSEARCHKEY_PROJECT_ID:
|
|
return grant_model.USERGRANTSEARCHKEY_PROJECT_ID
|
|
case UserGrantSearchKey_USERGRANTSEARCHKEY_USER_ID:
|
|
return grant_model.USERGRANTSEARCHKEY_USER_ID
|
|
case UserGrantSearchKey_USERGRANTSEARCHKEY_ROLE_KEY:
|
|
return grant_model.USERGRANTSEARCHKEY_ROLE_KEY
|
|
default:
|
|
return grant_model.USERGRANTSEARCHKEY_UNSPECIFIED
|
|
}
|
|
}
|
|
|
|
func userGrantSearchResponseFromModel(response *grant_model.UserGrantSearchResponse) *UserGrantSearchResponse {
|
|
return &UserGrantSearchResponse{
|
|
Offset: response.Offset,
|
|
Limit: response.Limit,
|
|
TotalResult: response.TotalResult,
|
|
Result: userGrantViewsFromModel(response.Result),
|
|
}
|
|
}
|
|
|
|
func userGrantViewsFromModel(users []*grant_model.UserGrantView) []*UserGrantView {
|
|
converted := make([]*UserGrantView, len(users))
|
|
for i, user := range users {
|
|
converted[i] = userGrantViewFromModel(user)
|
|
}
|
|
return converted
|
|
}
|
|
|
|
func userGrantViewFromModel(grant *grant_model.UserGrantView) *UserGrantView {
|
|
creationDate, err := ptypes.TimestampProto(grant.CreationDate)
|
|
logging.Log("GRPC-dl9we").OnError(err).Debug("unable to parse timestamp")
|
|
|
|
changeDate, err := ptypes.TimestampProto(grant.ChangeDate)
|
|
logging.Log("GRPC-lpsg5").OnError(err).Debug("unable to parse timestamp")
|
|
|
|
return &UserGrantView{
|
|
Id: grant.ID,
|
|
State: usergrantStateFromModel(grant.State),
|
|
CreationDate: creationDate,
|
|
ChangeDate: changeDate,
|
|
Sequence: grant.Sequence,
|
|
ResourceOwner: grant.ResourceOwner,
|
|
UserName: grant.UserName,
|
|
FirstName: grant.FirstName,
|
|
LastName: grant.LastName,
|
|
Email: grant.Email,
|
|
ProjectName: grant.ProjectName,
|
|
OrgName: grant.OrgName,
|
|
OrgDomain: grant.OrgDomain,
|
|
RoleKeys: grant.RoleKeys,
|
|
}
|
|
}
|
|
|
|
func usergrantStateFromModel(state grant_model.UserGrantState) UserGrantState {
|
|
switch state {
|
|
case grant_model.USERGRANTSTATE_ACTIVE:
|
|
return UserGrantState_USERGRANTSTATE_ACTIVE
|
|
case grant_model.USERGRANTSTATE_INACTIVE:
|
|
return UserGrantState_USERGRANTSTATE_INACTIVE
|
|
default:
|
|
return UserGrantState_USERGRANTSTATE_UNSPECIFIED
|
|
}
|
|
}
|