Files
EdgeAdmin/internal/web/actions/default/servers/iplists/update.go

60 lines
1.2 KiB
Go
Raw Normal View History

2021-06-23 13:12:33 +08:00
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package iplists
import (
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
2023-06-30 18:08:30 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/langs/codes"
2021-06-23 13:12:33 +08:00
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
"github.com/iwind/TeaGo/actions"
)
type UpdateAction struct {
actionutils.ParentAction
}
func (this *UpdateAction) Init() {
this.Nav("", "", "update")
}
func (this *UpdateAction) RunGet(params struct {
ListId int64
}) {
err := InitIPList(this.Parent(), params.ListId)
if err != nil {
this.ErrorPage(err)
return
}
this.Show()
}
func (this *UpdateAction) RunPost(params struct {
ListId int64
Name string
Type string
Description string
Must *actions.Must
CSRF *actionutils.CSRF
}) {
2023-06-30 18:08:30 +08:00
defer this.CreateLogInfo(codes.IPList_LogUpdateIPList, params.ListId)
2021-06-23 13:12:33 +08:00
params.Must.
Field("name", params.Name).
Require("请输入名称")
_, err := this.RPC().IPListRPC().UpdateIPList(this.AdminContext(), &pb.UpdateIPListRequest{
IpListId: params.ListId,
Name: params.Name,
Code: "",
TimeoutJSON: nil,
Description: params.Description,
})
if err != nil {
this.ErrorPage(err)
return
}
this.Success()
}