2020-10-02 17:22:24 +08:00
|
|
|
package cache
|
|
|
|
|
|
2020-10-04 16:09:50 +08:00
|
|
|
import (
|
2020-11-10 21:37:48 +08:00
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/oplogs"
|
2020-10-04 16:09:50 +08:00
|
|
|
"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/iwind/TeaGo/actions"
|
|
|
|
|
"github.com/iwind/TeaGo/lists"
|
|
|
|
|
"github.com/iwind/TeaGo/maps"
|
|
|
|
|
"github.com/iwind/TeaGo/types"
|
|
|
|
|
"net/http"
|
|
|
|
|
"strconv"
|
|
|
|
|
strings "strings"
|
|
|
|
|
)
|
2020-10-02 17:22:24 +08:00
|
|
|
|
|
|
|
|
type PurgeAction struct {
|
|
|
|
|
actionutils.ParentAction
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (this *PurgeAction) Init() {
|
2020-10-04 14:27:05 +08:00
|
|
|
this.Nav("", "", "purge")
|
2020-10-02 17:22:24 +08:00
|
|
|
}
|
|
|
|
|
|
2020-12-17 17:35:38 +08:00
|
|
|
func (this *PurgeAction) RunGet(params struct {
|
|
|
|
|
CachePolicyId int64
|
|
|
|
|
}) {
|
2020-10-04 16:09:50 +08:00
|
|
|
// 默认的集群ID
|
|
|
|
|
cookie, err := this.Request.Cookie("cache_cluster_id")
|
|
|
|
|
if cookie != nil && err == nil {
|
|
|
|
|
this.Data["clusterId"] = types.Int64(cookie.Value)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 集群列表
|
2020-12-17 17:35:38 +08:00
|
|
|
clustersResp, err := this.RPC().NodeClusterRPC().FindAllEnabledNodeClustersWithHTTPCachePolicyId(this.AdminContext(), &pb.FindAllEnabledNodeClustersWithHTTPCachePolicyIdRequest{HttpCachePolicyId: params.CachePolicyId})
|
2020-10-04 16:09:50 +08:00
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
clusterMaps := []maps.Map{}
|
2020-12-17 17:35:38 +08:00
|
|
|
for _, cluster := range clustersResp.NodeClusters {
|
2020-10-04 16:09:50 +08:00
|
|
|
clusterMaps = append(clusterMaps, maps.Map{
|
|
|
|
|
"id": cluster.Id,
|
|
|
|
|
"name": cluster.Name,
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
this.Data["clusters"] = clusterMaps
|
|
|
|
|
|
2020-10-02 17:22:24 +08:00
|
|
|
this.Show()
|
|
|
|
|
}
|
2020-10-04 16:09:50 +08:00
|
|
|
|
|
|
|
|
func (this *PurgeAction) RunPost(params struct {
|
|
|
|
|
CachePolicyId int64
|
|
|
|
|
ClusterId int64
|
|
|
|
|
Keys string
|
|
|
|
|
Must *actions.Must
|
|
|
|
|
}) {
|
|
|
|
|
// 记录clusterId
|
|
|
|
|
this.AddCookie(&http.Cookie{
|
|
|
|
|
Name: "cache_cluster_id",
|
|
|
|
|
Value: strconv.FormatInt(params.ClusterId, 10),
|
|
|
|
|
})
|
|
|
|
|
|
2020-12-17 15:50:44 +08:00
|
|
|
cachePolicyResp, err := this.RPC().HTTPCachePolicyRPC().FindEnabledHTTPCachePolicyConfig(this.AdminContext(), &pb.FindEnabledHTTPCachePolicyConfigRequest{HttpCachePolicyId: params.CachePolicyId})
|
2020-10-04 16:09:50 +08:00
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
2020-12-17 15:50:44 +08:00
|
|
|
cachePolicyJSON := cachePolicyResp.HttpCachePolicyJSON
|
2020-10-04 16:09:50 +08:00
|
|
|
if len(cachePolicyJSON) == 0 {
|
|
|
|
|
this.Fail("找不到要操作的缓存策略")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if len(params.Keys) == 0 {
|
|
|
|
|
this.Fail("请输入要删除的Key列表")
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
realKeys := []string{}
|
|
|
|
|
for _, key := range strings.Split(params.Keys, "\n") {
|
|
|
|
|
key = strings.TrimSpace(key)
|
|
|
|
|
if len(key) == 0 {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
if lists.ContainsString(realKeys, key) {
|
|
|
|
|
continue
|
|
|
|
|
}
|
|
|
|
|
realKeys = append(realKeys, key)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// 发送命令
|
|
|
|
|
msg := &messageconfigs.PurgeCacheMessage{
|
|
|
|
|
CachePolicyJSON: cachePolicyJSON,
|
|
|
|
|
Keys: realKeys,
|
|
|
|
|
}
|
|
|
|
|
results, err := nodeutils.SendMessageToCluster(this.AdminContext(), params.ClusterId, messageconfigs.MessageCodePurgeCache, msg, 10)
|
|
|
|
|
if err != nil {
|
|
|
|
|
this.ErrorPage(err)
|
|
|
|
|
return
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isAllOk := true
|
|
|
|
|
for _, result := range results {
|
|
|
|
|
if !result.IsOK {
|
|
|
|
|
isAllOk = false
|
|
|
|
|
break
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this.Data["isAllOk"] = isAllOk
|
|
|
|
|
this.Data["results"] = results
|
|
|
|
|
|
2020-11-10 21:37:48 +08:00
|
|
|
// 创建日志
|
2020-11-20 15:32:42 +08:00
|
|
|
defer this.CreateLog(oplogs.LevelInfo, "删除缓存,缓存策略:%d", params.CachePolicyId)
|
2020-11-10 21:37:48 +08:00
|
|
|
|
2020-10-04 16:09:50 +08:00
|
|
|
this.Success()
|
|
|
|
|
}
|