node type to lower

This commit is contained in:
yuzuki999
2023-05-19 11:27:08 +08:00
parent 69eec50f81
commit 3f6f80b5e5
3 changed files with 10 additions and 9 deletions

View File

@@ -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,
})