2020-09-13 20:37:07 +08:00
|
|
|
package waf
|
|
|
|
|
|
|
|
|
|
import (
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/actions/default/servers/components/componentutils"
|
|
|
|
|
"github.com/TeaOSLab/EdgeAdmin/internal/web/helpers"
|
|
|
|
|
"github.com/iwind/TeaGo"
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
|
TeaGo.BeforeStart(func(server *TeaGo.Server) {
|
|
|
|
|
server.
|
|
|
|
|
Helper(helpers.NewUserMustAuth()).
|
|
|
|
|
Helper(NewHelper()).
|
|
|
|
|
Helper(componentutils.NewComponentHelper()).
|
|
|
|
|
Prefix("/servers/components/waf").
|
|
|
|
|
Get("", new(IndexAction)).
|
2020-10-06 21:02:37 +08:00
|
|
|
GetPost("/createPopup", new(CreatePopupAction)).
|
|
|
|
|
Post("/delete", new(DeleteAction)).
|
|
|
|
|
Get("/policy", new(PolicyAction)).
|
|
|
|
|
Get("/groups", new(GroupsAction)).
|
|
|
|
|
Get("/sets", new(SetsAction)).
|
|
|
|
|
Get("/log", new(LogAction)).
|
|
|
|
|
GetPost("/update", new(UpdateAction)).
|
|
|
|
|
GetPost("/test", new(TestAction)).
|
|
|
|
|
GetPost("/export", new(ExportAction)).
|
|
|
|
|
GetPost("/import", new(ImportAction)).
|
2020-09-13 20:37:07 +08:00
|
|
|
EndAll()
|
|
|
|
|
})
|
|
|
|
|
}
|