server.go 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. // Package server generate by warden_gen
  2. package server
  3. import (
  4. "context"
  5. pb "go-common/app/service/main/spy/api"
  6. "go-common/app/service/main/spy/model"
  7. service "go-common/app/service/main/spy/service"
  8. "go-common/library/net/rpc/warden"
  9. )
  10. // New Spy warden rpc server
  11. func New(c *warden.ServerConfig, svr *service.Service) *warden.Server {
  12. ws := warden.NewServer(c)
  13. pb.RegisterSpyServer(ws.Server(), &server{svr})
  14. _, err := ws.Start()
  15. if err != nil {
  16. panic(err)
  17. }
  18. return ws
  19. }
  20. type server struct {
  21. svr *service.Service
  22. }
  23. var _ pb.SpyServer = &server{}
  24. // Ping check dao health.
  25. func (s *server) Ping(ctx context.Context, req *pb.PingReq) (*pb.PingReply, error) {
  26. return &pb.PingReply{}, nil
  27. }
  28. // StatByID spy stat by id or mid.
  29. func (s *server) StatByID(ctx context.Context, req *pb.StatByIDReq) (*pb.StatByIDReply, error) {
  30. statistics, err := s.svr.StatByID(ctx, req.Mid, req.Id)
  31. if err != nil {
  32. return nil, err
  33. }
  34. reply := new(pb.StatByIDReply)
  35. reply.DeepCopyFromStatistics(statistics)
  36. return reply, nil
  37. }
  38. // StatByIDGroupEvent spy stat by id or mid.
  39. func (s *server) StatByIDGroupEvent(ctx context.Context, req *pb.StatByIDGroupEventReq) (*pb.StatByIDGroupEventReply, error) {
  40. statistics, err := s.svr.StatByIDGroupEvent(ctx, req.Mid, req.Id)
  41. if err != nil {
  42. return nil, err
  43. }
  44. reply := new(pb.StatByIDGroupEventReply)
  45. reply.DeepCopyFromStatistics(statistics)
  46. return reply, nil
  47. }
  48. // PurgeUser purge user info
  49. func (s *server) PurgeUser(ctx context.Context, req *pb.PurgeUserReq) (*pb.PurgeUserReply, error) {
  50. return &pb.PurgeUserReply{}, s.svr.PurgeUser(ctx, req.Mid, req.Action)
  51. }
  52. // HandleEvent handle spy-event.
  53. func (s *server) HandleEvent(ctx context.Context, req *pb.HandleEventReq) (*pb.HandleEventReply, error) {
  54. eventMsg := new(model.EventMessage)
  55. req.DeepCopyAsIntoEventMessage(eventMsg)
  56. return &pb.HandleEventReply{}, s.svr.HandleEvent(ctx, eventMsg)
  57. }
  58. // UserInfo get UserInfo by mid , from cache or db or generate.
  59. func (s *server) UserInfo(ctx context.Context, req *pb.UserInfoReq) (*pb.UserInfoReply, error) {
  60. ui, err := s.svr.UserInfo(ctx, req.Mid, req.Ip)
  61. if err != nil {
  62. return nil, err
  63. }
  64. reply := new(pb.UserInfoReply)
  65. reply.DeepCopyFromUserInfo(ui)
  66. return reply, nil
  67. }
  68. // UserInfoAsyn get UserInfo by mid , from cache or db or asyn generate.
  69. func (s *server) UserInfoAsyn(ctx context.Context, req *pb.UserInfoAsynReq) (*pb.UserInfoAsynReply, error) {
  70. ui, err := s.svr.UserInfoAsyn(ctx, req.Mid)
  71. if err != nil {
  72. return nil, err
  73. }
  74. reply := new(pb.UserInfoAsynReply)
  75. reply.DeepCopyFromUserInfo(ui)
  76. return reply, nil
  77. }
  78. // ReBuildPortrait reBuild user info.
  79. func (s *server) ReBuildPortrait(ctx context.Context, req *pb.ReBuildPortraitReq) (*pb.ReBuildPortraitReply, error) {
  80. return &pb.ReBuildPortraitReply{}, s.svr.ReBuildPortrait(ctx, req.Mid, req.Reason)
  81. }
  82. // UpdateUserScore update user score
  83. func (s *server) UpdateUserScore(ctx context.Context, req *pb.UpdateUserScoreReq) (*pb.UpdateUserScoreReply, error) {
  84. return &pb.UpdateUserScoreReply{}, s.svr.UpdateUserScore(ctx, req.Mid, req.Ip, req.Effect)
  85. }
  86. // RefreshBaseScore refresh base score.
  87. func (s *server) RefreshBaseScore(ctx context.Context, req *pb.RefreshBaseScoreReq) (*pb.RefreshBaseScoreReply, error) {
  88. argReset := new(model.ArgReset)
  89. req.DeepCopyAsIntoArgReset(argReset)
  90. return &pb.RefreshBaseScoreReply{}, s.svr.RefreshBaseScore(ctx, argReset)
  91. }
  92. // UpdateBaseScore update base score.
  93. func (s *server) UpdateBaseScore(ctx context.Context, req *pb.UpdateBaseScoreReq) (*pb.UpdateBaseScoreReply, error) {
  94. argReset := new(model.ArgReset)
  95. req.DeepCopyAsIntoArgReset(argReset)
  96. return &pb.UpdateBaseScoreReply{}, s.svr.UpdateBaseScore(ctx, argReset)
  97. }
  98. // UpdateEventScore update event score.
  99. func (s *server) UpdateEventScore(ctx context.Context, req *pb.UpdateEventScoreReq) (*pb.UpdateEventScoreReply, error) {
  100. argReset := new(model.ArgReset)
  101. req.DeepCopyAsIntoArgReset(argReset)
  102. return &pb.UpdateEventScoreReply{}, s.svr.UpdateEventScore(ctx, argReset)
  103. }
  104. // ClearReliveTimes clear times.
  105. func (s *server) ClearReliveTimes(ctx context.Context, req *pb.ClearReliveTimesReq) (*pb.ClearReliveTimesReply, error) {
  106. argReset := new(model.ArgReset)
  107. req.DeepCopyAsIntoArgReset(argReset)
  108. return &pb.ClearReliveTimesReply{}, s.svr.ClearReliveTimes(ctx, argReset)
  109. }
  110. // Info get user info by mid.
  111. func (s *server) Info(ctx context.Context, req *pb.InfoReq) (*pb.InfoReply, error) {
  112. ui, err := s.svr.Info(ctx, req.Mid)
  113. if err != nil {
  114. return nil, err
  115. }
  116. reply := new(pb.InfoReply)
  117. reply.DeepCopyFromUserInfo(ui)
  118. return reply, nil
  119. }