http.go 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. package http
  2. import (
  3. "go-common/app/interface/main/reply/conf"
  4. "go-common/app/interface/main/reply/service"
  5. "go-common/library/log"
  6. bm "go-common/library/net/http/blademaster"
  7. "go-common/library/net/http/blademaster/middleware/auth"
  8. "go-common/library/net/http/blademaster/middleware/verify"
  9. )
  10. var (
  11. cnf *conf.Config
  12. rpSvr *service.Service
  13. authSvc *auth.Auth
  14. verifySvc *verify.Verify
  15. )
  16. // Init init http
  17. func Init(c *conf.Config) {
  18. initService(c)
  19. engine := bm.DefaultServer(c.BM)
  20. outerRouter(engine)
  21. interRouter(engine)
  22. if err := engine.Start(); err != nil {
  23. log.Error("xhttp.Serve error(%v)", err)
  24. panic(err)
  25. }
  26. }
  27. func initService(c *conf.Config) {
  28. cnf = c
  29. authSvc = auth.New(c.Auth)
  30. verifySvc = verify.New(c.Verify)
  31. rpSvr = service.New(conf.Conf)
  32. }
  33. func outerRouter(e *bm.Engine) {
  34. // init api
  35. e.GET("/monitor/ping", ping)
  36. // reply
  37. group := e.Group("/x/v2/reply")
  38. {
  39. group.GET("", authSvc.Guest, reply)
  40. group.GET("/cursor", authSvc.Guest, replyByCursor)
  41. group.GET("/reply/cursor", authSvc.Guest, subReplyByCursor)
  42. group.GET("/hot", replyHots)
  43. group.GET("/emojis", emojis)
  44. group.GET("/web/emojis", emojis)
  45. group.GET("/info", authSvc.Guest, replyInfo)
  46. group.GET("/minfo", authSvc.Guest, replyMultiInfo)
  47. group.GET("/reply", authSvc.Guest, replyReply)
  48. group.GET("/jump", authSvc.Guest, jumpReply)
  49. group.GET("/count", authSvc.Guest, replyCount)
  50. group.GET("/mcount", authSvc.Guest, replyMultiCount)
  51. group.GET("/log", authSvc.Guest, replyAdminLog)
  52. group.POST("/add", authSvc.User, addReply)
  53. group.POST("/action", authSvc.User, likeReply)
  54. group.POST("/hate", authSvc.User, hateReply)
  55. group.POST("/show", authSvc.User, showReply)
  56. group.POST("/hide", authSvc.User, hideReply)
  57. group.POST("/del", authSvc.User, delReply)
  58. group.POST("/top", authSvc.User, AddTopReply)
  59. group.POST("/report", authSvc.User, reportReply)
  60. group.GET("/topics", authSvc.Guest, getTopics)
  61. group.GET("/report/related", authSvc.Guest, reportRelated)
  62. group.GET("/report/reply", authSvc.Guest, reportSndReply)
  63. group.GET("/dialog", authSvc.Guest, dialog)
  64. group.GET("/dialog/cursor", authSvc.Guest, dialogByCursor)
  65. // 5.37需求
  66. group.GET("/main", authSvc.Guest, xreply)
  67. group.GET("/folded", authSvc.Guest, subFolder)
  68. group.GET("/reply/folded", authSvc.Guest, rootFolder)
  69. }
  70. }
  71. func interRouter(e *bm.Engine) {
  72. // internal admin
  73. group := e.Group("/x/internal/v2/reply")
  74. {
  75. group.GET("/subject", verifySvc.Verify, adminSubject)
  76. group.POST("/subject/mid", verifySvc.Verify, adminSubjectMid)
  77. group.GET("/hot", verifySvc.Verify, replyHots)
  78. group.POST("/subject/state", verifySvc.Verify, adminSubjectState)
  79. group.POST("/subject/regist", verifySvc.Verify, adminSubRegist)
  80. group.POST("/audit", verifySvc.Verify, adminAuditSub)
  81. group.POST("/pass", verifySvc.Verify, adminPassReply)
  82. group.POST("/recover", verifySvc.Verify, adminRecoverReply)
  83. group.POST("/edit", verifySvc.Verify, adminEditReply)
  84. group.POST("/del", verifySvc.Verify, adminDelReply)
  85. group.POST("/top", verifySvc.Verify, adminAddTopReply)
  86. group.POST("/report/del", verifySvc.Verify, adminDelReplyByReport)
  87. group.POST("/report/ignore", verifySvc.Verify, adminIgnoreReport)
  88. group.POST("/report/recover", verifySvc.Verify, adminReportRecover)
  89. group.POST("/report/transfer", verifySvc.Verify, adminTransferReport)
  90. group.POST("/report/state", verifySvc.Verify, adminReportStateSet)
  91. group.GET("/info", verifySvc.Verify, replyInfo)
  92. group.GET("/count", verifySvc.Verify, replyCount)
  93. group.GET("/counts", verifySvc.Verify, replyCounts)
  94. group.GET("/minfo", verifySvc.Verify, replyMultiInfo)
  95. group.GET("/mcount", verifySvc.Verify, replyMultiCount)
  96. group.GET("/record", verifySvc.Verify, replyRecord)
  97. group.GET("/hots", verifySvc.Verify, hotsBatch)
  98. group.GET("/ishot", isHotReply)
  99. }
  100. }