mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
08bfec6652
* fix: handle ListMyProjectOrgsRequestToModel queries * fix: sort orgs for admin org list by org name * fix: features converters * fix: remove last role from user grant * fix: ensure limit * fix: ensure limit Co-authored-by: Livio Amstutz <livio.a@gmail.com>
69 lines
1.4 KiB
Go
69 lines
1.4 KiB
Go
package model
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/domain"
|
|
caos_errors "github.com/caos/zitadel/internal/errors"
|
|
|
|
"time"
|
|
)
|
|
|
|
type IAMMemberView struct {
|
|
UserID string
|
|
IAMID string
|
|
UserName string
|
|
Email string
|
|
FirstName string
|
|
LastName string
|
|
DisplayName string
|
|
PreferredLoginName string
|
|
Roles []string
|
|
CreationDate time.Time
|
|
ChangeDate time.Time
|
|
Sequence uint64
|
|
}
|
|
|
|
type IAMMemberSearchRequest struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
SortingColumn IAMMemberSearchKey
|
|
Asc bool
|
|
Queries []*IAMMemberSearchQuery
|
|
}
|
|
|
|
type IAMMemberSearchKey int32
|
|
|
|
const (
|
|
IAMMemberSearchKeyUnspecified IAMMemberSearchKey = iota
|
|
IAMMemberSearchKeyUserName
|
|
IAMMemberSearchKeyEmail
|
|
IAMMemberSearchKeyFirstName
|
|
IAMMemberSearchKeyLastName
|
|
IAMMemberSearchKeyIamID
|
|
IAMMemberSearchKeyUserID
|
|
)
|
|
|
|
type IAMMemberSearchQuery struct {
|
|
Key IAMMemberSearchKey
|
|
Method domain.SearchMethod
|
|
Value interface{}
|
|
}
|
|
|
|
type IAMMemberSearchResponse struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
TotalResult uint64
|
|
Result []*IAMMemberView
|
|
Sequence uint64
|
|
Timestamp time.Time
|
|
}
|
|
|
|
func (r *IAMMemberSearchRequest) EnsureLimit(limit uint64) error {
|
|
if r.Limit > limit {
|
|
return caos_errors.ThrowInvalidArgument(nil, "SEARCH-vn8ds", "Errors.Limit.ExceedsDefault")
|
|
}
|
|
if r.Limit == 0 {
|
|
r.Limit = limit
|
|
}
|
|
return nil
|
|
}
|