// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved. package remoteAddr import ( "encoding/json" "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils" "github.com/TeaOSLab/EdgeCommon/pkg/rpc/dao" "github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb" "github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs" "github.com/iwind/TeaGo/actions" "github.com/iwind/TeaGo/types" ) type IndexAction struct { actionutils.ParentAction } func (this *IndexAction) Init() { this.Nav("", "setting", "index") this.SecondMenu("remoteAddr") } func (this *IndexAction) RunGet(params struct { ServerId int64 }) { // 服务分组设置 groupResp, err := this.RPC().ServerGroupRPC().FindEnabledServerGroupConfigInfo(this.AdminContext(), &pb.FindEnabledServerGroupConfigInfoRequest{ ServerId: params.ServerId, }) if err != nil { this.ErrorPage(err) return } this.Data["hasGroupConfig"] = groupResp.HasRemoteAddrConfig this.Data["groupSettingURL"] = "/servers/groups/group/settings/remoteAddr?groupId=" + types.String(groupResp.ServerGroupId) webConfig, err := dao.SharedHTTPWebDAO.FindWebConfigWithServerId(this.AdminContext(), params.ServerId) if err != nil { this.ErrorPage(err) return } this.Data["webId"] = webConfig.Id this.Data["remoteAddrConfig"] = webConfig.RemoteAddr this.Show() } func (this *IndexAction) RunPost(params struct { WebId int64 RemoteAddrJSON []byte Must *actions.Must CSRF *actionutils.CSRF }) { var remoteAddrConfig = &serverconfigs.HTTPRemoteAddrConfig{} err := json.Unmarshal(params.RemoteAddrJSON, remoteAddrConfig) if err != nil { this.Fail("参数校验失败:" + err.Error()) } _, err = this.RPC().HTTPWebRPC().UpdateHTTPWebRemoteAddr(this.AdminContext(), &pb.UpdateHTTPWebRemoteAddrRequest{ HttpWebId: params.WebId, RemoteAddrJSON: params.RemoteAddrJSON, }) if err != nil { this.ErrorPage(err) return } this.Success() }