mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-23 15:14:43 -05:00
88 lines
1.9 KiB
Go
88 lines
1.9 KiB
Go
package parser
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
"strings"
|
|
|
|
"github.com/nitezs/sub2sing-box/constant"
|
|
"github.com/nitezs/sub2sing-box/model"
|
|
"github.com/nitezs/sub2sing-box/util"
|
|
"github.com/sagernet/sing-box/option"
|
|
)
|
|
|
|
func ParseSocks(proxy string) (model.Outbound, error) {
|
|
if !strings.HasPrefix(proxy, constant.SocksPrefix) {
|
|
return model.Outbound{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
|
|
}
|
|
link, err := url.Parse(proxy)
|
|
if err != nil {
|
|
return model.Outbound{}, &ParseError{
|
|
Type: ErrInvalidStruct,
|
|
Message: "url parse error",
|
|
Raw: proxy,
|
|
}
|
|
}
|
|
server := link.Hostname()
|
|
if server == "" {
|
|
return model.Outbound{}, &ParseError{
|
|
Type: ErrInvalidStruct,
|
|
Message: "missing server host",
|
|
Raw: proxy,
|
|
}
|
|
}
|
|
portStr := link.Port()
|
|
if portStr == "" {
|
|
return model.Outbound{}, &ParseError{
|
|
Type: ErrInvalidStruct,
|
|
Message: "missing server port",
|
|
Raw: proxy,
|
|
}
|
|
}
|
|
port, err := ParsePort(portStr)
|
|
if err != nil {
|
|
return model.Outbound{}, &ParseError{
|
|
Type: ErrInvalidPort,
|
|
Raw: portStr,
|
|
}
|
|
}
|
|
|
|
remarks := link.Fragment
|
|
if remarks == "" {
|
|
remarks = fmt.Sprintf("%s:%s", server, portStr)
|
|
}
|
|
remarks = strings.TrimSpace(remarks)
|
|
|
|
encodeStr := link.User.Username()
|
|
var username, password string
|
|
if encodeStr != "" {
|
|
decodeStr, err := util.DecodeBase64(encodeStr)
|
|
splitStr := strings.Split(decodeStr, ":")
|
|
if err != nil {
|
|
return model.Outbound{}, &ParseError{
|
|
Type: ErrInvalidStruct,
|
|
Message: "url parse error",
|
|
Raw: proxy,
|
|
}
|
|
}
|
|
username = splitStr[0]
|
|
if len(splitStr) == 2 {
|
|
password = splitStr[1]
|
|
}
|
|
}
|
|
return model.Outbound{
|
|
Outbound: option.Outbound{
|
|
Type: "socks",
|
|
Tag: remarks,
|
|
SocksOptions: option.SocksOutboundOptions{
|
|
ServerOptions: option.ServerOptions{
|
|
Server: server,
|
|
ServerPort: port,
|
|
},
|
|
Username: username,
|
|
Password: password,
|
|
},
|
|
},
|
|
}, nil
|
|
}
|