2020-09-17 06:49:33 +00:00
|
|
|
package view
|
|
|
|
|
|
|
|
import (
|
|
|
|
usr_model "github.com/caos/zitadel/internal/user/model"
|
|
|
|
"github.com/caos/zitadel/internal/user/repository/view"
|
|
|
|
"github.com/caos/zitadel/internal/user/repository/view/model"
|
|
|
|
"github.com/caos/zitadel/internal/view/repository"
|
2020-12-02 07:50:59 +00:00
|
|
|
"time"
|
2020-09-17 06:49:33 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
machineKeyTable = "auth.machine_keys"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (v *View) MachineKeyByIDs(userID, keyID string) (*model.MachineKeyView, error) {
|
|
|
|
return view.MachineKeyByIDs(v.Db, machineKeyTable, userID, keyID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *View) MachineKeysByUserID(userID string) ([]*model.MachineKeyView, error) {
|
|
|
|
return view.MachineKeysByUserID(v.Db, machineKeyTable, userID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *View) MachineKeyByID(keyID string) (*model.MachineKeyView, error) {
|
|
|
|
return view.MachineKeyByID(v.Db, machineKeyTable, keyID)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *View) SearchMachineKeys(request *usr_model.MachineKeySearchRequest) ([]*model.MachineKeyView, uint64, error) {
|
|
|
|
return view.SearchMachineKeys(v.Db, machineKeyTable, request)
|
|
|
|
}
|
|
|
|
|
2020-12-02 07:50:59 +00:00
|
|
|
func (v *View) PutMachineKey(key *model.MachineKeyView, sequence uint64, eventTimestamp time.Time) error {
|
2020-09-17 06:49:33 +00:00
|
|
|
err := view.PutMachineKey(v.Db, machineKeyTable, key)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if sequence != 0 {
|
2020-12-02 07:50:59 +00:00
|
|
|
return v.ProcessedMachineKeySequence(sequence, eventTimestamp)
|
2020-09-17 06:49:33 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-12-02 07:50:59 +00:00
|
|
|
func (v *View) DeleteMachineKey(keyID string, eventSequence uint64, eventTimestamp time.Time) error {
|
2020-09-17 06:49:33 +00:00
|
|
|
err := view.DeleteMachineKey(v.Db, machineKeyTable, keyID)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-12-02 07:50:59 +00:00
|
|
|
return v.ProcessedMachineKeySequence(eventSequence, eventTimestamp)
|
2020-09-17 06:49:33 +00:00
|
|
|
}
|
|
|
|
|
2020-12-02 07:50:59 +00:00
|
|
|
func (v *View) DeleteMachineKeysByUserID(userID string, eventSequence uint64, eventTimestamp time.Time) error {
|
2020-09-17 06:49:33 +00:00
|
|
|
err := view.DeleteMachineKey(v.Db, machineKeyTable, userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
2020-12-02 07:50:59 +00:00
|
|
|
return v.ProcessedMachineKeySequence(eventSequence, eventTimestamp)
|
2020-09-17 06:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (v *View) GetLatestMachineKeySequence() (*repository.CurrentSequence, error) {
|
|
|
|
return v.latestSequence(machineKeyTable)
|
|
|
|
}
|
|
|
|
|
2020-12-02 07:50:59 +00:00
|
|
|
func (v *View) ProcessedMachineKeySequence(eventSequence uint64, eventTimestamp time.Time) error {
|
|
|
|
return v.saveCurrentSequence(machineKeyTable, eventSequence, eventTimestamp)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *View) UpdateMachineKeySpoolerRunTimestamp() error {
|
|
|
|
return v.updateSpoolerRunSequence(machineKeyTable)
|
2020-09-17 06:49:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (v *View) GetLatestMachineKeyFailedEvent(sequence uint64) (*repository.FailedEvent, error) {
|
|
|
|
return v.latestFailedEvent(machineKeyTable, sequence)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *View) ProcessedMachineKeyFailedEvent(failedEvent *repository.FailedEvent) error {
|
|
|
|
return v.saveFailedEvent(failedEvent)
|
|
|
|
}
|