mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
423b86a03b
* feat: reread events * feat: sequence and timestamo on search requests * feat: sequence and timestamo on search requests * fix: better naming * fix: log errors * fix: read sequence before search request
74 lines
1.3 KiB
Go
74 lines
1.3 KiB
Go
package model
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/caos/zitadel/internal/eventstore/models"
|
|
"github.com/caos/zitadel/internal/model"
|
|
)
|
|
|
|
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 model.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,
|
|
}
|
|
}
|