v2fly-domain-list-community/main.go

391 lines
9.1 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"
"go/build"
2018-08-21 12:22:10 +03:00
"io/ioutil"
"os"
"path/filepath"
2018-12-01 22:06:45 +02:00
"strconv"
2018-08-21 12:22:10 +03:00
"strings"
2019-02-28 12:45:26 +02:00
"github.com/golang/protobuf/proto"
2018-08-21 12:22:10 +03:00
"v2ray.com/core/app/router"
)
var (
dataPath = flag.String("datapath", "", "Path to your custom 'data' directory")
2020-07-27 19:50:37 +03:00
exportLists = flag.String("exportlists", "", "Lists to be flattened and exported in plaintext format, separated by ',' comma")
2020-07-21 03:06:27 +03:00
defaultDataPath = filepath.Join("src", "github.com", "v2fly", "domain-list-community", "data")
)
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, ",")
}
// Entry output format is: type:domain.tld:@attr1,@attr2
entryBytes = append(entryBytes, []byte(entry.Type+":"+entry.Value+":"+attrString+"\n")...)
}
if err := ioutil.WriteFile(listName+".txt", entryBytes, 0644); err != nil {
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 "regex":
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.ToUpper(refName) == strings.ToUpper(listName) {
if err := pl.toPlainText(strings.ToLower(refName)); err != nil {
fmt.Println("Failed: ", err)
continue
}
fmt.Printf("'%s' has been generated successfully in current directory.\n", listName)
}
}
}
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
}
2018-08-23 12:19:48 +03:00
func DetectPath(path string) (string, error) {
arrPath := strings.Split(path, string(filepath.ListSeparator))
for _, content := range arrPath {
fullPath := filepath.Join(content, defaultDataPath)
2018-08-23 04:09:44 +03:00
_, err := os.Stat(fullPath)
if err == nil || os.IsExist(err) {
2018-08-23 12:19:48 +03:00
return fullPath, nil
2018-08-23 04:05:17 +03:00
}
}
err := fmt.Errorf("directory '%s' not found in '$GOPATH'", defaultDataPath)
2018-08-23 12:19:48 +03:00
return "", err
2018-08-23 04:05:17 +03:00
}
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
}
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)
if pl.Inclusion[refName] {
2018-08-22 22:34:50 +03:00
continue
}
pl.Inclusion[refName] = true
r := ref[refName]
if r == nil {
return nil, errors.New(entry.Value + " not found.")
}
newEntryList = append(newEntryList, r.Entry...)
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 envFile() (string, error) {
if file := os.Getenv("GOENV"); file != "" {
if file == "off" {
return "", fmt.Errorf("GOENV=off")
}
return file, nil
}
dir, err := os.UserConfigDir()
if err != nil {
return "", err
}
if dir == "" {
return "", fmt.Errorf("missing user-config dir")
}
return filepath.Join(dir, "go", "env"), nil
}
func getRuntimeEnv(key string) (string, error) {
file, err := envFile()
if err != nil {
return "", err
}
if file == "" {
return "", fmt.Errorf("missing runtime env file")
}
var data []byte
var runtimeEnv string
data, err = ioutil.ReadFile(file)
envStrings := strings.Split(string(data), "\n")
for _, envItem := range envStrings {
envItem = strings.TrimSuffix(envItem, "\r")
envKeyValue := strings.Split(envItem, "=")
if strings.ToLower(envKeyValue[0]) == strings.ToLower(key) {
runtimeEnv = envKeyValue[1]
}
}
return runtimeEnv, nil
}
2018-08-21 12:22:10 +03:00
func main() {
flag.Parse()
var dir string
var err error
if *dataPath != "" {
dir = *dataPath
} else {
goPath, envErr := getRuntimeEnv("GOPATH")
if envErr != nil {
fmt.Println("Failed: please set '$GOPATH' manually, or use 'datapath' option to specify the path to your custom 'data' directory")
2020-07-27 16:52:56 +03:00
os.Exit(1)
}
if goPath == "" {
goPath = build.Default.GOPATH
}
fmt.Println("Use $GOPATH:", goPath)
fmt.Printf("Searching directory '%s' in '%s'...\n", defaultDataPath, goPath)
dir, err = DetectPath(goPath)
}
2018-08-23 12:19:48 +03:00
if err != nil {
fmt.Println("Failed: ", err)
2020-07-27 16:52:56 +03:00
os.Exit(1)
2018-08-23 12:19:48 +03:00
}
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)
2018-08-23 12:19:48 +03:00
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
}
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
}
2020-07-27 16:52:56 +03:00
if err := ioutil.WriteFile("dlc.dat", 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 {
2020-07-27 16:52:56 +03:00
fmt.Println("dlc.dat has been generated successfully in current directory. You can rename 'dlc.dat' to 'geosite.dat' and use it in V2Ray.")
2018-08-21 12:22:10 +03:00
}
}