mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 05:47:32 +00:00
c542cab4f8
* refactor(domain): add user type * fix(projections): start with login names * fix(login_policy): correct handling of user domain claimed event * fix(projections): add members * refactor: simplify member projections * add migration for members * add metadata to member projections * refactor: login name projection * fix: set correct suffixes on login name projections * test(projections): login name reduces * fix: correct cols in reduce member * test(projections): org, iam, project members * member additional cols and conds as opt, add project grant members * fix(migration): members * fix(migration): correct database name * migration version * migs * better naming for member cond and col * split project and project grant members * prepare member columns * feat(queries): membership query * test(queries): membership prepare * fix(queries): multiple projections for latest sequence * fix(api): use query for membership queries in auth and management * feat: org member queries * fix(api): use query for iam member calls * fix(queries): org members * fix(queries): project members * fix(queries): project grant members * fix(query): member queries and user avatar column * member cols * fix(queries): membership stmt * fix user test * fix user test * fix(projections): add user grant projection * fix(user_grant): handle state changes * add state to migration * fix(management): use query for user grant requests * merge eventstore-naming into user-grant-projection * feat(queries): user grants * fix(migrations): version * fix(api): user query for user grants * fix(query): event mappers for usergrant aggregate * fix(projection): correct aggregate for user grants * fix(queries): user grant roles as list contains * cleanup reducers * fix avater_key to avatar_key * tests * cleanup * cleanup * add resourceowner query * fix: user grant project name search query Co-authored-by: Livio Amstutz <livio.a@gmail.com> Co-authored-by: fabi <fabienne.gerschwiler@gmail.com>
105 lines
2.2 KiB
Go
105 lines
2.2 KiB
Go
package model
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/domain"
|
|
caos_errors "github.com/caos/zitadel/internal/errors"
|
|
|
|
"time"
|
|
)
|
|
|
|
type UserGrantView struct {
|
|
ID string
|
|
ResourceOwner string
|
|
UserID string
|
|
ProjectID string
|
|
GrantID string
|
|
UserName string
|
|
FirstName string
|
|
LastName string
|
|
DisplayName string
|
|
Email string
|
|
ProjectName string
|
|
OrgName string
|
|
OrgPrimaryDomain string
|
|
AvatarURL string
|
|
RoleKeys []string
|
|
|
|
CreationDate time.Time
|
|
ChangeDate time.Time
|
|
State UserGrantState
|
|
|
|
Sequence uint64
|
|
}
|
|
|
|
type UserGrantState int32
|
|
|
|
const (
|
|
UserGrantStateActive UserGrantState = iota
|
|
UserGrantStateInactive
|
|
UserGrantStateRemoved
|
|
)
|
|
|
|
type UserGrantSearchRequest struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
SortingColumn UserGrantSearchKey
|
|
Asc bool
|
|
Queries []*UserGrantSearchQuery
|
|
}
|
|
|
|
type UserGrantSearchKey int32
|
|
|
|
const (
|
|
UserGrantSearchKeyUnspecified UserGrantSearchKey = iota
|
|
UserGrantSearchKeyUserID
|
|
UserGrantSearchKeyProjectID
|
|
UserGrantSearchKeyResourceOwner
|
|
UserGrantSearchKeyState
|
|
UserGrantSearchKeyGrantID
|
|
UserGrantSearchKeyOrgName
|
|
UserGrantSearchKeyRoleKey
|
|
UserGrantSearchKeyID
|
|
UserGrantSearchKeyUserName
|
|
UserGrantSearchKeyFirstName
|
|
UserGrantSearchKeyLastName
|
|
UserGrantSearchKeyEmail
|
|
UserGrantSearchKeyOrgDomain
|
|
UserGrantSearchKeyProjectName
|
|
UserGrantSearchKeyDisplayName
|
|
UserGrantSearchKeyWithGranted
|
|
)
|
|
|
|
type UserGrantSearchQuery struct {
|
|
Key UserGrantSearchKey
|
|
Method domain.SearchMethod
|
|
Value interface{}
|
|
}
|
|
|
|
type UserGrantSearchResponse struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
TotalResult uint64
|
|
Result []*UserGrantView
|
|
Sequence uint64
|
|
Timestamp time.Time
|
|
}
|
|
|
|
func (r *UserGrantSearchRequest) EnsureLimit(limit uint64) error {
|
|
if r.Limit > limit {
|
|
return caos_errors.ThrowInvalidArgument(nil, "SEARCH-1N9ds", "Errors.Limit.ExceedsDefault")
|
|
}
|
|
if r.Limit == 0 {
|
|
r.Limit = limit
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (r *UserGrantSearchRequest) GetSearchQuery(key UserGrantSearchKey) (int, *UserGrantSearchQuery) {
|
|
for i, q := range r.Queries {
|
|
if q.Key == key {
|
|
return i, q
|
|
}
|
|
}
|
|
return -1, nil
|
|
}
|