mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-04 05:00:25 +08:00
94 lines
2.0 KiB
Go
94 lines
2.0 KiB
Go
package https
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"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"
|
|
)
|
|
|
|
type IndexAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *IndexAction) Init() {
|
|
this.Nav("", "setting", "index")
|
|
this.SecondMenu("https")
|
|
}
|
|
|
|
func (this *IndexAction) RunGet(params struct {
|
|
ServerId int64
|
|
}) {
|
|
server, _, isOk := serverutils.FindServer(this.Parent(), params.ServerId)
|
|
if !isOk {
|
|
return
|
|
}
|
|
httpsConfig := &serverconfigs.HTTPSProtocolConfig{}
|
|
if len(server.HttpsJSON) > 0 {
|
|
err := json.Unmarshal(server.HttpsJSON, httpsConfig)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
} else {
|
|
httpsConfig.IsOn = true
|
|
}
|
|
|
|
this.Data["serverType"] = server.Type
|
|
this.Data["httpsConfig"] = maps.Map{
|
|
"isOn": httpsConfig.IsOn,
|
|
"addresses": httpsConfig.Listen,
|
|
}
|
|
|
|
this.Show()
|
|
}
|
|
|
|
func (this *IndexAction) RunPost(params struct {
|
|
ServerId int64
|
|
IsOn bool
|
|
Addresses string
|
|
|
|
Must *actions.Must
|
|
}) {
|
|
addresses := []*serverconfigs.NetworkAddressConfig{}
|
|
err := json.Unmarshal([]byte(params.Addresses), &addresses)
|
|
if err != nil {
|
|
this.Fail("端口地址解析失败:" + err.Error())
|
|
}
|
|
|
|
server, _, isOk := serverutils.FindServer(this.Parent(), params.ServerId)
|
|
if !isOk {
|
|
return
|
|
}
|
|
httpsConfig := &serverconfigs.HTTPSProtocolConfig{}
|
|
if len(server.HttpsJSON) > 0 {
|
|
err = json.Unmarshal(server.HttpsJSON, httpsConfig)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
}
|
|
|
|
httpsConfig.IsOn = params.IsOn
|
|
httpsConfig.Listen = addresses
|
|
configData, err := json.Marshal(httpsConfig)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
_, err = this.RPC().ServerRPC().UpdateServerHTTPS(this.AdminContext(), &pb.UpdateServerHTTPSRequest{
|
|
ServerId: params.ServerId,
|
|
Config: configData,
|
|
})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
this.Success()
|
|
}
|