mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
93 lines
2.3 KiB
Go
93 lines
2.3 KiB
Go
package models
|
||
|
||
import (
|
||
"encoding/json"
|
||
"github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
|
||
"time"
|
||
)
|
||
|
||
// DecodeInstallStatus 安装状态
|
||
func (this *Node) DecodeInstallStatus() (*NodeInstallStatus, error) {
|
||
if len(this.InstallStatus) == 0 || this.InstallStatus == "null" {
|
||
return NewNodeInstallStatus(), nil
|
||
}
|
||
status := &NodeInstallStatus{}
|
||
err := json.Unmarshal([]byte(this.InstallStatus), status)
|
||
if err != nil {
|
||
return NewNodeInstallStatus(), err
|
||
}
|
||
|
||
// 如果N秒钟没有更新状态,则认为不在运行
|
||
if status.IsRunning && status.UpdatedAt < time.Now().Unix()-10 {
|
||
status.IsRunning = false
|
||
status.IsFinished = true
|
||
status.Error = "timeout"
|
||
}
|
||
|
||
return status, nil
|
||
}
|
||
|
||
// DecodeStatus 节点状态
|
||
func (this *Node) DecodeStatus() (*nodeconfigs.NodeStatus, error) {
|
||
if len(this.Status) == 0 || this.Status == "null" {
|
||
return nil, nil
|
||
}
|
||
status := &nodeconfigs.NodeStatus{}
|
||
err := json.Unmarshal([]byte(this.Status), status)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
return status, nil
|
||
}
|
||
|
||
// DNSRouteCodes 所有的DNS线路
|
||
func (this *Node) DNSRouteCodes() map[int64][]string {
|
||
routes := map[int64][]string{} // domainId => routes
|
||
if len(this.DnsRoutes) == 0 || this.DnsRoutes == "null" {
|
||
return routes
|
||
}
|
||
err := json.Unmarshal([]byte(this.DnsRoutes), &routes)
|
||
if err != nil {
|
||
// 忽略错误
|
||
return routes
|
||
}
|
||
return routes
|
||
}
|
||
|
||
// DNSRouteCodesForDomainId DNS线路
|
||
func (this *Node) DNSRouteCodesForDomainId(dnsDomainId int64) ([]string, error) {
|
||
routes := map[int64][]string{} // domainId => routes
|
||
if len(this.DnsRoutes) == 0 || this.DnsRoutes == "null" {
|
||
return nil, nil
|
||
}
|
||
err := json.Unmarshal([]byte(this.DnsRoutes), &routes)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
domainRoutes, _ := routes[dnsDomainId]
|
||
return domainRoutes, nil
|
||
}
|
||
|
||
// DecodeConnectedAPINodeIds 连接的API
|
||
func (this *Node) DecodeConnectedAPINodeIds() ([]int64, error) {
|
||
apiNodeIds := []int64{}
|
||
if IsNotNull(this.ConnectedAPINodes) {
|
||
err := json.Unmarshal([]byte(this.ConnectedAPINodes), &apiNodeIds)
|
||
if err != nil {
|
||
return nil, err
|
||
}
|
||
}
|
||
return apiNodeIds, nil
|
||
}
|
||
|
||
// DecodeSecondaryClusterIds 从集群IDs
|
||
func (this *Node) DecodeSecondaryClusterIds() []int64 {
|
||
if len(this.SecondaryClusterIds) == 0 {
|
||
return []int64{}
|
||
}
|
||
var result = []int64{}
|
||
// 不需要处理错误
|
||
_ = json.Unmarshal([]byte(this.SecondaryClusterIds), &result)
|
||
return result
|
||
}
|