mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-03 04:10:27 +08:00
72 lines
1.9 KiB
Go
72 lines
1.9 KiB
Go
// Copyright 2022 GoEdge CDN goedge.cdn@gmail.com. All rights reserved.
|
|
|
|
package ddosProtection
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/nodes/nodeutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/messageconfigs"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/ddosconfigs"
|
|
"github.com/iwind/TeaGo/maps"
|
|
)
|
|
|
|
type StatusAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *StatusAction) Init() {
|
|
this.Nav("", "setting", "")
|
|
this.SecondMenu("ddosProtection")
|
|
}
|
|
|
|
func (this *StatusAction) RunGet(params struct {
|
|
ClusterId int64
|
|
}) {
|
|
this.Data["clusterId"] = params.ClusterId
|
|
|
|
this.Show()
|
|
}
|
|
|
|
func (this *StatusAction) RunPost(params struct {
|
|
ClusterId int64
|
|
}) {
|
|
results, err := nodeutils.SendMessageToCluster(this.AdminContext(), params.ClusterId, messageconfigs.MessageCodeCheckLocalFirewall, &messageconfigs.CheckLocalFirewallMessage{
|
|
Name: "nftables",
|
|
}, 10, false)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
|
|
var resultMaps = []maps.Map{}
|
|
for _, result := range results {
|
|
var resultMap = maps.Map{
|
|
"isOk": result.IsOK,
|
|
"message": result.Message,
|
|
"nodeId": result.NodeId,
|
|
"nodeName": result.NodeName,
|
|
}
|
|
|
|
nodeResp, err := this.RPC().NodeRPC().FindNodeDDoSProtection(this.AdminContext(), &pb.FindNodeDDoSProtectionRequest{NodeId: result.NodeId})
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
if len(nodeResp.DdosProtectionJSON) > 0 {
|
|
var ddosProtection = ddosconfigs.DefaultProtectionConfig()
|
|
err = json.Unmarshal(nodeResp.DdosProtectionJSON, ddosProtection)
|
|
if err != nil {
|
|
this.ErrorPage(err)
|
|
return
|
|
}
|
|
resultMap["isPrior"] = !ddosProtection.IsPriorEmpty()
|
|
}
|
|
resultMaps = append(resultMaps, resultMap)
|
|
}
|
|
|
|
this.Data["results"] = resultMaps
|
|
this.Success()
|
|
}
|