mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 21:54:42 -05:00
69 lines
1.8 KiB
Go
69 lines
1.8 KiB
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"sub2sing-box/common"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var subscriptions []string
|
|
var proxies []string
|
|
var template string
|
|
var output string
|
|
var delete string
|
|
var rename map[string]string
|
|
var group bool
|
|
var groupType string
|
|
var sortKey string
|
|
var sortType string
|
|
|
|
func init() {
|
|
convertCmd.Flags().StringSliceVarP(&subscriptions, "subscription", "s", []string{}, "subscription urls")
|
|
convertCmd.Flags().StringSliceVarP(&proxies, "proxy", "p", []string{}, "common proxies")
|
|
convertCmd.Flags().StringVarP(&template, "template", "t", "", "template file path")
|
|
convertCmd.Flags().StringVarP(&output, "output", "o", "", "output file path")
|
|
convertCmd.Flags().StringVarP(&delete, "delete", "d", "", "delete proxy with regex")
|
|
convertCmd.Flags().StringToStringVarP(&rename, "rename", "r", map[string]string{}, "rename proxy with regex")
|
|
convertCmd.Flags().BoolVarP(&group, "group", "g", false, "group proxies by country")
|
|
convertCmd.Flags().StringVarP(&groupType, "group-type", "G", "selector", "group type, selector or urltest")
|
|
convertCmd.Flags().StringVarP(&sortKey, "sort", "S", "tag", "sort key, tag or num")
|
|
convertCmd.Flags().StringVarP(&sortType, "sort-type", "T", "asc", "sort type, asc or desc")
|
|
RootCmd.AddCommand(convertCmd)
|
|
}
|
|
|
|
var convertCmd = &cobra.Command{
|
|
Use: "convert",
|
|
Long: "Convert common proxy to sing-box proxy",
|
|
Short: "Convert common proxy to sing-box proxy",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
result := ""
|
|
var err error
|
|
result, err = common.Convert(
|
|
subscriptions,
|
|
proxies,
|
|
template,
|
|
delete,
|
|
rename,
|
|
group,
|
|
groupType,
|
|
sortKey,
|
|
sortType,
|
|
)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
if output != "" {
|
|
err = os.WriteFile(output, []byte(result), 0666)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
} else {
|
|
fmt.Println(string(result))
|
|
}
|
|
},
|
|
}
|