mirror of
				https://github.com/TeaOSLab/EdgeAdmin.git
				synced 2025-11-04 21:50:28 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			928 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			928 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package serverutils
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
 | 
						|
	"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
 | 
						|
	"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
 | 
						|
	"strconv"
 | 
						|
)
 | 
						|
 | 
						|
// FindServer 查找服务信息
 | 
						|
func FindServer(p *actionutils.ParentAction, serverId int64) (*pb.Server, *serverconfigs.ServerConfig, bool) {
 | 
						|
	serverResp, err := p.RPC().ServerRPC().FindEnabledServer(p.AdminContext(), &pb.FindEnabledServerRequest{
 | 
						|
		ServerId:       serverId,
 | 
						|
		IgnoreSSLCerts: true,
 | 
						|
	})
 | 
						|
	if err != nil {
 | 
						|
		p.ErrorPage(err)
 | 
						|
		return nil, nil, false
 | 
						|
	}
 | 
						|
	var server = serverResp.Server
 | 
						|
	if server == nil {
 | 
						|
		p.ErrorPage(errors.New("not found server with id '" + strconv.FormatInt(serverId, 10) + "'"))
 | 
						|
		return nil, nil, false
 | 
						|
	}
 | 
						|
	config, err := serverconfigs.NewServerConfigFromJSON(server.Config)
 | 
						|
	if err != nil {
 | 
						|
		p.ErrorPage(err)
 | 
						|
		return nil, nil, false
 | 
						|
	}
 | 
						|
 | 
						|
	return server, config, true
 | 
						|
}
 |