mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
3c07a186fc
* fix: pub sub in new eventstore * fix: todos * fix: todos * fix: todos * fix: todos * fix: todos
74 lines
1.3 KiB
Go
74 lines
1.3 KiB
Go
package model
|
|
|
|
import (
|
|
"github.com/caos/zitadel/internal/domain"
|
|
"time"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/v1/models"
|
|
)
|
|
|
|
type OrgView struct {
|
|
ID string
|
|
CreationDate time.Time
|
|
ChangeDate time.Time
|
|
State OrgState
|
|
ResourceOwner string
|
|
Sequence uint64
|
|
|
|
Name string
|
|
}
|
|
|
|
type OrgSearchRequest struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
SortingColumn OrgSearchKey
|
|
Asc bool
|
|
Queries []*OrgSearchQuery
|
|
}
|
|
|
|
type OrgSearchKey int32
|
|
|
|
const (
|
|
OrgSearchKeyUnspecified OrgSearchKey = iota
|
|
OrgSearchKeyOrgID
|
|
OrgSearchKeyOrgName
|
|
OrgSearchKeyOrgDomain
|
|
OrgSearchKeyState
|
|
OrgSearchKeyResourceOwner
|
|
)
|
|
|
|
type OrgSearchQuery struct {
|
|
Key OrgSearchKey
|
|
Method domain.SearchMethod
|
|
Value interface{}
|
|
}
|
|
|
|
type OrgSearchResult struct {
|
|
Offset uint64
|
|
Limit uint64
|
|
TotalResult uint64
|
|
Result []*OrgView
|
|
Sequence uint64
|
|
Timestamp time.Time
|
|
}
|
|
|
|
func (r *OrgSearchRequest) EnsureLimit(limit uint64) {
|
|
if r.Limit == 0 || r.Limit > limit {
|
|
r.Limit = limit
|
|
}
|
|
}
|
|
|
|
func OrgViewToOrg(o *OrgView) *Org {
|
|
return &Org{
|
|
ObjectRoot: models.ObjectRoot{
|
|
AggregateID: o.ID,
|
|
ChangeDate: o.ChangeDate,
|
|
CreationDate: o.CreationDate,
|
|
ResourceOwner: o.ResourceOwner,
|
|
Sequence: o.Sequence,
|
|
},
|
|
Name: o.Name,
|
|
State: o.State,
|
|
}
|
|
}
|