You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.0 KiB
51 lines
1.0 KiB
package http |
|
|
|
import ( |
|
"go-common/app/infra/databus/conf" |
|
"go-common/app/infra/databus/service" |
|
"go-common/app/infra/databus/tcp" |
|
"go-common/library/log" |
|
bm "go-common/library/net/http/blademaster" |
|
) |
|
|
|
var ( |
|
svc *service.Service |
|
) |
|
|
|
// Init init https |
|
func Init(c *conf.Config, s *service.Service) { |
|
svc = s |
|
// router |
|
router := bm.DefaultServer(c.HTTPServer) |
|
initRouter(router) |
|
// init internal server |
|
if err := router.Start(); err != nil { |
|
log.Error("bm.DefaultServer error(%v)", err) |
|
panic(err) |
|
} |
|
} |
|
|
|
// initRouter init local router api path. |
|
func initRouter(e *bm.Engine) { |
|
e.Ping(ping) |
|
e.Register(register) |
|
e.GET("/databus/consumer/addrs", consumerAddrs) |
|
e.POST("/databus/pub", pub) |
|
} |
|
|
|
// ping check server ok |
|
func ping(c *bm.Context) { |
|
} |
|
|
|
// register provid for discovery. |
|
func register(c *bm.Context) { |
|
c.JSON(map[string]struct{}{ |
|
"data": struct{}{}, |
|
}, nil) |
|
} |
|
|
|
// consumerAddrs get consumer addrs. |
|
func consumerAddrs(c *bm.Context) { |
|
group := c.Request.Form.Get("group") |
|
c.JSON(tcp.ConsumerAddrs(group)) |
|
}
|
|
|