2020-06-15 12:50:39 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/caos/zitadel/internal/model"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ProjectGrantView struct {
|
2020-06-19 13:32:03 +00:00
|
|
|
ProjectID string
|
|
|
|
Name string
|
|
|
|
CreationDate time.Time
|
|
|
|
ChangeDate time.Time
|
|
|
|
State ProjectState
|
|
|
|
ResourceOwner string
|
|
|
|
ResourceOwnerName string
|
|
|
|
OrgID string
|
|
|
|
OrgName string
|
|
|
|
OrgDomain string
|
|
|
|
Sequence uint64
|
|
|
|
GrantID string
|
|
|
|
GrantedRoleKeys []string
|
2020-06-15 12:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ProjectGrantViewSearchRequest struct {
|
|
|
|
Offset uint64
|
|
|
|
Limit uint64
|
|
|
|
SortingColumn ProjectGrantViewSearchKey
|
|
|
|
Asc bool
|
|
|
|
Queries []*ProjectGrantViewSearchQuery
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProjectGrantViewSearchKey int32
|
|
|
|
|
|
|
|
const (
|
2020-06-23 12:47:47 +00:00
|
|
|
GrantedProjectSearchKeyUnspecified ProjectGrantViewSearchKey = iota
|
|
|
|
GrantedProjectSearchKeyName
|
|
|
|
GrantedProjectSearchKeyProjectID
|
|
|
|
GrantedProjectSearchKeyGrantID
|
|
|
|
GrantedProjectSearchKeyOrgID
|
|
|
|
GrantedProjectSearchKeyResourceOwner
|
|
|
|
GrantedProjectSearchKeyRoleKeys
|
2020-06-15 12:50:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type ProjectGrantViewSearchQuery struct {
|
|
|
|
Key ProjectGrantViewSearchKey
|
|
|
|
Method model.SearchMethod
|
|
|
|
Value interface{}
|
|
|
|
}
|
|
|
|
|
|
|
|
type ProjectGrantViewSearchResponse struct {
|
|
|
|
Offset uint64
|
|
|
|
Limit uint64
|
|
|
|
TotalResult uint64
|
|
|
|
Result []*ProjectGrantView
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ProjectGrantViewSearchRequest) AppendMyOrgQuery(orgID string) {
|
2020-06-23 12:47:47 +00:00
|
|
|
r.Queries = append(r.Queries, &ProjectGrantViewSearchQuery{Key: GrantedProjectSearchKeyOrgID, Method: model.SearchMethodEquals, Value: orgID})
|
2020-06-15 12:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ProjectGrantViewSearchRequest) AppendNotMyOrgQuery(orgID string) {
|
2020-06-23 12:47:47 +00:00
|
|
|
r.Queries = append(r.Queries, &ProjectGrantViewSearchQuery{Key: GrantedProjectSearchKeyOrgID, Method: model.SearchMethodNotEquals, Value: orgID})
|
2020-06-15 12:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ProjectGrantViewSearchRequest) AppendMyResourceOwnerQuery(orgID string) {
|
2020-06-23 12:47:47 +00:00
|
|
|
r.Queries = append(r.Queries, &ProjectGrantViewSearchQuery{Key: GrantedProjectSearchKeyResourceOwner, Method: model.SearchMethodEquals, Value: orgID})
|
2020-06-15 12:50:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *ProjectGrantViewSearchRequest) EnsureLimit(limit uint64) {
|
|
|
|
if r.Limit == 0 || r.Limit > limit {
|
|
|
|
r.Limit = limit
|
|
|
|
}
|
|
|
|
}
|