-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathrule_groups.go
86 lines (71 loc) · 1.82 KB
/
rule_groups.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package api
import (
"github.com/gin-gonic/gin"
middleware "watchAlert/internal/middleware"
"watchAlert/internal/models"
"watchAlert/internal/services"
)
type RuleGroupController struct{}
/*
规则组 API
/api/w8t/ruleGroup
*/
func (rc RuleGroupController) API(gin *gin.RouterGroup) {
ruleGroupA := gin.Group("ruleGroup")
ruleGroupA.Use(
middleware.Auth(),
middleware.Permission(),
middleware.ParseTenant(),
middleware.AuditingLog(),
)
{
ruleGroupA.POST("ruleGroupCreate", rc.Create)
ruleGroupA.POST("ruleGroupUpdate", rc.Update)
ruleGroupA.POST("ruleGroupDelete", rc.Delete)
}
ruleGroupB := gin.Group("ruleGroup")
ruleGroupB.Use(
middleware.Auth(),
middleware.Permission(),
middleware.ParseTenant(),
)
{
ruleGroupB.GET("ruleGroupList", rc.List)
}
}
func (rc RuleGroupController) Create(ctx *gin.Context) {
r := new(models.RuleGroups)
BindJson(ctx, r)
tid, _ := ctx.Get("TenantID")
r.TenantId = tid.(string)
Service(ctx, func() (interface{}, interface{}) {
return services.RuleGroupService.Create(r)
})
}
func (rc RuleGroupController) Update(ctx *gin.Context) {
r := new(models.RuleGroups)
BindJson(ctx, r)
tid, _ := ctx.Get("TenantID")
r.TenantId = tid.(string)
Service(ctx, func() (interface{}, interface{}) {
return services.RuleGroupService.Update(r)
})
}
func (rc RuleGroupController) List(ctx *gin.Context) {
r := new(models.RuleGroupQuery)
BindQuery(ctx, r)
tid, _ := ctx.Get("TenantID")
r.TenantId = tid.(string)
Service(ctx, func() (interface{}, interface{}) {
return services.RuleGroupService.List(r)
})
}
func (rc RuleGroupController) Delete(ctx *gin.Context) {
r := new(models.RuleGroupQuery)
BindJson(ctx, r)
tid, _ := ctx.Get("TenantID")
r.TenantId = tid.(string)
Service(ctx, func() (interface{}, interface{}) {
return services.RuleGroupService.Delete(r)
})
}