-
Notifications
You must be signed in to change notification settings - Fork 13
/
api_logger.go
79 lines (61 loc) · 1.71 KB
/
api_logger.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
package apilogger
import (
"reflect"
"time"
"github.com/latolukasz/beeorm"
)
type LogEntity interface {
beeorm.Entity
SetID(value uint64)
SetType(value string)
SetStatus(value string)
SetRequest(value interface{})
SetResponse(value interface{})
SetMessage(value string)
SetCreatedAt(value time.Time)
}
type APILogger interface {
LogStart(ormService *beeorm.Engine, logType string, request interface{})
LogError(ormService *beeorm.Engine, message string, response interface{})
LogSuccess(ormService *beeorm.Engine, response interface{})
}
type DBLog struct {
logEntity LogEntity
currentLog LogEntity
}
func NewAPILog(entity LogEntity) APILogger {
return &DBLog{logEntity: entity}
}
func (l *DBLog) LogStart(ormService *beeorm.Engine, logType string, request interface{}) {
var logEntity LogEntity
if l.logEntity.GetID() == 0 {
logEntity = l.logEntity
} else {
logEntity = reflect.New(reflect.ValueOf(l.logEntity).Elem().Type()).Interface().(LogEntity)
}
logEntity.SetType(logType)
logEntity.SetRequest(request)
logEntity.SetStatus("new")
logEntity.SetCreatedAt(time.Now())
ormService.Flush(logEntity)
l.currentLog = logEntity
}
func (l *DBLog) LogError(ormService *beeorm.Engine, message string, response interface{}) {
if l.currentLog == nil {
panic("log is not created")
}
currentLog := l.currentLog
currentLog.SetMessage(message)
currentLog.SetResponse(response)
currentLog.SetStatus("failed")
ormService.Flush(currentLog)
}
func (l *DBLog) LogSuccess(ormService *beeorm.Engine, response interface{}) {
if l.currentLog == nil {
panic("log is not created")
}
currentLog := l.currentLog
currentLog.SetStatus("completed")
currentLog.SetResponse(response)
ormService.Flush(currentLog)
}