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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
|
package plaintext
import (
"bytes"
"encoding/json"
"log"
"net"
"os"
"path/filepath"
"strings"
"github.com/Loyalsoldier/geoip/lib"
)
var (
defaultOutputDirForTextOut = filepath.Join("./", "output", "text")
defaultOutputDirForClashRuleSetClassicalOut = filepath.Join("./", "output", "clash", "classical")
defaultOutputDirForClashRuleSetIPCIDROut = filepath.Join("./", "output", "clash", "ipcidr")
defaultOutputDirForSurgeRuleSetOut = filepath.Join("./", "output", "surge")
)
type textOut struct {
Type string
Action lib.Action
Description string
OutputDir string
OutputExt string
Want []string
Exclude []string
OnlyIPType lib.IPType
AddPrefixInLine string
AddSuffixInLine string
}
func NewTextOut(iType string, iDesc string, action lib.Action, opts ...lib.OutputOption) lib.OutputConverter {
t := &textOut{
Type: iType,
Action: action,
Description: iDesc,
}
for _, opt := range opts {
if opt != nil {
opt(t)
}
}
return t
}
func WithTextOutOutputDir(iType, dir string) lib.OutputOption {
return func(s lib.OutputConverter) {
dir = strings.TrimSpace(dir)
if dir == "" {
switch iType {
case TypeTextOut:
dir = defaultOutputDirForTextOut
case TypeClashRuleSetClassicalOut:
dir = defaultOutputDirForClashRuleSetClassicalOut
case TypeClashRuleSetIPCIDROut:
dir = defaultOutputDirForClashRuleSetIPCIDROut
case TypeSurgeRuleSetOut:
dir = defaultOutputDirForSurgeRuleSetOut
}
}
s.(*textOut).OutputDir = dir
}
}
func WithTextOutOutputExt(ext string) lib.OutputOption {
return func(s lib.OutputConverter) {
ext = strings.TrimSpace(ext)
if ext == "" {
ext = ".txt"
}
s.(*textOut).OutputExt = ext
}
}
func WithTextOutWantedList(lists []string) lib.OutputOption {
return func(s lib.OutputConverter) {
s.(*textOut).Want = lists
}
}
func WithTextOutExcludedList(lists []string) lib.OutputOption {
return func(s lib.OutputConverter) {
s.(*textOut).Exclude = lists
}
}
func WithTextOutOnlyIPType(onlyIPType lib.IPType) lib.OutputOption {
return func(s lib.OutputConverter) {
s.(*textOut).OnlyIPType = onlyIPType
}
}
func WithTextOutAddPrefixInLine(prefix string) lib.OutputOption {
return func(s lib.OutputConverter) {
s.(*textOut).AddPrefixInLine = prefix
}
}
func WithTextOutAddSuffixInLine(suffix string) lib.OutputOption {
return func(s lib.OutputConverter) {
s.(*textOut).AddSuffixInLine = suffix
}
}
func NewTextOutFromBytes(iType string, iDesc string, action lib.Action, data []byte) (lib.OutputConverter, error) {
var tmp struct {
OutputDir string `json:"outputDir"`
OutputExt string `json:"outputExtension"`
Want []string `json:"wantedList"`
Exclude []string `json:"excludedList"`
OnlyIPType lib.IPType `json:"onlyIPType"`
AddPrefixInLine string `json:"addPrefixInLine"`
AddSuffixInLine string `json:"addSuffixInLine"`
}
if len(data) > 0 {
if err := json.Unmarshal(data, &tmp); err != nil {
return nil, err
}
}
return NewTextOut(
iType,
iDesc,
action,
WithTextOutOutputDir(iType, tmp.OutputDir),
WithTextOutOutputExt(tmp.OutputExt),
WithTextOutWantedList(tmp.Want),
WithTextOutExcludedList(tmp.Exclude),
WithTextOutOnlyIPType(tmp.OnlyIPType),
WithTextOutAddPrefixInLine(tmp.AddPrefixInLine),
WithTextOutAddSuffixInLine(tmp.AddSuffixInLine),
), nil
}
func (t *textOut) marshalBytes(entry *lib.Entry) ([]byte, error) {
entryCidr, err := entry.MarshalText(lib.GetIgnoreIPType(t.OnlyIPType))
if err != nil {
return nil, err
}
var buf bytes.Buffer
switch t.Type {
case TypeTextOut:
err = t.marshalBytesForTextOut(&buf, entryCidr)
case TypeClashRuleSetClassicalOut:
err = t.marshalBytesForClashRuleSetClassicalOut(&buf, entryCidr)
case TypeClashRuleSetIPCIDROut:
err = t.marshalBytesForClashRuleSetIPCIDROut(&buf, entryCidr)
case TypeSurgeRuleSetOut:
err = t.marshalBytesForSurgeRuleSetOut(&buf, entryCidr)
default:
return nil, lib.ErrNotSupportedFormat
}
if err != nil {
return nil, err
}
return buf.Bytes(), nil
}
func (t *textOut) marshalBytesForTextOut(buf *bytes.Buffer, entryCidr []string) error {
for _, cidr := range entryCidr {
if t.AddPrefixInLine != "" {
buf.WriteString(t.AddPrefixInLine)
}
buf.WriteString(cidr)
if t.AddSuffixInLine != "" {
buf.WriteString(t.AddSuffixInLine)
}
buf.WriteString("\n")
}
return nil
}
func (t *textOut) marshalBytesForClashRuleSetClassicalOut(buf *bytes.Buffer, entryCidr []string) error {
buf.WriteString("payload:\n")
for _, cidr := range entryCidr {
ip, _, err := net.ParseCIDR(cidr)
if err != nil {
return err
}
if ip.To4() != nil {
buf.WriteString(" - IP-CIDR,")
} else {
buf.WriteString(" - IP-CIDR6,")
}
buf.WriteString(cidr)
buf.WriteString("\n")
}
return nil
}
func (t *textOut) marshalBytesForClashRuleSetIPCIDROut(buf *bytes.Buffer, entryCidr []string) error {
buf.WriteString("payload:\n")
for _, cidr := range entryCidr {
buf.WriteString(" - '")
buf.WriteString(cidr)
buf.WriteString("'\n")
}
return nil
}
func (t *textOut) marshalBytesForSurgeRuleSetOut(buf *bytes.Buffer, entryCidr []string) error {
for _, cidr := range entryCidr {
ip, _, err := net.ParseCIDR(cidr)
if err != nil {
return err
}
if ip.To4() != nil {
buf.WriteString("IP-CIDR,")
} else {
buf.WriteString("IP-CIDR6,")
}
buf.WriteString(cidr)
if t.AddSuffixInLine != "" {
buf.WriteString(t.AddSuffixInLine)
}
buf.WriteString("\n")
}
return nil
}
func (t *textOut) writeFile(filename string, data []byte) error {
if err := os.MkdirAll(t.OutputDir, 0755); err != nil {
return err
}
if err := os.WriteFile(filepath.Join(t.OutputDir, filename), data, 0644); err != nil {
return err
}
log.Printf("✅ [%s] %s --> %s", t.Type, filename, t.OutputDir)
return nil
}
|