-
Notifications
You must be signed in to change notification settings - Fork 0
/
monitor.go
219 lines (191 loc) · 4.46 KB
/
monitor.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
package main
import (
"errors"
"io"
"io/fs"
"net/http"
"os"
"regexp"
"time"
)
type SafetyMonitor interface {
IsSafe() bool
Refresh()
GetId() string
GetName() string
GetDescription() string
GetRawValue() string
}
type SafetyMatchingRule struct {
invert bool
pattern string
regex *regexp.Regexp
}
func NewSafetyMatchingRule(invert bool, pattern string) *SafetyMatchingRule {
rule := &SafetyMatchingRule{
invert: false,
pattern: pattern,
}
regex, err := regexp.Compile("(?i)" + pattern)
if err != nil || pattern == "" {
regex, _ = regexp.Compile(`(?i)true|1`)
}
rule.regex = regex
return rule
}
func (rule *SafetyMatchingRule) isSafe(content string) bool {
if rule.regex == nil {
return false
}
if rule.invert {
return !rule.regex.MatchString(content)
}
return rule.regex.MatchString(content)
}
type SafetyMonitorHttp struct {
id string
name string
description string
safe bool
url string
lastRefreshTime time.Time
lastValue string
rule *SafetyMatchingRule
client *http.Client
}
func NewSafetyMonitorHttp(id string, name string, description string, url string, rule *SafetyMatchingRule) *SafetyMonitorHttp {
monitor := &SafetyMonitorHttp{id: id, name: name, description: description, url: url}
monitor.client = &http.Client{
Timeout: 5 * time.Second,
}
monitor.rule = rule
monitor.Refresh()
return monitor
}
func (sm *SafetyMonitorHttp) GetId() string {
return sm.id
}
func (sm *SafetyMonitorHttp) GetName() string {
return sm.name
}
func (sm *SafetyMonitorHttp) GetDescription() string {
return sm.description
}
func (sm *SafetyMonitorHttp) IsSafe() bool {
return sm.safe
}
func (sm *SafetyMonitorHttp) GetRawValue() string {
return sm.lastValue
}
func (sm *SafetyMonitorHttp) Refresh() {
response, err := sm.client.Get(sm.url)
if err != nil {
sm.safe = false
sm.lastValue = ""
return
}
buf := make([]byte, 1024)
n, err := response.Body.Read(buf)
if err != nil && err != io.EOF {
sm.safe = false
sm.lastValue = ""
return
}
buf = buf[:n]
_ = response.Body.Close()
content := string(buf)
sm.lastValue = content
sm.safe = sm.rule.isSafe(content)
sm.lastRefreshTime = time.Now()
}
func NewSafetyMonitorDummyFromCfg(id string, cfg map[string]string) *SafetyMonitorDummy {
dummy := &SafetyMonitorDummy{id: id, name: cfg["name"], description: cfg["description"]}
if cfg["is_safe"] != "true" {
dummy.safe = false
} else {
dummy.safe = true
}
return dummy
}
func NewSafetyMonitorDummy(id string, name string, description string, isSafe bool) *SafetyMonitorDummy {
return &SafetyMonitorDummy{
id: id,
name: name,
description: description,
safe: isSafe,
}
}
type SafetyMonitorDummy struct {
safe bool
id string
name string
description string
}
func (sm *SafetyMonitorDummy) IsSafe() bool {
return sm.safe
}
func (sm *SafetyMonitorDummy) Refresh() {
}
func (sm *SafetyMonitorDummy) GetId() string {
return sm.id
}
func (sm *SafetyMonitorDummy) GetName() string {
return sm.name
}
func (sm *SafetyMonitorDummy) GetDescription() string {
return sm.description
}
func (sm *SafetyMonitorDummy) GetRawValue() string {
return ""
}
type SafetyMonitorFile struct {
id string
name string
description string
safe bool
path string
lastRefreshTime time.Time
lastValue string
rule *SafetyMatchingRule
}
func (sm *SafetyMonitorFile) GetId() string {
return sm.id
}
func (sm *SafetyMonitorFile) GetName() string {
return sm.name
}
func (sm *SafetyMonitorFile) GetDescription() string {
return sm.description
}
func (sm *SafetyMonitorFile) GetRawValue() string {
return sm.lastValue
}
func (sm *SafetyMonitorFile) IsSafe() bool {
return sm.safe
}
func (sm *SafetyMonitorFile) Refresh() {
f, err := os.OpenFile(sm.path, os.O_RDONLY, 0444)
if errors.Is(err, fs.ErrNotExist) {
sm.safe = false
sm.lastValue = ""
return
}
defer f.Close()
buf := make([]byte, 1024)
n, err := f.Read(buf)
if err != nil {
sm.safe = false
sm.lastValue = ""
return
}
buf = buf[:n]
content := string(buf)
sm.lastValue = content
sm.safe = sm.rule.isSafe(content)
sm.lastRefreshTime = time.Now()
}
func NewSafetyMonitorFile(id string, name string, description string, path string, rule *SafetyMatchingRule) *SafetyMonitorFile {
file := &SafetyMonitorFile{id: id, name: name, description: description, path: path, rule: rule}
file.Refresh()
return file
}