Files
EdgeAdmin/internal/web/actions/default/servers/server/settings/cache/index.go

76 lines
1.6 KiB
Go
Raw Normal View History

2020-08-21 21:09:42 +08:00
package cache
import (
2020-10-04 20:38:27 +08:00
"encoding/json"
2020-11-20 15:32:42 +08:00
"github.com/TeaOSLab/EdgeAdmin/internal/oplogs"
2020-08-21 21:09:42 +08:00
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
2020-09-21 19:51:50 +08:00
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/server/settings/webutils"
2020-09-20 16:28:16 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
2020-10-04 20:38:27 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
2020-09-20 16:28:16 +08:00
"github.com/iwind/TeaGo/actions"
2020-08-21 21:09:42 +08:00
)
type IndexAction struct {
actionutils.ParentAction
}
func (this *IndexAction) Init() {
this.Nav("", "setting", "index")
this.SecondMenu("cache")
}
func (this *IndexAction) RunGet(params struct {
ServerId int64
}) {
2020-09-21 19:51:50 +08:00
webConfig, err := webutils.FindWebConfigWithServerId(this.Parent(), params.ServerId)
2020-09-20 16:28:16 +08:00
if err != nil {
this.ErrorPage(err)
return
}
this.Data["webId"] = webConfig.Id
2020-10-04 20:38:27 +08:00
this.Data["cacheConfig"] = webConfig.Cache
2020-08-21 21:09:42 +08:00
this.Show()
}
2020-09-20 16:28:16 +08:00
func (this *IndexAction) RunPost(params struct {
WebId int64
CacheJSON []byte
Must *actions.Must
}) {
2020-11-20 15:32:42 +08:00
// 日志
defer this.CreateLog(oplogs.LevelInfo, "修改Web %d 的缓存设置", params.WebId)
2020-09-20 16:28:16 +08:00
// TODO 校验配置
2020-10-04 20:38:27 +08:00
cacheConfig := &serverconfigs.HTTPCacheConfig{}
err := json.Unmarshal(params.CacheJSON, cacheConfig)
if err != nil {
this.ErrorPage(err)
return
}
// 去除不必要的部分
for _, cacheRef := range cacheConfig.CacheRefs {
cacheRef.CachePolicy = nil
}
cacheJSON, err := json.Marshal(cacheConfig)
if err != nil {
this.ErrorPage(err)
return
}
2020-09-20 16:28:16 +08:00
2020-10-04 20:38:27 +08:00
_, err = this.RPC().HTTPWebRPC().UpdateHTTPWebCache(this.AdminContext(), &pb.UpdateHTTPWebCacheRequest{
2020-09-20 16:28:16 +08:00
WebId: params.WebId,
2020-10-04 20:38:27 +08:00
CacheJSON: cacheJSON,
2020-09-20 16:28:16 +08:00
})
if err != nil {
this.ErrorPage(err)
return
}
this.Success()
}