Files
EdgeAdmin/internal/web/actions/default/servers/addOriginPopup.go

78 lines
1.6 KiB
Go
Raw Normal View History

2020-08-21 12:32:16 +08:00
package servers
import (
2020-11-10 21:37:48 +08:00
"github.com/TeaOSLab/EdgeAdmin/internal/oplogs"
2020-08-21 12:32:16 +08:00
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
2020-09-15 14:44:52 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
2020-09-13 20:37:07 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
2020-08-21 12:32:16 +08:00
"github.com/iwind/TeaGo/actions"
"regexp"
"strings"
)
type AddOriginPopupAction struct {
actionutils.ParentAction
}
func (this *AddOriginPopupAction) Init() {
this.Nav("", "", "")
}
func (this *AddOriginPopupAction) RunGet(params struct {
ServerType string
}) {
this.Data["serverType"] = params.ServerType
this.Show()
}
func (this *AddOriginPopupAction) RunPost(params struct {
Protocol string
Addr string
Must *actions.Must
}) {
params.Must.
Field("addr", params.Addr).
Require("请输入源站地址")
addr := regexp.MustCompile(`\s+`).ReplaceAllString(params.Addr, "")
portIndex := strings.LastIndex(params.Addr, ":")
if portIndex < 0 {
this.Fail("地址中需要带有端口")
}
host := addr[:portIndex]
port := addr[portIndex+1:]
2020-09-22 11:36:51 +08:00
resp, err := this.RPC().OriginRPC().CreateOrigin(this.AdminContext(), &pb.CreateOriginRequest{
2020-09-13 20:37:07 +08:00
Name: "",
Addr: &pb.NetworkAddress{
Protocol: params.Protocol,
Host: host,
PortRange: port,
},
Description: "",
})
if err != nil {
this.ErrorPage(err)
return
}
2020-09-22 11:36:51 +08:00
origin := &serverconfigs.OriginConfig{
2020-09-13 20:37:07 +08:00
Id: resp.OriginId,
2020-08-21 12:32:16 +08:00
IsOn: true,
Addr: &serverconfigs.NetworkAddressConfig{
2020-09-15 14:44:52 +08:00
Protocol: serverconfigs.Protocol(params.Protocol),
2020-08-21 12:32:16 +08:00
Host: host,
PortRange: port,
},
}
this.Data["origin"] = origin
2020-11-10 21:37:48 +08:00
// 创建日志
2020-11-20 15:32:42 +08:00
defer this.CreateLog(oplogs.LevelInfo, "创建源站 %d", resp.OriginId)
2020-11-10 21:37:48 +08:00
2020-08-21 12:32:16 +08:00
this.Success()
}