2023-05-15 21:15:29 -04:00
|
|
|
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"
|
2023-06-07 13:18:56 -04:00
|
|
|
vCore "github.com/Yuzuki616/V2bX/core"
|
2023-05-15 21:15:29 -04:00
|
|
|
"github.com/Yuzuki616/V2bX/limiter"
|
2023-06-15 22:04:39 -04:00
|
|
|
"log"
|
2022-10-09 23:31:15 -04:00
|
|
|
)
|
|
|
|
|
2023-05-15 21:15:29 -04:00
|
|
|
type Controller struct {
|
2023-06-07 13:18:56 -04:00
|
|
|
server vCore.Core
|
2023-05-17 21:11:28 -04:00
|
|
|
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
|
2022-12-18 10:31:06 -05:00
|
|
|
*conf.ControllerConfig
|
2022-10-09 23:31:15 -04:00
|
|
|
}
|
|
|
|
|
2023-05-15 21:15:29 -04:00
|
|
|
// NewController return a Node controller with default parameters.
|
2023-06-07 13:18:56 -04:00
|
|
|
func NewController(server vCore.Core, api *panel.Client, config *conf.ControllerConfig) *Controller {
|
2023-05-15 21:15:29 -04:00
|
|
|
controller := &Controller{
|
2022-12-18 10:31:06 -05:00
|
|
|
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
|
2023-05-15 21:15:29 -04:00
|
|
|
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 {
|
2023-06-08 10:46:33 -04:00
|
|
|
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 {
|
2023-06-08 10:46:33 -04:00
|
|
|
return fmt.Errorf("get user list error: %s", err)
|
2022-10-09 23:31:15 -04:00
|
|
|
}
|
|
|
|
if len(c.userList) == 0 {
|
2023-06-08 10:46:33 -04:00
|
|
|
return errors.New("add users error: not have any user")
|
2022-10-09 23:31:15 -04:00
|
|
|
}
|
2023-05-15 21:15:29 -04:00
|
|
|
c.Tag = c.buildNodeTag()
|
|
|
|
|
|
|
|
// add limiter
|
2023-05-16 21:46:52 -04:00
|
|
|
l := limiter.AddLimiter(c.Tag, &c.LimitConfig, c.userList)
|
2023-05-15 21:15:29 -04:00
|
|
|
// add rule limiter
|
2022-12-18 10:31:06 -05:00
|
|
|
if !c.DisableGetRule {
|
2023-05-15 21:15:29 -04:00
|
|
|
if err = l.UpdateRule(c.nodeInfo.Rules); err != nil {
|
2023-06-08 10:46:33 -04:00
|
|
|
return fmt.Errorf("update rule error: %s", err)
|
|
|
|
}
|
|
|
|
}
|
2023-06-17 15:37:27 -04:00
|
|
|
if c.nodeInfo.Tls || c.nodeInfo.Type == "hysteria" {
|
2023-06-08 10:46:33 -04:00
|
|
|
err = c.requestCert()
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("request cert error: %s", err)
|
2022-10-09 23:31:15 -04:00
|
|
|
}
|
|
|
|
}
|
2023-05-15 21:15:29 -04:00
|
|
|
// Add new tag
|
2023-05-22 09:01:31 -04:00
|
|
|
err = c.server.AddNode(c.Tag, c.nodeInfo, c.ControllerConfig)
|
2023-05-15 21:15:29 -04:00
|
|
|
if err != nil {
|
2023-06-08 10:46:33 -04:00
|
|
|
return fmt.Errorf("add new node error: %s", err)
|
2023-05-15 21:15:29 -04:00
|
|
|
}
|
2023-06-07 13:18:56 -04:00
|
|
|
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,
|
|
|
|
})
|
2023-05-15 21:15:29 -04:00
|
|
|
if err != nil {
|
2023-06-08 10:46:33 -04:00
|
|
|
return fmt.Errorf("add users error: %s", err)
|
2023-05-15 21:15:29 -04:00
|
|
|
}
|
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
|
2023-05-15 21:15:29 -04:00
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2023-05-15 21:15:29 -04:00
|
|
|
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
|
|
|
}
|