Create & Init Project...
This commit is contained in:
51
app/infra/databus/http/http.go
Normal file
51
app/infra/databus/http/http.go
Normal file
@ -0,0 +1,51 @@
|
||||
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))
|
||||
}
|
Reference in New Issue
Block a user