Skip to content

Commit 8230bc8

Browse files
committed
chore: parse float in subscription info
1 parent ecbbf9d commit 8230bc8

File tree

2 files changed

+36
-19
lines changed

2 files changed

+36
-19
lines changed

adapter/provider/provider.go

+1-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ import (
1818
"github.com/metacubex/mihomo/component/resource"
1919
C "github.com/metacubex/mihomo/constant"
2020
types "github.com/metacubex/mihomo/constant/provider"
21-
"github.com/metacubex/mihomo/log"
2221
"github.com/metacubex/mihomo/tunnel/statistic"
2322

2423
"github.com/dlclark/regexp2"
@@ -149,10 +148,7 @@ func (pp *proxySetProvider) getSubscriptionInfo() {
149148
return
150149
}
151150
}
152-
pp.subscriptionInfo, err = NewSubscriptionInfo(userInfoStr)
153-
if err != nil {
154-
log.Warnln("[Provider] get subscription-userinfo: %e", err)
155-
}
151+
pp.subscriptionInfo = NewSubscriptionInfo(userInfoStr)
156152
}()
157153
}
158154

adapter/provider/subscription_info.go

+35-14
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
package provider
22

33
import (
4+
"fmt"
45
"strconv"
56
"strings"
7+
8+
"github.com/metacubex/mihomo/log"
69
)
710

811
type SubscriptionInfo struct {
@@ -12,28 +15,46 @@ type SubscriptionInfo struct {
1215
Expire int64
1316
}
1417

15-
func NewSubscriptionInfo(userinfo string) (si *SubscriptionInfo, err error) {
18+
func NewSubscriptionInfo(userinfo string) (si *SubscriptionInfo) {
1619
userinfo = strings.ToLower(userinfo)
1720
userinfo = strings.ReplaceAll(userinfo, " ", "")
1821
si = new(SubscriptionInfo)
22+
1923
for _, field := range strings.Split(userinfo, ";") {
20-
switch name, value, _ := strings.Cut(field, "="); name {
24+
name, value, ok := strings.Cut(field, "=")
25+
if !ok {
26+
continue
27+
}
28+
29+
intValue, err := parseValue(value)
30+
if err != nil {
31+
log.Warnln("[Provider] get subscription-userinfo: %e", err)
32+
continue
33+
}
34+
35+
switch name {
2136
case "upload":
22-
si.Upload, err = strconv.ParseInt(value, 10, 64)
37+
si.Upload = intValue
2338
case "download":
24-
si.Download, err = strconv.ParseInt(value, 10, 64)
39+
si.Download = intValue
2540
case "total":
26-
si.Total, err = strconv.ParseInt(value, 10, 64)
41+
si.Total = intValue
2742
case "expire":
28-
if value == "" {
29-
si.Expire = 0
30-
} else {
31-
si.Expire, err = strconv.ParseInt(value, 10, 64)
32-
}
33-
}
34-
if err != nil {
35-
return
43+
si.Expire = intValue
3644
}
3745
}
38-
return
46+
47+
return si
48+
}
49+
50+
func parseValue(value string) (int64, error) {
51+
if intValue, err := strconv.ParseInt(value, 10, 64); err == nil {
52+
return intValue, nil
53+
}
54+
55+
if floatValue, err := strconv.ParseFloat(value, 64); err == nil {
56+
return int64(floatValue), nil
57+
}
58+
59+
return 0, fmt.Errorf("failed to parse value '%s'", value)
3960
}

0 commit comments

Comments
 (0)