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.
57 lines
1.1 KiB
57 lines
1.1 KiB
package http |
|
|
|
import ( |
|
"net/http" |
|
|
|
"go-common/app/tool/saga/conf" |
|
"go-common/app/tool/saga/service" |
|
"go-common/library/log" |
|
bm "go-common/library/net/http/blademaster" |
|
"go-common/library/net/http/blademaster/middleware/verify" |
|
) |
|
|
|
var ( |
|
svc *service.Service |
|
idfSvc *verify.Verify |
|
) |
|
|
|
// Init init http sever instance. |
|
func Init(s *service.Service) { |
|
svc = s |
|
idfSvc = verify.New(nil) |
|
e := bm.DefaultServer(conf.Conf.BM) |
|
internalRouter(e) |
|
if err := e.Start(); err != nil { |
|
log.Error("xhttp.Serve error(%v)", err) |
|
panic(err) |
|
} |
|
} |
|
|
|
// internalRouter init internal router. |
|
func internalRouter(e *bm.Engine) { |
|
e.Ping(ping) |
|
e.Register(register) |
|
|
|
group1 := e.Group("/x/internal/v2/saga/gitlab") |
|
{ |
|
group1.POST("/comment", gitlabComment) |
|
group1.POST("/pipeline", gitlabPipeline) |
|
group1.POST("/mr", gitlabMR) |
|
} |
|
group2 := e.Group("/x/internal/v2/saga/api") |
|
{ |
|
group2.POST("/contributors", buildContributors) |
|
} |
|
} |
|
|
|
// ping check server ok. |
|
func ping(c *bm.Context) { |
|
if err := svc.Ping(c); err != nil { |
|
log.Error("saga ping error(%+v)", err) |
|
c.AbortWithStatus(http.StatusServiceUnavailable) |
|
} |
|
} |
|
|
|
func register(c *bm.Context) { |
|
c.JSON(nil, nil) |
|
}
|
|
|