100 lines
2.4 KiB
Go
100 lines
2.4 KiB
Go
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
|
//go:build plus
|
|
|
|
package routes
|
|
|
|
import (
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/dnsconfigs"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/langs/codes"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
"github.com/iwind/TeaGo/actions"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
type CreatePopupAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *CreatePopupAction) Init() {
|
|
}
|
|
|
|
func (this *CreatePopupAction) RunGet(params struct {
|
|
ClusterId int64
|
|
DomainId int64
|
|
UserId int64
|
|
}) {
|
|
this.Data["clusterId"] = params.ClusterId
|
|
this.Data["domainId"] = params.DomainId
|
|
this.Data["userId"] = params.UserId
|
|
|
|
this.Data["rangeTypes"] = dnsconfigs.AllNSRouteRangeTypes()
|
|
|
|
// 所有分类
|
|
categoriesResp, err := this.RPC().NSRouteCategoryRPC().FindAllNSRouteCategories(this.AdminContext(), &pb.FindAllNSRouteCategoriesRequest{})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
var categoryMaps = []maps.Map{}
|
|
for _, category := range categoriesResp.NsRouteCategories {
|
|
categoryMaps = append(categoryMaps, maps.Map{
|
|
"id": category.Id,
|
|
"name": category.Name,
|
|
})
|
|
}
|
|
this.Data["categories"] = categoryMaps
|
|
|
|
this.Show()
|
|
}
|
|
|
|
func (this *CreatePopupAction) RunPost(params struct {
|
|
ClusterId int64
|
|
DomainId int64
|
|
UserId int64
|
|
|
|
Name string
|
|
RangesJSON []byte
|
|
IsPublic bool
|
|
CategoryId int64
|
|
Priority int32
|
|
|
|
Must *actions.Must
|
|
CSRF *actionutils.CSRF
|
|
}) {
|
|
var routeId = int64(0)
|
|
defer func() {
|
|
this.CreateLogInfo(codes.NSRoute_LogCreateNSRoute, routeId)
|
|
}()
|
|
|
|
params.Must.Field("name", params.Name).
|
|
Require("请输入线路名称")
|
|
|
|
ranges, err := dnsconfigs.InitNSRangesFromJSON(params.RangesJSON)
|
|
if err != nil {
|
|
this.Fail("配置校验失败:" + err.Error())
|
|
}
|
|
|
|
if len(ranges) == 0 {
|
|
this.Fail("请添加线路范围")
|
|
}
|
|
|
|
createResp, err := this.RPC().NSRouteRPC().CreateNSRoute(this.AdminContext(), &pb.CreateNSRouteRequest{
|
|
NsClusterId: params.ClusterId,
|
|
NsDomainId: params.DomainId,
|
|
UserId: params.UserId,
|
|
Name: params.Name,
|
|
RangesJSON: params.RangesJSON,
|
|
IsPublic: params.IsPublic,
|
|
NsRouteCategoryId: params.CategoryId,
|
|
Priority: params.Priority,
|
|
})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
routeId = createResp.NsRouteId
|
|
|
|
this.Success()
|
|
}
|