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, IgnoreSSLCertData: 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 }