mirror of
				https://github.com/TeaOSLab/EdgeNode.git
				synced 2025-11-04 16:00:25 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			128 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			128 lines
		
	
	
		
			2.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package nodes
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
 | 
						|
	"github.com/TeaOSLab/EdgeNode/internal/configs"
 | 
						|
	teaconst "github.com/TeaOSLab/EdgeNode/internal/const"
 | 
						|
	"github.com/TeaOSLab/EdgeNode/internal/events"
 | 
						|
	"github.com/TeaOSLab/EdgeNode/internal/goman"
 | 
						|
	"github.com/TeaOSLab/EdgeNode/internal/rpc"
 | 
						|
	"github.com/TeaOSLab/EdgeNode/internal/trackers"
 | 
						|
	"github.com/TeaOSLab/EdgeNode/internal/utils"
 | 
						|
	"github.com/iwind/TeaGo/Tea"
 | 
						|
	"github.com/iwind/TeaGo/logs"
 | 
						|
	"time"
 | 
						|
)
 | 
						|
 | 
						|
var sharedSyncAPINodesTask = NewSyncAPINodesTask()
 | 
						|
 | 
						|
func init() {
 | 
						|
	if !teaconst.IsMain {
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	events.On(events.EventStart, func() {
 | 
						|
		goman.New(func() {
 | 
						|
			sharedSyncAPINodesTask.Start()
 | 
						|
		})
 | 
						|
	})
 | 
						|
	events.OnClose(func() {
 | 
						|
		sharedSyncAPINodesTask.Stop()
 | 
						|
	})
 | 
						|
}
 | 
						|
 | 
						|
// SyncAPINodesTask API节点同步任务
 | 
						|
type SyncAPINodesTask struct {
 | 
						|
	ticker *time.Ticker
 | 
						|
}
 | 
						|
 | 
						|
func NewSyncAPINodesTask() *SyncAPINodesTask {
 | 
						|
	return &SyncAPINodesTask{}
 | 
						|
}
 | 
						|
 | 
						|
func (this *SyncAPINodesTask) Start() {
 | 
						|
	this.ticker = time.NewTicker(5 * time.Minute)
 | 
						|
	if Tea.IsTesting() {
 | 
						|
		// 快速测试
 | 
						|
		this.ticker = time.NewTicker(1 * time.Minute)
 | 
						|
	}
 | 
						|
	for range this.ticker.C {
 | 
						|
		err := this.Loop()
 | 
						|
		if err != nil {
 | 
						|
			logs.Println("[TASK][SYNC_API_NODES_TASK]" + err.Error())
 | 
						|
		}
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (this *SyncAPINodesTask) Stop() {
 | 
						|
	if this.ticker != nil {
 | 
						|
		this.ticker.Stop()
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
func (this *SyncAPINodesTask) Loop() error {
 | 
						|
	// 如果有节点定制的API节点地址
 | 
						|
	var hasCustomizedAPINodeAddrs = sharedNodeConfig != nil && len(sharedNodeConfig.APINodeAddrs) > 0
 | 
						|
 | 
						|
	config, err := configs.LoadAPIConfig()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	// 是否禁止自动升级
 | 
						|
	if config.RPCDisableUpdate {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	var tr = trackers.Begin("SYNC_API_NODES")
 | 
						|
	defer tr.End()
 | 
						|
 | 
						|
	// 获取所有可用的节点
 | 
						|
	rpcClient, err := rpc.SharedRPC()
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
	resp, err := rpcClient.APINodeRPC.FindAllEnabledAPINodes(rpcClient.Context(), &pb.FindAllEnabledAPINodesRequest{})
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	var newEndpoints = []string{}
 | 
						|
	for _, node := range resp.ApiNodes {
 | 
						|
		if !node.IsOn {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
		newEndpoints = append(newEndpoints, node.AccessAddrs...)
 | 
						|
	}
 | 
						|
 | 
						|
	// 和现有的对比
 | 
						|
	if utils.EqualStrings(newEndpoints, config.RPCEndpoints) {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	// 测试是否有API节点可用
 | 
						|
	var hasOk = rpcClient.TestEndpoints(newEndpoints)
 | 
						|
	if !hasOk {
 | 
						|
		return nil
 | 
						|
	}
 | 
						|
 | 
						|
	// 修改RPC对象配置
 | 
						|
	config.RPCEndpoints = newEndpoints
 | 
						|
 | 
						|
	// 更新当前RPC
 | 
						|
	if !hasCustomizedAPINodeAddrs {
 | 
						|
		err = rpcClient.UpdateConfig(config)
 | 
						|
		if err != nil {
 | 
						|
			return err
 | 
						|
		}
 | 
						|
	}
 | 
						|
 | 
						|
	// 保存到文件
 | 
						|
	err = config.WriteFile(Tea.ConfigFile(configs.ConfigFileName))
 | 
						|
	if err != nil {
 | 
						|
		return err
 | 
						|
	}
 | 
						|
 | 
						|
	return nil
 | 
						|
}
 |