mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
40 lines
1.2 KiB
Go
40 lines
1.2 KiB
Go
|
package view
|
||
|
|
||
|
import (
|
||
|
"github.com/caos/zitadel/internal/iam/repository/view"
|
||
|
"github.com/caos/zitadel/internal/iam/repository/view/model"
|
||
|
global_view "github.com/caos/zitadel/internal/view/repository"
|
||
|
)
|
||
|
|
||
|
const (
|
||
|
labelPolicyTable = "adminapi.label_policies"
|
||
|
)
|
||
|
|
||
|
func (v *View) LabelPolicyByAggregateID(aggregateID string) (*model.LabelPolicyView, error) {
|
||
|
return view.GetLabelPolicyByAggregateID(v.Db, labelPolicyTable, aggregateID)
|
||
|
}
|
||
|
|
||
|
func (v *View) PutLabelPolicy(policy *model.LabelPolicyView, sequence uint64) error {
|
||
|
err := view.PutLabelPolicy(v.Db, labelPolicyTable, policy)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
return v.ProcessedLabelPolicySequence(sequence)
|
||
|
}
|
||
|
|
||
|
func (v *View) GetLatestLabelPolicySequence() (*global_view.CurrentSequence, error) {
|
||
|
return v.latestSequence(labelPolicyTable)
|
||
|
}
|
||
|
|
||
|
func (v *View) ProcessedLabelPolicySequence(eventSequence uint64) error {
|
||
|
return v.saveCurrentSequence(labelPolicyTable, eventSequence)
|
||
|
}
|
||
|
|
||
|
func (v *View) GetLatestLabelPolicyFailedEvent(sequence uint64) (*global_view.FailedEvent, error) {
|
||
|
return v.latestFailedEvent(labelPolicyTable, sequence)
|
||
|
}
|
||
|
|
||
|
func (v *View) ProcessedLabelPolicyFailedEvent(failedEvent *global_view.FailedEvent) error {
|
||
|
return v.saveFailedEvent(failedEvent)
|
||
|
}
|