V2bX/node/controller.go

113 lines
3.0 KiB
Go
Raw Normal View History

package node
2022-10-09 23:31:15 -04:00
import (
"errors"
"fmt"
2022-10-20 23:07:04 -04:00
"github.com/Yuzuki616/V2bX/api/iprecoder"
2022-10-09 23:31:15 -04:00
"github.com/Yuzuki616/V2bX/api/panel"
2023-06-15 22:04:39 -04:00
"github.com/Yuzuki616/V2bX/common/task"
2022-10-09 23:31:15 -04:00
"github.com/Yuzuki616/V2bX/conf"
vCore "github.com/Yuzuki616/V2bX/core"
"github.com/Yuzuki616/V2bX/limiter"
2023-06-15 22:04:39 -04:00
"log"
2022-10-09 23:31:15 -04:00
)
type Controller struct {
server vCore.Core
apiClient *panel.Client
2022-10-09 23:31:15 -04:00
nodeInfo *panel.NodeInfo
Tag string
userList []panel.UserInfo
2022-10-20 23:07:04 -04:00
ipRecorder iprecoder.IpRecorder
2023-06-15 22:04:39 -04:00
nodeInfoMonitorPeriodic *task.Task
userReportPeriodic *task.Task
renewCertPeriodic *task.Task
dynamicSpeedLimitPeriodic *task.Task
onlineIpReportPeriodic *task.Task
*conf.ControllerConfig
2022-10-09 23:31:15 -04:00
}
// NewController return a Node controller with default parameters.
func NewController(server vCore.Core, api *panel.Client, config *conf.ControllerConfig) *Controller {
controller := &Controller{
server: server,
ControllerConfig: config,
apiClient: api,
2022-10-09 23:31:15 -04:00
}
return controller
}
// Start implement the Start() function of the service interface
func (c *Controller) Start() error {
2022-10-09 23:31:15 -04:00
// First fetch Node Info
2022-12-20 13:49:23 -05:00
var err error
c.nodeInfo, err = c.apiClient.GetNodeInfo()
2022-10-09 23:31:15 -04:00
if err != nil {
return fmt.Errorf("get node info error: %s", err)
2022-10-09 23:31:15 -04:00
}
// Update user
c.userList, err = c.apiClient.GetUserList()
if err != nil {
return fmt.Errorf("get user list error: %s", err)
2022-10-09 23:31:15 -04:00
}
if len(c.userList) == 0 {
return errors.New("add users error: not have any user")
2022-10-09 23:31:15 -04:00
}
c.Tag = c.buildNodeTag()
// add limiter
l := limiter.AddLimiter(c.Tag, &c.LimitConfig, c.userList)
// add rule limiter
2023-06-18 21:33:20 -04:00
if err = l.UpdateRule(c.nodeInfo.Rules); err != nil {
return fmt.Errorf("update rule error: %s", err)
}
2023-06-17 15:37:27 -04:00
if c.nodeInfo.Tls || c.nodeInfo.Type == "hysteria" {
err = c.requestCert()
if err != nil {
return fmt.Errorf("request cert error: %s", err)
2022-10-09 23:31:15 -04:00
}
}
// Add new tag
2023-05-22 09:01:31 -04:00
err = c.server.AddNode(c.Tag, c.nodeInfo, c.ControllerConfig)
if err != nil {
return fmt.Errorf("add new node error: %s", err)
}
added, err := c.server.AddUsers(&vCore.AddUsersParams{
2023-05-22 22:02:47 -04:00
Tag: c.Tag,
Config: c.ControllerConfig,
UserInfo: c.userList,
NodeInfo: c.nodeInfo,
})
if err != nil {
return fmt.Errorf("add users error: %s", err)
}
2023-06-18 21:24:05 -04:00
log.Printf("[%s] Added %d new users", c.Tag, added)
2023-01-12 01:27:06 -05:00
c.initTask()
2022-10-09 23:31:15 -04:00
return nil
}
// Close implement the Close() function of the service interface
func (c *Controller) Close() error {
limiter.DeleteLimiter(c.Tag)
2022-10-09 23:31:15 -04:00
if c.nodeInfoMonitorPeriodic != nil {
2023-06-15 22:04:39 -04:00
c.nodeInfoMonitorPeriodic.Close()
2022-10-09 23:31:15 -04:00
}
2023-06-15 22:04:39 -04:00
if c.userReportPeriodic != nil {
c.userReportPeriodic.Close()
2022-10-09 23:31:15 -04:00
}
2023-01-12 01:27:06 -05:00
if c.renewCertPeriodic != nil {
2023-06-15 22:04:39 -04:00
c.renewCertPeriodic.Close()
2022-10-09 23:31:15 -04:00
}
2023-01-12 01:27:06 -05:00
if c.dynamicSpeedLimitPeriodic != nil {
2023-06-15 22:04:39 -04:00
c.dynamicSpeedLimitPeriodic.Close()
2022-10-09 23:31:15 -04:00
}
2023-01-12 01:27:06 -05:00
if c.onlineIpReportPeriodic != nil {
2023-06-15 22:04:39 -04:00
c.onlineIpReportPeriodic.Close()
2023-01-12 01:27:06 -05:00
}
2022-10-09 23:31:15 -04:00
return nil
}
func (c *Controller) buildNodeTag() string {
2023-06-15 22:04:39 -04:00
return fmt.Sprintf("%s-%s-%d", c.apiClient.APIHost, c.nodeInfo.Type, c.nodeInfo.Id)
2022-10-09 23:31:15 -04:00
}