updated ipbl websocket feat
This commit is contained in:
parent
14d72693dd
commit
abc02caf92
@ -94,15 +94,6 @@ func InsertOrUpdateSets(cfg config.Config, folders []CfgSet) (res string, err er
|
||||
return
|
||||
}
|
||||
|
||||
func GetZMQ(cfg config.Config) (res []CfgZMQ, err error) {
|
||||
var w = []CfgZMQ{}
|
||||
|
||||
if err = cfg.Db.Find(&w); err == nil {
|
||||
return w, err
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
func GetWS(cfg config.Config) (res []CfgWS, err error) {
|
||||
var w = []CfgWS{}
|
||||
|
||||
@ -149,14 +140,6 @@ type CfgTrustlist struct {
|
||||
IP string `xorm:"text notnull" json:"ip"`
|
||||
}
|
||||
|
||||
type CfgZMQ struct {
|
||||
ID int `xorm:"pk autoincr" json:"-"`
|
||||
Type string `xorm:"text notnull" json:"type"`
|
||||
Hostname string `xorm:"text notnull" json:"hostname"`
|
||||
Port int `json:"port"`
|
||||
Subscription string `json:"subscription"`
|
||||
}
|
||||
|
||||
type CfgWS struct {
|
||||
ID int `xorm:"pk autoincr" json:"-"`
|
||||
Type string `xorm:"text notnull" json:"type"`
|
||||
|
@ -86,7 +86,7 @@ func RegisterRoutes(e *echo.Echo, ctx *context.Context, cfg *config.Config) {
|
||||
ips = append(ips, *ip)
|
||||
}
|
||||
numinsert, numupdate, _ := models.InsertIPBulk(session, &ips)
|
||||
msg = fmt.Sprintf("zmq: Inserted %d IP, Updated %d IP", numinsert, numupdate)
|
||||
msg = fmt.Sprintf("Inserted %d IP, Updated %d IP", numinsert, numupdate)
|
||||
log.Println(msg)
|
||||
return Result(c, err, msg)
|
||||
})
|
||||
@ -142,10 +142,6 @@ func RegisterRoutes(e *echo.Echo, ctx *context.Context, cfg *config.Config) {
|
||||
sets, err := models.GetSets(*cfg)
|
||||
return Result(c, err, sets)
|
||||
})
|
||||
e.GET("/config/zmq", func(c echo.Context) (err error) {
|
||||
folders, err := models.GetZMQ(*cfg)
|
||||
return Result(c, err, folders)
|
||||
})
|
||||
e.GET("/config/ws", func(c echo.Context) (err error) {
|
||||
folders, err := models.GetWS(*cfg)
|
||||
return Result(c, err, folders)
|
||||
|
Loading…
Reference in New Issue
Block a user