74 lines
1.8 KiB
Go
74 lines
1.8 KiB
Go
// Package http is where http server init,
|
|
// including routes
|
|
package http
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
pb "go-common/app/interface/live/live-demo/api/http"
|
|
v2pb "go-common/app/interface/live/live-demo/api/http/v2"
|
|
"go-common/app/interface/live/live-demo/conf"
|
|
"go-common/app/interface/live/live-demo/dao"
|
|
svc "go-common/app/interface/live/live-demo/service"
|
|
"go-common/app/interface/live/live-demo/service/v2"
|
|
"go-common/library/log"
|
|
bm "go-common/library/net/http/blademaster"
|
|
"go-common/library/net/http/blademaster/middleware/auth"
|
|
"go-common/library/net/http/blademaster/middleware/verify"
|
|
)
|
|
|
|
var (
|
|
vfy *verify.Verify
|
|
midAuth *auth.Auth
|
|
)
|
|
|
|
// Init init
|
|
func Init(c *conf.Config) {
|
|
dao.InitAPI()
|
|
initMiddleware(c)
|
|
engine := bm.DefaultServer(nil)
|
|
route(engine)
|
|
if err := engine.Start(); err != nil {
|
|
log.Error("bm Start error(%v)", err)
|
|
panic(err)
|
|
}
|
|
}
|
|
|
|
func initMiddleware(c *conf.Config) {
|
|
vfy = verify.New(c.Verify)
|
|
midAuth = auth.New(nil)
|
|
}
|
|
|
|
func route(e *bm.Engine) {
|
|
e.Ping(ping)
|
|
e.Register(register)
|
|
g := e.Group("/x/live-demo")
|
|
{
|
|
g.GET("/start", vfy.Verify, howToStart)
|
|
}
|
|
midMap := map[string]bm.HandlerFunc{
|
|
"auth": midAuth.User,
|
|
"guest": midAuth.Guest,
|
|
"verify": vfy.Verify}
|
|
v2pb.RegisterV2FooService(e, v2.NewFooService(conf.Conf), midMap)
|
|
v2pb.RegisterV2Foo2Service(e, v2.NewFoo2Service(conf.Conf), midMap)
|
|
pb.RegisterFooService(e, svc.NewFooService(conf.Conf), midMap)
|
|
pb.RegisterFoo2Service(e, svc.NewFoo2Service(conf.Conf), midMap)
|
|
|
|
e.Inject(pb.PathFooGetInfo, midAuth.User)
|
|
pb.RegisterFooBMServer(e, svc.NewFooService(conf.Conf))
|
|
}
|
|
|
|
func ping(c *bm.Context) {
|
|
c.AbortWithStatus(http.StatusOK)
|
|
}
|
|
|
|
func register(c *bm.Context) {
|
|
c.JSON(map[string]interface{}{}, nil)
|
|
}
|
|
|
|
// example for http request handler
|
|
func howToStart(c *bm.Context) {
|
|
c.String(0, "Golang 大法好 !!!")
|
|
}
|