mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 13:10:26 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			58 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			58 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
package node
 | 
						|
 | 
						|
import (
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
 | 
						|
	"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
 | 
						|
	"github.com/iwind/TeaGo/maps"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
type InstallAction struct {
 | 
						|
	actionutils.ParentAction
 | 
						|
}
 | 
						|
 | 
						|
func (this *InstallAction) Init() {
 | 
						|
	this.Nav("", "", "install")
 | 
						|
}
 | 
						|
 | 
						|
func (this *InstallAction) RunGet(params struct {
 | 
						|
	NodeId int64
 | 
						|
}) {
 | 
						|
	// 用户节点信息
 | 
						|
	nodeResp, err := this.RPC().UserNodeRPC().FindEnabledUserNode(this.AdminContext(), &pb.FindEnabledUserNodeRequest{UserNodeId: params.NodeId})
 | 
						|
	if err != nil {
 | 
						|
		this.ErrorPage(err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
	node := nodeResp.UserNode
 | 
						|
	if node == nil {
 | 
						|
		this.NotFound("userNode", params.NodeId)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	this.Data["node"] = maps.Map{
 | 
						|
		"id":       node.Id,
 | 
						|
		"name":     node.Name,
 | 
						|
		"uniqueId": node.UniqueId,
 | 
						|
		"secret":   node.Secret,
 | 
						|
	}
 | 
						|
 | 
						|
	// API节点列表
 | 
						|
	apiNodesResp, err := this.RPC().APINodeRPC().FindAllEnabledAPINodes(this.AdminContext(), &pb.FindAllEnabledAPINodesRequest{})
 | 
						|
	if err != nil {
 | 
						|
		this.ErrorPage(err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
	apiNodes := apiNodesResp.ApiNodes
 | 
						|
	apiEndpoints := []string{}
 | 
						|
	for _, apiNode := range apiNodes {
 | 
						|
		if !apiNode.IsOn {
 | 
						|
			continue
 | 
						|
		}
 | 
						|
		apiEndpoints = append(apiEndpoints, apiNode.AccessAddrs...)
 | 
						|
	}
 | 
						|
	this.Data["apiEndpoints"] = "\"" + strings.Join(apiEndpoints, "\", \"") + "\""
 | 
						|
 | 
						|
	this.Show()
 | 
						|
}
 |