fix(sub): source Userinfo total/expiry from client config in multi-node (#4645)

The Subscription-Userinfo header read total/expiry from client_traffics, but in a multi-node setup the master's node sync overwrites those with the node snapshot's zeros, so the header reported total=0; expire=0 even though the panel UI (which reads the clients table) showed the configured limits. AggregateTrafficByEmails now falls back to the clients table for total/expiry when the traffic row is zero, keeping up/down/lastOnline from client_traffics.
This commit is contained in:
MHSanaei
2026-06-01 21:27:50 +02:00
parent 80173b1b1d
commit 7f8c79675f
2 changed files with 94 additions and 8 deletions
+38 -8
View File
@@ -158,34 +158,61 @@ func (s *SubService) AggregateTrafficByEmails(emails []string) (xray.ClientTraff
if len(emails) == 0 {
return agg, 0
}
db := database.GetDB()
var rows []xray.ClientTraffic
if err := database.GetDB().
if err := db.
Model(&xray.ClientTraffic{}).
Where("email IN ?", emails).
Find(&rows).Error; err != nil {
logger.Warning("SubService - AggregateTrafficByEmails: load by email:", err)
return agg, 0
}
// total/expiry are configured limits owned by the clients table, not the
// runtime traffic rows. In a multi-node setup the node snapshot can reset
// client_traffics.total/expiry_time to 0, so fall back to the clients
// table to keep the Subscription-Userinfo header in sync with the UI (#4645).
limits := make(map[string][2]int64, len(emails))
var records []model.ClientRecord
if err := db.Model(&model.ClientRecord{}).Where("email IN ?", emails).Find(&records).Error; err != nil {
logger.Warning("SubService - AggregateTrafficByEmails: load client limits:", err)
} else {
for _, r := range records {
limits[r.Email] = [2]int64{r.TotalGB, r.ExpiryTime}
}
}
now := time.Now().UnixMilli()
for i, ct := range rows {
first := true
for _, ct := range rows {
if ct.LastOnline > lastOnline {
lastOnline = ct.LastOnline
}
if i == 0 {
total, expiry := ct.Total, ct.ExpiryTime
if lim, ok := limits[ct.Email]; ok {
if total == 0 {
total = lim[0]
}
if expiry == 0 {
expiry = lim[1]
}
}
if first {
agg.Up = ct.Up
agg.Down = ct.Down
agg.Total = ct.Total
agg.ExpiryTime = subscriptionExpiryFromClient(now, ct.ExpiryTime)
agg.Total = total
agg.ExpiryTime = subscriptionExpiryFromClient(now, expiry)
first = false
continue
}
agg.Up += ct.Up
agg.Down += ct.Down
if agg.Total == 0 || ct.Total == 0 {
if agg.Total == 0 || total == 0 {
agg.Total = 0
} else {
agg.Total += ct.Total
agg.Total += total
}
normalized := subscriptionExpiryFromClient(now, ct.ExpiryTime)
normalized := subscriptionExpiryFromClient(now, expiry)
if normalized != agg.ExpiryTime {
agg.ExpiryTime = 0
}
@@ -581,6 +608,9 @@ func (s *SubService) genHysteriaLink(inbound *model.Inbound, email string) strin
params["insecure"] = "1"
}
}
if pins, ok := pinnedSha256List(tlsSettings); ok {
params["pinSHA256"] = strings.Join(pins, ",")
}
}
// salamander obfs (Hysteria2). The panel-side link generator already