在启动时检查节点时间戳是否和API节点一致,如果不一致则上报

This commit is contained in:
刘祥超
2022-05-12 21:07:45 +08:00
parent e812b3fcf6
commit 84a5d38b0b

View File

@@ -426,7 +426,7 @@ func (this *Node) syncConfig(taskVersion int64) error {
return nil
}
configJSON := configResp.NodeJSON
var configJSON = configResp.NodeJSON
if configResp.IsCompressed {
var reader = brotli.NewReader(bytes.NewReader(configJSON))
var configBuf = &bytes.Buffer{}
@@ -445,7 +445,7 @@ func (this *Node) syncConfig(taskVersion int64) error {
nodeConfigUpdatedAt = time.Now().Unix()
nodeConfig := &nodeconfigs.NodeConfig{}
var nodeConfig = &nodeconfigs.NodeConfig{}
err = json.Unmarshal(configJSON, nodeConfig)
if err != nil {
return errors.New("decode config failed: " + err.Error())
@@ -453,6 +453,15 @@ func (this *Node) syncConfig(taskVersion int64) error {
teaconst.NodeId = nodeConfig.Id
teaconst.NodeIdString = types.String(teaconst.NodeId)
// 检查时间是否一致
// 这个需要在 teaconst.NodeId 设置之后因为上报到API节点的时候需要节点ID
if configResp.Timestamp > 0 {
var timestampDelta = configResp.Timestamp - time.Now().Unix()
if timestampDelta > 60 || timestampDelta < -60 {
remotelogs.Error("NODE", "node timestamp ('"+types.String(time.Now().Unix())+"') is not same as api node ('"+types.String(configResp.Timestamp)+"'), please sync the time")
}
}
// 写入到文件中
err = nodeConfig.Save()
if err != nil {