31 lines
684 B
Go
31 lines
684 B
Go
package quantumultx
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/perfect-panel/server/pkg/adapter/proxy"
|
|
)
|
|
|
|
func buildShadowsocks(data proxy.Proxy, uuid string) string {
|
|
ss := data.Option.(proxy.Shadowsocks)
|
|
addr := fmt.Sprintf("%s:%d", data.Server, data.Port)
|
|
|
|
password := uuid
|
|
|
|
if strings.Contains(ss.Method, "2022") {
|
|
serverKey, userKey := proxy.GenerateShadowsocks2022Password(ss, uuid)
|
|
password = fmt.Sprintf("%s:%s", serverKey, userKey)
|
|
}
|
|
|
|
config := []string{
|
|
addr,
|
|
fmt.Sprintf("method=%s", ss.Method),
|
|
fmt.Sprintf("password=%s", password),
|
|
"fast-open=true",
|
|
"udp-relay=true",
|
|
fmt.Sprintf("tag=%s", data.Name),
|
|
}
|
|
return strings.Join(config, ",") + "\r\n"
|
|
}
|