2020-09-27 10:03:00 +08:00
|
|
|
package reverseProxy
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"encoding/json"
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
2021-03-26 22:08:18 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
|
2020-09-27 10:03:00 +08:00
|
|
|
"github.com/iwind/TeaGo/actions"
|
2020-11-30 22:27:55 +08:00
|
|
|
"github.com/iwind/TeaGo/types"
|
2020-09-27 10:03:00 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type SettingAction struct {
|
|
|
|
|
actionutils.ParentAction
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *SettingAction) Init() {
|
|
|
|
|
this.FirstMenu("setting")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *SettingAction) RunGet(params struct {
|
|
|
|
|
ServerId int64
|
|
|
|
|
}) {
|
|
|
|
|
reverseProxyResp, err := this.RPC().ServerRPC().FindAndInitServerReverseProxyConfig(this.AdminContext(), &pb.FindAndInitServerReverseProxyConfigRequest{ServerId: params.ServerId})
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
reverseProxyRef := &serverconfigs.ReverseProxyRef{}
|
|
|
|
|
err = json.Unmarshal(reverseProxyResp.ReverseProxyRefJSON, reverseProxyRef)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
reverseProxy := &serverconfigs.ReverseProxyConfig{}
|
|
|
|
|
err = json.Unmarshal(reverseProxyResp.ReverseProxyJSON, reverseProxy)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.Data["reverseProxyRef"] = reverseProxyRef
|
|
|
|
|
this.Data["reverseProxyConfig"] = reverseProxy
|
|
|
|
|
|
|
|
|
|
this.Show()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *SettingAction) RunPost(params struct {
|
|
|
|
|
ServerId int64
|
|
|
|
|
ReverseProxyRefJSON []byte
|
|
|
|
|
ReverseProxyJSON []byte
|
|
|
|
|
|
|
|
|
|
Must *actions.Must
|
|
|
|
|
}) {
|
2020-11-20 15:32:42 +08:00
|
|
|
defer this.CreateLogInfo("修改代理服务 %d 的反向代理设置", params.ServerId)
|
|
|
|
|
|
2022-06-30 12:11:17 +08:00
|
|
|
var reverseProxyConfig = &serverconfigs.ReverseProxyConfig{}
|
2020-09-27 10:03:00 +08:00
|
|
|
err := json.Unmarshal(params.ReverseProxyJSON, reverseProxyConfig)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-18 22:12:22 +08:00
|
|
|
err = reverseProxyConfig.Init(nil)
|
2020-11-30 22:27:55 +08:00
|
|
|
if err != nil {
|
|
|
|
|
this.Fail("配置校验失败:" + err.Error())
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-26 22:08:18 +08:00
|
|
|
if reverseProxyConfig.ConnTimeout == nil {
|
|
|
|
|
reverseProxyConfig.ConnTimeout = &shared.TimeDuration{Count: 0, Unit: "second"}
|
|
|
|
|
}
|
|
|
|
|
connTimeoutJSON, err := json.Marshal(reverseProxyConfig.ConnTimeout)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if reverseProxyConfig.ReadTimeout == nil {
|
|
|
|
|
reverseProxyConfig.ReadTimeout = &shared.TimeDuration{Count: 0, Unit: "second"}
|
|
|
|
|
}
|
|
|
|
|
readTimeoutJSON, err := json.Marshal(reverseProxyConfig.ReadTimeout)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if reverseProxyConfig.IdleTimeout == nil {
|
|
|
|
|
reverseProxyConfig.IdleTimeout = &shared.TimeDuration{Count: 0, Unit: "second"}
|
|
|
|
|
}
|
|
|
|
|
idleTimeoutJSON, err := json.Marshal(reverseProxyConfig.IdleTimeout)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-27 10:03:00 +08:00
|
|
|
// 设置是否启用
|
|
|
|
|
_, err = this.RPC().ServerRPC().UpdateServerReverseProxy(this.AdminContext(), &pb.UpdateServerReverseProxyRequest{
|
|
|
|
|
ServerId: params.ServerId,
|
|
|
|
|
ReverseProxyJSON: params.ReverseProxyRefJSON,
|
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-12 20:18:29 +08:00
|
|
|
// PROXY Protocol
|
|
|
|
|
var proxyProtocolJSON = []byte{}
|
|
|
|
|
if reverseProxyConfig.ProxyProtocol != nil {
|
|
|
|
|
proxyProtocolJSON, err = json.Marshal(reverseProxyConfig.ProxyProtocol)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-27 10:03:00 +08:00
|
|
|
// 设置反向代理相关信息
|
|
|
|
|
_, err = this.RPC().ReverseProxyRPC().UpdateReverseProxy(this.AdminContext(), &pb.UpdateReverseProxyRequest{
|
2022-06-30 12:11:17 +08:00
|
|
|
ReverseProxyId: reverseProxyConfig.Id,
|
|
|
|
|
RequestHostType: types.Int32(reverseProxyConfig.RequestHostType),
|
|
|
|
|
RequestHost: reverseProxyConfig.RequestHost,
|
|
|
|
|
RequestURI: reverseProxyConfig.RequestURI,
|
|
|
|
|
StripPrefix: reverseProxyConfig.StripPrefix,
|
|
|
|
|
AutoFlush: reverseProxyConfig.AutoFlush,
|
|
|
|
|
AddHeaders: reverseProxyConfig.AddHeaders,
|
|
|
|
|
ConnTimeoutJSON: connTimeoutJSON,
|
|
|
|
|
ReadTimeoutJSON: readTimeoutJSON,
|
|
|
|
|
IdleTimeoutJSON: idleTimeoutJSON,
|
|
|
|
|
MaxConns: types.Int32(reverseProxyConfig.MaxConns),
|
|
|
|
|
MaxIdleConns: types.Int32(reverseProxyConfig.MaxIdleConns),
|
|
|
|
|
ProxyProtocolJSON: proxyProtocolJSON,
|
|
|
|
|
FollowRedirects: reverseProxyConfig.FollowRedirects,
|
|
|
|
|
RequestHostExcludingPort: reverseProxyConfig.RequestHostExcludingPort,
|
2020-09-27 10:03:00 +08:00
|
|
|
})
|
2021-08-07 18:26:50 +08:00
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-09-27 10:03:00 +08:00
|
|
|
|
|
|
|
|
this.Success()
|
|
|
|
|
}
|