2020-08-21 21:09:42 +08:00
|
|
|
package headers
|
|
|
|
|
|
|
|
|
|
import (
|
2020-09-23 18:43:38 +08:00
|
|
|
"encoding/json"
|
2020-08-21 21:09:42 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
2021-01-03 20:25:15 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/dao"
|
2020-09-16 20:29:13 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
2020-09-23 18:43:38 +08:00
|
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
|
2021-10-07 16:47:14 +08:00
|
|
|
"github.com/iwind/TeaGo/types"
|
2020-08-21 21:09:42 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
type IndexAction struct {
|
|
|
|
|
actionutils.ParentAction
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *IndexAction) Init() {
|
|
|
|
|
this.Nav("", "setting", "index")
|
|
|
|
|
this.SecondMenu("header")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *IndexAction) RunGet(params struct {
|
|
|
|
|
ServerId int64
|
|
|
|
|
}) {
|
2024-04-14 16:45:17 +08:00
|
|
|
// 只有HTTP服务才支持
|
|
|
|
|
if this.FilterHTTPFamily() {
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
2021-10-07 16:47:14 +08:00
|
|
|
// 服务分组设置
|
|
|
|
|
groupResp, err := this.RPC().ServerGroupRPC().FindEnabledServerGroupConfigInfo(this.AdminContext(), &pb.FindEnabledServerGroupConfigInfoRequest{
|
|
|
|
|
ServerId: params.ServerId,
|
|
|
|
|
})
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
this.Data["hasGroupRequestConfig"] = groupResp.HasRequestHeadersConfig
|
|
|
|
|
this.Data["hasGroupResponseConfig"] = groupResp.HasResponseHeadersConfig
|
|
|
|
|
this.Data["groupSettingURL"] = "/servers/groups/group/settings/headers?groupId=" + types.String(groupResp.ServerGroupId)
|
|
|
|
|
|
2021-01-03 20:25:15 +08:00
|
|
|
webConfig, err := dao.SharedHTTPWebDAO.FindWebConfigWithServerId(this.AdminContext(), params.ServerId)
|
2020-09-16 20:29:13 +08:00
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-09-23 18:43:38 +08:00
|
|
|
webId := webConfig.Id
|
2020-09-16 20:29:13 +08:00
|
|
|
|
|
|
|
|
isChanged := false
|
2020-09-23 18:43:38 +08:00
|
|
|
if webConfig.RequestHeaderPolicy == nil {
|
2020-09-16 20:29:13 +08:00
|
|
|
createHeaderPolicyResp, err := this.RPC().HTTPHeaderPolicyRPC().CreateHTTPHeaderPolicy(this.AdminContext(), &pb.CreateHTTPHeaderPolicyRequest{})
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-12-29 17:16:07 +08:00
|
|
|
var headerPolicyId = createHeaderPolicyResp.HttpHeaderPolicyId
|
2020-09-23 18:43:38 +08:00
|
|
|
ref := &shared.HTTPHeaderPolicyRef{
|
|
|
|
|
IsPrior: false,
|
|
|
|
|
IsOn: true,
|
2020-09-16 20:29:13 +08:00
|
|
|
HeaderPolicyId: headerPolicyId,
|
2020-09-23 18:43:38 +08:00
|
|
|
}
|
|
|
|
|
refJSON, err := json.Marshal(ref)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
_, err = this.RPC().HTTPWebRPC().UpdateHTTPWebRequestHeader(this.AdminContext(), &pb.UpdateHTTPWebRequestHeaderRequest{
|
2021-11-24 11:58:01 +08:00
|
|
|
HttpWebId: webId,
|
2020-09-23 18:43:38 +08:00
|
|
|
HeaderJSON: refJSON,
|
2020-09-16 20:29:13 +08:00
|
|
|
})
|
2020-12-23 09:52:31 +08:00
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-09-16 20:29:13 +08:00
|
|
|
isChanged = true
|
|
|
|
|
}
|
2020-09-23 18:43:38 +08:00
|
|
|
if webConfig.ResponseHeaderPolicy == nil {
|
2020-09-16 20:29:13 +08:00
|
|
|
createHeaderPolicyResp, err := this.RPC().HTTPHeaderPolicyRPC().CreateHTTPHeaderPolicy(this.AdminContext(), &pb.CreateHTTPHeaderPolicyRequest{})
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2022-12-29 17:16:07 +08:00
|
|
|
headerPolicyId := createHeaderPolicyResp.HttpHeaderPolicyId
|
2020-09-23 18:43:38 +08:00
|
|
|
ref := &shared.HTTPHeaderPolicyRef{
|
|
|
|
|
IsPrior: false,
|
|
|
|
|
IsOn: true,
|
2020-09-16 20:29:13 +08:00
|
|
|
HeaderPolicyId: headerPolicyId,
|
2020-09-23 18:43:38 +08:00
|
|
|
}
|
|
|
|
|
refJSON, err := json.Marshal(ref)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
_, err = this.RPC().HTTPWebRPC().UpdateHTTPWebResponseHeader(this.AdminContext(), &pb.UpdateHTTPWebResponseHeaderRequest{
|
2021-11-24 11:58:01 +08:00
|
|
|
HttpWebId: webId,
|
2020-09-23 18:43:38 +08:00
|
|
|
HeaderJSON: refJSON,
|
2020-09-16 20:29:13 +08:00
|
|
|
})
|
2020-12-23 09:52:31 +08:00
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-09-16 20:29:13 +08:00
|
|
|
isChanged = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 重新获取配置
|
|
|
|
|
if isChanged {
|
2021-01-03 20:25:15 +08:00
|
|
|
webConfig, err = dao.SharedHTTPWebDAO.FindWebConfigWithServerId(this.AdminContext(), params.ServerId)
|
2020-09-16 20:29:13 +08:00
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-23 18:43:38 +08:00
|
|
|
this.Data["requestHeaderRef"] = webConfig.RequestHeaderPolicyRef
|
|
|
|
|
this.Data["requestHeaderPolicy"] = webConfig.RequestHeaderPolicy
|
|
|
|
|
this.Data["responseHeaderRef"] = webConfig.ResponseHeaderPolicyRef
|
|
|
|
|
this.Data["responseHeaderPolicy"] = webConfig.ResponseHeaderPolicy
|
2020-08-21 21:09:42 +08:00
|
|
|
|
|
|
|
|
this.Show()
|
|
|
|
|
}
|