mirror of
https://github.com/wyx2685/V2bX.git
synced 2025-01-22 18:08:14 -05:00
commit
c52151033a
@ -4,18 +4,16 @@ import (
|
|||||||
"bytes"
|
"bytes"
|
||||||
"encoding/base64"
|
"encoding/base64"
|
||||||
"fmt"
|
"fmt"
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
coreConf "github.com/xtls/xray-core/infra/conf"
|
|
||||||
"os"
|
"os"
|
||||||
"reflect"
|
"reflect"
|
||||||
"regexp"
|
|
||||||
"strconv"
|
"strconv"
|
||||||
"strings"
|
"strings"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/Yuzuki616/V2bX/common/crypt"
|
"github.com/Yuzuki616/V2bX/common/crypt"
|
||||||
|
|
||||||
"github.com/goccy/go-json"
|
"github.com/goccy/go-json"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
|
coreConf "github.com/xtls/xray-core/infra/conf"
|
||||||
)
|
)
|
||||||
|
|
||||||
type CommonNodeRsp struct {
|
type CommonNodeRsp struct {
|
||||||
@ -58,7 +56,7 @@ type HysteriaNodeRsp struct {
|
|||||||
type NodeInfo struct {
|
type NodeInfo struct {
|
||||||
Id int
|
Id int
|
||||||
Type string
|
Type string
|
||||||
Rules []*regexp.Regexp
|
Rules Rules
|
||||||
Host string
|
Host string
|
||||||
Port int
|
Port int
|
||||||
Network string
|
Network string
|
||||||
@ -75,6 +73,11 @@ type NodeInfo struct {
|
|||||||
PullInterval time.Duration
|
PullInterval time.Duration
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Rules struct {
|
||||||
|
Regexp []string
|
||||||
|
Protocol []string
|
||||||
|
}
|
||||||
|
|
||||||
type V2rayExtraConfig struct {
|
type V2rayExtraConfig struct {
|
||||||
EnableVless string `json:"EnableVless"`
|
EnableVless string `json:"EnableVless"`
|
||||||
VlessFlow string `json:"VlessFlow"`
|
VlessFlow string `json:"VlessFlow"`
|
||||||
@ -97,7 +100,7 @@ func (c *Client) GetNodeInfo() (node *NodeInfo, err error) {
|
|||||||
const path = "/api/v1/server/UniProxy/config"
|
const path = "/api/v1/server/UniProxy/config"
|
||||||
r, err := c.client.
|
r, err := c.client.
|
||||||
R().
|
R().
|
||||||
SetHeader("If-None-Match", c.etag).
|
SetHeader("If-None-Match", c.nodeEtag).
|
||||||
Get(path)
|
Get(path)
|
||||||
if err = c.checkResponse(r, path, err); err != nil {
|
if err = c.checkResponse(r, path, err); err != nil {
|
||||||
return
|
return
|
||||||
@ -131,7 +134,13 @@ func (c *Client) GetNodeInfo() (node *NodeInfo, err error) {
|
|||||||
switch common.Routes[i].Action {
|
switch common.Routes[i].Action {
|
||||||
case "block":
|
case "block":
|
||||||
for _, v := range matchs {
|
for _, v := range matchs {
|
||||||
node.Rules = append(node.Rules, regexp.MustCompile(v))
|
if strings.HasPrefix(v, "protocol:") {
|
||||||
|
// protocol
|
||||||
|
node.Rules.Protocol = append(node.Rules.Protocol, strings.TrimPrefix(v, "protocol:"))
|
||||||
|
} else {
|
||||||
|
// domain
|
||||||
|
node.Rules.Regexp = append(node.Rules.Regexp, strings.TrimPrefix(v, "regexp:"))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
case "dns":
|
case "dns":
|
||||||
if matchs[0] != "main" {
|
if matchs[0] != "main" {
|
||||||
@ -218,7 +227,7 @@ func (c *Client) GetNodeInfo() (node *NodeInfo, err error) {
|
|||||||
node.UpMbps = rsp.UpMbps
|
node.UpMbps = rsp.UpMbps
|
||||||
node.HyObfs = rsp.Obfs
|
node.HyObfs = rsp.Obfs
|
||||||
}
|
}
|
||||||
c.etag = r.Header().Get("ETag")
|
c.nodeEtag = r.Header().Get("ETag")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,7 +23,8 @@ type Client struct {
|
|||||||
NodeType string
|
NodeType string
|
||||||
NodeId int
|
NodeId int
|
||||||
LocalRuleList []*regexp.Regexp
|
LocalRuleList []*regexp.Regexp
|
||||||
etag string
|
nodeEtag string
|
||||||
|
userEtag string
|
||||||
}
|
}
|
||||||
|
|
||||||
func New(c *conf.ApiConfig) (*Client, error) {
|
func New(c *conf.ApiConfig) (*Client, error) {
|
||||||
|
@ -2,6 +2,7 @@ package panel
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/goccy/go-json"
|
"github.com/goccy/go-json"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -14,7 +15,6 @@ type UserInfo struct {
|
|||||||
Id int `json:"id"`
|
Id int `json:"id"`
|
||||||
Uuid string `json:"uuid"`
|
Uuid string `json:"uuid"`
|
||||||
SpeedLimit int `json:"speed_limit"`
|
SpeedLimit int `json:"speed_limit"`
|
||||||
Traffic int64 `json:"-"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
type UserListBody struct {
|
type UserListBody struct {
|
||||||
@ -25,17 +25,23 @@ type UserListBody struct {
|
|||||||
// GetUserList will pull user form sspanel
|
// GetUserList will pull user form sspanel
|
||||||
func (c *Client) GetUserList() (UserList []UserInfo, err error) {
|
func (c *Client) GetUserList() (UserList []UserInfo, err error) {
|
||||||
const path = "/api/v1/server/UniProxy/user"
|
const path = "/api/v1/server/UniProxy/user"
|
||||||
res, err := c.client.R().
|
r, err := c.client.R().
|
||||||
|
SetHeader("If-None-Match", c.userEtag).
|
||||||
Get(path)
|
Get(path)
|
||||||
err = c.checkResponse(res, path, err)
|
err = c.checkResponse(r, path, err)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
err = c.checkResponse(r, path, err)
|
||||||
|
if r.StatusCode() == 304 {
|
||||||
|
return nil, nil
|
||||||
|
}
|
||||||
var userList *UserListBody
|
var userList *UserListBody
|
||||||
err = json.Unmarshal(res.Body(), &userList)
|
err = json.Unmarshal(r.Body(), &userList)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("unmarshal userlist error: %s", err)
|
return nil, fmt.Errorf("unmarshal userlist error: %s", err)
|
||||||
}
|
}
|
||||||
|
c.userEtag = r.Header().Get("ETag")
|
||||||
return userList.Users, nil
|
return userList.Users, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -52,11 +58,11 @@ func (c *Client) ReportUserTraffic(userTraffic []UserTraffic) error {
|
|||||||
data[userTraffic[i].UID] = []int64{userTraffic[i].Upload, userTraffic[i].Download}
|
data[userTraffic[i].UID] = []int64{userTraffic[i].Upload, userTraffic[i].Download}
|
||||||
}
|
}
|
||||||
const path = "/api/v1/server/UniProxy/push"
|
const path = "/api/v1/server/UniProxy/push"
|
||||||
res, err := c.client.R().
|
r, err := c.client.R().
|
||||||
SetBody(data).
|
SetBody(data).
|
||||||
ForceContentType("application/json").
|
ForceContentType("application/json").
|
||||||
Post(path)
|
Post(path)
|
||||||
err = c.checkResponse(res, path, err)
|
err = c.checkResponse(r, path, err)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -3,16 +3,16 @@ package hy
|
|||||||
import (
|
import (
|
||||||
"crypto/tls"
|
"crypto/tls"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/Yuzuki616/V2bX/api/panel"
|
|
||||||
"github.com/Yuzuki616/V2bX/conf"
|
|
||||||
"github.com/Yuzuki616/V2bX/limiter"
|
|
||||||
"github.com/apernet/hysteria/core/sockopt"
|
|
||||||
"io"
|
"io"
|
||||||
"net"
|
"net"
|
||||||
"sync"
|
"sync"
|
||||||
"sync/atomic"
|
"sync/atomic"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
"github.com/Yuzuki616/V2bX/api/panel"
|
||||||
|
"github.com/Yuzuki616/V2bX/conf"
|
||||||
|
"github.com/Yuzuki616/V2bX/limiter"
|
||||||
|
"github.com/apernet/hysteria/core/sockopt"
|
||||||
"github.com/quic-go/quic-go"
|
"github.com/quic-go/quic-go"
|
||||||
|
|
||||||
"github.com/apernet/hysteria/core/acl"
|
"github.com/apernet/hysteria/core/acl"
|
||||||
@ -121,22 +121,6 @@ func (s *Server) runServer(node *panel.NodeInfo, c *conf.ControllerConfig) error
|
|||||||
}
|
}
|
||||||
// ACL
|
// ACL
|
||||||
var aclEngine *acl.Engine
|
var aclEngine *acl.Engine
|
||||||
/*if len(config.ACL) > 0 {
|
|
||||||
aclEngine, err = acl.LoadFromFile(config.ACL, func(addr string) (*net.IPAddr, error) {
|
|
||||||
ipAddr, _, err := transport.DefaultServerTransport.ResolveIPAddr(addr)
|
|
||||||
return ipAddr, err
|
|
||||||
},
|
|
||||||
func() (*geoip2.Reader, error) {
|
|
||||||
return loadMMDBReader(config.MMDB)
|
|
||||||
})
|
|
||||||
if err != nil {
|
|
||||||
logrus.WithFields(logrus.Fields{
|
|
||||||
"error": err,
|
|
||||||
"file": config.ACL,
|
|
||||||
}).Fatal("Failed to parse ACL")
|
|
||||||
}
|
|
||||||
aclEngine.DefaultAction = acl.ActionDirect
|
|
||||||
}*/
|
|
||||||
// Prometheus
|
// Prometheus
|
||||||
s.counter = NewUserTrafficCounter()
|
s.counter = NewUserTrafficCounter()
|
||||||
// Packet conn
|
// Packet conn
|
||||||
|
@ -337,7 +337,13 @@ func (d *DefaultDispatcher) Dispatch(ctx context.Context, destination net.Destin
|
|||||||
reader: outbound.Reader.(*pipe.Reader),
|
reader: outbound.Reader.(*pipe.Reader),
|
||||||
}
|
}
|
||||||
outbound.Reader = cReader
|
outbound.Reader = cReader
|
||||||
result, err := sniffer(ctx, cReader, sniffingRequest.MetadataOnly, destination.Network)
|
result, err := sniffer(ctx, cReader, sniffingRequest.MetadataOnly, destination.Network, l)
|
||||||
|
if _, ok := err.(limitedError); ok {
|
||||||
|
newError(err).AtInfo().WriteToLog()
|
||||||
|
common.Close(outbound.Writer)
|
||||||
|
common.Interrupt(outbound.Reader)
|
||||||
|
return
|
||||||
|
}
|
||||||
if err == nil {
|
if err == nil {
|
||||||
content.Protocol = result.Protocol()
|
content.Protocol = result.Protocol()
|
||||||
}
|
}
|
||||||
@ -380,7 +386,13 @@ func (d *DefaultDispatcher) DispatchLink(ctx context.Context, destination net.De
|
|||||||
reader: outbound.Reader.(*pipe.Reader),
|
reader: outbound.Reader.(*pipe.Reader),
|
||||||
}
|
}
|
||||||
outbound.Reader = cReader
|
outbound.Reader = cReader
|
||||||
result, err := sniffer(ctx, cReader, sniffingRequest.MetadataOnly, destination.Network)
|
result, err := sniffer(ctx, cReader, sniffingRequest.MetadataOnly, destination.Network, nil)
|
||||||
|
if _, ok := err.(limitedError); ok {
|
||||||
|
newError(err).AtInfo().WriteToLog()
|
||||||
|
common.Close(outbound.Writer)
|
||||||
|
common.Interrupt(outbound.Reader)
|
||||||
|
return
|
||||||
|
}
|
||||||
if err == nil {
|
if err == nil {
|
||||||
content.Protocol = result.Protocol()
|
content.Protocol = result.Protocol()
|
||||||
}
|
}
|
||||||
@ -400,18 +412,50 @@ func (d *DefaultDispatcher) DispatchLink(ctx context.Context, destination net.De
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func sniffer(ctx context.Context, cReader *cachedReader, metadataOnly bool, network net.Network) (SniffResult, error) {
|
type limitedError string
|
||||||
|
|
||||||
|
func (l limitedError) Error() string {
|
||||||
|
return string(l)
|
||||||
|
}
|
||||||
|
|
||||||
|
func sniffer(ctx context.Context, cReader *cachedReader, metadataOnly bool, network net.Network, l *limiter.Limiter) (result SniffResult, err error) {
|
||||||
payload := buf.New()
|
payload := buf.New()
|
||||||
defer payload.Release()
|
defer payload.Release()
|
||||||
|
|
||||||
|
defer func() {
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
// Check if domain and protocol hit the rule
|
||||||
|
sessionInbound := session.InboundFromContext(ctx)
|
||||||
|
// Whether the inbound connection contains a user
|
||||||
|
if sessionInbound.User != nil {
|
||||||
|
if l == nil {
|
||||||
|
l, err = limiter.GetLimiter(sessionInbound.Tag)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if l.CheckDomainRule(result.Domain()) {
|
||||||
|
err = limitedError(fmt.Sprintf(
|
||||||
|
"User %s access domain %s reject by rule",
|
||||||
|
sessionInbound.User.Email,
|
||||||
|
result.Domain()))
|
||||||
|
}
|
||||||
|
if l.CheckProtocolRule(result.Protocol()) {
|
||||||
|
err = limitedError(fmt.Sprintf(
|
||||||
|
"User %s access protocol %s reject by rule",
|
||||||
|
sessionInbound.User.Email,
|
||||||
|
result.Protocol()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}()
|
||||||
|
|
||||||
sniffer := NewSniffer(ctx)
|
sniffer := NewSniffer(ctx)
|
||||||
|
|
||||||
metaresult, metadataErr := sniffer.SniffMetadata(ctx)
|
metaresult, metadataErr := sniffer.SniffMetadata(ctx)
|
||||||
|
|
||||||
if metadataOnly {
|
if metadataOnly {
|
||||||
return metaresult, metadataErr
|
return metaresult, metadataErr
|
||||||
}
|
}
|
||||||
|
|
||||||
contentResult, contentErr := func() (SniffResult, error) {
|
contentResult, contentErr := func() (SniffResult, error) {
|
||||||
totalAttempt := 0
|
totalAttempt := 0
|
||||||
for {
|
for {
|
||||||
@ -460,32 +504,17 @@ func (d *DefaultDispatcher) routedDispatch(ctx context.Context, link *transport.
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
var handler outbound.Handler
|
var handler outbound.Handler
|
||||||
|
|
||||||
// Check if domain and protocol hit the rule
|
// del connect count
|
||||||
sessionInbound := session.InboundFromContext(ctx)
|
if l != nil {
|
||||||
// Whether the inbound connection contains a user
|
sessionInbound := session.InboundFromContext(ctx)
|
||||||
if sessionInbound.User != nil {
|
if sessionInbound.User != nil {
|
||||||
if l == nil {
|
if destination.Network == net.Network_TCP {
|
||||||
var err error
|
defer func() {
|
||||||
l, err = limiter.GetLimiter(sessionInbound.Tag)
|
l.ConnLimiter.DelConnCount(sessionInbound.User.Email, sessionInbound.Source.Address.IP().String())
|
||||||
if err != nil {
|
}()
|
||||||
newError("Get limiter error: ", err).AtError().WriteToLog()
|
|
||||||
common.Close(link.Writer)
|
|
||||||
common.Interrupt(link.Reader)
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
} else if destination.Network == net.Network_TCP {
|
|
||||||
defer func() {
|
|
||||||
l.ConnLimiter.DelConnCount(sessionInbound.User.Email, sessionInbound.Source.Address.IP().String())
|
|
||||||
}()
|
|
||||||
}
|
|
||||||
if l.CheckDomainRule(destination.Address.String()) {
|
|
||||||
newError(fmt.Sprintf("User %s access %s reject by rule", sessionInbound.User.Email, destination.String())).AtError().WriteToLog()
|
|
||||||
common.Close(link.Writer)
|
|
||||||
common.Interrupt(link.Reader)
|
|
||||||
return
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
package xray
|
package xray
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"os"
|
||||||
|
"sync"
|
||||||
|
|
||||||
"github.com/Yuzuki616/V2bX/conf"
|
"github.com/Yuzuki616/V2bX/conf"
|
||||||
vCore "github.com/Yuzuki616/V2bX/core"
|
vCore "github.com/Yuzuki616/V2bX/core"
|
||||||
"github.com/Yuzuki616/V2bX/core/xray/app/dispatcher"
|
"github.com/Yuzuki616/V2bX/core/xray/app/dispatcher"
|
||||||
@ -16,8 +19,6 @@ import (
|
|||||||
"github.com/xtls/xray-core/features/routing"
|
"github.com/xtls/xray-core/features/routing"
|
||||||
statsFeature "github.com/xtls/xray-core/features/stats"
|
statsFeature "github.com/xtls/xray-core/features/stats"
|
||||||
coreConf "github.com/xtls/xray-core/infra/conf"
|
coreConf "github.com/xtls/xray-core/infra/conf"
|
||||||
"os"
|
|
||||||
"sync"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
|
@ -2,16 +2,16 @@ package limiter
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"regexp"
|
||||||
|
"sync"
|
||||||
|
"time"
|
||||||
|
|
||||||
"github.com/Yuzuki616/V2bX/api/panel"
|
"github.com/Yuzuki616/V2bX/api/panel"
|
||||||
"github.com/Yuzuki616/V2bX/common/format"
|
"github.com/Yuzuki616/V2bX/common/format"
|
||||||
"github.com/Yuzuki616/V2bX/conf"
|
"github.com/Yuzuki616/V2bX/conf"
|
||||||
"github.com/juju/ratelimit"
|
"github.com/juju/ratelimit"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"github.com/xtls/xray-core/common/task"
|
"github.com/xtls/xray-core/common/task"
|
||||||
"regexp"
|
|
||||||
"sync"
|
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
var limitLock sync.RWMutex
|
var limitLock sync.RWMutex
|
||||||
@ -32,7 +32,7 @@ func Init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type Limiter struct {
|
type Limiter struct {
|
||||||
Rules []*regexp.Regexp
|
DomainRules []*regexp.Regexp
|
||||||
ProtocolRules []string
|
ProtocolRules []string
|
||||||
SpeedLimit int
|
SpeedLimit int
|
||||||
UserLimitInfo *sync.Map // Key: Uid value: UserLimitInfo
|
UserLimitInfo *sync.Map // Key: Uid value: UserLimitInfo
|
||||||
@ -59,7 +59,6 @@ func AddLimiter(tag string, l *conf.LimitConfig, users []panel.UserInfo) *Limite
|
|||||||
userLimit := &UserLimitInfo{
|
userLimit := &UserLimitInfo{
|
||||||
UID: users[i].Id,
|
UID: users[i].Id,
|
||||||
SpeedLimit: users[i].SpeedLimit,
|
SpeedLimit: users[i].SpeedLimit,
|
||||||
ExpireTime: 0,
|
|
||||||
}
|
}
|
||||||
info.UserLimitInfo.Store(format.UserTag(tag, users[i].Uuid), userLimit)
|
info.UserLimitInfo.Store(format.UserTag(tag, users[i].Uuid), userLimit)
|
||||||
}
|
}
|
||||||
@ -80,11 +79,13 @@ func GetLimiter(tag string) (info *Limiter, err error) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func UpdateLimiter(tag string, added []panel.UserInfo, deleted []panel.UserInfo) error {
|
func DeleteLimiter(tag string) {
|
||||||
l, err := GetLimiter(tag)
|
limitLock.Lock()
|
||||||
if err != nil {
|
delete(limiter, tag)
|
||||||
return fmt.Errorf("get limit error: %s", err)
|
limitLock.Unlock()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (l *Limiter) UpdateUser(tag string, added []panel.UserInfo, deleted []panel.UserInfo) {
|
||||||
for i := range deleted {
|
for i := range deleted {
|
||||||
l.UserLimitInfo.Delete(format.UserTag(tag, deleted[i].Uuid))
|
l.UserLimitInfo.Delete(format.UserTag(tag, deleted[i].Uuid))
|
||||||
}
|
}
|
||||||
@ -98,13 +99,17 @@ func UpdateLimiter(tag string, added []panel.UserInfo, deleted []panel.UserInfo)
|
|||||||
l.UserLimitInfo.Store(format.UserTag(tag, added[i].Uuid), userLimit)
|
l.UserLimitInfo.Store(format.UserTag(tag, added[i].Uuid), userLimit)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return nil
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func DeleteLimiter(tag string) {
|
func (l *Limiter) UpdateDynamicSpeedLimit(tag, uuid string, limit int, expire time.Time) error {
|
||||||
limitLock.Lock()
|
if v, ok := l.UserLimitInfo.Load(format.UserTag(tag, uuid)); ok {
|
||||||
delete(limiter, tag)
|
info := v.(*UserLimitInfo)
|
||||||
limitLock.Unlock()
|
info.DynamicSpeedLimit = limit
|
||||||
|
info.ExpireTime = expire.Unix()
|
||||||
|
} else {
|
||||||
|
return errors.New("not found")
|
||||||
|
}
|
||||||
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Limiter) CheckLimit(email string, ip string, isTcp bool) (Bucket *ratelimit.Bucket, Reject bool) {
|
func (l *Limiter) CheckLimit(email string, ip string, isTcp bool) (Bucket *ratelimit.Bucket, Reject bool) {
|
||||||
|
@ -1,14 +1,15 @@
|
|||||||
package limiter
|
package limiter
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"reflect"
|
|
||||||
"regexp"
|
"regexp"
|
||||||
|
|
||||||
|
"github.com/Yuzuki616/V2bX/api/panel"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (l *Limiter) CheckDomainRule(destination string) (reject bool) {
|
func (l *Limiter) CheckDomainRule(destination string) (reject bool) {
|
||||||
// have rule
|
// have rule
|
||||||
for i := range l.Rules {
|
for i := range l.DomainRules {
|
||||||
if l.Rules[i].MatchString(destination) {
|
if l.DomainRules[i].MatchString(destination) {
|
||||||
reject = true
|
reject = true
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
@ -26,9 +27,11 @@ func (l *Limiter) CheckProtocolRule(protocol string) (reject bool) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (l *Limiter) UpdateRule(newRuleList []*regexp.Regexp) error {
|
func (l *Limiter) UpdateRule(rule *panel.Rules) error {
|
||||||
if !reflect.DeepEqual(l.Rules, newRuleList) {
|
l.DomainRules = make([]*regexp.Regexp, len(rule.Regexp))
|
||||||
l.Rules = newRuleList
|
for i := range rule.Regexp {
|
||||||
|
l.DomainRules[i] = regexp.MustCompile(rule.Regexp[i])
|
||||||
}
|
}
|
||||||
|
l.ProtocolRules = rule.Protocol
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
@ -3,6 +3,7 @@ package node
|
|||||||
import (
|
import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
"github.com/Yuzuki616/V2bX/api/iprecoder"
|
"github.com/Yuzuki616/V2bX/api/iprecoder"
|
||||||
"github.com/Yuzuki616/V2bX/api/panel"
|
"github.com/Yuzuki616/V2bX/api/panel"
|
||||||
"github.com/Yuzuki616/V2bX/common/task"
|
"github.com/Yuzuki616/V2bX/common/task"
|
||||||
@ -15,8 +16,9 @@ import (
|
|||||||
type Controller struct {
|
type Controller struct {
|
||||||
server vCore.Core
|
server vCore.Core
|
||||||
apiClient *panel.Client
|
apiClient *panel.Client
|
||||||
nodeInfo *panel.NodeInfo
|
tag string
|
||||||
Tag string
|
limiter *limiter.Limiter
|
||||||
|
traffic map[string]int64
|
||||||
userList []panel.UserInfo
|
userList []panel.UserInfo
|
||||||
ipRecorder iprecoder.IpRecorder
|
ipRecorder iprecoder.IpRecorder
|
||||||
nodeInfoMonitorPeriodic *task.Task
|
nodeInfoMonitorPeriodic *task.Task
|
||||||
@ -41,7 +43,7 @@ func NewController(server vCore.Core, api *panel.Client, config *conf.Controller
|
|||||||
func (c *Controller) Start() error {
|
func (c *Controller) Start() error {
|
||||||
// First fetch Node Info
|
// First fetch Node Info
|
||||||
var err error
|
var err error
|
||||||
c.nodeInfo, err = c.apiClient.GetNodeInfo()
|
node, err := c.apiClient.GetNodeInfo()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("get node info error: %s", err)
|
return fmt.Errorf("get node info error: %s", err)
|
||||||
}
|
}
|
||||||
@ -53,42 +55,43 @@ func (c *Controller) Start() error {
|
|||||||
if len(c.userList) == 0 {
|
if len(c.userList) == 0 {
|
||||||
return errors.New("add users error: not have any user")
|
return errors.New("add users error: not have any user")
|
||||||
}
|
}
|
||||||
c.Tag = c.buildNodeTag()
|
c.tag = c.buildNodeTag(node)
|
||||||
|
|
||||||
// add limiter
|
// add limiter
|
||||||
l := limiter.AddLimiter(c.Tag, &c.LimitConfig, c.userList)
|
l := limiter.AddLimiter(c.tag, &c.LimitConfig, c.userList)
|
||||||
// add rule limiter
|
// add rule limiter
|
||||||
if err = l.UpdateRule(c.nodeInfo.Rules); err != nil {
|
if err = l.UpdateRule(&node.Rules); err != nil {
|
||||||
return fmt.Errorf("update rule error: %s", err)
|
return fmt.Errorf("update rule error: %s", err)
|
||||||
}
|
}
|
||||||
if c.nodeInfo.Tls || c.nodeInfo.Type == "hysteria" {
|
c.limiter = l
|
||||||
|
if node.Tls || node.Type == "hysteria" {
|
||||||
err = c.requestCert()
|
err = c.requestCert()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("request cert error: %s", err)
|
return fmt.Errorf("request cert error: %s", err)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Add new tag
|
// Add new tag
|
||||||
err = c.server.AddNode(c.Tag, c.nodeInfo, c.ControllerConfig)
|
err = c.server.AddNode(c.tag, node, c.ControllerConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("add new node error: %s", err)
|
return fmt.Errorf("add new node error: %s", err)
|
||||||
}
|
}
|
||||||
added, err := c.server.AddUsers(&vCore.AddUsersParams{
|
added, err := c.server.AddUsers(&vCore.AddUsersParams{
|
||||||
Tag: c.Tag,
|
Tag: c.tag,
|
||||||
Config: c.ControllerConfig,
|
Config: c.ControllerConfig,
|
||||||
UserInfo: c.userList,
|
UserInfo: c.userList,
|
||||||
NodeInfo: c.nodeInfo,
|
NodeInfo: node,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("add users error: %s", err)
|
return fmt.Errorf("add users error: %s", err)
|
||||||
}
|
}
|
||||||
log.WithField("tag", c.Tag).Infof("Added %d new users", added)
|
log.WithField("tag", c.tag).Infof("Added %d new users", added)
|
||||||
c.initTask()
|
c.startTasks(node)
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// Close implement the Close() function of the service interface
|
// Close implement the Close() function of the service interface
|
||||||
func (c *Controller) Close() error {
|
func (c *Controller) Close() error {
|
||||||
limiter.DeleteLimiter(c.Tag)
|
limiter.DeleteLimiter(c.tag)
|
||||||
if c.nodeInfoMonitorPeriodic != nil {
|
if c.nodeInfoMonitorPeriodic != nil {
|
||||||
c.nodeInfoMonitorPeriodic.Close()
|
c.nodeInfoMonitorPeriodic.Close()
|
||||||
}
|
}
|
||||||
@ -107,6 +110,6 @@ func (c *Controller) Close() error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Controller) buildNodeTag() string {
|
func (c *Controller) buildNodeTag(node *panel.NodeInfo) string {
|
||||||
return fmt.Sprintf("%s-%s-%d", c.apiClient.APIHost, c.nodeInfo.Type, c.nodeInfo.Id)
|
return fmt.Sprintf("%s-%s-%d", c.apiClient.APIHost, node.Type, node.Id)
|
||||||
}
|
}
|
||||||
|
102
node/task.go
102
node/task.go
@ -1,30 +1,32 @@
|
|||||||
package node
|
package node
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"time"
|
||||||
|
|
||||||
|
"github.com/Yuzuki616/V2bX/api/panel"
|
||||||
"github.com/Yuzuki616/V2bX/common/task"
|
"github.com/Yuzuki616/V2bX/common/task"
|
||||||
vCore "github.com/Yuzuki616/V2bX/core"
|
vCore "github.com/Yuzuki616/V2bX/core"
|
||||||
"github.com/Yuzuki616/V2bX/limiter"
|
"github.com/Yuzuki616/V2bX/limiter"
|
||||||
log "github.com/sirupsen/logrus"
|
log "github.com/sirupsen/logrus"
|
||||||
"time"
|
|
||||||
)
|
)
|
||||||
|
|
||||||
func (c *Controller) initTask() {
|
func (c *Controller) startTasks(node *panel.NodeInfo) {
|
||||||
// fetch node info task
|
// fetch node info task
|
||||||
c.nodeInfoMonitorPeriodic = &task.Task{
|
c.nodeInfoMonitorPeriodic = &task.Task{
|
||||||
Interval: c.nodeInfo.PullInterval,
|
Interval: node.PullInterval,
|
||||||
Execute: c.nodeInfoMonitor,
|
Execute: c.nodeInfoMonitor,
|
||||||
}
|
}
|
||||||
// fetch user list task
|
// fetch user list task
|
||||||
c.userReportPeriodic = &task.Task{
|
c.userReportPeriodic = &task.Task{
|
||||||
Interval: c.nodeInfo.PushInterval,
|
Interval: node.PushInterval,
|
||||||
Execute: c.reportUserTrafficTask,
|
Execute: c.reportUserTrafficTask,
|
||||||
}
|
}
|
||||||
log.WithField("tag", c.Tag).Info("Start monitor node status")
|
log.WithField("tag", c.tag).Info("Start monitor node status")
|
||||||
// delay to start nodeInfoMonitor
|
// delay to start nodeInfoMonitor
|
||||||
_ = c.nodeInfoMonitorPeriodic.Start(false)
|
_ = c.nodeInfoMonitorPeriodic.Start(false)
|
||||||
log.WithField("tag", c.Tag).Info("Start report node status")
|
log.WithField("tag", c.tag).Info("Start report node status")
|
||||||
_ = c.userReportPeriodic.Start(false)
|
_ = c.userReportPeriodic.Start(false)
|
||||||
if c.nodeInfo.Tls {
|
if node.Tls {
|
||||||
switch c.CertConfig.CertMode {
|
switch c.CertConfig.CertMode {
|
||||||
case "reality", "none", "":
|
case "reality", "none", "":
|
||||||
default:
|
default:
|
||||||
@ -32,11 +34,18 @@ func (c *Controller) initTask() {
|
|||||||
Interval: time.Hour * 24,
|
Interval: time.Hour * 24,
|
||||||
Execute: c.reportUserTrafficTask,
|
Execute: c.reportUserTrafficTask,
|
||||||
}
|
}
|
||||||
log.WithField("tag", c.Tag).Info("Start renew cert")
|
log.WithField("tag", c.tag).Info("Start renew cert")
|
||||||
// delay to start renewCert
|
// delay to start renewCert
|
||||||
_ = c.renewCertPeriodic.Start(true)
|
_ = c.renewCertPeriodic.Start(true)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if c.LimitConfig.EnableDynamicSpeedLimit {
|
||||||
|
c.traffic = make(map[string]int64)
|
||||||
|
c.renewCertPeriodic = &task.Task{
|
||||||
|
Interval: time.Duration(c.LimitConfig.DynamicSpeedLimitConfig.Periodic) * time.Minute,
|
||||||
|
Execute: c.reportUserTrafficTask,
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Controller) nodeInfoMonitor() (err error) {
|
func (c *Controller) nodeInfoMonitor() (err error) {
|
||||||
@ -44,7 +53,7 @@ func (c *Controller) nodeInfoMonitor() (err error) {
|
|||||||
newNodeInfo, err := c.apiClient.GetNodeInfo()
|
newNodeInfo, err := c.apiClient.GetNodeInfo()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Error("Get node info failed")
|
}).Error("Get node info failed")
|
||||||
return nil
|
return nil
|
||||||
@ -53,69 +62,74 @@ func (c *Controller) nodeInfoMonitor() (err error) {
|
|||||||
newUserInfo, err := c.apiClient.GetUserList()
|
newUserInfo, err := c.apiClient.GetUserList()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Error("Get user list failed")
|
}).Error("Get user list failed")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
if newNodeInfo != nil {
|
if newNodeInfo != nil {
|
||||||
// nodeInfo changed
|
// nodeInfo changed
|
||||||
|
if newUserInfo != nil {
|
||||||
|
c.userList = newUserInfo
|
||||||
|
}
|
||||||
|
c.traffic = make(map[string]int64)
|
||||||
// Remove old tag
|
// Remove old tag
|
||||||
log.WithField("tag", c.Tag).Info("Node changed, reload")
|
log.WithField("tag", c.tag).Info("Node changed, reload")
|
||||||
err = c.server.DelNode(c.Tag)
|
err = c.server.DelNode(c.tag)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Error("Delete node failed")
|
}).Error("Delete node failed")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
// Remove Old limiter
|
// Remove Old limiter
|
||||||
limiter.DeleteLimiter(c.Tag)
|
limiter.DeleteLimiter(c.tag)
|
||||||
// Add new Limiter
|
// Add new Limiter
|
||||||
c.Tag = c.buildNodeTag()
|
c.tag = c.buildNodeTag(newNodeInfo)
|
||||||
l := limiter.AddLimiter(c.Tag, &c.LimitConfig, newUserInfo)
|
l := limiter.AddLimiter(c.tag, &c.LimitConfig, c.userList)
|
||||||
// check cert
|
// check cert
|
||||||
if newNodeInfo.Tls || newNodeInfo.Type == "hysteria" {
|
if newNodeInfo.Tls || newNodeInfo.Type == "hysteria" {
|
||||||
err = c.requestCert()
|
err = c.requestCert()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Error("Request cert failed")
|
}).Error("Request cert failed")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// add new node
|
// add new node
|
||||||
err = c.server.AddNode(c.Tag, newNodeInfo, c.ControllerConfig)
|
err = c.server.AddNode(c.tag, newNodeInfo, c.ControllerConfig)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Error("Add node failed")
|
}).Error("Add node failed")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
_, err = c.server.AddUsers(&vCore.AddUsersParams{
|
_, err = c.server.AddUsers(&vCore.AddUsersParams{
|
||||||
Tag: c.Tag,
|
Tag: c.tag,
|
||||||
Config: c.ControllerConfig,
|
Config: c.ControllerConfig,
|
||||||
UserInfo: newUserInfo,
|
UserInfo: c.userList,
|
||||||
NodeInfo: newNodeInfo,
|
NodeInfo: newNodeInfo,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Error("Add users failed")
|
}).Error("Add users failed")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
err = l.UpdateRule(newNodeInfo.Rules)
|
err = l.UpdateRule(&newNodeInfo.Rules)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Error("Update Rule failed")
|
}).Error("Update Rule failed")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
c.limiter = l
|
||||||
// Check interval
|
// Check interval
|
||||||
if c.nodeInfoMonitorPeriodic.Interval != newNodeInfo.PullInterval &&
|
if c.nodeInfoMonitorPeriodic.Interval != newNodeInfo.PullInterval &&
|
||||||
newNodeInfo.PullInterval != 0 {
|
newNodeInfo.PullInterval != 0 {
|
||||||
@ -129,21 +143,22 @@ func (c *Controller) nodeInfoMonitor() (err error) {
|
|||||||
c.userReportPeriodic.Close()
|
c.userReportPeriodic.Close()
|
||||||
_ = c.userReportPeriodic.Start(false)
|
_ = c.userReportPeriodic.Start(false)
|
||||||
}
|
}
|
||||||
c.nodeInfo = newNodeInfo
|
log.WithField("tag", c.tag).Infof("Added %d new users", len(c.userList))
|
||||||
c.userList = newUserInfo
|
|
||||||
log.WithField("tag", c.Tag).Infof("Added %d new users", len(newUserInfo))
|
|
||||||
// exit
|
// exit
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// node no changed, check users
|
// node no changed, check users
|
||||||
|
if len(newUserInfo) == 0 {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
deleted, added := compareUserList(c.userList, newUserInfo)
|
deleted, added := compareUserList(c.userList, newUserInfo)
|
||||||
if len(deleted) > 0 {
|
if len(deleted) > 0 {
|
||||||
// have deleted users
|
// have deleted users
|
||||||
err = c.server.DelUsers(deleted, c.Tag)
|
err = c.server.DelUsers(deleted, c.tag)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Error("Delete users failed")
|
}).Error("Delete users failed")
|
||||||
return nil
|
return nil
|
||||||
@ -152,14 +167,13 @@ func (c *Controller) nodeInfoMonitor() (err error) {
|
|||||||
if len(added) > 0 {
|
if len(added) > 0 {
|
||||||
// have added users
|
// have added users
|
||||||
_, err = c.server.AddUsers(&vCore.AddUsersParams{
|
_, err = c.server.AddUsers(&vCore.AddUsersParams{
|
||||||
Tag: c.Tag,
|
Tag: c.tag,
|
||||||
Config: c.ControllerConfig,
|
Config: c.ControllerConfig,
|
||||||
UserInfo: added,
|
UserInfo: added,
|
||||||
NodeInfo: c.nodeInfo,
|
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Error("Add users failed")
|
}).Error("Add users failed")
|
||||||
return nil
|
return nil
|
||||||
@ -167,19 +181,37 @@ func (c *Controller) nodeInfoMonitor() (err error) {
|
|||||||
}
|
}
|
||||||
if len(added) > 0 || len(deleted) > 0 {
|
if len(added) > 0 || len(deleted) > 0 {
|
||||||
// update Limiter
|
// update Limiter
|
||||||
err = limiter.UpdateLimiter(c.Tag, added, deleted)
|
c.limiter.UpdateUser(c.tag, added, deleted)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Error("limiter users failed")
|
}).Error("limiter users failed")
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
// clear traffic record
|
||||||
|
if c.LimitConfig.EnableDynamicSpeedLimit {
|
||||||
|
for i := range deleted {
|
||||||
|
delete(c.traffic, deleted[i].Uuid)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
c.userList = newUserInfo
|
c.userList = newUserInfo
|
||||||
if len(added)+len(deleted) != 0 {
|
if len(added)+len(deleted) != 0 {
|
||||||
log.WithField("tag", c.Tag).
|
log.WithField("tag", c.tag).
|
||||||
Infof("%d user deleted, %d user added", len(deleted), len(added))
|
Infof("%d user deleted, %d user added", len(deleted), len(added))
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *Controller) SpeedChecker() {
|
||||||
|
for u, t := range c.traffic {
|
||||||
|
if t >= c.LimitConfig.DynamicSpeedLimitConfig.Traffic {
|
||||||
|
err := c.limiter.UpdateDynamicSpeedLimit(c.tag, u,
|
||||||
|
c.LimitConfig.DynamicSpeedLimitConfig.SpeedLimit,
|
||||||
|
time.Now().Add(time.Duration(c.LimitConfig.DynamicSpeedLimitConfig.ExpireTime)*time.Minute))
|
||||||
|
log.WithField("err", err).Error("Update dynamic speed limit failed")
|
||||||
|
delete(c.traffic, u)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
17
node/user.go
17
node/user.go
@ -1,20 +1,25 @@
|
|||||||
package node
|
package node
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/Yuzuki616/V2bX/api/panel"
|
|
||||||
log "github.com/sirupsen/logrus"
|
|
||||||
"runtime"
|
"runtime"
|
||||||
"strconv"
|
"strconv"
|
||||||
|
|
||||||
|
"github.com/Yuzuki616/V2bX/api/panel"
|
||||||
|
log "github.com/sirupsen/logrus"
|
||||||
)
|
)
|
||||||
|
|
||||||
func (c *Controller) reportUserTrafficTask() (err error) {
|
func (c *Controller) reportUserTrafficTask() (err error) {
|
||||||
// Get User traffic
|
// Get User traffic
|
||||||
userTraffic := make([]panel.UserTraffic, 0)
|
userTraffic := make([]panel.UserTraffic, 0)
|
||||||
for i := range c.userList {
|
for i := range c.userList {
|
||||||
up, down := c.server.GetUserTraffic(c.Tag, c.userList[i].Uuid, true)
|
up, down := c.server.GetUserTraffic(c.tag, c.userList[i].Uuid, true)
|
||||||
if up > 0 || down > 0 {
|
if up > 0 || down > 0 {
|
||||||
if c.LimitConfig.EnableDynamicSpeedLimit {
|
if c.LimitConfig.EnableDynamicSpeedLimit {
|
||||||
c.userList[i].Traffic += up + down
|
if _, ok := c.traffic[c.userList[i].Uuid]; ok {
|
||||||
|
c.traffic[c.userList[i].Uuid] += up + down
|
||||||
|
} else {
|
||||||
|
c.traffic[c.userList[i].Uuid] = up + down
|
||||||
|
}
|
||||||
}
|
}
|
||||||
userTraffic = append(userTraffic, panel.UserTraffic{
|
userTraffic = append(userTraffic, panel.UserTraffic{
|
||||||
UID: (c.userList)[i].Id,
|
UID: (c.userList)[i].Id,
|
||||||
@ -26,11 +31,11 @@ func (c *Controller) reportUserTrafficTask() (err error) {
|
|||||||
err = c.apiClient.ReportUserTraffic(userTraffic)
|
err = c.apiClient.ReportUserTraffic(userTraffic)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.WithFields(log.Fields{
|
log.WithFields(log.Fields{
|
||||||
"tag": c.Tag,
|
"tag": c.tag,
|
||||||
"err": err,
|
"err": err,
|
||||||
}).Info("Report user traffic failed")
|
}).Info("Report user traffic failed")
|
||||||
} else {
|
} else {
|
||||||
log.WithField("tag", c.Tag).Infof("Report %d online users", len(userTraffic))
|
log.WithField("tag", c.tag).Infof("Report %d online users", len(userTraffic))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
userTraffic = nil
|
userTraffic = nil
|
||||||
|
Loading…
Reference in New Issue
Block a user