Files
EdgeAdmin/internal/web/actions/default/servers/server/settings/http/index.go

122 lines
2.9 KiB
Go
Raw Normal View History

2020-08-21 21:09:42 +08:00
package http
2020-08-21 12:32:16 +08:00
import (
2020-09-16 09:09:10 +08:00
"encoding/json"
"github.com/TeaOSLab/EdgeAdmin/internal/oplogs"
2020-08-21 12:32:16 +08:00
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
2020-09-23 18:43:38 +08:00
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/server/settings/webutils"
2020-09-16 09:09:10 +08:00
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/serverutils"
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
"github.com/iwind/TeaGo/actions"
"github.com/iwind/TeaGo/maps"
2020-08-21 12:32:16 +08:00
)
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "setting", "index")
this.SecondMenu("http")
}
func (this *IndexAction) RunGet(params struct {
ServerId int64
}) {
2020-09-21 19:51:50 +08:00
server, _, isOk := serverutils.FindServer(this.Parent(), params.ServerId)
2020-09-16 09:09:10 +08:00
if !isOk {
return
}
httpConfig := &serverconfigs.HTTPProtocolConfig{}
if len(server.HttpJSON) > 0 {
err := json.Unmarshal(server.HttpJSON, httpConfig)
if err != nil {
this.ErrorPage(err)
return
}
} else {
httpConfig.IsOn = true
}
this.Data["serverType"] = server.Type
this.Data["httpConfig"] = maps.Map{
"isOn": httpConfig.IsOn,
"addresses": httpConfig.Listen,
}
2020-08-21 21:09:42 +08:00
2020-09-23 18:43:38 +08:00
// 跳转相关设置
webConfig, err := webutils.FindWebConfigWithServerId(this.Parent(), params.ServerId)
if err != nil {
this.ErrorPage(err)
return
}
this.Data["webId"] = webConfig.Id
this.Data["redirectToHTTPSConfig"] = webConfig.RedirectToHttps
2020-08-21 12:32:16 +08:00
this.Show()
}
2020-09-16 09:09:10 +08:00
func (this *IndexAction) RunPost(params struct {
ServerId int64
2020-09-28 16:25:26 +08:00
IsOn bool
2020-09-16 09:09:10 +08:00
Addresses string
2020-09-23 18:43:38 +08:00
WebId int64
RedirectToHTTPSJSON []byte
2020-09-16 09:09:10 +08:00
Must *actions.Must
}) {
// 记录日志
this.CreateLog(oplogs.LevelInfo, "修改服务 %d 的HTTP设置", params.ServerId)
2020-09-16 09:09:10 +08:00
addresses := []*serverconfigs.NetworkAddressConfig{}
err := json.Unmarshal([]byte(params.Addresses), &addresses)
if err != nil {
this.Fail("端口地址解析失败:" + err.Error())
}
2020-09-21 19:51:50 +08:00
server, _, isOk := serverutils.FindServer(this.Parent(), params.ServerId)
2020-09-16 09:09:10 +08:00
if !isOk {
return
}
httpConfig := &serverconfigs.HTTPProtocolConfig{}
if len(server.HttpJSON) > 0 {
err = json.Unmarshal(server.HttpJSON, httpConfig)
if err != nil {
this.ErrorPage(err)
return
}
}
2020-09-28 16:25:26 +08:00
httpConfig.IsOn = params.IsOn
2020-09-16 09:09:10 +08:00
httpConfig.Listen = addresses
configData, err := json.Marshal(httpConfig)
if err != nil {
this.ErrorPage(err)
return
}
_, err = this.RPC().ServerRPC().UpdateServerHTTP(this.AdminContext(), &pb.UpdateServerHTTPRequest{
ServerId: params.ServerId,
Config: configData,
})
if err != nil {
this.ErrorPage(err)
return
}
2020-09-23 18:43:38 +08:00
// 设置跳转到HTTPS
// TODO 校验设置
_, err = this.RPC().HTTPWebRPC().UpdateHTTPWebRedirectToHTTPS(this.AdminContext(), &pb.UpdateHTTPWebRedirectToHTTPSRequest{
WebId: params.WebId,
RedirectToHTTPSJSON: params.RedirectToHTTPSJSON,
})
if err != nil {
this.ErrorPage(err)
return
}
2020-09-16 09:09:10 +08:00
this.Success()
}