Compare commits
53 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8f4c56b24a | ||
|
|
5eb0f65934 | ||
|
|
4ed4f165ac | ||
|
|
eb8419fda0 | ||
|
|
b4a7ee0e89 | ||
|
|
83ad1bc529 | ||
|
|
56948d3035 | ||
|
|
e71e5ad57e | ||
|
|
e06d1fa5b0 | ||
|
|
460439f6bd | ||
|
|
4b4072a47e | ||
|
|
65d19d92e9 | ||
|
|
79e52d1c6e | ||
|
|
59963ee7b9 | ||
|
|
88273b1c9b | ||
|
|
bc1eb994f9 | ||
|
|
136f0fd4bd | ||
|
|
021dc13ce9 | ||
|
|
925b71489d | ||
|
|
580ce9f8f5 | ||
|
|
2b3d8c062d | ||
|
|
41858e091a | ||
|
|
5b7eaf08ae | ||
|
|
7362722adb | ||
|
|
8198ea8819 | ||
|
|
cb615f4cbc | ||
|
|
6623fd8362 | ||
|
|
7f8be85116 | ||
|
|
c61381441c | ||
|
|
b3cecdfea2 | ||
|
|
66f582df58 | ||
|
|
7f6f7e11ce | ||
|
|
0bdda313da | ||
|
|
d5e851cff7 | ||
|
|
92f1ec13f9 | ||
|
|
5376006754 | ||
|
|
361979411e | ||
|
|
3981308083 | ||
|
|
facd5e14cc | ||
|
|
ecce92c528 | ||
|
|
7696940989 | ||
|
|
941ff46c2c | ||
|
|
94036073de | ||
|
|
13216f481c | ||
|
|
eb35df8720 | ||
|
|
bf500fe1a4 | ||
|
|
c173e86e62 | ||
|
|
d4cb148272 | ||
|
|
ffc3f8544e | ||
|
|
b326bfe63a | ||
|
|
12f3f47ef9 | ||
|
|
45734747c1 | ||
|
|
37933d814c |
@@ -9,6 +9,7 @@ import (
|
|||||||
"github.com/TeaOSLab/EdgeAdmin/internal/nodes"
|
"github.com/TeaOSLab/EdgeAdmin/internal/nodes"
|
||||||
_ "github.com/TeaOSLab/EdgeAdmin/internal/web"
|
_ "github.com/TeaOSLab/EdgeAdmin/internal/web"
|
||||||
_ "github.com/iwind/TeaGo/bootstrap"
|
_ "github.com/iwind/TeaGo/bootstrap"
|
||||||
|
"github.com/iwind/TeaGo/maps"
|
||||||
"github.com/iwind/gosock/pkg/gosock"
|
"github.com/iwind/gosock/pkg/gosock"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -64,12 +65,17 @@ func main() {
|
|||||||
fmt.Println("[ERROR]the service not started yet, you should start the service first")
|
fmt.Println("[ERROR]the service not started yet, you should start the service first")
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
_, err := sock.Send(&gosock.Command{Code: "demo"})
|
reply, err := sock.Send(&gosock.Command{Code: "demo"})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
fmt.Println("[ERROR]change demo mode failed: " + err.Error())
|
fmt.Println("[ERROR]change demo mode failed: " + err.Error())
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
fmt.Println("change demo mode successfully")
|
var isDemo = maps.NewMap(reply.Params).GetBool("isDemo")
|
||||||
|
if isDemo {
|
||||||
|
fmt.Println("change demo mode to: on")
|
||||||
|
} else {
|
||||||
|
fmt.Println("change demo mode to: off")
|
||||||
|
}
|
||||||
})
|
})
|
||||||
app.On("generate", func() {
|
app.On("generate", func() {
|
||||||
err := gen.Generate()
|
err := gen.Generate()
|
||||||
|
|||||||
Binary file not shown.
|
Before Width: | Height: | Size: 203 KiB After Width: | Height: | Size: 225 KiB |
@@ -11,10 +11,6 @@ import (
|
|||||||
|
|
||||||
var sharedAdminUIConfig *systemconfigs.AdminUIConfig = nil
|
var sharedAdminUIConfig *systemconfigs.AdminUIConfig = nil
|
||||||
|
|
||||||
const (
|
|
||||||
AdminUISettingName = "adminUIConfig"
|
|
||||||
)
|
|
||||||
|
|
||||||
func LoadAdminUIConfig() (*systemconfigs.AdminUIConfig, error) {
|
func LoadAdminUIConfig() (*systemconfigs.AdminUIConfig, error) {
|
||||||
locker.Lock()
|
locker.Lock()
|
||||||
defer locker.Unlock()
|
defer locker.Unlock()
|
||||||
@@ -41,7 +37,7 @@ func UpdateAdminUIConfig(uiConfig *systemconfigs.AdminUIConfig) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
_, err = rpcClient.SysSettingRPC().UpdateSysSetting(rpcClient.Context(0), &pb.UpdateSysSettingRequest{
|
_, err = rpcClient.SysSettingRPC().UpdateSysSetting(rpcClient.Context(0), &pb.UpdateSysSettingRequest{
|
||||||
Code: AdminUISettingName,
|
Code: systemconfigs.SettingCodeAdminUIConfig,
|
||||||
ValueJSON: valueJSON,
|
ValueJSON: valueJSON,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -52,7 +48,7 @@ func UpdateAdminUIConfig(uiConfig *systemconfigs.AdminUIConfig) error {
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
// 是否显示财务信息
|
// ShowFinance 是否显示财务信息
|
||||||
func ShowFinance() bool {
|
func ShowFinance() bool {
|
||||||
config, _ := LoadAdminUIConfig()
|
config, _ := LoadAdminUIConfig()
|
||||||
if config != nil && !config.ShowFinance {
|
if config != nil && !config.ShowFinance {
|
||||||
@@ -70,7 +66,7 @@ func loadAdminUIConfig() (*systemconfigs.AdminUIConfig, error) {
|
|||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
resp, err := rpcClient.SysSettingRPC().ReadSysSetting(rpcClient.Context(0), &pb.ReadSysSettingRequest{
|
resp, err := rpcClient.SysSettingRPC().ReadSysSetting(rpcClient.Context(0), &pb.ReadSysSettingRequest{
|
||||||
Code: AdminUISettingName,
|
Code: systemconfigs.SettingCodeAdminUIConfig,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
package teaconst
|
package teaconst
|
||||||
|
|
||||||
const (
|
const (
|
||||||
Version = "0.4.0"
|
Version = "0.4.2"
|
||||||
|
|
||||||
APINodeVersion = "0.4.0"
|
APINodeVersion = "0.4.2"
|
||||||
|
|
||||||
ProductName = "Edge Admin"
|
ProductName = "Edge Admin"
|
||||||
ProcessName = "edge-admin"
|
ProcessName = "edge-admin"
|
||||||
|
|||||||
@@ -325,7 +325,9 @@ func (this *AdminNode) listenSock() error {
|
|||||||
_ = cmd.ReplyOk()
|
_ = cmd.ReplyOk()
|
||||||
case "demo":
|
case "demo":
|
||||||
teaconst.IsDemoMode = !teaconst.IsDemoMode
|
teaconst.IsDemoMode = !teaconst.IsDemoMode
|
||||||
_ = cmd.ReplyOk()
|
_ = cmd.Reply(&gosock.Command{
|
||||||
|
Params: map[string]interface{}{"isDemo": teaconst.IsDemoMode},
|
||||||
|
})
|
||||||
case "info":
|
case "info":
|
||||||
exePath, _ := os.Executable()
|
exePath, _ := os.Executable()
|
||||||
_ = cmd.Reply(&gosock.Command{
|
_ = cmd.Reply(&gosock.Command{
|
||||||
|
|||||||
@@ -161,6 +161,10 @@ func (this *RPCClient) APINodeRPC() pb.APINodeServiceClient {
|
|||||||
return pb.NewAPINodeServiceClient(this.pickConn())
|
return pb.NewAPINodeServiceClient(this.pickConn())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (this *RPCClient) APIMethodStatRPC() pb.APIMethodStatServiceClient {
|
||||||
|
return pb.NewAPIMethodStatServiceClient(this.pickConn())
|
||||||
|
}
|
||||||
|
|
||||||
func (this *RPCClient) UserNodeRPC() pb.UserNodeServiceClient {
|
func (this *RPCClient) UserNodeRPC() pb.UserNodeServiceClient {
|
||||||
return pb.NewUserNodeServiceClient(this.pickConn())
|
return pb.NewUserNodeServiceClient(this.pickConn())
|
||||||
}
|
}
|
||||||
@@ -382,6 +386,10 @@ func (this *RPCClient) UserBillRPC() pb.UserBillServiceClient {
|
|||||||
return pb.NewUserBillServiceClient(this.pickConn())
|
return pb.NewUserBillServiceClient(this.pickConn())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (this *RPCClient) ServerBillRPC() pb.ServerBillServiceClient {
|
||||||
|
return pb.NewServerBillServiceClient(this.pickConn())
|
||||||
|
}
|
||||||
|
|
||||||
func (this *RPCClient) UserAccountRPC() pb.UserAccountServiceClient {
|
func (this *RPCClient) UserAccountRPC() pb.UserAccountServiceClient {
|
||||||
return pb.NewUserAccountServiceClient(this.pickConn())
|
return pb.NewUserAccountServiceClient(this.pickConn())
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,9 @@ import (
|
|||||||
teaconst "github.com/TeaOSLab/EdgeAdmin/internal/const"
|
teaconst "github.com/TeaOSLab/EdgeAdmin/internal/const"
|
||||||
"github.com/TeaOSLab/EdgeAdmin/internal/events"
|
"github.com/TeaOSLab/EdgeAdmin/internal/events"
|
||||||
"github.com/TeaOSLab/EdgeAdmin/internal/goman"
|
"github.com/TeaOSLab/EdgeAdmin/internal/goman"
|
||||||
|
"github.com/TeaOSLab/EdgeAdmin/internal/rpc"
|
||||||
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
||||||
|
"github.com/TeaOSLab/EdgeCommon/pkg/systemconfigs"
|
||||||
"github.com/iwind/TeaGo/logs"
|
"github.com/iwind/TeaGo/logs"
|
||||||
"github.com/iwind/TeaGo/maps"
|
"github.com/iwind/TeaGo/maps"
|
||||||
stringutil "github.com/iwind/TeaGo/utils/string"
|
stringutil "github.com/iwind/TeaGo/utils/string"
|
||||||
@@ -46,6 +49,30 @@ func (this *CheckUpdatesTask) Start() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *CheckUpdatesTask) Loop() error {
|
func (this *CheckUpdatesTask) Loop() error {
|
||||||
|
// 检查是否开启
|
||||||
|
rpcClient, err := rpc.SharedRPC()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
valueResp, err := rpcClient.SysSettingRPC().ReadSysSetting(rpcClient.Context(0), &pb.ReadSysSettingRequest{Code: systemconfigs.SettingCodeCheckUpdates})
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
|
var valueJSON = valueResp.ValueJSON
|
||||||
|
var config = &systemconfigs.CheckUpdatesConfig{AutoCheck: false}
|
||||||
|
if len(valueJSON) > 0 {
|
||||||
|
err = json.Unmarshal(valueJSON, config)
|
||||||
|
if err != nil {
|
||||||
|
return errors.New("decode config failed: " + err.Error())
|
||||||
|
}
|
||||||
|
if !config.AutoCheck {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
// 开始检查
|
||||||
type Response struct {
|
type Response struct {
|
||||||
Code int `json:"code"`
|
Code int `json:"code"`
|
||||||
Message string `json:"message"`
|
Message string `json:"message"`
|
||||||
|
|||||||
27
internal/utils/nodelogutils/utils.go
Normal file
27
internal/utils/nodelogutils/utils.go
Normal file
@@ -0,0 +1,27 @@
|
|||||||
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||||||
|
//go:build community
|
||||||
|
// +build community
|
||||||
|
|
||||||
|
package nodelogutils
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/iwind/TeaGo/maps"
|
||||||
|
)
|
||||||
|
|
||||||
|
// FindCommonTags 查找常用的标签
|
||||||
|
func FindNodeCommonTags() []maps.Map {
|
||||||
|
return []maps.Map{
|
||||||
|
{
|
||||||
|
"name": "端口监听",
|
||||||
|
"code": "LISTENER",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "WAF",
|
||||||
|
"code": "WAF",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "访问日志",
|
||||||
|
"code": "ACCESS_LOG",
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,6 +2,7 @@ package numberutils
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"github.com/iwind/TeaGo/types"
|
||||||
"strconv"
|
"strconv"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -40,3 +41,16 @@ func FormatBytes(bytes int64) string {
|
|||||||
return fmt.Sprintf("%.2fEB", float64(bytes)/float64(Pow1024(6)))
|
return fmt.Sprintf("%.2fEB", float64(bytes)/float64(Pow1024(6)))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func FormatCount(count int64) string {
|
||||||
|
if count < 1000 {
|
||||||
|
return types.String(count)
|
||||||
|
}
|
||||||
|
if count < 1000 * 1000 {
|
||||||
|
return fmt.Sprintf("%.1fK", float32(count)/1000)
|
||||||
|
}
|
||||||
|
if count < 1000 * 1000 * 1000{
|
||||||
|
return fmt.Sprintf("%.1fM", float32(count)/1000/1000)
|
||||||
|
}
|
||||||
|
return fmt.Sprintf("%.1fB", float32(count)/1000/1000/1000)
|
||||||
|
}
|
||||||
|
|||||||
@@ -14,3 +14,13 @@ func TestFormatBytes(t *testing.T) {
|
|||||||
t.Log(FormatBytes(1_000_000_000_000_000_000))
|
t.Log(FormatBytes(1_000_000_000_000_000_000))
|
||||||
t.Log(FormatBytes(9_000_000_000_000_000_000))
|
t.Log(FormatBytes(9_000_000_000_000_000_000))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestFormatCount(t *testing.T) {
|
||||||
|
t.Log(FormatCount(1))
|
||||||
|
t.Log(FormatCount(1000))
|
||||||
|
t.Log(FormatCount(1500))
|
||||||
|
t.Log(FormatCount(1_000_000))
|
||||||
|
t.Log(FormatCount(1_500_000))
|
||||||
|
t.Log(FormatCount(1_000_000_000))
|
||||||
|
t.Log(FormatCount(1_500_000_000))
|
||||||
|
}
|
||||||
@@ -9,6 +9,7 @@ import (
|
|||||||
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
||||||
"github.com/iwind/TeaGo/logs"
|
"github.com/iwind/TeaGo/logs"
|
||||||
"github.com/iwind/TeaGo/maps"
|
"github.com/iwind/TeaGo/maps"
|
||||||
|
timeutil "github.com/iwind/TeaGo/utils/time"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
@@ -26,11 +27,11 @@ func (this *IndexAction) RunGet(params struct{}) {
|
|||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
count := countResp.Count
|
var count = countResp.Count
|
||||||
page := this.NewPage(count)
|
var page = this.NewPage(count)
|
||||||
this.Data["page"] = page.AsHTML()
|
this.Data["page"] = page.AsHTML()
|
||||||
|
|
||||||
nodeMaps := []maps.Map{}
|
var nodeMaps = []maps.Map{}
|
||||||
if count > 0 {
|
if count > 0 {
|
||||||
nodesResp, err := this.RPC().APINodeRPC().ListEnabledAPINodes(this.AdminContext(), &pb.ListEnabledAPINodesRequest{
|
nodesResp, err := this.RPC().APINodeRPC().ListEnabledAPINodes(this.AdminContext(), &pb.ListEnabledAPINodesRequest{
|
||||||
Offset: page.Offset,
|
Offset: page.Offset,
|
||||||
@@ -106,5 +107,13 @@ func (this *IndexAction) RunGet(params struct{}) {
|
|||||||
}
|
}
|
||||||
this.Data["nodes"] = nodeMaps
|
this.Data["nodes"] = nodeMaps
|
||||||
|
|
||||||
|
// 检查是否有调试数据
|
||||||
|
countMethodStatsResp, err := this.RPC().APIMethodStatRPC().CountAPIMethodStatsWithDay(this.AdminContext(), &pb.CountAPIMethodStatsWithDayRequest{Day: timeutil.Format("Ymd")})
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.Data["hasMethodStats"] = countMethodStatsResp.Count > 0
|
||||||
|
|
||||||
this.Show()
|
this.Show()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,6 +16,7 @@ func init() {
|
|||||||
Helper(settingutils.NewAdvancedHelper("apiNodes")).
|
Helper(settingutils.NewAdvancedHelper("apiNodes")).
|
||||||
Prefix("/api").
|
Prefix("/api").
|
||||||
Get("", new(IndexAction)).
|
Get("", new(IndexAction)).
|
||||||
|
Get("/methodStats", new(MethodStatsAction)).
|
||||||
GetPost("/node/createPopup", new(node.CreatePopupAction)).
|
GetPost("/node/createPopup", new(node.CreatePopupAction)).
|
||||||
Post("/delete", new(DeleteAction)).
|
Post("/delete", new(DeleteAction)).
|
||||||
EndAll()
|
EndAll()
|
||||||
|
|||||||
78
internal/web/actions/default/api/methodStats.go
Normal file
78
internal/web/actions/default/api/methodStats.go
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||||||
|
|
||||||
|
package api
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
||||||
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
||||||
|
"github.com/iwind/TeaGo/maps"
|
||||||
|
timeutil "github.com/iwind/TeaGo/utils/time"
|
||||||
|
"sort"
|
||||||
|
"strings"
|
||||||
|
)
|
||||||
|
|
||||||
|
type MethodStatsAction struct {
|
||||||
|
actionutils.ParentAction
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *MethodStatsAction) Init() {
|
||||||
|
this.Nav("", "", "")
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *MethodStatsAction) RunGet(params struct {
|
||||||
|
Order string
|
||||||
|
Method string
|
||||||
|
Tag string
|
||||||
|
}) {
|
||||||
|
this.Data["order"] = params.Order
|
||||||
|
this.Data["method"] = params.Method
|
||||||
|
this.Data["tag"] = params.Tag
|
||||||
|
|
||||||
|
statsResp, err := this.RPC().APIMethodStatRPC().FindAPIMethodStatsWithDay(this.AdminContext(), &pb.FindAPIMethodStatsWithDayRequest{Day: timeutil.Format("Ymd")})
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
var pbStats = statsResp.ApiMethodStats
|
||||||
|
|
||||||
|
switch params.Order {
|
||||||
|
case "method":
|
||||||
|
sort.Slice(pbStats, func(i, j int) bool {
|
||||||
|
return pbStats[i].Method < pbStats[j].Method
|
||||||
|
})
|
||||||
|
case "costMs.desc":
|
||||||
|
sort.Slice(pbStats, func(i, j int) bool {
|
||||||
|
return pbStats[i].CostMs > pbStats[j].CostMs
|
||||||
|
})
|
||||||
|
case "peekMs.desc":
|
||||||
|
sort.Slice(pbStats, func(i, j int) bool {
|
||||||
|
return pbStats[i].PeekMs > pbStats[j].PeekMs
|
||||||
|
})
|
||||||
|
case "calls.desc":
|
||||||
|
sort.Slice(pbStats, func(i, j int) bool {
|
||||||
|
return pbStats[i].CountCalls > pbStats[j].CountCalls
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
var statMaps = []maps.Map{}
|
||||||
|
for _, stat := range pbStats {
|
||||||
|
if len(params.Method) > 0 && !strings.Contains(strings.ToLower(stat.Method), strings.ToLower(params.Method)) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
if len(params.Tag) > 0 && !strings.Contains(strings.ToLower(stat.Tag), strings.ToLower(params.Tag)) {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
|
statMaps = append(statMaps, maps.Map{
|
||||||
|
"id": stat.Id,
|
||||||
|
"method": stat.Method,
|
||||||
|
"tag": stat.Tag,
|
||||||
|
"costMs": stat.CostMs,
|
||||||
|
"peekMs": stat.PeekMs,
|
||||||
|
"countCalls": stat.CountCalls,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
this.Data["stats"] = statMaps
|
||||||
|
|
||||||
|
this.Show()
|
||||||
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
package node
|
package node
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/TeaOSLab/EdgeAdmin/internal/utils/nodelogutils"
|
||||||
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
||||||
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/clusters/cluster/node/nodeutils"
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/clusters/cluster/node/nodeutils"
|
||||||
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
||||||
@@ -23,6 +24,7 @@ func (this *LogsAction) RunGet(params struct {
|
|||||||
DayTo string
|
DayTo string
|
||||||
Keyword string
|
Keyword string
|
||||||
Level string
|
Level string
|
||||||
|
Tag string
|
||||||
}) {
|
}) {
|
||||||
// 初始化节点信息(用于菜单)
|
// 初始化节点信息(用于菜单)
|
||||||
_, err := nodeutils.InitNodeInfo(this.Parent(), params.NodeId)
|
_, err := nodeutils.InitNodeInfo(this.Parent(), params.NodeId)
|
||||||
@@ -31,11 +33,14 @@ func (this *LogsAction) RunGet(params struct {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.Data["tags"] = nodelogutils.FindNodeCommonTags()
|
||||||
|
|
||||||
this.Data["nodeId"] = params.NodeId
|
this.Data["nodeId"] = params.NodeId
|
||||||
this.Data["dayFrom"] = params.DayFrom
|
this.Data["dayFrom"] = params.DayFrom
|
||||||
this.Data["dayTo"] = params.DayTo
|
this.Data["dayTo"] = params.DayTo
|
||||||
this.Data["keyword"] = params.Keyword
|
this.Data["keyword"] = params.Keyword
|
||||||
this.Data["level"] = params.Level
|
this.Data["level"] = params.Level
|
||||||
|
this.Data["tag"] = params.Tag
|
||||||
|
|
||||||
countResp, err := this.RPC().NodeLogRPC().CountNodeLogs(this.AdminContext(), &pb.CountNodeLogsRequest{
|
countResp, err := this.RPC().NodeLogRPC().CountNodeLogs(this.AdminContext(), &pb.CountNodeLogsRequest{
|
||||||
Role: "node",
|
Role: "node",
|
||||||
@@ -44,6 +49,7 @@ func (this *LogsAction) RunGet(params struct {
|
|||||||
DayTo: params.DayTo,
|
DayTo: params.DayTo,
|
||||||
Keyword: params.Keyword,
|
Keyword: params.Keyword,
|
||||||
Level: params.Level,
|
Level: params.Level,
|
||||||
|
Tag: params.Tag,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
@@ -59,6 +65,7 @@ func (this *LogsAction) RunGet(params struct {
|
|||||||
DayTo: params.DayTo,
|
DayTo: params.DayTo,
|
||||||
Keyword: params.Keyword,
|
Keyword: params.Keyword,
|
||||||
Level: params.Level,
|
Level: params.Level,
|
||||||
|
Tag: params.Tag,
|
||||||
Offset: page.Offset,
|
Offset: page.Offset,
|
||||||
Size: page.Size,
|
Size: page.Size,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ type IndexAction struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *IndexAction) Init() {
|
func (this *IndexAction) Init() {
|
||||||
this.Nav("", "", "update")
|
this.Nav("", "node", "update")
|
||||||
this.SecondMenu("cache")
|
this.SecondMenu("cache")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ type IndexAction struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *IndexAction) Init() {
|
func (this *IndexAction) Init() {
|
||||||
this.Nav("", "", "update")
|
this.Nav("", "node", "update")
|
||||||
this.SecondMenu("dns")
|
this.SecondMenu("dns")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -17,7 +17,7 @@ type IndexAction struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *IndexAction) Init() {
|
func (this *IndexAction) Init() {
|
||||||
this.Nav("", "", "update")
|
this.Nav("", "node", "update")
|
||||||
this.SecondMenu("ssh")
|
this.SecondMenu("ssh")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ type IndexAction struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *IndexAction) Init() {
|
func (this *IndexAction) Init() {
|
||||||
this.Nav("", "", "update")
|
this.Nav("", "node", "update")
|
||||||
this.SecondMenu("system")
|
this.SecondMenu("system")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ type IndexAction struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *IndexAction) Init() {
|
func (this *IndexAction) Init() {
|
||||||
this.Nav("", "", "update")
|
this.Nav("", "node", "update")
|
||||||
this.SecondMenu("threshold")
|
this.SecondMenu("threshold")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -72,6 +72,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"timeZone": cluster.TimeZone,
|
"timeZone": cluster.TimeZone,
|
||||||
"nodeMaxThreads": cluster.NodeMaxThreads,
|
"nodeMaxThreads": cluster.NodeMaxThreads,
|
||||||
"nodeTCPMaxConnections": cluster.NodeTCPMaxConnections,
|
"nodeTCPMaxConnections": cluster.NodeTCPMaxConnections,
|
||||||
|
"autoOpenPorts": cluster.AutoOpenPorts,
|
||||||
}
|
}
|
||||||
|
|
||||||
// 默认值
|
// 默认值
|
||||||
@@ -92,6 +93,7 @@ func (this *IndexAction) RunPost(params struct {
|
|||||||
TimeZone string
|
TimeZone string
|
||||||
NodeMaxThreads int32
|
NodeMaxThreads int32
|
||||||
NodeTCPMaxConnections int32
|
NodeTCPMaxConnections int32
|
||||||
|
AutoOpenPorts bool
|
||||||
|
|
||||||
Must *actions.Must
|
Must *actions.Must
|
||||||
}) {
|
}) {
|
||||||
@@ -117,6 +119,7 @@ func (this *IndexAction) RunPost(params struct {
|
|||||||
TimeZone: params.TimeZone,
|
TimeZone: params.TimeZone,
|
||||||
NodeMaxThreads: params.NodeMaxThreads,
|
NodeMaxThreads: params.NodeMaxThreads,
|
||||||
NodeTCPMaxConnections: params.NodeTCPMaxConnections,
|
NodeTCPMaxConnections: params.NodeTCPMaxConnections,
|
||||||
|
AutoOpenPorts: params.AutoOpenPorts,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
|
|||||||
@@ -21,8 +21,8 @@ func init() {
|
|||||||
EndHelpers().
|
EndHelpers().
|
||||||
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeCommon)).
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeCommon)).
|
||||||
Post("/options", new(OptionsAction)).
|
Post("/options", new(OptionsAction)).
|
||||||
|
Post("/nodeOptions", new(NodeOptionsAction)).
|
||||||
GetPost("/selectPopup", new(SelectPopupAction)).
|
GetPost("/selectPopup", new(SelectPopupAction)).
|
||||||
|
|
||||||
EndAll()
|
EndAll()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package logs
|
package logs
|
||||||
|
|
||||||
import (
|
import (
|
||||||
|
"github.com/TeaOSLab/EdgeAdmin/internal/utils/nodelogutils"
|
||||||
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
||||||
"github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
|
"github.com/TeaOSLab/EdgeCommon/pkg/nodeconfigs"
|
||||||
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
||||||
@@ -21,17 +22,26 @@ func (this *IndexAction) Init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *IndexAction) RunGet(params struct {
|
func (this *IndexAction) RunGet(params struct {
|
||||||
DayFrom string
|
DayFrom string
|
||||||
DayTo string
|
DayTo string
|
||||||
Keyword string
|
Keyword string
|
||||||
Level string
|
Level string
|
||||||
Type string
|
Type string
|
||||||
|
Tag string
|
||||||
|
ClusterId int64
|
||||||
|
NodeId int64
|
||||||
}) {
|
}) {
|
||||||
this.Data["dayFrom"] = params.DayFrom
|
this.Data["dayFrom"] = params.DayFrom
|
||||||
this.Data["dayTo"] = params.DayTo
|
this.Data["dayTo"] = params.DayTo
|
||||||
this.Data["keyword"] = params.Keyword
|
this.Data["keyword"] = params.Keyword
|
||||||
this.Data["level"] = params.Level
|
this.Data["level"] = params.Level
|
||||||
this.Data["type"] = params.Type
|
this.Data["type"] = params.Type
|
||||||
|
this.Data["tag"] = params.Tag
|
||||||
|
this.Data["clusterId"] = params.ClusterId
|
||||||
|
this.Data["nodeId"] = params.NodeId
|
||||||
|
|
||||||
|
// 常见标签
|
||||||
|
this.Data["tags"] = nodelogutils.FindNodeCommonTags()
|
||||||
|
|
||||||
// 未读数量
|
// 未读数量
|
||||||
countUnreadResp, err := this.RPC().NodeLogRPC().CountNodeLogs(this.AdminContext(), &pb.CountNodeLogsRequest{
|
countUnreadResp, err := this.RPC().NodeLogRPC().CountNodeLogs(this.AdminContext(), &pb.CountNodeLogsRequest{
|
||||||
@@ -46,13 +56,15 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
|
|
||||||
// 日志数量
|
// 日志数量
|
||||||
countResp, err := this.RPC().NodeLogRPC().CountNodeLogs(this.AdminContext(), &pb.CountNodeLogsRequest{
|
countResp, err := this.RPC().NodeLogRPC().CountNodeLogs(this.AdminContext(), &pb.CountNodeLogsRequest{
|
||||||
NodeId: 0,
|
NodeClusterId: params.ClusterId,
|
||||||
Role: nodeconfigs.NodeRoleNode,
|
NodeId: params.NodeId,
|
||||||
DayFrom: params.DayFrom,
|
Role: nodeconfigs.NodeRoleNode,
|
||||||
DayTo: params.DayTo,
|
DayFrom: params.DayFrom,
|
||||||
Keyword: params.Keyword,
|
DayTo: params.DayTo,
|
||||||
Level: params.Level,
|
Keyword: params.Keyword,
|
||||||
IsUnread: params.Type == "unread",
|
Level: params.Level,
|
||||||
|
IsUnread: params.Type == "unread",
|
||||||
|
Tag: params.Tag,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
@@ -63,15 +75,17 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
this.Data["page"] = page.AsHTML()
|
this.Data["page"] = page.AsHTML()
|
||||||
|
|
||||||
logsResp, err := this.RPC().NodeLogRPC().ListNodeLogs(this.AdminContext(), &pb.ListNodeLogsRequest{
|
logsResp, err := this.RPC().NodeLogRPC().ListNodeLogs(this.AdminContext(), &pb.ListNodeLogsRequest{
|
||||||
NodeId: 0,
|
NodeClusterId: params.ClusterId,
|
||||||
Role: nodeconfigs.NodeRoleNode,
|
NodeId: params.NodeId,
|
||||||
DayFrom: params.DayFrom,
|
Role: nodeconfigs.NodeRoleNode,
|
||||||
DayTo: params.DayTo,
|
DayFrom: params.DayFrom,
|
||||||
Keyword: params.Keyword,
|
DayTo: params.DayTo,
|
||||||
Level: params.Level,
|
Keyword: params.Keyword,
|
||||||
IsUnread: params.Type == "unread",
|
Level: params.Level,
|
||||||
Offset: page.Offset,
|
IsUnread: params.Type == "unread",
|
||||||
Size: page.Size,
|
Tag: params.Tag,
|
||||||
|
Offset: page.Offset,
|
||||||
|
Size: page.Size,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
|
|||||||
34
internal/web/actions/default/clusters/nodeOptions.go
Normal file
34
internal/web/actions/default/clusters/nodeOptions.go
Normal file
@@ -0,0 +1,34 @@
|
|||||||
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||||||
|
|
||||||
|
package clusters
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
||||||
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
||||||
|
"github.com/iwind/TeaGo/maps"
|
||||||
|
)
|
||||||
|
|
||||||
|
type NodeOptionsAction struct {
|
||||||
|
actionutils.ParentAction
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *NodeOptionsAction) RunPost(params struct {
|
||||||
|
ClusterId int64
|
||||||
|
}) {
|
||||||
|
resp, err := this.RPC().NodeRPC().FindAllEnabledNodesWithNodeClusterId(this.AdminContext(), &pb.FindAllEnabledNodesWithNodeClusterIdRequest{NodeClusterId: params.ClusterId})
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
var nodeMaps = []maps.Map{}
|
||||||
|
for _, node := range resp.Nodes {
|
||||||
|
nodeMaps = append(nodeMaps, maps.Map{
|
||||||
|
"id": node.Id,
|
||||||
|
"name": node.Name,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
this.Data["nodes"] = nodeMaps
|
||||||
|
|
||||||
|
this.Success()
|
||||||
|
}
|
||||||
@@ -17,7 +17,7 @@ func ValidateDomainFormat(domain string) bool {
|
|||||||
if piece == "-" ||
|
if piece == "-" ||
|
||||||
strings.HasPrefix(piece, "-") ||
|
strings.HasPrefix(piece, "-") ||
|
||||||
strings.HasSuffix(piece, "-") ||
|
strings.HasSuffix(piece, "-") ||
|
||||||
strings.Contains(piece, "--") ||
|
//strings.Contains(piece, "--") ||
|
||||||
len(piece) > 63 ||
|
len(piece) > 63 ||
|
||||||
!regexp.MustCompile(`^[a-z0-9-]+$`).MatchString(piece) {
|
!regexp.MustCompile(`^[a-z0-9-]+$`).MatchString(piece) {
|
||||||
return false
|
return false
|
||||||
@@ -75,7 +75,7 @@ func ValidateRecordName(name string) bool {
|
|||||||
if piece == "-" ||
|
if piece == "-" ||
|
||||||
strings.HasPrefix(piece, "-") ||
|
strings.HasPrefix(piece, "-") ||
|
||||||
strings.HasSuffix(piece, "-") ||
|
strings.HasSuffix(piece, "-") ||
|
||||||
strings.Contains(piece, "--") ||
|
//strings.Contains(piece, "--") ||
|
||||||
len(piece) > 63 ||
|
len(piece) > 63 ||
|
||||||
!regexp.MustCompile(`^[_a-z0-9-]+$`).MatchString(piece) {
|
!regexp.MustCompile(`^[_a-z0-9-]+$`).MatchString(piece) {
|
||||||
return false
|
return false
|
||||||
|
|||||||
@@ -31,6 +31,7 @@ func (this *CreatePopupAction) RunPost(params struct {
|
|||||||
// file
|
// file
|
||||||
FileDir string
|
FileDir string
|
||||||
FileMemoryCapacityJSON []byte
|
FileMemoryCapacityJSON []byte
|
||||||
|
FileOpenFileCacheMax int
|
||||||
|
|
||||||
CapacityJSON []byte
|
CapacityJSON []byte
|
||||||
MaxSizeJSON []byte
|
MaxSizeJSON []byte
|
||||||
@@ -62,15 +63,23 @@ func (this *CreatePopupAction) RunPost(params struct {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var openFileCacheConfig *serverconfigs.OpenFileCacheConfig
|
||||||
|
if params.FileOpenFileCacheMax > 0 {
|
||||||
|
openFileCacheConfig = &serverconfigs.OpenFileCacheConfig{
|
||||||
|
IsOn: true,
|
||||||
|
Max: params.FileOpenFileCacheMax,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
options = &serverconfigs.HTTPFileCacheStorage{
|
options = &serverconfigs.HTTPFileCacheStorage{
|
||||||
Dir: params.FileDir,
|
Dir: params.FileDir,
|
||||||
MemoryPolicy: &serverconfigs.HTTPCachePolicy{
|
MemoryPolicy: &serverconfigs.HTTPCachePolicy{
|
||||||
Capacity: memoryCapacity,
|
Capacity: memoryCapacity,
|
||||||
},
|
},
|
||||||
|
OpenFileCache: openFileCacheConfig,
|
||||||
}
|
}
|
||||||
case serverconfigs.CachePolicyStorageMemory:
|
case serverconfigs.CachePolicyStorageMemory:
|
||||||
options = &serverconfigs.HTTPMemoryCacheStorage{
|
options = &serverconfigs.HTTPMemoryCacheStorage{}
|
||||||
}
|
|
||||||
default:
|
default:
|
||||||
this.Fail("请选择正确的缓存类型")
|
this.Fail("请选择正确的缓存类型")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,12 +17,15 @@ func (this *IndexAction) Init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *IndexAction) RunGet(params struct {
|
func (this *IndexAction) RunGet(params struct {
|
||||||
Keyword string
|
ClusterId int64
|
||||||
|
Keyword string
|
||||||
}) {
|
}) {
|
||||||
this.Data["keyword"] = params.Keyword
|
this.Data["keyword"] = params.Keyword
|
||||||
|
this.Data["clusterId"] = params.ClusterId
|
||||||
|
|
||||||
countResp, err := this.RPC().HTTPCachePolicyRPC().CountAllEnabledHTTPCachePolicies(this.AdminContext(), &pb.CountAllEnabledHTTPCachePoliciesRequest{
|
countResp, err := this.RPC().HTTPCachePolicyRPC().CountAllEnabledHTTPCachePolicies(this.AdminContext(), &pb.CountAllEnabledHTTPCachePoliciesRequest{
|
||||||
Keyword: params.Keyword,
|
NodeClusterId: params.ClusterId,
|
||||||
|
Keyword: params.Keyword,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
@@ -33,9 +36,10 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
this.Data["page"] = page.AsHTML()
|
this.Data["page"] = page.AsHTML()
|
||||||
|
|
||||||
listResp, err := this.RPC().HTTPCachePolicyRPC().ListEnabledHTTPCachePolicies(this.AdminContext(), &pb.ListEnabledHTTPCachePoliciesRequest{
|
listResp, err := this.RPC().HTTPCachePolicyRPC().ListEnabledHTTPCachePolicies(this.AdminContext(), &pb.ListEnabledHTTPCachePoliciesRequest{
|
||||||
Keyword: params.Keyword,
|
Keyword: params.Keyword,
|
||||||
Offset: page.Offset,
|
NodeClusterId: params.ClusterId,
|
||||||
Size: page.Size,
|
Offset: page.Offset,
|
||||||
|
Size: page.Size,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
|
|||||||
@@ -55,6 +55,7 @@ func (this *UpdateAction) RunPost(params struct {
|
|||||||
// file
|
// file
|
||||||
FileDir string
|
FileDir string
|
||||||
FileMemoryCapacityJSON []byte
|
FileMemoryCapacityJSON []byte
|
||||||
|
FileOpenFileCacheMax int
|
||||||
|
|
||||||
CapacityJSON []byte
|
CapacityJSON []byte
|
||||||
MaxSizeJSON []byte
|
MaxSizeJSON []byte
|
||||||
@@ -91,15 +92,23 @@ func (this *UpdateAction) RunPost(params struct {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var openFileCacheConfig *serverconfigs.OpenFileCacheConfig
|
||||||
|
if params.FileOpenFileCacheMax > 0 {
|
||||||
|
openFileCacheConfig = &serverconfigs.OpenFileCacheConfig{
|
||||||
|
IsOn: true,
|
||||||
|
Max: params.FileOpenFileCacheMax,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
options = &serverconfigs.HTTPFileCacheStorage{
|
options = &serverconfigs.HTTPFileCacheStorage{
|
||||||
Dir: params.FileDir,
|
Dir: params.FileDir,
|
||||||
MemoryPolicy: &serverconfigs.HTTPCachePolicy{
|
MemoryPolicy: &serverconfigs.HTTPCachePolicy{
|
||||||
Capacity: memoryCapacity,
|
Capacity: memoryCapacity,
|
||||||
},
|
},
|
||||||
|
OpenFileCache: openFileCacheConfig,
|
||||||
}
|
}
|
||||||
case serverconfigs.CachePolicyStorageMemory:
|
case serverconfigs.CachePolicyStorageMemory:
|
||||||
options = &serverconfigs.HTTPMemoryCacheStorage{
|
options = &serverconfigs.HTTPMemoryCacheStorage{}
|
||||||
}
|
|
||||||
default:
|
default:
|
||||||
this.Fail("请选择正确的缓存类型")
|
this.Fail("请选择正确的缓存类型")
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -61,6 +61,7 @@ func (this *CreateRulePopupAction) RunPost(params struct {
|
|||||||
OptionsJSON []byte
|
OptionsJSON []byte
|
||||||
Value string
|
Value string
|
||||||
Case bool
|
Case bool
|
||||||
|
Description string
|
||||||
|
|
||||||
Must *actions.Must
|
Must *actions.Must
|
||||||
}) {
|
}) {
|
||||||
@@ -91,6 +92,7 @@ func (this *CreateRulePopupAction) RunPost(params struct {
|
|||||||
rule.Operator = params.Operator
|
rule.Operator = params.Operator
|
||||||
rule.Value = params.Value
|
rule.Value = params.Value
|
||||||
rule.IsCaseInsensitive = params.Case
|
rule.IsCaseInsensitive = params.Case
|
||||||
|
rule.Description = params.Description
|
||||||
|
|
||||||
if len(params.OptionsJSON) > 0 {
|
if len(params.OptionsJSON) > 0 {
|
||||||
options := []maps.Map{}
|
options := []maps.Map{}
|
||||||
|
|||||||
@@ -87,6 +87,7 @@ func (this *GroupAction) RunGet(params struct {
|
|||||||
"operator": rule.Operator,
|
"operator": rule.Operator,
|
||||||
"value": rule.Value,
|
"value": rule.Value,
|
||||||
"isCaseInsensitive": rule.IsCaseInsensitive,
|
"isCaseInsensitive": rule.IsCaseInsensitive,
|
||||||
|
"description": rule.Description,
|
||||||
"isComposed": firewallconfigs.CheckCheckpointIsComposed(rule.Prefix()),
|
"isComposed": firewallconfigs.CheckCheckpointIsComposed(rule.Prefix()),
|
||||||
"checkpointOptions": rule.CheckpointOptions,
|
"checkpointOptions": rule.CheckpointOptions,
|
||||||
"err": errString,
|
"err": errString,
|
||||||
|
|||||||
@@ -17,12 +17,15 @@ func (this *IndexAction) Init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *IndexAction) RunGet(params struct {
|
func (this *IndexAction) RunGet(params struct {
|
||||||
Keyword string
|
Keyword string
|
||||||
|
ClusterId int64
|
||||||
}) {
|
}) {
|
||||||
this.Data["keyword"] = params.Keyword
|
this.Data["keyword"] = params.Keyword
|
||||||
|
this.Data["clusterId"] = params.ClusterId
|
||||||
|
|
||||||
countResp, err := this.RPC().HTTPFirewallPolicyRPC().CountAllEnabledHTTPFirewallPolicies(this.AdminContext(), &pb.CountAllEnabledHTTPFirewallPoliciesRequest{
|
countResp, err := this.RPC().HTTPFirewallPolicyRPC().CountAllEnabledHTTPFirewallPolicies(this.AdminContext(), &pb.CountAllEnabledHTTPFirewallPoliciesRequest{
|
||||||
Keyword: params.Keyword,
|
NodeClusterId: params.ClusterId,
|
||||||
|
Keyword: params.Keyword,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
@@ -32,9 +35,10 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
page := this.NewPage(count)
|
page := this.NewPage(count)
|
||||||
|
|
||||||
listResp, err := this.RPC().HTTPFirewallPolicyRPC().ListEnabledHTTPFirewallPolicies(this.AdminContext(), &pb.ListEnabledHTTPFirewallPoliciesRequest{
|
listResp, err := this.RPC().HTTPFirewallPolicyRPC().ListEnabledHTTPFirewallPolicies(this.AdminContext(), &pb.ListEnabledHTTPFirewallPoliciesRequest{
|
||||||
Keyword: params.Keyword,
|
NodeClusterId: params.ClusterId,
|
||||||
Offset: page.Offset,
|
Keyword: params.Keyword,
|
||||||
Size: page.Size,
|
Offset: page.Offset,
|
||||||
|
Size: page.Size,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
|
|||||||
@@ -47,7 +47,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
countryMaps := []maps.Map{}
|
countryMaps := []maps.Map{}
|
||||||
for _, country := range countriesResp.Countries {
|
for _, country := range countriesResp.RegionCountries {
|
||||||
countryMaps = append(countryMaps, maps.Map{
|
countryMaps = append(countryMaps, maps.Map{
|
||||||
"id": country.Id,
|
"id": country.Id,
|
||||||
"name": country.Name,
|
"name": country.Name,
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import (
|
|||||||
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/firewallconfigs"
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/firewallconfigs"
|
||||||
"github.com/iwind/TeaGo/maps"
|
"github.com/iwind/TeaGo/maps"
|
||||||
timeutil "github.com/iwind/TeaGo/utils/time"
|
timeutil "github.com/iwind/TeaGo/utils/time"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ListsAction struct {
|
type ListsAction struct {
|
||||||
@@ -109,6 +110,7 @@ func (this *ListsAction) RunGet(params struct {
|
|||||||
"sourceGroup": sourceGroupMap,
|
"sourceGroup": sourceGroupMap,
|
||||||
"sourceSet": sourceSetMap,
|
"sourceSet": sourceSetMap,
|
||||||
"sourceServer": sourceServerMap,
|
"sourceServer": sourceServerMap,
|
||||||
|
"lifeSeconds": item.ExpiredAt - time.Now().Unix(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.Data["items"] = itemMaps
|
this.Data["items"] = itemMaps
|
||||||
|
|||||||
@@ -43,14 +43,14 @@ func (this *ProvincesAction) RunGet(params struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
provincesResp, err := this.RPC().RegionProvinceRPC().FindAllEnabledRegionProvincesWithCountryId(this.AdminContext(), &pb.FindAllEnabledRegionProvincesWithCountryIdRequest{
|
provincesResp, err := this.RPC().RegionProvinceRPC().FindAllEnabledRegionProvincesWithCountryId(this.AdminContext(), &pb.FindAllEnabledRegionProvincesWithCountryIdRequest{
|
||||||
CountryId: int64(ChinaCountryId),
|
RegionCountryId: int64(ChinaCountryId),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
provinceMaps := []maps.Map{}
|
provinceMaps := []maps.Map{}
|
||||||
for _, province := range provincesResp.Provinces {
|
for _, province := range provincesResp.RegionProvinces {
|
||||||
provinceMaps = append(provinceMaps, maps.Map{
|
provinceMaps = append(provinceMaps, maps.Map{
|
||||||
"id": province.Id,
|
"id": province.Id,
|
||||||
"name": province.Name,
|
"name": province.Name,
|
||||||
|
|||||||
@@ -84,15 +84,18 @@ func (this *PolicyAction) RunGet(params struct {
|
|||||||
if len(firewallPolicy.Mode) == 0 {
|
if len(firewallPolicy.Mode) == 0 {
|
||||||
firewallPolicy.Mode = firewallconfigs.FirewallModeDefend
|
firewallPolicy.Mode = firewallconfigs.FirewallModeDefend
|
||||||
}
|
}
|
||||||
|
|
||||||
this.Data["firewallPolicy"] = maps.Map{
|
this.Data["firewallPolicy"] = maps.Map{
|
||||||
"id": firewallPolicy.Id,
|
"id": firewallPolicy.Id,
|
||||||
"name": firewallPolicy.Name,
|
"name": firewallPolicy.Name,
|
||||||
"isOn": firewallPolicy.IsOn,
|
"isOn": firewallPolicy.IsOn,
|
||||||
"description": firewallPolicy.Description,
|
"description": firewallPolicy.Description,
|
||||||
"mode": firewallPolicy.Mode,
|
"mode": firewallPolicy.Mode,
|
||||||
"modeInfo": firewallconfigs.FindFirewallMode(firewallPolicy.Mode),
|
"modeInfo": firewallconfigs.FindFirewallMode(firewallPolicy.Mode),
|
||||||
"groups": internalGroups,
|
"groups": internalGroups,
|
||||||
"blockOptions": firewallPolicy.BlockOptions,
|
"blockOptions": firewallPolicy.BlockOptions,
|
||||||
|
"useLocalFirewall": firewallPolicy.UseLocalFirewall,
|
||||||
|
"synFlood": firewallPolicy.SYNFlood,
|
||||||
}
|
}
|
||||||
|
|
||||||
// 正在使用此策略的集群
|
// 正在使用此策略的集群
|
||||||
|
|||||||
@@ -48,13 +48,25 @@ func (this *UpdateAction) RunGet(params struct {
|
|||||||
}
|
}
|
||||||
this.Data["modes"] = firewallconfigs.FindAllFirewallModes()
|
this.Data["modes"] = firewallconfigs.FindAllFirewallModes()
|
||||||
|
|
||||||
|
// syn flood
|
||||||
|
if firewallPolicy.SYNFlood == nil {
|
||||||
|
firewallPolicy.SYNFlood = &firewallconfigs.SYNFloodConfig{
|
||||||
|
IsOn: false,
|
||||||
|
MinAttempts: 10,
|
||||||
|
TimeoutSeconds: 600,
|
||||||
|
IgnoreLocal: true,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.Data["firewallPolicy"] = maps.Map{
|
this.Data["firewallPolicy"] = maps.Map{
|
||||||
"id": firewallPolicy.Id,
|
"id": firewallPolicy.Id,
|
||||||
"name": firewallPolicy.Name,
|
"name": firewallPolicy.Name,
|
||||||
"description": firewallPolicy.Description,
|
"description": firewallPolicy.Description,
|
||||||
"isOn": firewallPolicy.IsOn,
|
"isOn": firewallPolicy.IsOn,
|
||||||
"mode": firewallPolicy.Mode,
|
"mode": firewallPolicy.Mode,
|
||||||
"blockOptions": firewallPolicy.BlockOptions,
|
"blockOptions": firewallPolicy.BlockOptions,
|
||||||
|
"useLocalFirewall": firewallPolicy.UseLocalFirewall,
|
||||||
|
"synFloodConfig": firewallPolicy.SYNFlood,
|
||||||
}
|
}
|
||||||
|
|
||||||
// 预置分组
|
// 预置分组
|
||||||
@@ -87,6 +99,8 @@ func (this *UpdateAction) RunPost(params struct {
|
|||||||
Description string
|
Description string
|
||||||
IsOn bool
|
IsOn bool
|
||||||
Mode string
|
Mode string
|
||||||
|
UseLocalFirewall bool
|
||||||
|
SynFloodJSON []byte
|
||||||
|
|
||||||
Must *actions.Must
|
Must *actions.Must
|
||||||
}) {
|
}) {
|
||||||
@@ -112,6 +126,8 @@ func (this *UpdateAction) RunPost(params struct {
|
|||||||
FirewallGroupCodes: params.GroupCodes,
|
FirewallGroupCodes: params.GroupCodes,
|
||||||
BlockOptionsJSON: params.BlockOptionsJSON,
|
BlockOptionsJSON: params.BlockOptionsJSON,
|
||||||
Mode: params.Mode,
|
Mode: params.Mode,
|
||||||
|
UseLocalFirewall: params.UseLocalFirewall,
|
||||||
|
SynFloodJSON: params.SynFloodJSON,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ func (this *CreatePopupAction) RunPost(params struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// 创建日志
|
// 创建日志
|
||||||
defer this.CreateLog(oplogs.LevelInfo, "创建代理服务分组 %d", createResp.ServerGroupId)
|
defer this.CreateLog(oplogs.LevelInfo, "创建服务分组 %d", createResp.ServerGroupId)
|
||||||
|
|
||||||
this.Success()
|
this.Success()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": originConfig.Name,
|
"name": originConfig.Name,
|
||||||
"isOn": originConfig.IsOn,
|
"isOn": originConfig.IsOn,
|
||||||
"domains": originConfig.Domains,
|
"domains": originConfig.Domains,
|
||||||
|
"hasCert": originConfig.Cert != nil,
|
||||||
}
|
}
|
||||||
primaryOriginMaps = append(primaryOriginMaps, m)
|
primaryOriginMaps = append(primaryOriginMaps, m)
|
||||||
}
|
}
|
||||||
@@ -77,6 +78,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": originConfig.Name,
|
"name": originConfig.Name,
|
||||||
"isOn": originConfig.IsOn,
|
"isOn": originConfig.IsOn,
|
||||||
"domains": originConfig.Domains,
|
"domains": originConfig.Domains,
|
||||||
|
"hasCert": originConfig.Cert != nil,
|
||||||
}
|
}
|
||||||
backupOriginMaps = append(backupOriginMaps, m)
|
backupOriginMaps = append(backupOriginMaps, m)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": originConfig.Name,
|
"name": originConfig.Name,
|
||||||
"isOn": originConfig.IsOn,
|
"isOn": originConfig.IsOn,
|
||||||
"domains": originConfig.Domains,
|
"domains": originConfig.Domains,
|
||||||
|
"hasCert": originConfig.Cert != nil,
|
||||||
}
|
}
|
||||||
primaryOriginMaps = append(primaryOriginMaps, m)
|
primaryOriginMaps = append(primaryOriginMaps, m)
|
||||||
}
|
}
|
||||||
@@ -77,6 +78,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": originConfig.Name,
|
"name": originConfig.Name,
|
||||||
"isOn": originConfig.IsOn,
|
"isOn": originConfig.IsOn,
|
||||||
"domains": originConfig.Domains,
|
"domains": originConfig.Domains,
|
||||||
|
"hasCert": originConfig.Cert != nil,
|
||||||
}
|
}
|
||||||
backupOriginMaps = append(backupOriginMaps, m)
|
backupOriginMaps = append(backupOriginMaps, m)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -63,6 +63,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": originConfig.Name,
|
"name": originConfig.Name,
|
||||||
"isOn": originConfig.IsOn,
|
"isOn": originConfig.IsOn,
|
||||||
"domains": originConfig.Domains,
|
"domains": originConfig.Domains,
|
||||||
|
"hasCert": originConfig.Cert != nil,
|
||||||
}
|
}
|
||||||
primaryOriginMaps = append(primaryOriginMaps, m)
|
primaryOriginMaps = append(primaryOriginMaps, m)
|
||||||
}
|
}
|
||||||
@@ -77,6 +78,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": originConfig.Name,
|
"name": originConfig.Name,
|
||||||
"isOn": originConfig.IsOn,
|
"isOn": originConfig.IsOn,
|
||||||
"domains": originConfig.Domains,
|
"domains": originConfig.Domains,
|
||||||
|
"hasCert": originConfig.Cert != nil,
|
||||||
}
|
}
|
||||||
backupOriginMaps = append(backupOriginMaps, m)
|
backupOriginMaps = append(backupOriginMaps, m)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -85,6 +85,7 @@ func (this *GroupAction) RunGet(params struct {
|
|||||||
"operator": rule.Operator,
|
"operator": rule.Operator,
|
||||||
"value": rule.Value,
|
"value": rule.Value,
|
||||||
"isCaseInsensitive": rule.IsCaseInsensitive,
|
"isCaseInsensitive": rule.IsCaseInsensitive,
|
||||||
|
"description": rule.Description,
|
||||||
"isComposed": firewallconfigs.CheckCheckpointIsComposed(rule.Prefix()),
|
"isComposed": firewallconfigs.CheckCheckpointIsComposed(rule.Prefix()),
|
||||||
"checkpointOptions": rule.CheckpointOptions,
|
"checkpointOptions": rule.CheckpointOptions,
|
||||||
"err": errString,
|
"err": errString,
|
||||||
|
|||||||
@@ -113,6 +113,7 @@ func (this *AllowListAction) RunGet(params struct {
|
|||||||
"ipTo": item.IpTo,
|
"ipTo": item.IpTo,
|
||||||
"createdTime": timeutil.FormatTime("Y-m-d", item.CreatedAt),
|
"createdTime": timeutil.FormatTime("Y-m-d", item.CreatedAt),
|
||||||
"expiredTime": expiredTime,
|
"expiredTime": expiredTime,
|
||||||
|
"lifeSeconds": item.ExpiredAt - time.Now().Unix(),
|
||||||
"reason": item.Reason,
|
"reason": item.Reason,
|
||||||
"type": item.Type,
|
"type": item.Type,
|
||||||
"isExpired": item.ExpiredAt > 0 && item.ExpiredAt < time.Now().Unix(),
|
"isExpired": item.ExpiredAt > 0 && item.ExpiredAt < time.Now().Unix(),
|
||||||
|
|||||||
@@ -113,6 +113,7 @@ func (this *DenyListAction) RunGet(params struct {
|
|||||||
"ipTo": item.IpTo,
|
"ipTo": item.IpTo,
|
||||||
"createdTime": timeutil.FormatTime("Y-m-d", item.CreatedAt),
|
"createdTime": timeutil.FormatTime("Y-m-d", item.CreatedAt),
|
||||||
"expiredTime": expiredTime,
|
"expiredTime": expiredTime,
|
||||||
|
"lifeSeconds": item.ExpiredAt - time.Now().Unix(),
|
||||||
"reason": item.Reason,
|
"reason": item.Reason,
|
||||||
"type": item.Type,
|
"type": item.Type,
|
||||||
"isExpired": item.ExpiredAt > 0 && item.ExpiredAt < time.Now().Unix(),
|
"isExpired": item.ExpiredAt > 0 && item.ExpiredAt < time.Now().Unix(),
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ func (this *SortAction) RunPost(params struct {
|
|||||||
GroupIds []int64
|
GroupIds []int64
|
||||||
}) {
|
}) {
|
||||||
// 创建日志
|
// 创建日志
|
||||||
defer this.CreateLog(oplogs.LevelInfo, "修改代理分组排序")
|
defer this.CreateLog(oplogs.LevelInfo, "修改服务分组排序")
|
||||||
|
|
||||||
_, err := this.RPC().ServerGroupRPC().UpdateServerGroupOrders(this.AdminContext(), &pb.UpdateServerGroupOrdersRequest{ServerGroupIds: params.GroupIds})
|
_, err := this.RPC().ServerGroupRPC().UpdateServerGroupOrders(this.AdminContext(), &pb.UpdateServerGroupOrdersRequest{ServerGroupIds: params.GroupIds})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
@@ -266,7 +266,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
Role: nodeconfigs.NodeRoleNode,
|
Role: nodeconfigs.NodeRoleNode,
|
||||||
Offset: 0,
|
Offset: 0,
|
||||||
Size: 20,
|
Size: 20,
|
||||||
Level: "",
|
Level: "error,success,warning",
|
||||||
FixedState: int32(configutils.BoolStateNo),
|
FixedState: int32(configutils.BoolStateNo),
|
||||||
AllServers: true,
|
AllServers: true,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ import (
|
|||||||
func init() {
|
func init() {
|
||||||
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
||||||
server.
|
server.
|
||||||
|
Data("teaMenu", "servers").
|
||||||
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeServer)).
|
Helper(helpers.NewUserMustAuth(configloaders.AdminModuleCodeServer)).
|
||||||
Helper(NewHelper()).
|
Helper(NewHelper()).
|
||||||
Prefix("/servers").
|
Prefix("/servers").
|
||||||
|
|||||||
@@ -22,14 +22,28 @@ func (this *IndexAction) Init() {
|
|||||||
func (this *IndexAction) RunGet(params struct {
|
func (this *IndexAction) RunGet(params struct {
|
||||||
Ip string
|
Ip string
|
||||||
GlobalOnly bool
|
GlobalOnly bool
|
||||||
|
Unread bool
|
||||||
}) {
|
}) {
|
||||||
this.Data["type"] = ""
|
this.Data["type"] = ""
|
||||||
this.Data["ip"] = params.Ip
|
this.Data["ip"] = params.Ip
|
||||||
this.Data["globalOnly"] = params.GlobalOnly
|
this.Data["globalOnly"] = params.GlobalOnly
|
||||||
|
this.Data["unread"] = params.Unread
|
||||||
|
|
||||||
|
countUnreadResp, err := this.RPC().IPItemRPC().CountAllEnabledIPItems(this.AdminContext(), &pb.CountAllEnabledIPItemsRequest{
|
||||||
|
Ip: params.Ip,
|
||||||
|
GlobalOnly: params.GlobalOnly,
|
||||||
|
Unread: true,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.Data["countUnread"] = countUnreadResp.Count
|
||||||
|
|
||||||
countResp, err := this.RPC().IPItemRPC().CountAllEnabledIPItems(this.AdminContext(), &pb.CountAllEnabledIPItemsRequest{
|
countResp, err := this.RPC().IPItemRPC().CountAllEnabledIPItems(this.AdminContext(), &pb.CountAllEnabledIPItemsRequest{
|
||||||
Ip: params.Ip,
|
Ip: params.Ip,
|
||||||
GlobalOnly: params.GlobalOnly,
|
GlobalOnly: params.GlobalOnly,
|
||||||
|
Unread: params.Unread,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
@@ -42,6 +56,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
itemsResp, err := this.RPC().IPItemRPC().ListAllEnabledIPItems(this.AdminContext(), &pb.ListAllEnabledIPItemsRequest{
|
itemsResp, err := this.RPC().IPItemRPC().ListAllEnabledIPItems(this.AdminContext(), &pb.ListAllEnabledIPItemsRequest{
|
||||||
Ip: params.Ip,
|
Ip: params.Ip,
|
||||||
GlobalOnly: params.GlobalOnly,
|
GlobalOnly: params.GlobalOnly,
|
||||||
|
Unread: params.Unread,
|
||||||
Offset: page.Offset,
|
Offset: page.Offset,
|
||||||
Size: page.Size,
|
Size: page.Size,
|
||||||
})
|
})
|
||||||
@@ -118,6 +133,16 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// node
|
||||||
|
var sourceNodeMap = maps.Map{"id": 0}
|
||||||
|
if item.SourceNode != nil && item.SourceNode.NodeCluster != nil {
|
||||||
|
sourceNodeMap = maps.Map{
|
||||||
|
"id": item.SourceNode.Id,
|
||||||
|
"name": item.SourceNode.Name,
|
||||||
|
"clusterId": item.SourceNode.NodeCluster.Id,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
itemMaps = append(itemMaps, maps.Map{
|
itemMaps = append(itemMaps, maps.Map{
|
||||||
"id": item.Id,
|
"id": item.Id,
|
||||||
"ipFrom": item.IpFrom,
|
"ipFrom": item.IpFrom,
|
||||||
@@ -127,11 +152,14 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"expiredTime": expiredTime,
|
"expiredTime": expiredTime,
|
||||||
"reason": item.Reason,
|
"reason": item.Reason,
|
||||||
"type": item.Type,
|
"type": item.Type,
|
||||||
|
"isRead": item.IsRead,
|
||||||
|
"lifeSeconds": item.ExpiredAt - time.Now().Unix(),
|
||||||
"eventLevelName": firewallconfigs.FindFirewallEventLevelName(item.EventLevel),
|
"eventLevelName": firewallconfigs.FindFirewallEventLevelName(item.EventLevel),
|
||||||
"sourcePolicy": sourcePolicyMap,
|
"sourcePolicy": sourcePolicyMap,
|
||||||
"sourceGroup": sourceGroupMap,
|
"sourceGroup": sourceGroupMap,
|
||||||
"sourceSet": sourceSetMap,
|
"sourceSet": sourceSetMap,
|
||||||
"sourceServer": sourceServerMap,
|
"sourceServer": sourceServerMap,
|
||||||
|
"sourceNode": sourceNodeMap,
|
||||||
"list": listMap,
|
"list": listMap,
|
||||||
"policy": policyMap,
|
"policy": policyMap,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -32,6 +32,7 @@ func init() {
|
|||||||
GetPost("/updateIPPopup", new(UpdateIPPopupAction)).
|
GetPost("/updateIPPopup", new(UpdateIPPopupAction)).
|
||||||
Post("/deleteIP", new(DeleteIPAction)).
|
Post("/deleteIP", new(DeleteIPAction)).
|
||||||
Get("/accessLogsPopup", new(AccessLogsPopupAction)).
|
Get("/accessLogsPopup", new(AccessLogsPopupAction)).
|
||||||
|
Post("/readAll", new(ReadAllAction)).
|
||||||
|
|
||||||
// 防火墙
|
// 防火墙
|
||||||
GetPost("/bindHTTPFirewallPopup", new(BindHTTPFirewallPopupAction)).
|
GetPost("/bindHTTPFirewallPopup", new(BindHTTPFirewallPopupAction)).
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import (
|
|||||||
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/firewallconfigs"
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/firewallconfigs"
|
||||||
"github.com/iwind/TeaGo/maps"
|
"github.com/iwind/TeaGo/maps"
|
||||||
timeutil "github.com/iwind/TeaGo/utils/time"
|
timeutil "github.com/iwind/TeaGo/utils/time"
|
||||||
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
type ItemsAction struct {
|
type ItemsAction struct {
|
||||||
@@ -112,6 +113,7 @@ func (this *ItemsAction) RunGet(params struct {
|
|||||||
"sourceGroup": sourceGroupMap,
|
"sourceGroup": sourceGroupMap,
|
||||||
"sourceSet": sourceSetMap,
|
"sourceSet": sourceSetMap,
|
||||||
"sourceServer": sourceServerMap,
|
"sourceServer": sourceServerMap,
|
||||||
|
"lifeSeconds": item.ExpiredAt - time.Now().Unix(),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.Data["items"] = itemMaps
|
this.Data["items"] = itemMaps
|
||||||
|
|||||||
24
internal/web/actions/default/servers/iplists/readAll.go
Normal file
24
internal/web/actions/default/servers/iplists/readAll.go
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||||||
|
|
||||||
|
package iplists
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
||||||
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
||||||
|
)
|
||||||
|
|
||||||
|
type ReadAllAction struct {
|
||||||
|
actionutils.ParentAction
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *ReadAllAction) RunPost(params struct{}) {
|
||||||
|
defer this.CreateLogInfo("将IP名单置为已读")
|
||||||
|
|
||||||
|
_, err := this.RPC().IPItemRPC().UpdateIPItemsRead(this.AdminContext(), &pb.UpdateIPItemsReadRequest{})
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
this.Success()
|
||||||
|
}
|
||||||
@@ -22,12 +22,14 @@ func (this *IndexAction) Init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *IndexAction) RunGet(params struct {
|
func (this *IndexAction) RunGet(params struct {
|
||||||
Day string
|
ClusterId int64
|
||||||
Keyword string
|
NodeId int64
|
||||||
Ip string
|
Day string
|
||||||
Domain string
|
Keyword string
|
||||||
HasError int
|
Ip string
|
||||||
HasWAF int
|
Domain string
|
||||||
|
HasError int
|
||||||
|
HasWAF int
|
||||||
|
|
||||||
RequestId string
|
RequestId string
|
||||||
ServerId int64
|
ServerId int64
|
||||||
@@ -38,6 +40,8 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
params.Day = timeutil.Format("Y-m-d")
|
params.Day = timeutil.Format("Y-m-d")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
this.Data["clusterId"] = params.ClusterId
|
||||||
|
this.Data["nodeId"] = params.NodeId
|
||||||
this.Data["serverId"] = 0
|
this.Data["serverId"] = 0
|
||||||
this.Data["path"] = this.Request.URL.Path
|
this.Data["path"] = this.Request.URL.Path
|
||||||
this.Data["day"] = params.Day
|
this.Data["day"] = params.Day
|
||||||
@@ -66,6 +70,8 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
var before = time.Now()
|
var before = time.Now()
|
||||||
resp, err := this.RPC().HTTPAccessLogRPC().ListHTTPAccessLogs(this.AdminContext(), &pb.ListHTTPAccessLogsRequest{
|
resp, err := this.RPC().HTTPAccessLogRPC().ListHTTPAccessLogs(this.AdminContext(), &pb.ListHTTPAccessLogsRequest{
|
||||||
RequestId: params.RequestId,
|
RequestId: params.RequestId,
|
||||||
|
NodeClusterId: params.ClusterId,
|
||||||
|
NodeId: params.NodeId,
|
||||||
ServerId: params.ServerId,
|
ServerId: params.ServerId,
|
||||||
HasError: params.HasError > 0,
|
HasError: params.HasError > 0,
|
||||||
HasFirewallPolicy: params.HasWAF > 0,
|
HasFirewallPolicy: params.HasWAF > 0,
|
||||||
@@ -108,6 +114,8 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
this.Data["hasPrev"] = true
|
this.Data["hasPrev"] = true
|
||||||
prevResp, err := this.RPC().HTTPAccessLogRPC().ListHTTPAccessLogs(this.AdminContext(), &pb.ListHTTPAccessLogsRequest{
|
prevResp, err := this.RPC().HTTPAccessLogRPC().ListHTTPAccessLogs(this.AdminContext(), &pb.ListHTTPAccessLogsRequest{
|
||||||
RequestId: params.RequestId,
|
RequestId: params.RequestId,
|
||||||
|
NodeClusterId: params.ClusterId,
|
||||||
|
NodeId: params.NodeId,
|
||||||
ServerId: params.ServerId,
|
ServerId: params.ServerId,
|
||||||
HasError: params.HasError > 0,
|
HasError: params.HasError > 0,
|
||||||
HasFirewallPolicy: params.HasWAF > 0,
|
HasFirewallPolicy: params.HasWAF > 0,
|
||||||
|
|||||||
@@ -29,6 +29,9 @@ func (this *HistoryAction) RunGet(params struct {
|
|||||||
RequestId string
|
RequestId string
|
||||||
HasError int
|
HasError int
|
||||||
|
|
||||||
|
ClusterId int64
|
||||||
|
NodeId int64
|
||||||
|
|
||||||
PageSize int
|
PageSize int
|
||||||
}) {
|
}) {
|
||||||
if len(params.Day) == 0 {
|
if len(params.Day) == 0 {
|
||||||
@@ -44,6 +47,8 @@ func (this *HistoryAction) RunGet(params struct {
|
|||||||
this.Data["hasError"] = params.HasError
|
this.Data["hasError"] = params.HasError
|
||||||
this.Data["hasWAF"] = params.HasWAF
|
this.Data["hasWAF"] = params.HasWAF
|
||||||
this.Data["pageSize"] = params.PageSize
|
this.Data["pageSize"] = params.PageSize
|
||||||
|
this.Data["clusterId"] = params.ClusterId
|
||||||
|
this.Data["nodeId"] = params.NodeId
|
||||||
|
|
||||||
day := params.Day
|
day := params.Day
|
||||||
ipList := []string{}
|
ipList := []string{}
|
||||||
@@ -66,6 +71,8 @@ func (this *HistoryAction) RunGet(params struct {
|
|||||||
Keyword: params.Keyword,
|
Keyword: params.Keyword,
|
||||||
Ip: params.Ip,
|
Ip: params.Ip,
|
||||||
Domain: params.Domain,
|
Domain: params.Domain,
|
||||||
|
NodeId: params.NodeId,
|
||||||
|
NodeClusterId: params.ClusterId,
|
||||||
Size: size,
|
Size: size,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -102,6 +109,8 @@ func (this *HistoryAction) RunGet(params struct {
|
|||||||
Keyword: params.Keyword,
|
Keyword: params.Keyword,
|
||||||
Ip: params.Ip,
|
Ip: params.Ip,
|
||||||
Domain: params.Domain,
|
Domain: params.Domain,
|
||||||
|
NodeId: params.NodeId,
|
||||||
|
NodeClusterId: params.ClusterId,
|
||||||
Size: size,
|
Size: size,
|
||||||
Reverse: true,
|
Reverse: true,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -22,6 +22,8 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
RequestId string
|
RequestId string
|
||||||
Ip string
|
Ip string
|
||||||
Domain string
|
Domain string
|
||||||
|
ClusterId int64
|
||||||
|
NodeId int64
|
||||||
Keyword string
|
Keyword string
|
||||||
}) {
|
}) {
|
||||||
this.Data["serverId"] = params.ServerId
|
this.Data["serverId"] = params.ServerId
|
||||||
@@ -30,6 +32,8 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
this.Data["domain"] = params.Domain
|
this.Data["domain"] = params.Domain
|
||||||
this.Data["keyword"] = params.Keyword
|
this.Data["keyword"] = params.Keyword
|
||||||
this.Data["path"] = this.Request.URL.Path
|
this.Data["path"] = this.Request.URL.Path
|
||||||
|
this.Data["clusterId"] = params.ClusterId
|
||||||
|
this.Data["nodeId"] = params.NodeId
|
||||||
|
|
||||||
// 记录最近使用
|
// 记录最近使用
|
||||||
_, err := this.RPC().LatestItemRPC().IncreaseLatestItem(this.AdminContext(), &pb.IncreaseLatestItemRequest{
|
_, err := this.RPC().LatestItemRPC().IncreaseLatestItem(this.AdminContext(), &pb.IncreaseLatestItemRequest{
|
||||||
@@ -50,19 +54,23 @@ func (this *IndexAction) RunPost(params struct {
|
|||||||
Keyword string
|
Keyword string
|
||||||
Ip string
|
Ip string
|
||||||
Domain string
|
Domain string
|
||||||
|
ClusterId int64
|
||||||
|
NodeId int64
|
||||||
|
|
||||||
Must *actions.Must
|
Must *actions.Must
|
||||||
}) {
|
}) {
|
||||||
isReverse := len(params.RequestId) > 0
|
isReverse := len(params.RequestId) > 0
|
||||||
accessLogsResp, err := this.RPC().HTTPAccessLogRPC().ListHTTPAccessLogs(this.AdminContext(), &pb.ListHTTPAccessLogsRequest{
|
accessLogsResp, err := this.RPC().HTTPAccessLogRPC().ListHTTPAccessLogs(this.AdminContext(), &pb.ListHTTPAccessLogsRequest{
|
||||||
ServerId: params.ServerId,
|
ServerId: params.ServerId,
|
||||||
RequestId: params.RequestId,
|
RequestId: params.RequestId,
|
||||||
Size: 20,
|
Size: 20,
|
||||||
Day: timeutil.Format("Ymd"),
|
Day: timeutil.Format("Ymd"),
|
||||||
Keyword: params.Keyword,
|
Keyword: params.Keyword,
|
||||||
Ip: params.Ip,
|
Ip: params.Ip,
|
||||||
Domain: params.Domain,
|
Domain: params.Domain,
|
||||||
Reverse: isReverse,
|
NodeId: params.NodeId,
|
||||||
|
NodeClusterId: params.ClusterId,
|
||||||
|
Reverse: isReverse,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
|
|||||||
@@ -24,6 +24,8 @@ func (this *TodayAction) RunGet(params struct {
|
|||||||
Keyword string
|
Keyword string
|
||||||
Ip string
|
Ip string
|
||||||
Domain string
|
Domain string
|
||||||
|
ClusterId int64
|
||||||
|
NodeId int64
|
||||||
|
|
||||||
PageSize int
|
PageSize int
|
||||||
}) {
|
}) {
|
||||||
@@ -40,6 +42,8 @@ func (this *TodayAction) RunGet(params struct {
|
|||||||
this.Data["ip"] = params.Ip
|
this.Data["ip"] = params.Ip
|
||||||
this.Data["domain"] = params.Domain
|
this.Data["domain"] = params.Domain
|
||||||
this.Data["hasWAF"] = params.HasWAF
|
this.Data["hasWAF"] = params.HasWAF
|
||||||
|
this.Data["clusterId"] = params.ClusterId
|
||||||
|
this.Data["nodeId"] = params.NodeId
|
||||||
|
|
||||||
resp, err := this.RPC().HTTPAccessLogRPC().ListHTTPAccessLogs(this.AdminContext(), &pb.ListHTTPAccessLogsRequest{
|
resp, err := this.RPC().HTTPAccessLogRPC().ListHTTPAccessLogs(this.AdminContext(), &pb.ListHTTPAccessLogsRequest{
|
||||||
RequestId: params.RequestId,
|
RequestId: params.RequestId,
|
||||||
@@ -50,6 +54,8 @@ func (this *TodayAction) RunGet(params struct {
|
|||||||
Keyword: params.Keyword,
|
Keyword: params.Keyword,
|
||||||
Ip: params.Ip,
|
Ip: params.Ip,
|
||||||
Domain: params.Domain,
|
Domain: params.Domain,
|
||||||
|
NodeId: params.NodeId,
|
||||||
|
NodeClusterId: params.ClusterId,
|
||||||
Size: size,
|
Size: size,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@@ -87,6 +93,8 @@ func (this *TodayAction) RunGet(params struct {
|
|||||||
Keyword: params.Keyword,
|
Keyword: params.Keyword,
|
||||||
Ip: params.Ip,
|
Ip: params.Ip,
|
||||||
Domain: params.Domain,
|
Domain: params.Domain,
|
||||||
|
NodeId: params.NodeId,
|
||||||
|
NodeClusterId: params.ClusterId,
|
||||||
Size: size,
|
Size: size,
|
||||||
Reverse: true,
|
Reverse: true,
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -48,8 +48,9 @@ func (this *ViewPopupAction) RunGet(params struct {
|
|||||||
if policyResp.HttpFirewallPolicy != nil {
|
if policyResp.HttpFirewallPolicy != nil {
|
||||||
wafMap = maps.Map{
|
wafMap = maps.Map{
|
||||||
"policy": maps.Map{
|
"policy": maps.Map{
|
||||||
"id": policyResp.HttpFirewallPolicy.Id,
|
"id": policyResp.HttpFirewallPolicy.Id,
|
||||||
"name": policyResp.HttpFirewallPolicy.Name,
|
"name": policyResp.HttpFirewallPolicy.Name,
|
||||||
|
"serverId": policyResp.HttpFirewallPolicy.ServerId,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
if accessLog.FirewallRuleGroupId > 0 {
|
if accessLog.FirewallRuleGroupId > 0 {
|
||||||
|
|||||||
@@ -64,6 +64,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": originConfig.Name,
|
"name": originConfig.Name,
|
||||||
"isOn": originConfig.IsOn,
|
"isOn": originConfig.IsOn,
|
||||||
"domains": originConfig.Domains,
|
"domains": originConfig.Domains,
|
||||||
|
"hasCert": originConfig.Cert != nil,
|
||||||
}
|
}
|
||||||
primaryOriginMaps = append(primaryOriginMaps, m)
|
primaryOriginMaps = append(primaryOriginMaps, m)
|
||||||
}
|
}
|
||||||
@@ -78,6 +79,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": originConfig.Name,
|
"name": originConfig.Name,
|
||||||
"isOn": originConfig.IsOn,
|
"isOn": originConfig.IsOn,
|
||||||
"domains": originConfig.Domains,
|
"domains": originConfig.Domains,
|
||||||
|
"hasCert": originConfig.Cert != nil,
|
||||||
}
|
}
|
||||||
backupOriginMaps = append(backupOriginMaps, m)
|
backupOriginMaps = append(backupOriginMaps, m)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,6 +8,7 @@ import (
|
|||||||
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
||||||
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
||||||
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
|
||||||
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/sslconfigs"
|
||||||
"github.com/iwind/TeaGo/actions"
|
"github.com/iwind/TeaGo/actions"
|
||||||
"net/url"
|
"net/url"
|
||||||
"regexp"
|
"regexp"
|
||||||
@@ -62,6 +63,8 @@ func (this *AddPopupAction) RunPost(params struct {
|
|||||||
MaxIdleConns int32
|
MaxIdleConns int32
|
||||||
IdleTimeout int
|
IdleTimeout int
|
||||||
|
|
||||||
|
CertIdsJSON []byte
|
||||||
|
|
||||||
DomainsJSON []byte
|
DomainsJSON []byte
|
||||||
|
|
||||||
Description string
|
Description string
|
||||||
@@ -129,6 +132,31 @@ func (this *AddPopupAction) RunPost(params struct {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 证书
|
||||||
|
var certIds = []int64{}
|
||||||
|
if len(params.CertIdsJSON) > 0 {
|
||||||
|
err = json.Unmarshal(params.CertIdsJSON, &certIds)
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var certRefJSON []byte
|
||||||
|
if len(certIds) > 0 {
|
||||||
|
var certId = certIds[0]
|
||||||
|
if certId > 0 {
|
||||||
|
var certRef = &sslconfigs.SSLCertRef{
|
||||||
|
IsOn: true,
|
||||||
|
CertId: certId,
|
||||||
|
}
|
||||||
|
certRefJSON, err = json.Marshal(certRef)
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var domains = []string{}
|
var domains = []string{}
|
||||||
if len(params.DomainsJSON) > 0 {
|
if len(params.DomainsJSON) > 0 {
|
||||||
err = json.Unmarshal(params.DomainsJSON, &domains)
|
err = json.Unmarshal(params.DomainsJSON, &domains)
|
||||||
@@ -158,6 +186,7 @@ func (this *AddPopupAction) RunPost(params struct {
|
|||||||
IdleTimeoutJSON: idleTimeoutJSON,
|
IdleTimeoutJSON: idleTimeoutJSON,
|
||||||
MaxConns: params.MaxConns,
|
MaxConns: params.MaxConns,
|
||||||
MaxIdleConns: params.MaxIdleConns,
|
MaxIdleConns: params.MaxIdleConns,
|
||||||
|
CertRefJSON: certRefJSON,
|
||||||
Domains: domains,
|
Domains: domains,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import (
|
|||||||
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
||||||
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs"
|
||||||
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/shared"
|
||||||
|
"github.com/TeaOSLab/EdgeCommon/pkg/serverconfigs/sslconfigs"
|
||||||
"github.com/iwind/TeaGo/actions"
|
"github.com/iwind/TeaGo/actions"
|
||||||
"github.com/iwind/TeaGo/maps"
|
"github.com/iwind/TeaGo/maps"
|
||||||
"github.com/iwind/TeaGo/types"
|
"github.com/iwind/TeaGo/types"
|
||||||
@@ -86,6 +87,12 @@ func (this *UpdatePopupAction) RunGet(params struct {
|
|||||||
config.Domains = []string{}
|
config.Domains = []string{}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 重置数据
|
||||||
|
if config.Cert != nil {
|
||||||
|
config.Cert.CertData = nil
|
||||||
|
config.Cert.KeyData = nil
|
||||||
|
}
|
||||||
|
|
||||||
this.Data["origin"] = maps.Map{
|
this.Data["origin"] = maps.Map{
|
||||||
"id": config.Id,
|
"id": config.Id,
|
||||||
"protocol": config.Addr.Protocol,
|
"protocol": config.Addr.Protocol,
|
||||||
@@ -99,6 +106,7 @@ func (this *UpdatePopupAction) RunGet(params struct {
|
|||||||
"idleTimeout": idleTimeout,
|
"idleTimeout": idleTimeout,
|
||||||
"maxConns": config.MaxConns,
|
"maxConns": config.MaxConns,
|
||||||
"maxIdleConns": config.MaxIdleConns,
|
"maxIdleConns": config.MaxIdleConns,
|
||||||
|
"cert": config.Cert,
|
||||||
"domains": config.Domains,
|
"domains": config.Domains,
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -121,6 +129,7 @@ func (this *UpdatePopupAction) RunPost(params struct {
|
|||||||
MaxIdleConns int32
|
MaxIdleConns int32
|
||||||
IdleTimeout int
|
IdleTimeout int
|
||||||
|
|
||||||
|
CertIdsJSON []byte
|
||||||
DomainsJSON []byte
|
DomainsJSON []byte
|
||||||
|
|
||||||
Description string
|
Description string
|
||||||
@@ -188,6 +197,31 @@ func (this *UpdatePopupAction) RunPost(params struct {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 证书
|
||||||
|
var certIds = []int64{}
|
||||||
|
if len(params.CertIdsJSON) > 0 {
|
||||||
|
err = json.Unmarshal(params.CertIdsJSON, &certIds)
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
var certRefJSON []byte
|
||||||
|
if len(certIds) > 0 {
|
||||||
|
var certId = certIds[0]
|
||||||
|
if certId > 0 {
|
||||||
|
var certRef = &sslconfigs.SSLCertRef{
|
||||||
|
IsOn: true,
|
||||||
|
CertId: certId,
|
||||||
|
}
|
||||||
|
certRefJSON, err = json.Marshal(certRef)
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
var domains = []string{}
|
var domains = []string{}
|
||||||
if len(params.DomainsJSON) > 0 {
|
if len(params.DomainsJSON) > 0 {
|
||||||
err = json.Unmarshal(params.DomainsJSON, &domains)
|
err = json.Unmarshal(params.DomainsJSON, &domains)
|
||||||
@@ -218,6 +252,7 @@ func (this *UpdatePopupAction) RunPost(params struct {
|
|||||||
IdleTimeoutJSON: idleTimeoutJSON,
|
IdleTimeoutJSON: idleTimeoutJSON,
|
||||||
MaxConns: params.MaxConns,
|
MaxConns: params.MaxConns,
|
||||||
MaxIdleConns: params.MaxIdleConns,
|
MaxIdleConns: params.MaxIdleConns,
|
||||||
|
CertRefJSON: certRefJSON,
|
||||||
Domains: domains,
|
Domains: domains,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|||||||
@@ -27,11 +27,13 @@ func (this *CreatePopupAction) RunGet(params struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *CreatePopupAction) RunPost(params struct {
|
func (this *CreatePopupAction) RunPost(params struct {
|
||||||
|
Mode string
|
||||||
BeforeURL string
|
BeforeURL string
|
||||||
AfterURL string
|
AfterURL string
|
||||||
MatchPrefix bool
|
MatchPrefix bool
|
||||||
MatchRegexp bool
|
MatchRegexp bool
|
||||||
KeepRequestURI bool
|
KeepRequestURI bool
|
||||||
|
KeepArgs bool
|
||||||
Status int
|
Status int
|
||||||
CondsJSON []byte
|
CondsJSON []byte
|
||||||
IsOn bool
|
IsOn bool
|
||||||
@@ -99,12 +101,14 @@ func (this *CreatePopupAction) RunPost(params struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
this.Data["redirect"] = maps.Map{
|
this.Data["redirect"] = maps.Map{
|
||||||
|
"mode": params.Mode,
|
||||||
"status": params.Status,
|
"status": params.Status,
|
||||||
"beforeURL": params.BeforeURL,
|
"beforeURL": params.BeforeURL,
|
||||||
"afterURL": params.AfterURL,
|
"afterURL": params.AfterURL,
|
||||||
"matchPrefix": params.MatchPrefix,
|
"matchPrefix": params.MatchPrefix,
|
||||||
"matchRegexp": params.MatchRegexp,
|
"matchRegexp": params.MatchRegexp,
|
||||||
"keepRequestURI": params.KeepRequestURI,
|
"keepRequestURI": params.KeepRequestURI,
|
||||||
|
"keepArgs": params.KeepArgs,
|
||||||
"conds": conds,
|
"conds": conds,
|
||||||
"isOn": params.IsOn,
|
"isOn": params.IsOn,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -91,6 +91,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": originConfig.Name,
|
"name": originConfig.Name,
|
||||||
"isOn": originConfig.IsOn,
|
"isOn": originConfig.IsOn,
|
||||||
"domains": originConfig.Domains,
|
"domains": originConfig.Domains,
|
||||||
|
"hasCert": originConfig.Cert != nil,
|
||||||
}
|
}
|
||||||
primaryOriginMaps = append(primaryOriginMaps, m)
|
primaryOriginMaps = append(primaryOriginMaps, m)
|
||||||
}
|
}
|
||||||
@@ -105,6 +106,7 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": originConfig.Name,
|
"name": originConfig.Name,
|
||||||
"isOn": originConfig.IsOn,
|
"isOn": originConfig.IsOn,
|
||||||
"domains": originConfig.Domains,
|
"domains": originConfig.Domains,
|
||||||
|
"hasCert": originConfig.Cert != nil,
|
||||||
}
|
}
|
||||||
backupOriginMaps = append(backupOriginMaps, m)
|
backupOriginMaps = append(backupOriginMaps, m)
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -85,6 +85,7 @@ func (this *GroupAction) RunGet(params struct {
|
|||||||
"operator": rule.Operator,
|
"operator": rule.Operator,
|
||||||
"value": rule.Value,
|
"value": rule.Value,
|
||||||
"isCaseInsensitive": rule.IsCaseInsensitive,
|
"isCaseInsensitive": rule.IsCaseInsensitive,
|
||||||
|
"description": rule.Description,
|
||||||
"isComposed": firewallconfigs.CheckCheckpointIsComposed(rule.Prefix()),
|
"isComposed": firewallconfigs.CheckCheckpointIsComposed(rule.Prefix()),
|
||||||
"checkpointOptions": rule.CheckpointOptions,
|
"checkpointOptions": rule.CheckpointOptions,
|
||||||
"err": errString,
|
"err": errString,
|
||||||
|
|||||||
@@ -113,6 +113,7 @@ func (this *AllowListAction) RunGet(params struct {
|
|||||||
"ipTo": item.IpTo,
|
"ipTo": item.IpTo,
|
||||||
"createdTime": timeutil.FormatTime("Y-m-d", item.CreatedAt),
|
"createdTime": timeutil.FormatTime("Y-m-d", item.CreatedAt),
|
||||||
"expiredTime": expiredTime,
|
"expiredTime": expiredTime,
|
||||||
|
"lifeSeconds": item.ExpiredAt - time.Now().Unix(),
|
||||||
"reason": item.Reason,
|
"reason": item.Reason,
|
||||||
"type": item.Type,
|
"type": item.Type,
|
||||||
"isExpired": item.ExpiredAt > 0 && item.ExpiredAt < time.Now().Unix(),
|
"isExpired": item.ExpiredAt > 0 && item.ExpiredAt < time.Now().Unix(),
|
||||||
|
|||||||
@@ -52,7 +52,7 @@ func (this *CountriesAction) RunGet(params struct {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
countryMaps := []maps.Map{}
|
countryMaps := []maps.Map{}
|
||||||
for _, country := range countriesResp.Countries {
|
for _, country := range countriesResp.RegionCountries {
|
||||||
countryMaps = append(countryMaps, maps.Map{
|
countryMaps = append(countryMaps, maps.Map{
|
||||||
"id": country.Id,
|
"id": country.Id,
|
||||||
"name": country.Name,
|
"name": country.Name,
|
||||||
|
|||||||
@@ -113,6 +113,7 @@ func (this *DenyListAction) RunGet(params struct {
|
|||||||
"ipTo": item.IpTo,
|
"ipTo": item.IpTo,
|
||||||
"createdTime": timeutil.FormatTime("Y-m-d", item.CreatedAt),
|
"createdTime": timeutil.FormatTime("Y-m-d", item.CreatedAt),
|
||||||
"expiredTime": expiredTime,
|
"expiredTime": expiredTime,
|
||||||
|
"lifeSeconds": item.ExpiredAt - time.Now().Unix(),
|
||||||
"reason": item.Reason,
|
"reason": item.Reason,
|
||||||
"type": item.Type,
|
"type": item.Type,
|
||||||
"isExpired": item.ExpiredAt > 0 && item.ExpiredAt < time.Now().Unix(),
|
"isExpired": item.ExpiredAt > 0 && item.ExpiredAt < time.Now().Unix(),
|
||||||
|
|||||||
@@ -47,14 +47,14 @@ func (this *ProvincesAction) RunGet(params struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
provincesResp, err := this.RPC().RegionProvinceRPC().FindAllEnabledRegionProvincesWithCountryId(this.AdminContext(), &pb.FindAllEnabledRegionProvincesWithCountryIdRequest{
|
provincesResp, err := this.RPC().RegionProvinceRPC().FindAllEnabledRegionProvincesWithCountryId(this.AdminContext(), &pb.FindAllEnabledRegionProvincesWithCountryIdRequest{
|
||||||
CountryId: int64(ChinaCountryId),
|
RegionCountryId: int64(ChinaCountryId),
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
provinceMaps := []maps.Map{}
|
provinceMaps := []maps.Map{}
|
||||||
for _, province := range provincesResp.Provinces {
|
for _, province := range provincesResp.RegionProvinces {
|
||||||
provinceMaps = append(provinceMaps, maps.Map{
|
provinceMaps = append(provinceMaps, maps.Map{
|
||||||
"id": province.Id,
|
"id": province.Id,
|
||||||
"name": province.Name,
|
"name": province.Name,
|
||||||
|
|||||||
@@ -378,6 +378,16 @@ func (this *ServerHelper) createSettingsMenu(secondMenuItem string, serverIdStri
|
|||||||
"isActive": secondMenuItem == "traffic",
|
"isActive": secondMenuItem == "traffic",
|
||||||
"isOn": serverConfig.TrafficLimit != nil && serverConfig.TrafficLimit.IsOn,
|
"isOn": serverConfig.TrafficLimit != nil && serverConfig.TrafficLimit.IsOn,
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if serverConfig.Web != nil && serverConfig.Web.RequestScripts != nil {
|
||||||
|
_ = serverConfig.Web.RequestScripts.Init()
|
||||||
|
}
|
||||||
|
menuItems = append(menuItems, maps.Map{
|
||||||
|
"name": "边缘脚本",
|
||||||
|
"url": "/servers/server/settings/requestScripts?serverId=" + serverIdString,
|
||||||
|
"isActive": secondMenuItem == "requestScripts",
|
||||||
|
"isOn": serverConfig.Web != nil && serverConfig.Web.RequestScripts != nil && !serverConfig.Web.RequestScripts.IsEmpty(),
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
menuItems = append(menuItems, maps.Map{
|
menuItems = append(menuItems, maps.Map{
|
||||||
|
|||||||
@@ -31,12 +31,12 @@ func (this *IndexAction) RunGet(params struct{}) {
|
|||||||
// 国家和地区
|
// 国家和地区
|
||||||
countryMaps := []maps.Map{}
|
countryMaps := []maps.Map{}
|
||||||
for _, countryId := range config.AllowCountryIds {
|
for _, countryId := range config.AllowCountryIds {
|
||||||
countryResp, err := this.RPC().RegionCountryRPC().FindEnabledRegionCountry(this.AdminContext(), &pb.FindEnabledRegionCountryRequest{CountryId: countryId})
|
countryResp, err := this.RPC().RegionCountryRPC().FindEnabledRegionCountry(this.AdminContext(), &pb.FindEnabledRegionCountryRequest{RegionCountryId: countryId})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
country := countryResp.Country
|
country := countryResp.RegionCountry
|
||||||
if country != nil {
|
if country != nil {
|
||||||
countryMaps = append(countryMaps, maps.Map{
|
countryMaps = append(countryMaps, maps.Map{
|
||||||
"id": country.Id,
|
"id": country.Id,
|
||||||
@@ -49,12 +49,12 @@ func (this *IndexAction) RunGet(params struct{}) {
|
|||||||
// 省份
|
// 省份
|
||||||
provinceMaps := []maps.Map{}
|
provinceMaps := []maps.Map{}
|
||||||
for _, provinceId := range config.AllowProvinceIds {
|
for _, provinceId := range config.AllowProvinceIds {
|
||||||
provinceResp, err := this.RPC().RegionProvinceRPC().FindEnabledRegionProvince(this.AdminContext(), &pb.FindEnabledRegionProvinceRequest{ProvinceId: provinceId})
|
provinceResp, err := this.RPC().RegionProvinceRPC().FindEnabledRegionProvince(this.AdminContext(), &pb.FindEnabledRegionProvinceRequest{RegionProvinceId: provinceId})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
province := provinceResp.Province
|
province := provinceResp.RegionProvince
|
||||||
if province != nil {
|
if province != nil {
|
||||||
provinceMaps = append(provinceMaps, maps.Map{
|
provinceMaps = append(provinceMaps, maps.Map{
|
||||||
"id": province.Id,
|
"id": province.Id,
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ func (this *SelectCountriesPopupAction) RunGet(params struct {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
countryMaps := []maps.Map{}
|
countryMaps := []maps.Map{}
|
||||||
for _, country := range countriesResp.Countries {
|
for _, country := range countriesResp.RegionCountries {
|
||||||
countryMaps = append(countryMaps, maps.Map{
|
countryMaps = append(countryMaps, maps.Map{
|
||||||
"id": country.Id,
|
"id": country.Id,
|
||||||
"name": country.Name,
|
"name": country.Name,
|
||||||
@@ -50,12 +50,12 @@ func (this *SelectCountriesPopupAction) RunPost(params struct {
|
|||||||
}) {
|
}) {
|
||||||
countryMaps := []maps.Map{}
|
countryMaps := []maps.Map{}
|
||||||
for _, countryId := range params.CountryIds {
|
for _, countryId := range params.CountryIds {
|
||||||
countryResp, err := this.RPC().RegionCountryRPC().FindEnabledRegionCountry(this.AdminContext(), &pb.FindEnabledRegionCountryRequest{CountryId: countryId})
|
countryResp, err := this.RPC().RegionCountryRPC().FindEnabledRegionCountry(this.AdminContext(), &pb.FindEnabledRegionCountryRequest{RegionCountryId: countryId})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
country := countryResp.Country
|
country := countryResp.RegionCountry
|
||||||
if country == nil {
|
if country == nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -24,13 +24,13 @@ func (this *SelectProvincesPopupAction) RunGet(params struct {
|
|||||||
}) {
|
}) {
|
||||||
selectedProvinceIds := utils.SplitNumbers(params.ProvinceIds)
|
selectedProvinceIds := utils.SplitNumbers(params.ProvinceIds)
|
||||||
|
|
||||||
provincesResp, err := this.RPC().RegionProvinceRPC().FindAllEnabledRegionProvincesWithCountryId(this.AdminContext(), &pb.FindAllEnabledRegionProvincesWithCountryIdRequest{CountryId: ChinaCountryId})
|
provincesResp, err := this.RPC().RegionProvinceRPC().FindAllEnabledRegionProvincesWithCountryId(this.AdminContext(), &pb.FindAllEnabledRegionProvincesWithCountryIdRequest{RegionCountryId: ChinaCountryId})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
provinceMaps := []maps.Map{}
|
provinceMaps := []maps.Map{}
|
||||||
for _, province := range provincesResp.Provinces {
|
for _, province := range provincesResp.RegionProvinces {
|
||||||
provinceMaps = append(provinceMaps, maps.Map{
|
provinceMaps = append(provinceMaps, maps.Map{
|
||||||
"id": province.Id,
|
"id": province.Id,
|
||||||
"name": province.Name,
|
"name": province.Name,
|
||||||
@@ -50,12 +50,12 @@ func (this *SelectProvincesPopupAction) RunPost(params struct {
|
|||||||
}) {
|
}) {
|
||||||
provinceMaps := []maps.Map{}
|
provinceMaps := []maps.Map{}
|
||||||
for _, provinceId := range params.ProvinceIds {
|
for _, provinceId := range params.ProvinceIds {
|
||||||
provinceResp, err := this.RPC().RegionProvinceRPC().FindEnabledRegionProvince(this.AdminContext(), &pb.FindEnabledRegionProvinceRequest{ProvinceId: provinceId})
|
provinceResp, err := this.RPC().RegionProvinceRPC().FindEnabledRegionProvince(this.AdminContext(), &pb.FindEnabledRegionProvinceRequest{RegionProvinceId: provinceId})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
province := provinceResp.Province
|
province := provinceResp.RegionProvince
|
||||||
if province == nil {
|
if province == nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -16,9 +16,16 @@ func (this *IndexAction) Init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (this *IndexAction) RunGet(params struct {
|
func (this *IndexAction) RunGet(params struct {
|
||||||
Keyword string
|
Keyword string
|
||||||
|
Verifying bool
|
||||||
}) {
|
}) {
|
||||||
countResp, err := this.RPC().UserRPC().CountAllEnabledUsers(this.AdminContext(), &pb.CountAllEnabledUsersRequest{Keyword: params.Keyword})
|
this.Data["keyword"] = params.Keyword
|
||||||
|
this.Data["isVerifying"] = params.Verifying
|
||||||
|
|
||||||
|
countResp, err := this.RPC().UserRPC().CountAllEnabledUsers(this.AdminContext(), &pb.CountAllEnabledUsersRequest{
|
||||||
|
Keyword: params.Keyword,
|
||||||
|
IsVerifying: params.Verifying,
|
||||||
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
@@ -28,15 +35,16 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
this.Data["page"] = page.AsHTML()
|
this.Data["page"] = page.AsHTML()
|
||||||
|
|
||||||
usersResp, err := this.RPC().UserRPC().ListEnabledUsers(this.AdminContext(), &pb.ListEnabledUsersRequest{
|
usersResp, err := this.RPC().UserRPC().ListEnabledUsers(this.AdminContext(), &pb.ListEnabledUsersRequest{
|
||||||
Keyword: params.Keyword,
|
Keyword: params.Keyword,
|
||||||
Offset: page.Offset,
|
IsVerifying: params.Verifying,
|
||||||
Size: page.Size,
|
Offset: page.Offset,
|
||||||
|
Size: page.Size,
|
||||||
})
|
})
|
||||||
if err != nil {
|
if err != nil {
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
userMaps := []maps.Map{}
|
var userMaps = []maps.Map{}
|
||||||
for _, user := range usersResp.Users {
|
for _, user := range usersResp.Users {
|
||||||
var clusterMap maps.Map = nil
|
var clusterMap maps.Map = nil
|
||||||
if user.NodeCluster != nil {
|
if user.NodeCluster != nil {
|
||||||
@@ -45,16 +53,20 @@ func (this *IndexAction) RunGet(params struct {
|
|||||||
"name": user.NodeCluster.Name,
|
"name": user.NodeCluster.Name,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
userMaps = append(userMaps, maps.Map{
|
userMaps = append(userMaps, maps.Map{
|
||||||
"id": user.Id,
|
"id": user.Id,
|
||||||
"username": user.Username,
|
"username": user.Username,
|
||||||
"isOn": user.IsOn,
|
"isOn": user.IsOn,
|
||||||
"fullname": user.Fullname,
|
"fullname": user.Fullname,
|
||||||
"email": user.Email,
|
"email": user.Email,
|
||||||
"mobile": user.Mobile,
|
"mobile": user.Mobile,
|
||||||
"tel": user.Tel,
|
"tel": user.Tel,
|
||||||
"createdTime": timeutil.FormatTime("Y-m-d H:i:s", user.CreatedAt),
|
"createdTime": timeutil.FormatTime("Y-m-d H:i:s", user.CreatedAt),
|
||||||
"cluster": clusterMap,
|
"cluster": clusterMap,
|
||||||
|
"registeredIP": user.RegisteredIP,
|
||||||
|
"isVerified": user.IsVerified,
|
||||||
|
"isRejected": user.IsRejected,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
this.Data["users"] = userMaps
|
this.Data["users"] = userMaps
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ func init() {
|
|||||||
GetPost("/update", new(UpdateAction)).
|
GetPost("/update", new(UpdateAction)).
|
||||||
Post("/delete", new(DeleteAction)).
|
Post("/delete", new(DeleteAction)).
|
||||||
GetPost("/features", new(FeaturesAction)).
|
GetPost("/features", new(FeaturesAction)).
|
||||||
|
GetPost("/verifyPopup", new(VerifyPopupAction)).
|
||||||
|
|
||||||
// AccessKeys
|
// AccessKeys
|
||||||
Prefix("/users/accessKeys").
|
Prefix("/users/accessKeys").
|
||||||
@@ -26,7 +27,6 @@ func init() {
|
|||||||
GetPost("/createPopup", new(accesskeys.CreatePopupAction)).
|
GetPost("/createPopup", new(accesskeys.CreatePopupAction)).
|
||||||
Post("/delete", new(accesskeys.DeleteAction)).
|
Post("/delete", new(accesskeys.DeleteAction)).
|
||||||
Post("/updateIsOn", new(accesskeys.UpdateIsOnAction)).
|
Post("/updateIsOn", new(accesskeys.UpdateIsOnAction)).
|
||||||
|
|
||||||
EndAll()
|
EndAll()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -20,6 +20,11 @@ func (this *UserAction) RunGet(params struct {
|
|||||||
}) {
|
}) {
|
||||||
err := userutils.InitUser(this.Parent(), params.UserId)
|
err := userutils.InitUser(this.Parent(), params.UserId)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
if err == userutils.ErrUserNotFound {
|
||||||
|
this.RedirectURL("/users")
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
this.ErrorPage(err)
|
this.ErrorPage(err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
@@ -51,17 +56,35 @@ func (this *UserAction) RunGet(params struct {
|
|||||||
}
|
}
|
||||||
countAccessKeys := countAccessKeyResp.Count
|
countAccessKeys := countAccessKeyResp.Count
|
||||||
|
|
||||||
|
// IP地址
|
||||||
|
var registeredRegion = ""
|
||||||
|
if len(user.RegisteredIP) > 0 {
|
||||||
|
regionResp, err := this.RPC().IPLibraryRPC().LookupIPRegion(this.AdminContext(), &pb.LookupIPRegionRequest{Ip: user.RegisteredIP})
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if regionResp.IpRegion != nil {
|
||||||
|
registeredRegion = regionResp.IpRegion.Summary
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
this.Data["user"] = maps.Map{
|
this.Data["user"] = maps.Map{
|
||||||
"id": user.Id,
|
"id": user.Id,
|
||||||
"username": user.Username,
|
"username": user.Username,
|
||||||
"fullname": user.Fullname,
|
"fullname": user.Fullname,
|
||||||
"email": user.Email,
|
"email": user.Email,
|
||||||
"tel": user.Tel,
|
"tel": user.Tel,
|
||||||
"remark": user.Remark,
|
"remark": user.Remark,
|
||||||
"mobile": user.Mobile,
|
"mobile": user.Mobile,
|
||||||
"isOn": user.IsOn,
|
"isOn": user.IsOn,
|
||||||
"cluster": clusterMap,
|
"cluster": clusterMap,
|
||||||
"countAccessKeys": countAccessKeys,
|
"countAccessKeys": countAccessKeys,
|
||||||
|
"isRejected": user.IsRejected,
|
||||||
|
"rejectReason": user.RejectReason,
|
||||||
|
"isVerified": user.IsVerified,
|
||||||
|
"registeredIP": user.RegisteredIP,
|
||||||
|
"registeredRegion": registeredRegion,
|
||||||
}
|
}
|
||||||
|
|
||||||
this.Show()
|
this.Show()
|
||||||
|
|||||||
@@ -7,6 +7,8 @@ import (
|
|||||||
"github.com/iwind/TeaGo/maps"
|
"github.com/iwind/TeaGo/maps"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
var ErrUserNotFound = errors.New("not found user")
|
||||||
|
|
||||||
// InitUser 查找用户基本信息
|
// InitUser 查找用户基本信息
|
||||||
func InitUser(p *actionutils.ParentAction, userId int64) error {
|
func InitUser(p *actionutils.ParentAction, userId int64) error {
|
||||||
resp, err := p.RPC().UserRPC().FindEnabledUser(p.AdminContext(), &pb.FindEnabledUserRequest{UserId: userId})
|
resp, err := p.RPC().UserRPC().FindEnabledUser(p.AdminContext(), &pb.FindEnabledUserRequest{UserId: userId})
|
||||||
@@ -14,7 +16,7 @@ func InitUser(p *actionutils.ParentAction, userId int64) error {
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
if resp.User == nil {
|
if resp.User == nil {
|
||||||
return errors.New("not found user")
|
return ErrUserNotFound
|
||||||
}
|
}
|
||||||
|
|
||||||
// AccessKey数量
|
// AccessKey数量
|
||||||
|
|||||||
56
internal/web/actions/default/users/verifyPopup.go
Normal file
56
internal/web/actions/default/users/verifyPopup.go
Normal file
@@ -0,0 +1,56 @@
|
|||||||
|
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||||||
|
|
||||||
|
package users
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/actionutils"
|
||||||
|
"github.com/TeaOSLab/EdgeCommon/pkg/rpc/pb"
|
||||||
|
"github.com/iwind/TeaGo/actions"
|
||||||
|
)
|
||||||
|
|
||||||
|
type VerifyPopupAction struct {
|
||||||
|
actionutils.ParentAction
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *VerifyPopupAction) RunGet(params struct {
|
||||||
|
UserId int64
|
||||||
|
}) {
|
||||||
|
this.Data["userId"] = params.UserId
|
||||||
|
|
||||||
|
this.Show()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *VerifyPopupAction) RunPost(params struct {
|
||||||
|
UserId int64
|
||||||
|
Result string
|
||||||
|
RejectReason string
|
||||||
|
|
||||||
|
Must *actions.Must
|
||||||
|
CSRF *actionutils.CSRF
|
||||||
|
}) {
|
||||||
|
defer this.CreateLogInfo("审核用户:%d 结果:%s", params.UserId, params.Result)
|
||||||
|
|
||||||
|
if params.Result == "pass" {
|
||||||
|
params.RejectReason = ""
|
||||||
|
}
|
||||||
|
|
||||||
|
_, err := this.RPC().UserRPC().VerifyUser(this.AdminContext(), &pb.VerifyUserRequest{
|
||||||
|
UserId: params.UserId,
|
||||||
|
IsRejected: params.Result == "reject" || params.Result == "delete",
|
||||||
|
RejectReason: params.RejectReason,
|
||||||
|
})
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
|
||||||
|
if params.Result == "delete" {
|
||||||
|
_, err = this.RPC().UserRPC().DeleteUser(this.AdminContext(), &pb.DeleteUserRequest{UserId: params.UserId})
|
||||||
|
if err != nil {
|
||||||
|
this.ErrorPage(err)
|
||||||
|
return
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
this.Success()
|
||||||
|
}
|
||||||
@@ -9,7 +9,7 @@ import (
|
|||||||
"github.com/iwind/TeaGo/maps"
|
"github.com/iwind/TeaGo/maps"
|
||||||
)
|
)
|
||||||
|
|
||||||
func FindAllMenuMaps(nodeLogsType string, countUnreadNodeLogs int64) []maps.Map {
|
func FindAllMenuMaps(nodeLogsType string, countUnreadNodeLogs int64, countUnreadIPItems int64) []maps.Map {
|
||||||
return []maps.Map{
|
return []maps.Map{
|
||||||
{
|
{
|
||||||
"code": "dashboard",
|
"code": "dashboard",
|
||||||
@@ -50,9 +50,10 @@ func FindAllMenuMaps(nodeLogsType string, countUnreadNodeLogs int64) []maps.Map
|
|||||||
"code": "waf",
|
"code": "waf",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "IP名单",
|
"name": "IP名单",
|
||||||
"url": "/servers/iplists",
|
"url": "/servers/iplists",
|
||||||
"code": "iplist",
|
"code": "iplist",
|
||||||
|
"badge": countUnreadIPItems,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "统计指标",
|
"name": "统计指标",
|
||||||
|
|||||||
@@ -171,16 +171,21 @@ func (this *userMustAuth) BeforeAction(actionPtr actions.ActionWrapper, paramNam
|
|||||||
|
|
||||||
// 菜单配置
|
// 菜单配置
|
||||||
func (this *userMustAuth) modules(actionPtr actions.ActionWrapper, adminId int64) []maps.Map {
|
func (this *userMustAuth) modules(actionPtr actions.ActionWrapper, adminId int64) []maps.Map {
|
||||||
|
// 运行日志
|
||||||
var countUnreadNodeLogs int64 = 0
|
var countUnreadNodeLogs int64 = 0
|
||||||
var nodeLogsType = ""
|
var nodeLogsType = ""
|
||||||
|
|
||||||
|
// IP名单
|
||||||
|
var countUnreadIPItems int64 = 0
|
||||||
|
|
||||||
// 父级动作
|
// 父级动作
|
||||||
parentAction, ok := actionPtr.(actionutils.ActionInterface)
|
parentAction, ok := actionPtr.(actionutils.ActionInterface)
|
||||||
if ok {
|
if ok {
|
||||||
var action = actionPtr.Object()
|
var action = actionPtr.Object()
|
||||||
|
|
||||||
// 未读日志数
|
// 未读日志数
|
||||||
if action.Data.GetString("teaMenu") == "clusters" {
|
var mainMenu = action.Data.GetString("teaMenu")
|
||||||
|
if mainMenu == "clusters" {
|
||||||
countNodeLogsResp, err := parentAction.RPC().NodeLogRPC().CountNodeLogs(parentAction.AdminContext(), &pb.CountNodeLogsRequest{
|
countNodeLogsResp, err := parentAction.RPC().NodeLogRPC().CountNodeLogs(parentAction.AdminContext(), &pb.CountNodeLogsRequest{
|
||||||
Role: nodeconfigs.NodeRoleNode,
|
Role: nodeconfigs.NodeRoleNode,
|
||||||
IsUnread: true,
|
IsUnread: true,
|
||||||
@@ -197,11 +202,18 @@ func (this *userMustAuth) modules(actionPtr actions.ActionWrapper, adminId int64
|
|||||||
nodeLogsType = "unread"
|
nodeLogsType = "unread"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} else if mainMenu == "servers" {
|
||||||
|
countUnreadIPItemsResp, err := parentAction.RPC().IPItemRPC().CountAllEnabledIPItems(parentAction.AdminContext(), &pb.CountAllEnabledIPItemsRequest{Unread: true})
|
||||||
|
if err != nil {
|
||||||
|
logs.Error(err)
|
||||||
|
} else {
|
||||||
|
countUnreadIPItems = countUnreadIPItemsResp.Count
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
result := []maps.Map{}
|
result := []maps.Map{}
|
||||||
for _, m := range FindAllMenuMaps(nodeLogsType, countUnreadNodeLogs) {
|
for _, m := range FindAllMenuMaps(nodeLogsType, countUnreadNodeLogs, countUnreadIPItems) {
|
||||||
if m.GetString("code") == "finance" && !configloaders.ShowFinance() {
|
if m.GetString("code") == "finance" && !configloaders.ShowFinance() {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
26
web/public/js/components/cluster/node-cluster-combo-box.js
Normal file
26
web/public/js/components/cluster/node-cluster-combo-box.js
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
Vue.component("node-cluster-combo-box", {
|
||||||
|
props: ["v-cluster-id"],
|
||||||
|
data: function () {
|
||||||
|
let that = this
|
||||||
|
Tea.action("/clusters/options")
|
||||||
|
.post()
|
||||||
|
.success(function (resp) {
|
||||||
|
that.clusters = resp.data.clusters
|
||||||
|
})
|
||||||
|
return {
|
||||||
|
clusters: []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
change: function (item) {
|
||||||
|
if (item == null) {
|
||||||
|
this.$emit("change", 0)
|
||||||
|
} else {
|
||||||
|
this.$emit("change", item.value)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template: `<div v-if="clusters.length > 0">
|
||||||
|
<combo-box title="集群" placeholder="集群名称" :v-items="clusters" name="clusterId" :v-value="vClusterId" @change="change"></combo-box>
|
||||||
|
</div>`
|
||||||
|
})
|
||||||
159
web/public/js/components/common/combo-box.js
Normal file
159
web/public/js/components/common/combo-box.js
Normal file
@@ -0,0 +1,159 @@
|
|||||||
|
Vue.component("combo-box", {
|
||||||
|
props: ["name", "title", "placeholder", "size", "v-items", "v-value"],
|
||||||
|
data: function () {
|
||||||
|
let items = this.vItems
|
||||||
|
if (items == null || !(items instanceof Array)) {
|
||||||
|
items = []
|
||||||
|
}
|
||||||
|
|
||||||
|
// 自动使用ID作为值
|
||||||
|
items.forEach(function (v) {
|
||||||
|
if (v.value == null) {
|
||||||
|
v.value = v.id
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
// 当前选中项
|
||||||
|
let selectedItem = null
|
||||||
|
if (this.vValue != null) {
|
||||||
|
let that = this
|
||||||
|
items.forEach(function (v) {
|
||||||
|
if (v.value == that.vValue) {
|
||||||
|
selectedItem = v
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
allItems: items,
|
||||||
|
items: items.$copy(),
|
||||||
|
selectedItem: selectedItem,
|
||||||
|
keyword: "",
|
||||||
|
visible: false,
|
||||||
|
hideTimer: null,
|
||||||
|
hoverIndex: 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
reset: function () {
|
||||||
|
this.selectedItem = null
|
||||||
|
this.change()
|
||||||
|
this.hoverIndex = 0
|
||||||
|
|
||||||
|
let that = this
|
||||||
|
setTimeout(function () {
|
||||||
|
if (that.$refs.searchBox) {
|
||||||
|
that.$refs.searchBox.focus()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
changeKeyword: function () {
|
||||||
|
this.hoverIndex = 0
|
||||||
|
let keyword = this.keyword
|
||||||
|
if (keyword.length == 0) {
|
||||||
|
this.items = this.allItems.$copy()
|
||||||
|
return
|
||||||
|
}
|
||||||
|
this.items = this.allItems.$copy().filter(function (v) {
|
||||||
|
return teaweb.match(v.name, keyword)
|
||||||
|
})
|
||||||
|
},
|
||||||
|
selectItem: function (item) {
|
||||||
|
this.selectedItem = item
|
||||||
|
this.change()
|
||||||
|
this.hoverIndex = 0
|
||||||
|
this.keyword = ""
|
||||||
|
this.changeKeyword()
|
||||||
|
},
|
||||||
|
confirm: function () {
|
||||||
|
if (this.items.length > this.hoverIndex) {
|
||||||
|
this.selectItem(this.items[this.hoverIndex])
|
||||||
|
}
|
||||||
|
},
|
||||||
|
show: function () {
|
||||||
|
this.visible = true
|
||||||
|
|
||||||
|
// 不要重置hoverIndex,以便焦点可以在输入框和可选项之间切换
|
||||||
|
},
|
||||||
|
hide: function () {
|
||||||
|
let that = this
|
||||||
|
this.hideTimer = setTimeout(function () {
|
||||||
|
that.visible = false
|
||||||
|
}, 500)
|
||||||
|
},
|
||||||
|
downItem: function () {
|
||||||
|
this.hoverIndex++
|
||||||
|
if (this.hoverIndex > this.items.length - 1) {
|
||||||
|
this.hoverIndex = 0
|
||||||
|
}
|
||||||
|
this.focusItem()
|
||||||
|
},
|
||||||
|
upItem: function () {
|
||||||
|
this.hoverIndex--
|
||||||
|
if (this.hoverIndex < 0) {
|
||||||
|
this.hoverIndex = 0
|
||||||
|
}
|
||||||
|
this.focusItem()
|
||||||
|
},
|
||||||
|
focusItem: function () {
|
||||||
|
if (this.hoverIndex < this.items.length) {
|
||||||
|
this.$refs.itemRef[this.hoverIndex].focus()
|
||||||
|
let that = this
|
||||||
|
setTimeout(function () {
|
||||||
|
that.$refs.searchBox.focus()
|
||||||
|
if (that.hideTimer != null) {
|
||||||
|
clearTimeout(that.hideTimer)
|
||||||
|
that.hideTimer = null
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
},
|
||||||
|
change: function () {
|
||||||
|
this.$emit("change", this.selectedItem)
|
||||||
|
|
||||||
|
let that = this
|
||||||
|
setTimeout(function () {
|
||||||
|
if (that.$refs.selectedLabel != null) {
|
||||||
|
that.$refs.selectedLabel.focus()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
},
|
||||||
|
submitForm: function (event) {
|
||||||
|
if (event.target.tagName != "A") {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
let parentBox = this.$refs.selectedLabel.parentNode
|
||||||
|
while (true) {
|
||||||
|
parentBox = parentBox.parentNode
|
||||||
|
if (parentBox == null || parentBox.tagName == "BODY") {
|
||||||
|
return
|
||||||
|
}
|
||||||
|
if (parentBox.tagName == "FORM") {
|
||||||
|
parentBox.submit()
|
||||||
|
break
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template: `<div style="display: inline; z-index: 10; background: white">
|
||||||
|
<!-- 搜索框 -->
|
||||||
|
<div v-if="selectedItem == null">
|
||||||
|
<input type="text" v-model="keyword" :placeholder="placeholder" :size="size" style="width: 11em" @input="changeKeyword" @focus="show" @blur="hide" @keyup.enter="confirm()" @keypress.enter.prevent="1" ref="searchBox" @keyup.down="downItem" @keyup.up="upItem"/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 当前选中 -->
|
||||||
|
<div v-if="selectedItem != null">
|
||||||
|
<input type="hidden" :name="name" :value="selectedItem.value"/>
|
||||||
|
<a href="" class="ui label basic" ref="selectedLabel" @click.prevent="submitForm"><span>{{title}}:{{selectedItem.name}}</span>
|
||||||
|
<span title="清除" @click.prevent="reset"><i class="icon remove small"></i></span>
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 菜单 -->
|
||||||
|
<div v-if="selectedItem == null && items.length > 0 && visible">
|
||||||
|
<div class="ui menu vertical small narrow-scrollbar" style="width: 11em; max-height: 17em; overflow-y: auto; position: absolute; border: rgba(129, 177, 210, 0.81) 1px solid; border-top: 0; z-index: 100">
|
||||||
|
<a href="" v-for="(item, index) in items" ref="itemRef" class="item" :class="{active: index == hoverIndex, blue: index == hoverIndex}" @click.prevent="selectItem(item)" style="line-height: 1.4">{{item.name}}</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>`
|
||||||
|
})
|
||||||
@@ -31,5 +31,15 @@ Vue.component("micro-basic-label", {
|
|||||||
|
|
||||||
// 灰色的Label
|
// 灰色的Label
|
||||||
Vue.component("grey-label", {
|
Vue.component("grey-label", {
|
||||||
template: `<span class="ui label basic grey tiny" style="margin-top: 0.4em; font-size: 0.7em; border: 1px solid #ddd!important; font-weight: normal;"><slot></slot></span>`
|
props: ["color"],
|
||||||
|
data: function () {
|
||||||
|
let color = "grey"
|
||||||
|
if (this.color != null && this.color.length > 0) {
|
||||||
|
color = "red"
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
labelColor: color
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template: `<span class="ui label basic tiny" :class="labelColor" style="margin-top: 0.4em; font-size: 0.7em; border: 1px solid #ddd!important; font-weight: normal;"><slot></slot></span>`
|
||||||
})
|
})
|
||||||
|
|||||||
@@ -18,6 +18,19 @@ Vue.component("source-code-box", {
|
|||||||
|
|
||||||
this.createEditor(box, value, readOnly)
|
this.createEditor(box, value, readOnly)
|
||||||
},
|
},
|
||||||
|
data: function () {
|
||||||
|
let index = sourceCodeBoxIndex++
|
||||||
|
|
||||||
|
let valueBoxId = 'source-code-box-value-' + sourceCodeBoxIndex
|
||||||
|
if (this.id != null) {
|
||||||
|
valueBoxId = this.id
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
index: index,
|
||||||
|
valueBoxId: valueBoxId
|
||||||
|
}
|
||||||
|
},
|
||||||
methods: {
|
methods: {
|
||||||
createEditor: function (box, value, readOnly) {
|
createEditor: function (box, value, readOnly) {
|
||||||
let boxEditor = CodeMirror.fromTextArea(box, {
|
let boxEditor = CodeMirror.fromTextArea(box, {
|
||||||
@@ -32,7 +45,11 @@ Vue.component("source-code-box", {
|
|||||||
lineWrapping: true,
|
lineWrapping: true,
|
||||||
highlightFormatting: false,
|
highlightFormatting: false,
|
||||||
indentUnit: 4,
|
indentUnit: 4,
|
||||||
indentWithTabs: true
|
indentWithTabs: true,
|
||||||
|
})
|
||||||
|
let that = this
|
||||||
|
boxEditor.on("change", function () {
|
||||||
|
that.change(boxEditor.getValue())
|
||||||
})
|
})
|
||||||
boxEditor.setValue(value)
|
boxEditor.setValue(value)
|
||||||
|
|
||||||
@@ -55,19 +72,9 @@ Vue.component("source-code-box", {
|
|||||||
CodeMirror.modeURL = "/codemirror/mode/%N/%N.js"
|
CodeMirror.modeURL = "/codemirror/mode/%N/%N.js"
|
||||||
CodeMirror.autoLoadMode(boxEditor, info.mode)
|
CodeMirror.autoLoadMode(boxEditor, info.mode)
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
},
|
change: function (code) {
|
||||||
data: function () {
|
this.$emit("change", code)
|
||||||
let index = sourceCodeBoxIndex++
|
|
||||||
|
|
||||||
let valueBoxId = 'source-code-box-value-' + sourceCodeBoxIndex
|
|
||||||
if (this.id != null) {
|
|
||||||
valueBoxId = this.id
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
index: index,
|
|
||||||
valueBoxId: valueBoxId
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
template: `<div class="source-code-box">
|
template: `<div class="source-code-box">
|
||||||
|
|||||||
@@ -70,6 +70,18 @@ Vue.component("ip-list-table", {
|
|||||||
.success(function () {
|
.success(function () {
|
||||||
teaweb.successToast("批量删除成功", 1200, teaweb.reload)
|
teaweb.successToast("批量删除成功", 1200, teaweb.reload)
|
||||||
})
|
})
|
||||||
|
},
|
||||||
|
formatSeconds: function (seconds) {
|
||||||
|
if (seconds < 60) {
|
||||||
|
return seconds + "秒"
|
||||||
|
}
|
||||||
|
if (seconds < 3600) {
|
||||||
|
return Math.ceil(seconds / 60) + "分钟"
|
||||||
|
}
|
||||||
|
if (seconds < 86400) {
|
||||||
|
return Math.ceil(seconds / 3600) + "小时"
|
||||||
|
}
|
||||||
|
return Math.ceil(seconds / 86400) + "天"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
template: `<div>
|
template: `<div>
|
||||||
@@ -103,7 +115,7 @@ Vue.component("ip-list-table", {
|
|||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<span v-if="item.type != 'all'">
|
<span v-if="item.type != 'all'">
|
||||||
<keyword :v-word="keyword">{{item.ipFrom}}</keyword> <span> <a :href="'/servers/iplists?ip=' + item.ipFrom" v-if="vShowSearchButton" title="搜索此IP"><span><i class="icon search small" style="color: #ccc"></i></span></a></span>
|
<keyword :v-word="keyword">{{item.ipFrom}}</keyword> <span> <span class="small red" v-if="item.isRead != null && !item.isRead"> New </span> <a :href="'/servers/iplists?ip=' + item.ipFrom" v-if="vShowSearchButton" title="搜索此IP"><span><i class="icon search small" style="color: #ccc"></i></span></a></span>
|
||||||
<span v-if="item.ipTo.length > 0"> - <keyword :v-word="keyword">{{item.ipTo}}</keyword></span></span>
|
<span v-if="item.ipTo.length > 0"> - <keyword :v-word="keyword">{{item.ipTo}}</keyword></span></span>
|
||||||
<span v-else class="disabled">*</span>
|
<span v-else class="disabled">*</span>
|
||||||
<div v-if="item.createdTime != null">
|
<div v-if="item.createdTime != null">
|
||||||
@@ -143,6 +155,9 @@ Vue.component("ip-list-table", {
|
|||||||
<div v-if="item.isExpired" style="margin-top: 0.5em">
|
<div v-if="item.isExpired" style="margin-top: 0.5em">
|
||||||
<span class="ui label tiny basic red">已过期</span>
|
<span class="ui label tiny basic red">已过期</span>
|
||||||
</div>
|
</div>
|
||||||
|
<div v-if="item.lifeSeconds != null && item.lifeSeconds > 0">
|
||||||
|
<span class="small grey">{{formatSeconds(item.lifeSeconds)}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<span v-else class="disabled">不过期</span>
|
<span v-else class="disabled">不过期</span>
|
||||||
</td>
|
</td>
|
||||||
@@ -150,12 +165,15 @@ Vue.component("ip-list-table", {
|
|||||||
<span v-if="item.reason.length > 0">{{item.reason}}</span>
|
<span v-if="item.reason.length > 0">{{item.reason}}</span>
|
||||||
<span v-else class="disabled">-</span>
|
<span v-else class="disabled">-</span>
|
||||||
|
|
||||||
|
<div v-if="item.sourceNode != null && item.sourceNode.id > 0" style="margin-top: 0.4em">
|
||||||
|
<a :href="'/clusters/cluster/node?clusterId=' + item.sourceNode.clusterId + '&nodeId=' + item.sourceNode.id"><span class="small"><i class="icon cloud"></i>{{item.sourceNode.name}}</span></a>
|
||||||
|
</div>
|
||||||
<div style="margin-top: 0.4em" v-if="item.sourceServer != null && item.sourceServer.id > 0">
|
<div style="margin-top: 0.4em" v-if="item.sourceServer != null && item.sourceServer.id > 0">
|
||||||
<a :href="'/servers/server?serverId=' + item.sourceServer.id" style="border: 0"><span class="small "><i class="icon clone outline"></i>{{item.sourceServer.name}}</span></a>
|
<a :href="'/servers/server?serverId=' + item.sourceServer.id" style="border: 0"><span class="small "><i class="icon clone outline"></i>{{item.sourceServer.name}}</span></a>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="item.sourcePolicy != null && item.sourcePolicy.id > 0" style="margin-top: 0.4em">
|
<div v-if="item.sourcePolicy != null && item.sourcePolicy.id > 0" style="margin-top: 0.4em">
|
||||||
<a :href="'/servers/components/waf/group?firewallPolicyId=' + item.sourcePolicy.id + '&type=inbound&groupId=' + item.sourceGroup.id" v-if="item.sourcePolicy.serverId == 0"><span class="small "><i class="icon shield"></i>{{item.sourcePolicy.name}} » {{item.sourceGroup.name}} » {{item.sourceSet.name}}</span></a>
|
<a :href="'/servers/components/waf/group?firewallPolicyId=' + item.sourcePolicy.id + '&type=inbound&groupId=' + item.sourceGroup.id + '#set' + item.sourceSet.id" v-if="item.sourcePolicy.serverId == 0"><span class="small "><i class="icon shield"></i>{{item.sourcePolicy.name}} » {{item.sourceGroup.name}} » {{item.sourceSet.name}}</span></a>
|
||||||
<a :href="'/servers/server/settings/waf/group?serverId=' + item.sourcePolicy.serverId + '&firewallPolicyId=' + item.sourcePolicy.id + '&type=inbound&groupId=' + item.sourceGroup.id" v-if="item.sourcePolicy.serverId > 0"><span class="small "><i class="icon shield"></i> {{item.sourcePolicy.name}} » {{item.sourceGroup.name}} » {{item.sourceSet.name}}</span></a>
|
<a :href="'/servers/server/settings/waf/group?serverId=' + item.sourcePolicy.serverId + '&firewallPolicyId=' + item.sourcePolicy.id + '&type=inbound&groupId=' + item.sourceGroup.id + '#set' + item.sourceSet.id" v-if="item.sourcePolicy.serverId > 0"><span class="small "><i class="icon shield"></i> {{item.sourcePolicy.name}} » {{item.sourceGroup.name}} » {{item.sourceSet.name}}</span></a>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
|
|||||||
20
web/public/js/components/node/node-combo-box.js
Normal file
20
web/public/js/components/node/node-combo-box.js
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
Vue.component("node-combo-box", {
|
||||||
|
props: ["v-cluster-id", "v-node-id"],
|
||||||
|
data: function () {
|
||||||
|
let that = this
|
||||||
|
Tea.action("/clusters/nodeOptions")
|
||||||
|
.params({
|
||||||
|
clusterId: this.vClusterId
|
||||||
|
})
|
||||||
|
.post()
|
||||||
|
.success(function (resp) {
|
||||||
|
that.nodes = resp.data.nodes
|
||||||
|
})
|
||||||
|
return {
|
||||||
|
nodes: []
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template: `<div v-if="nodes.length > 0">
|
||||||
|
<combo-box title="节点" placeholder="节点名称" :v-items="nodes" name="nodeId" :v-value="vNodeId"></combo-box>
|
||||||
|
</div>`
|
||||||
|
})
|
||||||
139
web/public/js/components/plans/plan-bandwidth-ranges.js
Normal file
139
web/public/js/components/plans/plan-bandwidth-ranges.js
Normal file
@@ -0,0 +1,139 @@
|
|||||||
|
Vue.component("plan-bandwidth-ranges", {
|
||||||
|
props: ["v-ranges"],
|
||||||
|
data: function () {
|
||||||
|
let ranges = this.vRanges
|
||||||
|
if (ranges == null) {
|
||||||
|
ranges = []
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
ranges: ranges,
|
||||||
|
isAdding: false,
|
||||||
|
|
||||||
|
minMB: "",
|
||||||
|
maxMB: "",
|
||||||
|
pricePerMB: "",
|
||||||
|
addingRange: {
|
||||||
|
minMB: 0,
|
||||||
|
maxMB: 0,
|
||||||
|
pricePerMB: 0,
|
||||||
|
totalPrice: 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
add: function () {
|
||||||
|
this.isAdding = !this.isAdding
|
||||||
|
let that = this
|
||||||
|
setTimeout(function () {
|
||||||
|
that.$refs.minMB.focus()
|
||||||
|
})
|
||||||
|
},
|
||||||
|
cancelAdding: function () {
|
||||||
|
this.isAdding = false
|
||||||
|
},
|
||||||
|
confirm: function () {
|
||||||
|
this.isAdding = false
|
||||||
|
this.minMB = ""
|
||||||
|
this.maxMB = ""
|
||||||
|
this.pricePerMB = ""
|
||||||
|
this.ranges.push(this.addingRange)
|
||||||
|
this.ranges.$sort(function (v1, v2) {
|
||||||
|
if (v1.minMB < v2.minMB) {
|
||||||
|
return -1
|
||||||
|
}
|
||||||
|
if (v1.minMB == v2.minMB) {
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
return 1
|
||||||
|
})
|
||||||
|
this.change()
|
||||||
|
this.addingRange = {
|
||||||
|
minMB: 0,
|
||||||
|
maxMB: 0,
|
||||||
|
pricePerMB: 0,
|
||||||
|
totalPrice: 0
|
||||||
|
}
|
||||||
|
},
|
||||||
|
remove: function (index) {
|
||||||
|
this.ranges.$remove(index)
|
||||||
|
this.change()
|
||||||
|
},
|
||||||
|
change: function () {
|
||||||
|
this.$emit("change", this.ranges)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
minMB: function (v) {
|
||||||
|
let minMB = parseInt(v.toString())
|
||||||
|
if (isNaN(minMB) || minMB < 0) {
|
||||||
|
minMB = 0
|
||||||
|
}
|
||||||
|
this.addingRange.minMB = minMB
|
||||||
|
},
|
||||||
|
maxMB: function (v) {
|
||||||
|
let maxMB = parseInt(v.toString())
|
||||||
|
if (isNaN(maxMB) || maxMB < 0) {
|
||||||
|
maxMB = 0
|
||||||
|
}
|
||||||
|
this.addingRange.maxMB = maxMB
|
||||||
|
},
|
||||||
|
pricePerMB: function (v) {
|
||||||
|
let pricePerMB = parseFloat(v.toString())
|
||||||
|
if (isNaN(pricePerMB) || pricePerMB < 0) {
|
||||||
|
pricePerMB = 0
|
||||||
|
}
|
||||||
|
this.addingRange.pricePerMB = pricePerMB
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template: `<div>
|
||||||
|
<!-- 已有价格 -->
|
||||||
|
<div v-if="ranges.length > 0">
|
||||||
|
<div class="ui label basic small" v-for="(range, index) in ranges" style="margin-bottom: 0.5em">
|
||||||
|
{{range.minMB}}MB - <span v-if="range.maxMB > 0">{{range.maxMB}}MB</span><span v-else>∞</span> 价格:{{range.pricePerMB}}元/MB
|
||||||
|
<a href="" title="删除" @click.prevent="remove(index)"><i class="icon remove small"></i></a>
|
||||||
|
</div>
|
||||||
|
<div class="ui divider"></div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 添加 -->
|
||||||
|
<div v-if="isAdding">
|
||||||
|
<table class="ui table">
|
||||||
|
<tr>
|
||||||
|
<td class="title">带宽下限</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" placeholder="最小带宽" style="width: 7em" maxlength="10" ref="minMB" @keyup.enter="confirm()" @keypress.enter.prevent="1" v-model="minMB"/>
|
||||||
|
<span class="ui label">MB</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="title">带宽上限</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" placeholder="最大带宽" style="width: 7em" maxlength="10" @keyup.enter="confirm()" @keypress.enter.prevent="1" v-model="maxMB"/>
|
||||||
|
<span class="ui label">MB</span>
|
||||||
|
</div>
|
||||||
|
<p class="comment">如果填0,表示上不封顶。</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td class="title">单位价格</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" placeholder="单位价格" style="width: 7em" maxlength="10" @keyup.enter="confirm()" @keypress.enter.prevent="1" v-model="pricePerMB"/>
|
||||||
|
<span class="ui label">元/MB</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
<button class="ui button small" type="button" @click.prevent="confirm">确定</button>
|
||||||
|
<a href="" title="取消" @click.prevent="cancelAdding"><i class="icon remove small"></i></a>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- 按钮 -->
|
||||||
|
<div v-if="!isAdding">
|
||||||
|
<button class="ui button small" type="button" @click.prevent="add">+</button>
|
||||||
|
</div>
|
||||||
|
</div>`
|
||||||
|
})
|
||||||
@@ -1,12 +1,13 @@
|
|||||||
// 套餐价格配置
|
// 套餐价格配置
|
||||||
Vue.component("plan-price-config-box", {
|
Vue.component("plan-price-config-box", {
|
||||||
props: ["v-price-type", "v-monthly-price", "v-seasonally-price", "v-yearly-price", "v-traffic-price"],
|
props: ["v-price-type", "v-monthly-price", "v-seasonally-price", "v-yearly-price", "v-traffic-price", "v-bandwidth-price", "v-disable-period"],
|
||||||
data: function () {
|
data: function () {
|
||||||
let priceType = this.vPriceType
|
let priceType = this.vPriceType
|
||||||
if (priceType == null) {
|
if (priceType == null) {
|
||||||
priceType = "period"
|
priceType = "bandwidth"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 按时间周期计费
|
||||||
let monthlyPriceNumber = 0
|
let monthlyPriceNumber = 0
|
||||||
let monthlyPrice = this.vMonthlyPrice
|
let monthlyPrice = this.vMonthlyPrice
|
||||||
if (monthlyPrice == null || monthlyPrice <= 0) {
|
if (monthlyPrice == null || monthlyPrice <= 0) {
|
||||||
@@ -43,6 +44,7 @@ Vue.component("plan-price-config-box", {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 按流量计费
|
||||||
let trafficPrice = this.vTrafficPrice
|
let trafficPrice = this.vTrafficPrice
|
||||||
let trafficPriceBaseNumber = 0
|
let trafficPriceBaseNumber = 0
|
||||||
if (trafficPrice != null) {
|
if (trafficPrice != null) {
|
||||||
@@ -57,6 +59,17 @@ Vue.component("plan-price-config-box", {
|
|||||||
trafficPriceBase = trafficPriceBaseNumber.toString()
|
trafficPriceBase = trafficPriceBaseNumber.toString()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 按带宽计费
|
||||||
|
let bandwidthPrice = this.vBandwidthPrice
|
||||||
|
if (bandwidthPrice == null) {
|
||||||
|
bandwidthPrice = {
|
||||||
|
percentile: 95,
|
||||||
|
ranges: []
|
||||||
|
}
|
||||||
|
} else if (bandwidthPrice.ranges == null) {
|
||||||
|
bandwidthPrice.ranges = []
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
priceType: priceType,
|
priceType: priceType,
|
||||||
monthlyPrice: monthlyPrice,
|
monthlyPrice: monthlyPrice,
|
||||||
@@ -68,7 +81,15 @@ Vue.component("plan-price-config-box", {
|
|||||||
yearlyPriceNumber: yearlyPriceNumber,
|
yearlyPriceNumber: yearlyPriceNumber,
|
||||||
|
|
||||||
trafficPriceBase: trafficPriceBase,
|
trafficPriceBase: trafficPriceBase,
|
||||||
trafficPrice: trafficPrice
|
trafficPrice: trafficPrice,
|
||||||
|
|
||||||
|
bandwidthPrice: bandwidthPrice,
|
||||||
|
bandwidthPercentile: bandwidthPrice.percentile
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
changeBandwidthPriceRanges: function (ranges) {
|
||||||
|
this.bandwidthPrice.ranges = ranges
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -99,6 +120,15 @@ Vue.component("plan-price-config-box", {
|
|||||||
price = 0
|
price = 0
|
||||||
}
|
}
|
||||||
this.trafficPrice.base = price
|
this.trafficPrice.base = price
|
||||||
|
},
|
||||||
|
bandwidthPercentile: function (v) {
|
||||||
|
let percentile = parseInt(v)
|
||||||
|
if (isNaN(percentile) || percentile <= 0) {
|
||||||
|
percentile = 95
|
||||||
|
} else if (percentile > 100) {
|
||||||
|
percentile = 100
|
||||||
|
}
|
||||||
|
this.bandwidthPrice.percentile = percentile
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
template: `<div>
|
template: `<div>
|
||||||
@@ -107,10 +137,12 @@ Vue.component("plan-price-config-box", {
|
|||||||
<input type="hidden" name="seasonallyPrice" :value="seasonallyPriceNumber"/>
|
<input type="hidden" name="seasonallyPrice" :value="seasonallyPriceNumber"/>
|
||||||
<input type="hidden" name="yearlyPrice" :value="yearlyPriceNumber"/>
|
<input type="hidden" name="yearlyPrice" :value="yearlyPriceNumber"/>
|
||||||
<input type="hidden" name="trafficPriceJSON" :value="JSON.stringify(trafficPrice)"/>
|
<input type="hidden" name="trafficPriceJSON" :value="JSON.stringify(trafficPrice)"/>
|
||||||
|
<input type="hidden" name="bandwidthPriceJSON" :value="JSON.stringify(bandwidthPrice)"/>
|
||||||
|
|
||||||
<div>
|
<div>
|
||||||
<radio :v-value="'period'" :value="priceType" v-model="priceType"> 按时间周期</radio>
|
<radio :v-value="'bandwidth'" :value="priceType" v-model="priceType"> 按带宽</radio>
|
||||||
<radio :v-value="'traffic'" :value="priceType" v-model="priceType"> 按流量</radio>
|
<radio :v-value="'traffic'" :value="priceType" v-model="priceType"> 按流量</radio>
|
||||||
|
<radio :v-value="'period'" :value="priceType" v-model="priceType" v-show="typeof(vDisablePeriod) != 'boolean' || !vDisablePeriod"> 按时间周期</radio>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!-- 按时间周期 -->
|
<!-- 按时间周期 -->
|
||||||
@@ -152,7 +184,7 @@ Vue.component("plan-price-config-box", {
|
|||||||
<div class="ui divider"></div>
|
<div class="ui divider"></div>
|
||||||
<table class="ui table">
|
<table class="ui table">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="title">基础流量费用</td>
|
<td class="title">基础流量费用 *</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="ui input right labeled">
|
<div class="ui input right labeled">
|
||||||
<input type="text" v-model="trafficPriceBase" maxlength="10" style="width: 7em"/>
|
<input type="text" v-model="trafficPriceBase" maxlength="10" style="width: 7em"/>
|
||||||
@@ -162,5 +194,27 @@ Vue.component("plan-price-config-box", {
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- 按带宽 -->
|
||||||
|
<div v-show="priceType == 'bandwidth'">
|
||||||
|
<div class="ui divider"></div>
|
||||||
|
<table class="ui table">
|
||||||
|
<tr>
|
||||||
|
<td class="title">带宽百分位 *</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" style="width: 4em" maxlength="3" v-model="bandwidthPercentile"/>
|
||||||
|
<span class="ui label">th</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>带宽价格</td>
|
||||||
|
<td>
|
||||||
|
<plan-bandwidth-ranges :v-ranges="bandwidthPrice.ranges" @change="changeBandwidthPriceRanges"></plan-bandwidth-ranges>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>
|
||||||
</div>`
|
</div>`
|
||||||
})
|
})
|
||||||
@@ -7,12 +7,28 @@ Vue.component("plan-price-view", {
|
|||||||
},
|
},
|
||||||
template: `<div>
|
template: `<div>
|
||||||
<span v-if="plan.priceType == 'period'">
|
<span v-if="plan.priceType == 'period'">
|
||||||
<span v-if="plan.monthlyPrice > 0">月度:¥{{plan.monthlyPrice}}元<br/></span>
|
按时间周期计费
|
||||||
<span v-if="plan.seasonallyPrice > 0">季度:¥{{plan.seasonallyPrice}}元<br/></span>
|
<div>
|
||||||
<span v-if="plan.yearlyPrice > 0">年度:¥{{plan.yearlyPrice}}元</span>
|
<span class="grey small">
|
||||||
|
<span v-if="plan.monthlyPrice > 0">月度:¥{{plan.monthlyPrice}}元<br/></span>
|
||||||
|
<span v-if="plan.seasonallyPrice > 0">季度:¥{{plan.seasonallyPrice}}元<br/></span>
|
||||||
|
<span v-if="plan.yearlyPrice > 0">年度:¥{{plan.yearlyPrice}}元</span>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
</span>
|
</span>
|
||||||
<span v-if="plan.priceType == 'traffic'">
|
<span v-if="plan.priceType == 'traffic'">
|
||||||
基础价格:¥{{plan.trafficPrice.base}}元/GB
|
按流量计费
|
||||||
|
<div>
|
||||||
|
<span class="grey small">基础价格:¥{{plan.trafficPrice.base}}元/GB</span>
|
||||||
|
</div>
|
||||||
</span>
|
</span>
|
||||||
|
<div v-if="plan.priceType == 'bandwidth' && plan.bandwidthPrice != null && plan.bandwidthPrice.percentile > 0">
|
||||||
|
按{{plan.bandwidthPrice.percentile}}th带宽计费
|
||||||
|
<div>
|
||||||
|
<div v-for="range in plan.bandwidthPrice.ranges">
|
||||||
|
<span class="small grey">{{range.minMB}} - <span v-if="range.maxMB > 0">{{range.maxMB}}MB</span><span v-else>∞</span>: {{range.pricePerMB}}元/MB</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</div>`
|
</div>`
|
||||||
})
|
})
|
||||||
@@ -0,0 +1,92 @@
|
|||||||
|
Vue.component("firewall-syn-flood-config-box", {
|
||||||
|
props: ["v-syn-flood-config"],
|
||||||
|
data: function () {
|
||||||
|
let config = this.vSynFloodConfig
|
||||||
|
if (config == null) {
|
||||||
|
config = {
|
||||||
|
isOn: false,
|
||||||
|
minAttempts: 10,
|
||||||
|
timeoutSeconds: 600,
|
||||||
|
ignoreLocal: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
config: config,
|
||||||
|
isEditing: false,
|
||||||
|
minAttempts: config.minAttempts,
|
||||||
|
timeoutSeconds: config.timeoutSeconds
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
edit: function () {
|
||||||
|
this.isEditing = !this.isEditing
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
minAttempts: function (v) {
|
||||||
|
let count = parseInt(v)
|
||||||
|
if (isNaN(count)) {
|
||||||
|
count = 10
|
||||||
|
}
|
||||||
|
if (count < 5) {
|
||||||
|
count = 5
|
||||||
|
}
|
||||||
|
this.config.minAttempts = count
|
||||||
|
},
|
||||||
|
timeoutSeconds: function (v) {
|
||||||
|
let seconds = parseInt(v)
|
||||||
|
if (isNaN(seconds)) {
|
||||||
|
seconds = 10
|
||||||
|
}
|
||||||
|
if (seconds < 60) {
|
||||||
|
seconds = 60
|
||||||
|
}
|
||||||
|
this.config.timeoutSeconds = seconds
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template: `<div>
|
||||||
|
<input type="hidden" name="synFloodJSON" :value="JSON.stringify(config)"/>
|
||||||
|
<a href="" @click.prevent="edit">
|
||||||
|
<span v-if="config.isOn">
|
||||||
|
已启用 / <span>空连接次数:{{config.minAttempts}}次/分钟</span> / 封禁时间:{{config.timeoutSeconds}}秒 <span v-if="config.ignoreLocal">/ 忽略局域网访问</span>
|
||||||
|
</span>
|
||||||
|
<span v-else>未启用</span>
|
||||||
|
<i class="icon angle" :class="{up: isEditing, down: !isEditing}"></i>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<table class="ui table selectable" v-show="isEditing">
|
||||||
|
<tr>
|
||||||
|
<td class="title">是否启用</td>
|
||||||
|
<td>
|
||||||
|
<checkbox v-model="config.isOn"></checkbox>
|
||||||
|
<p class="comment">启用后,WAF将会尝试自动检测并阻止SYN Flood攻击。此功能需要节点已安装并启用Firewalld。</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>空连接次数</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" v-model="minAttempts" style="width: 5em" maxlength="4"/>
|
||||||
|
<span class="ui label">次/分钟</span>
|
||||||
|
</div>
|
||||||
|
<p class="comment">超过此数字的"空连接"将被视为SYN Flood攻击,为了防止误判,此数值默认不小于5。</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>封禁时间</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" v-model="timeoutSeconds" style="width: 5em" maxlength="4"/>
|
||||||
|
<span class="ui label">秒</span>
|
||||||
|
</div>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>忽略局域网访问</td>
|
||||||
|
<td>
|
||||||
|
<checkbox v-model="config.ignoreLocal"></checkbox>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</div>`
|
||||||
|
})
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
// 访问日志搜索框
|
// 访问日志搜索框
|
||||||
Vue.component("http-access-log-search-box", {
|
Vue.component("http-access-log-search-box", {
|
||||||
props: ["v-ip", "v-domain", "v-keyword"],
|
props: ["v-ip", "v-domain", "v-keyword", "v-cluster-id", "v-node-id"],
|
||||||
data: function () {
|
data: function () {
|
||||||
let ip = this.vIp
|
let ip = this.vIp
|
||||||
if (ip == null) {
|
if (ip == null) {
|
||||||
@@ -20,7 +20,8 @@ Vue.component("http-access-log-search-box", {
|
|||||||
return {
|
return {
|
||||||
ip: ip,
|
ip: ip,
|
||||||
domain: domain,
|
domain: domain,
|
||||||
keyword: keyword
|
keyword: keyword,
|
||||||
|
clusterId: this.vClusterId
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -52,9 +53,12 @@ Vue.component("http-access-log-search-box", {
|
|||||||
parent.submit()
|
parent.submit()
|
||||||
}, 500)
|
}, 500)
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
changeCluster: function (clusterId) {
|
||||||
|
this.clusterId = clusterId
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
template: `<div>
|
template: `<div style="z-index: 10">
|
||||||
<div class="margin"></div>
|
<div class="margin"></div>
|
||||||
<div class="ui fields inline">
|
<div class="ui fields inline">
|
||||||
<div class="ui field">
|
<div class="ui field">
|
||||||
@@ -79,8 +83,16 @@ Vue.component("http-access-log-search-box", {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<slot></slot>
|
<slot></slot>
|
||||||
|
</div>
|
||||||
|
<div class="ui fields inline" style="margin-top: 0.5em">
|
||||||
<div class="ui field">
|
<div class="ui field">
|
||||||
<button class="ui button small" type="submit">查找</button>
|
<node-cluster-combo-box :v-cluster-id="clusterId" @change="changeCluster"></node-cluster-combo-box>
|
||||||
|
</div>
|
||||||
|
<div class="ui field" v-if="clusterId > 0">
|
||||||
|
<node-combo-box :v-cluster-id="clusterId" :v-node-id="vNodeId"></node-combo-box>
|
||||||
|
</div>
|
||||||
|
<div class="ui field">
|
||||||
|
<button class="ui button small" type="submit">搜索日志</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>`
|
</div>`
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ Vue.component("http-cache-refs-config-box", {
|
|||||||
</table>
|
</table>
|
||||||
<p class="comment" v-if="refs.length > 1">所有条件匹配顺序为从上到下,可以拖动左侧的<i class="icon bars"></i>排序。服务设置的优先级比全局缓存策略设置的优先级要高。</p>
|
<p class="comment" v-if="refs.length > 1">所有条件匹配顺序为从上到下,可以拖动左侧的<i class="icon bars"></i>排序。服务设置的优先级比全局缓存策略设置的优先级要高。</p>
|
||||||
|
|
||||||
<button class="ui button tiny" @click.prevent="addRef(false)">+添加缓存设置</button> <a href="" @click.prevent="addRef(true)">+添加不缓存设置</a>
|
<button class="ui button tiny" @click.prevent="addRef(false)" type="button">+添加缓存设置</button> <a href="" @click.prevent="addRef(true)">+添加不缓存设置</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="margin"></div>
|
<div class="margin"></div>
|
||||||
</div>`
|
</div>`
|
||||||
|
|||||||
@@ -76,6 +76,8 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
blockScope: "global",
|
blockScope: "global",
|
||||||
|
|
||||||
captchaLife: "",
|
captchaLife: "",
|
||||||
|
captchaMaxFails: "",
|
||||||
|
captchaFailBlockTimeout: "",
|
||||||
get302Life: "",
|
get302Life: "",
|
||||||
post307Life: "",
|
post307Life: "",
|
||||||
recordIPType: "black",
|
recordIPType: "black",
|
||||||
@@ -124,6 +126,22 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
this.actionOptions["life"] = v
|
this.actionOptions["life"] = v
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
captchaMaxFails: function (v) {
|
||||||
|
v = parseInt(v)
|
||||||
|
if (isNaN(v)) {
|
||||||
|
this.actionOptions["maxFails"] = 0
|
||||||
|
} else {
|
||||||
|
this.actionOptions["maxFails"] = v
|
||||||
|
}
|
||||||
|
},
|
||||||
|
captchaFailBlockTimeout: function (v) {
|
||||||
|
v = parseInt(v)
|
||||||
|
if (isNaN(v)) {
|
||||||
|
this.actionOptions["failBlockTimeout"] = 0
|
||||||
|
} else {
|
||||||
|
this.actionOptions["failBlockTimeout"] = v
|
||||||
|
}
|
||||||
|
},
|
||||||
get302Life: function (v) {
|
get302Life: function (v) {
|
||||||
v = parseInt(v)
|
v = parseInt(v)
|
||||||
if (isNaN(v)) {
|
if (isNaN(v)) {
|
||||||
@@ -190,6 +208,8 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
this.blockTimeout = ""
|
this.blockTimeout = ""
|
||||||
this.blockScope = "global"
|
this.blockScope = "global"
|
||||||
this.captchaLife = ""
|
this.captchaLife = ""
|
||||||
|
this.captchaMaxFails = ""
|
||||||
|
this.captchaFailBlockTimeout = ""
|
||||||
this.get302Life = ""
|
this.get302Life = ""
|
||||||
this.post307Life = ""
|
this.post307Life = ""
|
||||||
|
|
||||||
@@ -258,6 +278,14 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
if (config.options.life != null || config.options.life > 0) {
|
if (config.options.life != null || config.options.life > 0) {
|
||||||
this.captchaLife = config.options.life.toString()
|
this.captchaLife = config.options.life.toString()
|
||||||
}
|
}
|
||||||
|
this.captchaMaxFails = ""
|
||||||
|
if (config.options.maxFails != null || config.options.maxFails > 0) {
|
||||||
|
this.captchaMaxFails = config.options.maxFails.toString()
|
||||||
|
}
|
||||||
|
this.captchaFailBlockTimeout = ""
|
||||||
|
if (config.options.failBlockTimeout != null || config.options.failBlockTimeout > 0) {
|
||||||
|
this.captchaFailBlockTimeout = config.options.failBlockTimeout.toString()
|
||||||
|
}
|
||||||
break
|
break
|
||||||
case "notify":
|
case "notify":
|
||||||
break
|
break
|
||||||
@@ -559,7 +587,7 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
<td>封锁时间</td>
|
<td>封锁时间</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="ui input right labeled">
|
<div class="ui input right labeled">
|
||||||
<input type="text" style="width: 5em" maxlength="10" v-model="blockTimeout" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
<input type="text" style="width: 5em" maxlength="9" v-model="blockTimeout" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
<span class="ui label">秒</span>
|
<span class="ui label">秒</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
@@ -579,19 +607,39 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
<td>有效时间</td>
|
<td>有效时间</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="ui input right labeled">
|
<div class="ui input right labeled">
|
||||||
<input type="text" style="width: 5em" maxlength="10" v-model="captchaLife" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
<input type="text" style="width: 5em" maxlength="9" v-model="captchaLife" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
<span class="ui label">秒</span>
|
<span class="ui label">秒</span>
|
||||||
</div>
|
</div>
|
||||||
<p class="comment">验证通过后在这个时间内不再验证,默认600秒。</p>
|
<p class="comment">验证通过后在这个时间内不再验证,默认600秒。</p>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr v-if="actionCode == 'captcha'">
|
||||||
|
<td>最多失败次数</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" style="width: 5em" maxlength="9" v-model="captchaMaxFails" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
|
<span class="ui label">次</span>
|
||||||
|
</div>
|
||||||
|
<p class="comment">如果为空或者为0,表示不限制。</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr v-if="actionCode == 'captcha'">
|
||||||
|
<td>失败拦截时间</td>
|
||||||
|
<td>
|
||||||
|
<div class="ui input right labeled">
|
||||||
|
<input type="text" style="width: 5em" maxlength="9" v-model="captchaFailBlockTimeout" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
|
<span class="ui label">秒</span>
|
||||||
|
</div>
|
||||||
|
<p class="comment">在达到最多失败次数(大于0)时,自动拦截的时间;如果为0表示不自动拦截。</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<!-- get_302 -->
|
<!-- get_302 -->
|
||||||
<tr v-if="actionCode == 'get_302'">
|
<tr v-if="actionCode == 'get_302'">
|
||||||
<td>有效时间</td>
|
<td>有效时间</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="ui input right labeled">
|
<div class="ui input right labeled">
|
||||||
<input type="text" style="width: 5em" maxlength="10" v-model="get302Life" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
<input type="text" style="width: 5em" maxlength="9" v-model="get302Life" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
<span class="ui label">秒</span>
|
<span class="ui label">秒</span>
|
||||||
</div>
|
</div>
|
||||||
<p class="comment">验证通过后在这个时间内不再验证。</p>
|
<p class="comment">验证通过后在这个时间内不再验证。</p>
|
||||||
@@ -603,7 +651,7 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
<td>有效时间</td>
|
<td>有效时间</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="ui input right labeled">
|
<div class="ui input right labeled">
|
||||||
<input type="text" style="width: 5em" maxlength="10" v-model="post307Life" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
<input type="text" style="width: 5em" maxlength="9" v-model="post307Life" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
<span class="ui label">秒</span>
|
<span class="ui label">秒</span>
|
||||||
</div>
|
</div>
|
||||||
<p class="comment">验证通过后在这个时间内不再验证。</p>
|
<p class="comment">验证通过后在这个时间内不再验证。</p>
|
||||||
@@ -640,7 +688,7 @@ Vue.component("http-firewall-actions-box", {
|
|||||||
<td>超时时间</td>
|
<td>超时时间</td>
|
||||||
<td>
|
<td>
|
||||||
<div class="ui input right labeled">
|
<div class="ui input right labeled">
|
||||||
<input type="text" style="width: 6em" maxlength="10" v-model="recordIPTimeout" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
<input type="text" style="width: 6em" maxlength="9" v-model="recordIPTimeout" @keyup.enter="confirm()" @keypress.enter.prevent="1"/>
|
||||||
<span class="ui label">秒</span>
|
<span class="ui label">秒</span>
|
||||||
</div>
|
</div>
|
||||||
<p class="comment">0表示不超时。</p>
|
<p class="comment">0表示不超时。</p>
|
||||||
|
|||||||
@@ -4,7 +4,8 @@ Vue.component("http-firewall-block-options", {
|
|||||||
return {
|
return {
|
||||||
blockOptions: this.vBlockOptions,
|
blockOptions: this.vBlockOptions,
|
||||||
statusCode: this.vBlockOptions.statusCode,
|
statusCode: this.vBlockOptions.statusCode,
|
||||||
timeout: this.vBlockOptions.timeout
|
timeout: this.vBlockOptions.timeout,
|
||||||
|
isEditing: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
@@ -25,9 +26,15 @@ Vue.component("http-firewall-block-options", {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
methods: {
|
||||||
|
edit: function () {
|
||||||
|
this.isEditing = !this.isEditing
|
||||||
|
}
|
||||||
|
},
|
||||||
template: `<div>
|
template: `<div>
|
||||||
<input type="hidden" name="blockOptionsJSON" :value="JSON.stringify(blockOptions)"/>
|
<input type="hidden" name="blockOptionsJSON" :value="JSON.stringify(blockOptions)"/>
|
||||||
<table class="ui table">
|
<a href="" @click.prevent="edit">状态码:{{statusCode}} / 提示内容:<span v-if="blockOptions.body != null && blockOptions.body.length > 0">[{{blockOptions.body.length}}字符]</span><span v-else class="disabled">[无]</span> / 超时时间:{{timeout}}秒 <i class="icon angle" :class="{up: isEditing, down: !isEditing}"></i></a>
|
||||||
|
<table class="ui table" v-show="isEditing">
|
||||||
<tr>
|
<tr>
|
||||||
<td class="title">状态码</td>
|
<td class="title">状态码</td>
|
||||||
<td>
|
<td>
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ Vue.component("http-firewall-rule-label", {
|
|||||||
|
|
||||||
},
|
},
|
||||||
template: `<div>
|
template: `<div>
|
||||||
<div class="ui label tiny basic">
|
<div class="ui label tiny basic" style="line-height: 1.5">
|
||||||
{{rule.name}}[{{rule.param}}]
|
{{rule.name}}[{{rule.param}}]
|
||||||
|
|
||||||
<!-- cc2 -->
|
<!-- cc2 -->
|
||||||
@@ -33,6 +33,9 @@ Vue.component("http-firewall-rule-label", {
|
|||||||
{{rule.value}}
|
{{rule.value}}
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
<!-- description -->
|
||||||
|
<span v-if="rule.description != null && rule.description.length > 0" class="grey small">({{rule.description}})</span>
|
||||||
|
|
||||||
<a href="" v-if="rule.err != null && rule.err.length > 0" @click.prevent="showErr(rule.err)" style="color: #db2828; opacity: 1; border-bottom: 1px #db2828 dashed; margin-left: 0.5em">规则错误</a>
|
<a href="" v-if="rule.err != null && rule.err.length > 0" @click.prevent="showErr(rule.err)" style="color: #db2828; opacity: 1; border-bottom: 1px #db2828 dashed; margin-left: 0.5em">规则错误</a>
|
||||||
</div>
|
</div>
|
||||||
</div>`
|
</div>`
|
||||||
|
|||||||
@@ -55,6 +55,9 @@ Vue.component("http-firewall-rules-box", {
|
|||||||
<span v-if="rule.paramFilters != null && rule.paramFilters.length > 0" v-for="paramFilter in rule.paramFilters"> | {{paramFilter.code}}</span> <var>{{rule.operator}}</var> {{rule.value}}
|
<span v-if="rule.paramFilters != null && rule.paramFilters.length > 0" v-for="paramFilter in rule.paramFilters"> | {{paramFilter.code}}</span> <var>{{rule.operator}}</var> {{rule.value}}
|
||||||
</span>
|
</span>
|
||||||
|
|
||||||
|
<!-- description -->
|
||||||
|
<span v-if="rule.description != null && rule.description.length > 0" class="grey small">({{rule.description}})</span>
|
||||||
|
|
||||||
<a href="" title="修改" @click.prevent="updateRule(index, rule)"><i class="icon pencil small"></i></a>
|
<a href="" title="修改" @click.prevent="updateRule(index, rule)"><i class="icon pencil small"></i></a>
|
||||||
<a href="" title="删除" @click.prevent="removeRule(index)"><i class="icon remove"></i></a>
|
<a href="" title="删除" @click.prevent="removeRule(index)"><i class="icon remove"></i></a>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -81,7 +81,7 @@ Vue.component("http-pages-and-shutdown-box", {
|
|||||||
<h1>网站升级中</h1>
|
<h1>网站升级中</h1>
|
||||||
<p>为了给您提供更好的服务,我们正在升级网站,请稍后重新访问。</p>
|
<p>为了给您提供更好的服务,我们正在升级网站,请稍后重新访问。</p>
|
||||||
|
|
||||||
<address>Request ID: \${requestId}, Powered by GoEdge.</address>
|
<address>Request ID: \${requestId}.</address>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>`
|
</html>`
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ Vue.component("http-request-conds-box", {
|
|||||||
<table class="ui table">
|
<table class="ui table">
|
||||||
<tr v-for="(group, groupIndex) in conds.groups">
|
<tr v-for="(group, groupIndex) in conds.groups">
|
||||||
<td class="title" :class="{'color-border':conds.connector == 'and'}" :style="{'border-bottom':(groupIndex < conds.groups.length-1) ? '1px solid rgba(34,36,38,.15)':''}">分组{{groupIndex+1}}</td>
|
<td class="title" :class="{'color-border':conds.connector == 'and'}" :style="{'border-bottom':(groupIndex < conds.groups.length-1) ? '1px solid rgba(34,36,38,.15)':''}">分组{{groupIndex+1}}</td>
|
||||||
<td style="background: white;" :style="{'border-bottom':(groupIndex < conds.groups.length-1) ? '1px solid rgba(34,36,38,.15)':''}">
|
<td style="background: white; word-break: break-all" :style="{'border-bottom':(groupIndex < conds.groups.length-1) ? '1px solid rgba(34,36,38,.15)':''}">
|
||||||
<var v-for="(cond, index) in group.conds" style="font-style: normal;display: inline-block; margin-bottom:0.5em">
|
<var v-for="(cond, index) in group.conds" style="font-style: normal;display: inline-block; margin-bottom:0.5em">
|
||||||
<span class="ui label tiny">
|
<span class="ui label tiny">
|
||||||
<var v-if="cond.type.length == 0 || cond.type == 'params'" style="font-style: normal">{{cond.param}} <var>{{cond.operator}}</var></var>
|
<var v-if="cond.type.length == 0 || cond.type == 'params'" style="font-style: normal">{{cond.param}} <var>{{cond.operator}}</var></var>
|
||||||
|
|||||||
@@ -0,0 +1,37 @@
|
|||||||
|
Vue.component("http-request-scripts-config-box", {
|
||||||
|
props: ["vRequestScriptsConfig"],
|
||||||
|
data: function () {
|
||||||
|
let config = this.vRequestScriptsConfig
|
||||||
|
if (config == null) {
|
||||||
|
config = {}
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
config: config
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
changeInitGroup: function (group) {
|
||||||
|
this.config.initGroup = group
|
||||||
|
this.$forceUpdate()
|
||||||
|
},
|
||||||
|
changeRequestGroup: function (group) {
|
||||||
|
this.config.requestGroup = group
|
||||||
|
this.$forceUpdate()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template: `<div>
|
||||||
|
<input type="hidden" name="requestScriptsJSON" :value="JSON.stringify(config)"/>
|
||||||
|
<div class="margin"></div>
|
||||||
|
<h4 style="margin-bottom: 0">请求初始化</h4>
|
||||||
|
<p class="comment">在请求刚初始化时调用,此时自定义Header等尚未生效。</p>
|
||||||
|
<div>
|
||||||
|
<script-group-config-box :v-group="config.initGroup" @change="changeInitGroup"></script-group-config-box>
|
||||||
|
</div>
|
||||||
|
<h4 style="margin-bottom: 0">准备发送请求</h4>
|
||||||
|
<p class="comment">在准备执行请求或者转发请求之前调用,此时自定义Header、源站等已准备好。</p>
|
||||||
|
<div>
|
||||||
|
<script-group-config-box :v-group="config.requestGroup" @change="changeRequestGroup"></script-group-config-box>
|
||||||
|
</div>
|
||||||
|
<div class="margin"></div>
|
||||||
|
</div>`
|
||||||
|
})
|
||||||
@@ -92,6 +92,9 @@ Vue.component("origin-list-table", {
|
|||||||
<div v-if="origin.domains != null && origin.domains.length > 0">
|
<div v-if="origin.domains != null && origin.domains.length > 0">
|
||||||
<grey-label v-for="domain in origin.domains">{{domain}}</grey-label>
|
<grey-label v-for="domain in origin.domains">{{domain}}</grey-label>
|
||||||
</div>
|
</div>
|
||||||
|
<div v-if="origin.hasCert">
|
||||||
|
<tiny-basic-label>证书</tiny-basic-label>
|
||||||
|
</div>
|
||||||
</td>
|
</td>
|
||||||
<td :class="{disabled:!origin.isOn}">{{origin.weight}}</td>
|
<td :class="{disabled:!origin.isOn}">{{origin.weight}}</td>
|
||||||
<td>
|
<td>
|
||||||
|
|||||||
53
web/public/js/components/server/script-config-box.js
Normal file
53
web/public/js/components/server/script-config-box.js
Normal file
@@ -0,0 +1,53 @@
|
|||||||
|
Vue.component("script-config-box", {
|
||||||
|
props: ["id", "v-script-config", "comment"],
|
||||||
|
data: function () {
|
||||||
|
let config = this.vScriptConfig
|
||||||
|
if (config == null) {
|
||||||
|
config = {
|
||||||
|
isPrior: false,
|
||||||
|
isOn: false,
|
||||||
|
code: ""
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (config.code.length == 0) {
|
||||||
|
config.code = "\n\n\n\n"
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
config: config
|
||||||
|
}
|
||||||
|
},
|
||||||
|
watch: {
|
||||||
|
"config.isOn": function () {
|
||||||
|
this.change()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
change: function () {
|
||||||
|
this.$emit("change", this.config)
|
||||||
|
},
|
||||||
|
changeCode: function (code) {
|
||||||
|
this.config.code = code
|
||||||
|
this.change()
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template: `<div>
|
||||||
|
<table class="ui table definition selectable">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td class="title">是否启用</td>
|
||||||
|
<td><checkbox v-model="config.isOn"></checkbox></td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
<tbody>
|
||||||
|
<tr :style="{opacity: !config.isOn ? 0.5 : 1}">
|
||||||
|
<td>脚本代码</td>
|
||||||
|
<td><source-code-box :id="id" type="text/javascript" :read-only="false" @change="changeCode">{{config.code}}</source-code-box>
|
||||||
|
<p class="comment">{{comment}}</p>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
</div>`
|
||||||
|
})
|
||||||
38
web/public/js/components/server/script-group-config-box.js
Normal file
38
web/public/js/components/server/script-group-config-box.js
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
Vue.component("script-group-config-box", {
|
||||||
|
props: ["v-group"],
|
||||||
|
data: function () {
|
||||||
|
let group = this.vGroup
|
||||||
|
if (group == null) {
|
||||||
|
group = {
|
||||||
|
isPrior: false,
|
||||||
|
isOn: true,
|
||||||
|
scripts: []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (group.scripts == null) {
|
||||||
|
group.scripts = []
|
||||||
|
}
|
||||||
|
|
||||||
|
let script = null
|
||||||
|
if (group.scripts.length > 0) {
|
||||||
|
script = group.scripts[group.scripts.length - 1]
|
||||||
|
}
|
||||||
|
|
||||||
|
return {
|
||||||
|
group: group,
|
||||||
|
script: script
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
changeScript: function (script) {
|
||||||
|
this.group.scripts = [script] // 目前只支持单个脚本
|
||||||
|
this.change()
|
||||||
|
},
|
||||||
|
change: function () {
|
||||||
|
this.$emit("change", this.group)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
template: `<div>
|
||||||
|
<script-config-box :v-script-config="script" comment="在接收到客户端请求之后立即调用。预置req、resp变量。" @change="changeScript"></script-config-box>
|
||||||
|
</div>`
|
||||||
|
})
|
||||||
@@ -1,18 +1,29 @@
|
|||||||
Vue.component("ssl-certs-box", {
|
Vue.component("ssl-certs-box", {
|
||||||
props: [
|
props: [
|
||||||
"v-certs", // 证书列表
|
"v-certs", // 证书列表
|
||||||
|
"v-cert", // 单个证书
|
||||||
"v-protocol", // 协议:https|tls
|
"v-protocol", // 协议:https|tls
|
||||||
"v-view-size", // 弹窗尺寸
|
"v-view-size", // 弹窗尺寸:normal, mini
|
||||||
"v-single-mode" // 单证书模式
|
"v-single-mode", // 单证书模式
|
||||||
|
"v-description" // 描述文字
|
||||||
],
|
],
|
||||||
data: function () {
|
data: function () {
|
||||||
let certs = this.vCerts
|
let certs = this.vCerts
|
||||||
if (certs == null) {
|
if (certs == null) {
|
||||||
certs = []
|
certs = []
|
||||||
}
|
}
|
||||||
|
if (this.vCert != null) {
|
||||||
|
certs.push(this.vCert)
|
||||||
|
}
|
||||||
|
|
||||||
|
let description = this.vDescription
|
||||||
|
if (description == null || typeof (description) != "string") {
|
||||||
|
description = ""
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
certs: certs
|
certs: certs,
|
||||||
|
description: description
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
@@ -77,13 +88,14 @@ Vue.component("ssl-certs-box", {
|
|||||||
template: `<div>
|
template: `<div>
|
||||||
<input type="hidden" name="certIdsJSON" :value="JSON.stringify(certIds())"/>
|
<input type="hidden" name="certIdsJSON" :value="JSON.stringify(certIds())"/>
|
||||||
<div v-if="certs != null && certs.length > 0">
|
<div v-if="certs != null && certs.length > 0">
|
||||||
<div class="ui label small" v-for="(cert, index) in certs">
|
<div class="ui label small basic" v-for="(cert, index) in certs">
|
||||||
{{cert.name}} / {{cert.dnsNames}} / 有效至{{formatTime(cert.timeEndAt)}} <a href="" title="删除" @click.prevent="removeCert(index)"><i class="icon remove"></i></a>
|
{{cert.name}} / {{cert.dnsNames}} / 有效至{{formatTime(cert.timeEndAt)}} <a href="" title="删除" @click.prevent="removeCert(index)"><i class="icon remove"></i></a>
|
||||||
</div>
|
</div>
|
||||||
<div class="ui divider" v-if="buttonsVisible()"></div>
|
<div class="ui divider" v-if="buttonsVisible()"></div>
|
||||||
</div>
|
</div>
|
||||||
<div v-else>
|
<div v-else>
|
||||||
<span class="red">选择或上传证书后<span v-if="vProtocol == 'https'">HTTPS</span><span v-if="vProtocol == 'tls'">TLS</span>服务才能生效。</span>
|
<span class="red" v-if="description.length == 0">选择或上传证书后<span v-if="vProtocol == 'https'">HTTPS</span><span v-if="vProtocol == 'tls'">TLS</span>服务才能生效。</span>
|
||||||
|
<span class="grey" v-if="description.length > 0">{{description}}</span>
|
||||||
<div class="ui divider" v-if="buttonsVisible()"></div>
|
<div class="ui divider" v-if="buttonsVisible()"></div>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="buttonsVisible()">
|
<div v-if="buttonsVisible()">
|
||||||
|
|||||||
@@ -73,6 +73,12 @@
|
|||||||
padding-bottom: 2em;
|
padding-bottom: 2em;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
@media screen and (max-width: 512px) {
|
||||||
|
.right-box {
|
||||||
|
left: 13em;
|
||||||
|
padding-right: 1em;
|
||||||
|
}
|
||||||
|
}
|
||||||
body.expanded .right-box {
|
body.expanded .right-box {
|
||||||
left: 10em;
|
left: 10em;
|
||||||
}
|
}
|
||||||
@@ -268,6 +274,12 @@ p.margin {
|
|||||||
.field.text {
|
.field.text {
|
||||||
padding: .5em;
|
padding: .5em;
|
||||||
}
|
}
|
||||||
|
.form .fields:not(.inline) .field {
|
||||||
|
margin-bottom: 0.5em !important;
|
||||||
|
}
|
||||||
|
.form .fields:not(.inline) .field .button {
|
||||||
|
min-width: 5em;
|
||||||
|
}
|
||||||
/** body **/
|
/** body **/
|
||||||
@keyframes blink {
|
@keyframes blink {
|
||||||
from {
|
from {
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user