mirror of
https://github.com/openziti/ziti.git
synced 2026-09-22 02:24:00 +00:00
85 lines
2.6 KiB
Go
85 lines
2.6 KiB
Go
/*
|
|
Copyright NetFoundry, Inc.
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
https://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package model
|
|
|
|
import (
|
|
"github.com/openziti/edge/controller/persistence"
|
|
"github.com/openziti/fabric/controller/models"
|
|
"github.com/openziti/foundation/storage/boltz"
|
|
"github.com/pkg/errors"
|
|
"go.etcd.io/bbolt"
|
|
"reflect"
|
|
)
|
|
|
|
type EventLog struct {
|
|
models.BaseEntity
|
|
Type string
|
|
ActorType string
|
|
ActorId string
|
|
EntityType string
|
|
EntityId string
|
|
FormattedMessage string
|
|
FormatString string
|
|
FormatData string
|
|
Data map[string]interface{}
|
|
}
|
|
|
|
func (entity *EventLog) toBoltEntity() (boltz.Entity, error) {
|
|
return &persistence.EventLog{
|
|
BaseExtEntity: *boltz.NewExtEntity(entity.Id, entity.Tags),
|
|
Type: entity.Type,
|
|
ActorType: entity.ActorType,
|
|
ActorId: entity.ActorId,
|
|
EntityType: entity.EntityType,
|
|
EntityId: entity.EntityId,
|
|
FormattedMessage: entity.FormattedMessage,
|
|
FormatString: entity.FormatString,
|
|
FormatData: entity.FormatData,
|
|
Data: entity.Data,
|
|
}, nil
|
|
}
|
|
|
|
func (entity *EventLog) toBoltEntityForCreate(*bbolt.Tx, Handler) (boltz.Entity, error) {
|
|
return entity.toBoltEntity()
|
|
}
|
|
|
|
func (entity *EventLog) toBoltEntityForUpdate(*bbolt.Tx, Handler) (boltz.Entity, error) {
|
|
return entity.toBoltEntity()
|
|
}
|
|
|
|
func (entity *EventLog) toBoltEntityForPatch(*bbolt.Tx, Handler, boltz.FieldChecker) (boltz.Entity, error) {
|
|
return entity.toBoltEntity()
|
|
}
|
|
|
|
func (entity *EventLog) fillFrom(_ Handler, _ *bbolt.Tx, boltEntity boltz.Entity) error {
|
|
boltEventLog, ok := boltEntity.(*persistence.EventLog)
|
|
if !ok {
|
|
return errors.Errorf("unexpected type %v when filling model event log", reflect.TypeOf(boltEntity))
|
|
}
|
|
entity.FillCommon(boltEventLog)
|
|
entity.Type = boltEventLog.Type
|
|
entity.ActorType = boltEventLog.ActorType
|
|
entity.ActorId = boltEventLog.ActorId
|
|
entity.EntityType = boltEventLog.EntityType
|
|
entity.EntityId = boltEventLog.EntityId
|
|
entity.FormattedMessage = boltEventLog.FormattedMessage
|
|
entity.FormatString = boltEventLog.FormatString
|
|
entity.FormatData = boltEventLog.FormatData
|
|
entity.Data = boltEventLog.Data
|
|
return nil
|
|
}
|