mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 09:58:14 -05:00
node type to lower
This commit is contained in:
parent
69eec50f81
commit
3f6f80b5e5
@ -49,14 +49,15 @@ func New(c *conf.ApiConfig) (*Client, error) {
|
||||
})
|
||||
client.SetBaseURL(c.APIHost)
|
||||
// Check node type
|
||||
if c.NodeType != "V2ray" &&
|
||||
c.NodeType != "Trojan" &&
|
||||
c.NodeType != "Shadowsocks" {
|
||||
c.NodeType = strings.ToLower(c.NodeType)
|
||||
if c.NodeType != "v2ray" &&
|
||||
c.NodeType != "trojan" &&
|
||||
c.NodeType != "shadowsocks" {
|
||||
return nil, fmt.Errorf("unsupported Node type: %s", c.NodeType)
|
||||
}
|
||||
// Create Key for each requests
|
||||
client.SetQueryParams(map[string]string{
|
||||
"node_type": strings.ToLower(c.NodeType),
|
||||
"node_type": c.NodeType,
|
||||
"node_id": strconv.Itoa(c.NodeID),
|
||||
"token": c.Key,
|
||||
})
|
||||
|
@ -23,11 +23,11 @@ func buildInbound(config *conf.ControllerConfig, nodeInfo *panel.NodeInfo, tag s
|
||||
inbound.StreamSetting = &coreConf.StreamConfig{Network: &t}
|
||||
var err error
|
||||
switch nodeInfo.NodeType {
|
||||
case "V2ray":
|
||||
case "v2ray":
|
||||
err = buildV2ray(config, nodeInfo, inbound)
|
||||
case "Trojan":
|
||||
case "trojan":
|
||||
err = buildTrojan(config, nodeInfo, inbound)
|
||||
case "Shadowsocks":
|
||||
case "shadowsocks":
|
||||
err = buildShadowsocks(config, nodeInfo, inbound)
|
||||
default:
|
||||
return nil, fmt.Errorf("unsupported node type: %s, Only support: V2ray, Trojan, Shadowsocks", nodeInfo.NodeType)
|
||||
|
@ -24,9 +24,9 @@ func (c *Controller) addNewUser(userInfo []panel.UserInfo, nodeInfo *panel.NodeI
|
||||
} else {
|
||||
users = c.buildVmessUsers(userInfo)
|
||||
}
|
||||
case "Trojan":
|
||||
case "trojan":
|
||||
users = c.buildTrojanUsers(userInfo)
|
||||
case "Shadowsocks":
|
||||
case "shadowsocks":
|
||||
users = c.buildSSUsers(userInfo, getCipherFromString(nodeInfo.Cipher))
|
||||
default:
|
||||
return fmt.Errorf("unsupported node type: %s", nodeInfo.NodeType)
|
||||
|
Loading…
Reference in New Issue
Block a user