package charset import ( "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils" "github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/server/settings/webutils" "github.com/TeaOSLab/EdgeCommon/pkg/configutils" "github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb" "github.com/iwind/TeaGo/actions" ) type IndexAction struct { actionutils.ParentAction } func (this *IndexAction) Init() { this.Nav("", "setting", "index") this.SecondMenu("charset") } func (this *IndexAction) RunGet(params struct { ServerId int64 }) { webConfig, err := webutils.FindWebConfigWithServerId(this.Parent(), params.ServerId) if err != nil { this.ErrorPage(err) return } this.Data["webId"] = webConfig.Id this.Data["charsetConfig"] = webConfig.Charset this.Data["usualCharsets"] = configutils.UsualCharsets this.Data["allCharsets"] = configutils.AllCharsets this.Show() } func (this *IndexAction) RunPost(params struct { WebId int64 CharsetJSON []byte Must *actions.Must }) { _, err := this.RPC().HTTPWebRPC().UpdateHTTPWebCharset(this.AdminContext(), &pb.UpdateHTTPWebCharsetRequest{ WebId: params.WebId, CharsetJSON: params.CharsetJSON, }) if err != nil { this.ErrorPage(err) return } this.Success() }