1
0
mirror of https://github.com/nitezs/sub2clash.git synced 2024-12-23 14:44:42 -05:00
sub2clash/parser/shadowsocks.go

121 lines
2.5 KiB
Go
Raw Normal View History

2024-04-23 02:39:16 -04:00
package parser
import (
2024-08-11 11:55:47 -04:00
"fmt"
2024-04-23 02:39:16 -04:00
"net/url"
"strings"
"github.com/nitezs/sub2clash/constant"
"github.com/nitezs/sub2clash/model"
2024-04-23 02:39:16 -04:00
)
func ParseShadowsocks(proxy string) (model.Proxy, error) {
if !strings.HasPrefix(proxy, constant.ShadowsocksPrefix) {
return model.Proxy{}, &ParseError{Type: ErrInvalidPrefix, Raw: proxy}
}
2024-10-08 23:08:24 -04:00
if !strings.Contains(proxy, "@") {
s := strings.SplitN(proxy, "#", 2)
d, err := DecodeBase64(strings.TrimPrefix(s[0], "ss://"))
if err != nil {
return model.Proxy{}, &ParseError{
Type: ErrInvalidStruct,
Message: "url parse error",
Raw: proxy,
}
}
if len(s) == 2 {
proxy = "ss://" + d + "#" + s[1]
} else {
proxy = "ss://" + d
}
}
2024-08-11 11:55:47 -04:00
link, err := url.Parse(proxy)
if err != nil {
2024-04-23 02:39:16 -04:00
return model.Proxy{}, &ParseError{
Type: ErrInvalidStruct,
2024-08-11 11:55:47 -04:00
Message: "url parse error",
2024-04-23 02:39:16 -04:00
Raw: proxy,
}
}
2024-08-11 11:55:47 -04:00
server := link.Hostname()
if server == "" {
2024-04-23 02:39:16 -04:00
return model.Proxy{}, &ParseError{
Type: ErrInvalidStruct,
2024-08-11 11:55:47 -04:00
Message: "missing server host",
2024-04-23 02:39:16 -04:00
Raw: proxy,
}
}
2024-08-11 11:55:47 -04:00
portStr := link.Port()
if portStr == "" {
2024-04-23 02:39:16 -04:00
return model.Proxy{}, &ParseError{
Type: ErrInvalidStruct,
2024-08-11 11:55:47 -04:00
Message: "missing server port",
2024-04-23 02:39:16 -04:00
Raw: proxy,
}
}
port, err := ParsePort(portStr)
if err != nil {
return model.Proxy{}, &ParseError{
2024-08-11 11:55:47 -04:00
Type: ErrInvalidStruct,
Raw: proxy,
}
}
2024-11-06 05:43:48 -05:00
method := link.User.Username()
password, _ := link.User.Password()
if password == "" {
user, err := DecodeBase64(method)
if err == nil {
methodAndPass := strings.SplitN(user, ":", 2)
if len(methodAndPass) == 2 {
method = methodAndPass[0]
password = methodAndPass[1]
2024-10-08 23:08:24 -04:00
}
2024-04-23 02:39:16 -04:00
}
2024-11-06 05:43:48 -05:00
}
if isLikelyBase64(password) {
password, err = DecodeBase64(password)
if err != nil {
2024-10-08 23:08:24 -04:00
return model.Proxy{}, &ParseError{
Type: ErrInvalidStruct,
2024-11-06 05:43:48 -05:00
Message: "password decode error",
2024-10-08 23:08:24 -04:00
Raw: proxy,
}
2024-08-11 11:55:47 -04:00
}
}
remarks := link.Fragment
if remarks == "" {
remarks = fmt.Sprintf("%s:%s", server, portStr)
}
remarks = strings.TrimSpace(remarks)
2024-04-23 02:39:16 -04:00
result := model.Proxy{
Type: "ss",
Cipher: method,
Password: password,
Server: server,
Port: port,
Name: remarks,
}
return result, nil
}
2024-11-06 05:43:48 -05:00
func isLikelyBase64(s string) bool {
if len(s)%4 == 0 && strings.HasSuffix(s, "=") && !strings.Contains(strings.TrimSuffix(s, "="), "=") {
s = strings.TrimSuffix(s, "=")
chars := "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"
for _, c := range s {
if !strings.ContainsRune(chars, c) {
return false
}
}
return true
}
return false
}