58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
// Copyright 2023 Liuxiangchao iwind.liu@gmail.com. All rights reserved. Official site: https://goedge.cn .
|
|
|
|
package instances
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
"github.com/TeaOSLab/EdgeUser/internal/web/actions/actionutils"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
type UserServersAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *UserServersAction) RunPost(params struct {
|
|
Page int32
|
|
}) {
|
|
var size int64 = 10
|
|
|
|
// 数量
|
|
countResp, err := this.RPC().ServerRPC().CountAllEnabledServersMatch(this.UserContext(), &pb.CountAllEnabledServersMatchRequest{
|
|
UserId: this.UserId(),
|
|
})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
var count = countResp.Count
|
|
var page = this.NewPage(count, size)
|
|
|
|
// 列表
|
|
serversResp, err := this.RPC().ServerRPC().ListEnabledServersMatch(this.UserContext(), &pb.ListEnabledServersMatchRequest{
|
|
Offset: page.Offset,
|
|
Size: page.Size,
|
|
UserId: this.UserId(),
|
|
IgnoreServerNames: true,
|
|
IgnoreSSLCerts: true,
|
|
})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
var serverMaps = []maps.Map{}
|
|
for _, server := range serversResp.Servers {
|
|
serverMaps = append(serverMaps, maps.Map{
|
|
"id": server.Id,
|
|
"name": server.Name,
|
|
})
|
|
}
|
|
this.Data["servers"] = serverMaps
|
|
this.Data["page"] = maps.Map{
|
|
"max": page.Max,
|
|
}
|
|
|
|
this.Success()
|
|
}
|