app/history/history.go

103 lines
1.5 KiB
Go
Raw Normal View History

2021-12-16 06:25:57 +00:00
package history
import (
2021-12-16 13:43:56 +00:00
"encoding/json"
2021-12-16 06:25:57 +00:00
"fmt"
"time"
2021-12-16 11:44:07 +00:00
2021-12-16 13:43:56 +00:00
"github.com/rs/zerolog/log"
"gorm.io/gorm"
2021-12-16 11:44:07 +00:00
"kumoly.io/kumoly/app/errors"
2021-12-16 13:43:56 +00:00
"kumoly.io/kumoly/app/store"
2021-12-16 06:25:57 +00:00
)
2021-12-16 13:43:56 +00:00
var PROD = false
2021-12-16 06:25:57 +00:00
const (
ERROR = "ERROR"
INFO = "INFO"
)
type History struct {
ID uint `gorm:"primaryKey"`
CreatedAt time.Time
2021-12-16 15:58:02 +00:00
Module string
Type string
Caller string
Trace string
2021-12-16 06:25:57 +00:00
2021-12-16 15:58:02 +00:00
Message string
Body interface{} `gorm:"-"`
Issuer string
2021-12-16 06:25:57 +00:00
2021-12-16 13:43:56 +00:00
BodyJson string
}
func (h *History) BeforeCreate(tx *gorm.DB) (err error) {
if h.Body != nil {
body, err := json.Marshal(h.Body)
if err != nil {
h.BodyJson = string(body)
}
}
return
2021-12-16 06:25:57 +00:00
}
var Tunnel chan *History
var quit chan struct{}
2021-12-16 11:44:07 +00:00
var started chan struct{}
2021-12-16 06:25:57 +00:00
func init() {
Tunnel = make(chan *History)
2021-12-16 10:11:34 +00:00
quit = make(chan struct{}, 1)
2021-12-16 11:44:07 +00:00
started = make(chan struct{}, 1)
2021-12-16 06:25:57 +00:00
}
func Start(r Receiver) {
2021-12-16 11:44:07 +00:00
select {
case started <- struct{}{}:
default:
2021-12-16 13:43:56 +00:00
panic(errors.New(500, "history reporter has already started!"))
2021-12-16 11:44:07 +00:00
}
2021-12-16 06:25:57 +00:00
go func() {
2021-12-16 10:11:34 +00:00
for {
select {
case h := <-Tunnel:
2021-12-16 13:43:56 +00:00
if Interceptor != nil {
go Interceptor(h)
}
2021-12-16 10:11:34 +00:00
r(h)
case <-quit:
2021-12-16 11:44:07 +00:00
<-started
2021-12-16 10:11:34 +00:00
return
}
2021-12-16 06:25:57 +00:00
}
}()
}
func Stop() {
quit <- struct{}{}
}
2021-12-16 10:11:34 +00:00
func Send(h *History) {
2021-12-16 11:11:46 +00:00
if h.Type == "" {
h.Type = INFO
}
2021-12-16 10:11:34 +00:00
Tunnel <- h
}
2021-12-16 06:25:57 +00:00
type Receiver func(*History)
2021-12-16 13:43:56 +00:00
var Interceptor func(*History) = nil
2021-12-16 06:25:57 +00:00
2021-12-16 13:43:56 +00:00
var DBReceiver Receiver = func(h *History) {
err := store.DB.Create(h).Error
if err != nil {
log.Error().Str("mod", "history").Err(err).Msg("DBReceiver error")
}
2021-12-16 06:25:57 +00:00
}
var ConsoleReceiver Receiver = func(h *History) {
fmt.Printf("%+v\n", h)
}