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
|
package special
import (
"encoding/json"
"fmt"
"log"
"strings"
"github.com/Loyalsoldier/geoip/lib"
)
const (
TypeCutter = "cutter"
DescCutter = "Remove data from previous steps"
)
func init() {
lib.RegisterInputConfigCreator(TypeCutter, func(action lib.Action, data json.RawMessage) (lib.InputConverter, error) {
return NewCutterFromBytes(action, data)
})
lib.RegisterInputConverter(TypeCutter, &cutter{
Description: DescCutter,
})
}
type cutter struct {
Type string
Action lib.Action
Description string
Want map[string]bool
OnlyIPType lib.IPType
}
func NewCutter(action lib.Action, opts ...lib.InputOption) lib.InputConverter {
c := &cutter{
Type: TypeCutter,
Action: action,
Description: DescCutter,
}
for _, opt := range opts {
if opt != nil {
opt(c)
}
}
return c
}
func WithCutterWantedList(lists []string) lib.InputOption {
return func(s lib.InputConverter) {
wantList := make(map[string]bool)
for _, want := range lists {
if want = strings.ToUpper(strings.TrimSpace(want)); want != "" {
wantList[want] = true
}
}
if len(wantList) == 0 {
log.Fatalf("❌ [type %s] wantedList must be specified", TypeCutter)
}
s.(*cutter).Want = wantList
}
}
func WithCutterOnlyIPType(onlyIPType lib.IPType) lib.InputOption {
return func(s lib.InputConverter) {
s.(*cutter).OnlyIPType = onlyIPType
}
}
func NewCutterFromBytes(action lib.Action, data []byte) (lib.InputConverter, error) {
var tmp struct {
Want []string `json:"wantedList"`
OnlyIPType lib.IPType `json:"onlyIPType"`
}
if len(data) > 0 {
if err := json.Unmarshal(data, &tmp); err != nil {
return nil, err
}
}
if action != lib.ActionRemove {
return nil, fmt.Errorf("❌ [type %s] only supports `remove` action", TypeCutter)
}
return NewCutter(
action,
WithCutterWantedList(tmp.Want),
WithCutterOnlyIPType(tmp.OnlyIPType),
), nil
}
func (c *cutter) GetType() string {
return c.Type
}
func (c *cutter) GetAction() lib.Action {
return c.Action
}
func (c *cutter) GetDescription() string {
return c.Description
}
func (c *cutter) Input(container lib.Container) (lib.Container, error) {
ignoreIPType := lib.GetIgnoreIPType(c.OnlyIPType)
for entry := range container.Loop() {
if len(c.Want) > 0 && !c.Want[entry.GetName()] {
continue
}
if err := container.Remove(entry, lib.CaseRemoveEntry, ignoreIPType); err != nil {
return nil, err
}
}
return container, nil
}
|