mirror of
https://github.com/TeaOSLab/EdgeAdmin.git
synced 2025-11-13 11:53:34 +08:00
43 lines
1004 B
Go
43 lines
1004 B
Go
package conds
|
|
|
|
import (
|
|
"encoding/json"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/server/settings/conds/condutils"
|
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
|
|
"github.com/iwind/TeaGo/actions"
|
|
)
|
|
|
|
type AddGroupPopupAction struct {
|
|
actionutils.ParentAction
|
|
}
|
|
|
|
func (this *AddGroupPopupAction) Init() {
|
|
}
|
|
|
|
func (this *AddGroupPopupAction) RunGet(params struct{}) {
|
|
this.Data["components"] = condutils.ReadAllAvailableCondTypes()
|
|
|
|
this.Show()
|
|
}
|
|
|
|
func (this *AddGroupPopupAction) RunPost(params struct {
|
|
CondGroupJSON []byte
|
|
|
|
Must *actions.Must
|
|
}) {
|
|
groupConfig := &shared.HTTPRequestCondGroup{}
|
|
err := json.Unmarshal(params.CondGroupJSON, groupConfig)
|
|
if err != nil {
|
|
this.Fail("解析条件时发生错误:" + err.Error())
|
|
}
|
|
|
|
err = groupConfig.Init()
|
|
if err != nil {
|
|
this.Fail("校验条件设置时失败:" + err.Error())
|
|
}
|
|
|
|
this.Data["group"] = groupConfig
|
|
this.Success()
|
|
}
|