v2fly-domain-list-community/main.go

384 lines
8.9 KiB
Go
Raw Normal View History

2018-08-21 12:22:10 +03:00
package main
import (
"bufio"
"errors"
"flag"
2018-08-21 12:22:10 +03:00
"fmt"
"io/ioutil"
"os"
"path/filepath"
2018-12-01 22:06:45 +02:00
"strconv"
2018-08-21 12:22:10 +03:00
"strings"
"github.com/v2fly/v2ray-core/v4/app/router"
2020-11-15 07:33:11 +02:00
"google.golang.org/protobuf/proto"
2018-08-21 12:22:10 +03:00
)
var (
dataPath = flag.String("datapath", "./data", "Path to your custom 'data' directory")
2021-02-25 08:30:58 +02:00
outputName = flag.String("outputname", "dlc.dat", "Name of the generated dat file")
outputDir = flag.String("outputdir", "./", "Directory to place all generated files")
exportLists = flag.String("exportlists", "", "Lists to be flattened and exported in plaintext format, separated by ',' comma")
)
2018-08-21 12:22:10 +03:00
type Entry struct {
Type string
Value string
2018-12-01 22:06:45 +02:00
Attrs []*router.Domain_Attribute
2018-08-21 12:22:10 +03:00
}
type List struct {
Name string
Entry []Entry
}
type ParsedList struct {
Name string
Inclusion map[string]bool
Entry []Entry
}
2020-07-27 19:50:37 +03:00
func (l *ParsedList) toPlainText(listName string) error {
var entryBytes []byte
for _, entry := range l.Entry {
var attrString string
if entry.Attrs != nil {
for _, attr := range entry.Attrs {
attrString += "@" + attr.GetKey() + ","
}
attrString = strings.TrimRight(":"+attrString, ",")
2020-07-27 19:50:37 +03:00
}
// Entry output format is: type:domain.tld:@attr1,@attr2
entryBytes = append(entryBytes, []byte(entry.Type+":"+entry.Value+attrString+"\n")...)
2020-07-27 19:50:37 +03:00
}
if err := ioutil.WriteFile(filepath.Join(*outputDir, listName+".txt"), entryBytes, 0644); err != nil {
2020-07-27 19:50:37 +03:00
return fmt.Errorf(err.Error())
}
return nil
}
2018-08-21 12:22:10 +03:00
func (l *ParsedList) toProto() (*router.GeoSite, error) {
site := &router.GeoSite{
CountryCode: l.Name,
}
for _, entry := range l.Entry {
switch entry.Type {
case "domain":
site.Domain = append(site.Domain, &router.Domain{
2018-12-01 22:06:45 +02:00
Type: router.Domain_Domain,
Value: entry.Value,
Attribute: entry.Attrs,
2018-08-21 12:22:10 +03:00
})
case "regexp":
2018-08-21 12:22:10 +03:00
site.Domain = append(site.Domain, &router.Domain{
2018-12-01 22:06:45 +02:00
Type: router.Domain_Regex,
Value: entry.Value,
Attribute: entry.Attrs,
2018-08-21 12:22:10 +03:00
})
case "keyword":
site.Domain = append(site.Domain, &router.Domain{
2018-12-01 22:06:45 +02:00
Type: router.Domain_Plain,
Value: entry.Value,
Attribute: entry.Attrs,
2018-08-21 12:22:10 +03:00
})
2018-08-21 22:44:20 +03:00
case "full":
site.Domain = append(site.Domain, &router.Domain{
2018-12-01 22:06:45 +02:00
Type: router.Domain_Full,
Value: entry.Value,
Attribute: entry.Attrs,
2018-08-21 22:44:20 +03:00
})
2018-08-21 12:22:10 +03:00
default:
return nil, errors.New("unknown domain type: " + entry.Type)
}
}
return site, nil
}
2020-07-27 19:50:37 +03:00
func exportPlainTextList(list []string, refName string, pl *ParsedList) {
for _, listName := range list {
if strings.EqualFold(refName, listName) {
2020-07-27 19:50:37 +03:00
if err := pl.toPlainText(strings.ToLower(refName)); err != nil {
fmt.Println("Failed: ", err)
continue
}
fmt.Printf("'%s' has been generated successfully.\n", listName)
2020-07-27 19:50:37 +03:00
}
}
}
2018-08-21 12:22:10 +03:00
func removeComment(line string) string {
idx := strings.Index(line, "#")
if idx == -1 {
return line
}
return strings.TrimSpace(line[:idx])
}
2018-12-01 22:06:45 +02:00
func parseDomain(domain string, entry *Entry) error {
kv := strings.Split(domain, ":")
2018-08-21 12:22:10 +03:00
if len(kv) == 1 {
2018-12-01 22:06:45 +02:00
entry.Type = "domain"
entry.Value = strings.ToLower(kv[0])
return nil
2018-08-21 12:22:10 +03:00
}
2018-12-01 22:06:45 +02:00
2018-08-21 12:22:10 +03:00
if len(kv) == 2 {
2018-12-01 22:06:45 +02:00
entry.Type = strings.ToLower(kv[0])
entry.Value = strings.ToLower(kv[1])
return nil
}
return errors.New("Invalid format: " + domain)
}
2020-07-21 13:29:15 +03:00
func parseAttribute(attr string) (*router.Domain_Attribute, error) {
2018-12-01 22:06:45 +02:00
var attribute router.Domain_Attribute
if len(attr) == 0 || attr[0] != '@' {
2020-07-21 13:29:15 +03:00
return &attribute, errors.New("invalid attribute: " + attr)
2018-12-01 22:06:45 +02:00
}
2020-07-27 19:50:37 +03:00
// Trim attribute prefix `@` character
2020-07-27 05:53:16 +03:00
attr = attr[1:]
2018-12-01 22:06:45 +02:00
parts := strings.Split(attr, "=")
if len(parts) == 1 {
attribute.Key = strings.ToLower(parts[0])
attribute.TypedValue = &router.Domain_Attribute_BoolValue{BoolValue: true}
} else {
attribute.Key = strings.ToLower(parts[0])
intv, err := strconv.Atoi(parts[1])
if err != nil {
2020-07-21 13:29:15 +03:00
return &attribute, errors.New("invalid attribute: " + attr + ": " + err.Error())
2018-12-01 22:06:45 +02:00
}
attribute.TypedValue = &router.Domain_Attribute_IntValue{IntValue: int64(intv)}
}
2020-07-21 13:29:15 +03:00
return &attribute, nil
2018-12-01 22:06:45 +02:00
}
func parseEntry(line string) (Entry, error) {
line = strings.TrimSpace(line)
parts := strings.Split(line, " ")
var entry Entry
if len(parts) == 0 {
return entry, errors.New("empty entry")
}
if err := parseDomain(parts[0], &entry); err != nil {
return entry, err
2018-08-21 12:22:10 +03:00
}
2018-12-01 22:06:45 +02:00
for i := 1; i < len(parts); i++ {
attr, err := parseAttribute(parts[i])
if err != nil {
return entry, err
}
2020-07-21 13:29:15 +03:00
entry.Attrs = append(entry.Attrs, attr)
2018-12-01 22:06:45 +02:00
}
return entry, nil
2018-08-21 12:22:10 +03:00
}
func Load(path string) (*List, error) {
file, err := os.Open(path)
if err != nil {
return nil, err
}
defer file.Close()
list := &List{
Name: strings.ToUpper(filepath.Base(path)),
}
scanner := bufio.NewScanner(file)
for scanner.Scan() {
line := strings.TrimSpace(scanner.Text())
line = removeComment(line)
if len(line) == 0 {
continue
}
entry, err := parseEntry(line)
if err != nil {
return nil, err
}
list.Entry = append(list.Entry, entry)
}
return list, nil
}
2021-02-04 13:45:06 +02:00
func isMatchAttr(Attrs []*router.Domain_Attribute, includeKey string) bool {
isMatch := false
mustMatch := true
matchName := includeKey
if strings.HasPrefix(includeKey, "!") {
isMatch = true
mustMatch = false
matchName = strings.TrimLeft(includeKey, "!")
}
for _, Attr := range Attrs {
attrName := Attr.Key
if mustMatch {
if matchName == attrName {
isMatch = true
break
}
} else {
if matchName == attrName {
isMatch = false
break
}
}
}
return isMatch
}
func createIncludeAttrEntrys(list *List, matchAttr *router.Domain_Attribute) []Entry {
newEntryList := make([]Entry, 0, len(list.Entry))
matchName := matchAttr.Key
for _, entry := range list.Entry {
matched := isMatchAttr(entry.Attrs, matchName)
if matched {
newEntryList = append(newEntryList, entry)
}
}
return newEntryList
}
2018-08-21 12:22:10 +03:00
func ParseList(list *List, ref map[string]*List) (*ParsedList, error) {
pl := &ParsedList{
Name: list.Name,
Inclusion: make(map[string]bool),
}
2018-08-22 22:34:50 +03:00
entryList := list.Entry
for {
newEntryList := make([]Entry, 0, len(entryList))
hasInclude := false
for _, entry := range entryList {
if entry.Type == "include" {
refName := strings.ToUpper(entry.Value)
2021-02-04 13:45:06 +02:00
if entry.Attrs != nil {
for _, attr := range entry.Attrs {
InclusionName := strings.ToUpper(refName + "@" + attr.Key)
if pl.Inclusion[InclusionName] {
continue
}
pl.Inclusion[InclusionName] = true
refList := ref[refName]
if refList == nil {
return nil, errors.New(entry.Value + " not found.")
}
attrEntrys := createIncludeAttrEntrys(refList, attr)
if len(attrEntrys) != 0 {
newEntryList = append(newEntryList, attrEntrys...)
}
}
} else {
InclusionName := refName
if pl.Inclusion[InclusionName] {
continue
}
pl.Inclusion[InclusionName] = true
refList := ref[refName]
if refList == nil {
return nil, errors.New(entry.Value + " not found.")
}
newEntryList = append(newEntryList, refList.Entry...)
2018-08-22 22:34:50 +03:00
}
hasInclude = true
} else {
newEntryList = append(newEntryList, entry)
2018-08-21 12:22:10 +03:00
}
2018-08-22 22:34:50 +03:00
}
entryList = newEntryList
if !hasInclude {
break
2018-08-21 12:22:10 +03:00
}
}
2018-08-22 22:34:50 +03:00
pl.Entry = entryList
2018-08-21 12:22:10 +03:00
return pl, nil
}
func main() {
flag.Parse()
dir := *dataPath
fmt.Println("Use domain lists in", dir)
2020-02-09 12:00:25 +02:00
2018-08-21 12:22:10 +03:00
ref := make(map[string]*List)
err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
2018-08-21 12:22:10 +03:00
if err != nil {
return err
}
if info.IsDir() {
return nil
}
list, err := Load(path)
if err != nil {
return err
}
ref[list.Name] = list
return nil
})
if err != nil {
fmt.Println("Failed: ", err)
2020-07-27 16:52:56 +03:00
os.Exit(1)
2018-08-21 12:22:10 +03:00
}
// Create output directory if not exist
if _, err := os.Stat(*outputDir); os.IsNotExist(err) {
os.Mkdir(*outputDir, 0755)
}
2018-08-21 12:22:10 +03:00
protoList := new(router.GeoSiteList)
2020-07-27 19:50:37 +03:00
var existList []string
for refName, list := range ref {
2018-08-21 12:22:10 +03:00
pl, err := ParseList(list, ref)
if err != nil {
fmt.Println("Failed: ", err)
2020-07-27 16:52:56 +03:00
os.Exit(1)
2018-08-21 12:22:10 +03:00
}
site, err := pl.toProto()
if err != nil {
fmt.Println("Failed: ", err)
2020-07-27 16:52:56 +03:00
os.Exit(1)
2018-08-21 12:22:10 +03:00
}
protoList.Entry = append(protoList.Entry, site)
2020-07-27 19:50:37 +03:00
// Flatten and export plaintext list
if *exportLists != "" {
if existList != nil {
exportPlainTextList(existList, refName, pl)
} else {
exportedListSlice := strings.Split(*exportLists, ",")
for _, exportedListName := range exportedListSlice {
fileName := filepath.Join(dir, exportedListName)
_, err := os.Stat(fileName)
if err == nil || os.IsExist(err) {
existList = append(existList, exportedListName)
} else {
fmt.Printf("'%s' list does not exist in '%s' directory.\n", exportedListName, dir)
}
}
if existList != nil {
exportPlainTextList(existList, refName, pl)
}
}
}
2018-08-21 12:22:10 +03:00
}
protoBytes, err := proto.Marshal(protoList)
if err != nil {
fmt.Println("Failed:", err)
2020-07-27 16:52:56 +03:00
os.Exit(1)
2018-08-21 12:22:10 +03:00
}
if err := ioutil.WriteFile(filepath.Join(*outputDir, *outputName), protoBytes, 0644); err != nil {
2018-08-21 12:22:10 +03:00
fmt.Println("Failed: ", err)
2020-07-27 16:52:56 +03:00
os.Exit(1)
} else {
fmt.Println(*outputName, "has been generated successfully.")
2018-08-21 12:22:10 +03:00
}
}