mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 11:42:43 +08:00
5cb57ffdc3
do not use regex parsing for `Subscription-UserInfo` header field
36 lines
784 B
Go
36 lines
784 B
Go
package provider
|
|
|
|
import (
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
type SubscriptionInfo struct {
|
|
Upload int64
|
|
Download int64
|
|
Total int64
|
|
Expire int64
|
|
}
|
|
|
|
func NewSubscriptionInfo(userinfo string) (si *SubscriptionInfo, err error) {
|
|
userinfo = strings.ToLower(userinfo)
|
|
userinfo = strings.ReplaceAll(userinfo, " ", "")
|
|
si = new(SubscriptionInfo)
|
|
for _, field := range strings.Split(userinfo, ";") {
|
|
switch name, value, _ := strings.Cut(field, "="); name {
|
|
case "upload":
|
|
si.Upload, err = strconv.ParseInt(value, 10, 64)
|
|
case "download":
|
|
si.Download, err = strconv.ParseInt(value, 10, 64)
|
|
case "total":
|
|
si.Total, err = strconv.ParseInt(value, 10, 64)
|
|
case "expire":
|
|
si.Expire, err = strconv.ParseInt(value, 10, 64)
|
|
}
|
|
if err != nil {
|
|
return
|
|
}
|
|
}
|
|
return
|
|
}
|