card.go 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. package card
  2. import (
  3. "context"
  4. "go-common/app/interface/main/account/conf"
  5. v1 "go-common/app/service/main/card/api/grpc/v1"
  6. )
  7. // Service .
  8. type Service struct {
  9. // conf
  10. c *conf.Config
  11. // card service
  12. cardRPC v1.CardClient
  13. }
  14. // New create service instance and return.
  15. func New(c *conf.Config) (s *Service) {
  16. s = &Service{
  17. c: c,
  18. }
  19. cardRPC, err := v1.NewClient(c.CardClient)
  20. if err != nil {
  21. panic(err)
  22. }
  23. s.cardRPC = cardRPC
  24. return
  25. }
  26. // UserCard user card info.
  27. func (s *Service) UserCard(c context.Context, mid int64) (res *v1.ModelUserCard, err error) {
  28. var reply *v1.UserCardReply
  29. if reply, err = s.cardRPC.UserCard(c, &v1.UserCardReq{Mid: mid}); err != nil {
  30. return
  31. }
  32. res = reply.Res
  33. return
  34. }
  35. // Card get card info by id.
  36. func (s *Service) Card(c context.Context, id int64) (res *v1.ModelCard, err error) {
  37. var reply *v1.CardReply
  38. if reply, err = s.cardRPC.Card(c, &v1.CardReq{Id: id}); err != nil {
  39. return
  40. }
  41. res = reply.Data_0
  42. return
  43. }
  44. // CardHots get all hots cards.
  45. func (s *Service) CardHots(c context.Context) (res []*v1.ModelCard, err error) {
  46. var reply *v1.CardHotsReply
  47. if reply, err = s.cardRPC.CardHots(c, &v1.CardHotsReq{}); err != nil {
  48. return
  49. }
  50. res = reply.Data_0
  51. return
  52. }
  53. // AllGroup all group.
  54. func (s *Service) AllGroup(c context.Context, mid int64) (res *v1.ModelAllGroupResp, err error) {
  55. var reply *v1.AllGroupReply
  56. if reply, err = s.cardRPC.AllGroup(c, &v1.AllGroupReq{Mid: mid}); err != nil {
  57. return
  58. }
  59. res = reply.Res
  60. return
  61. }
  62. // CardsByGid get cards by gid.
  63. func (s *Service) CardsByGid(c context.Context, id int64) (res []*v1.ModelCard, err error) {
  64. var reply *v1.CardsByGidReply
  65. if reply, err = s.cardRPC.CardsByGid(c, &v1.CardsByGidReq{Gid: id}); err != nil {
  66. return
  67. }
  68. res = reply.Data_0
  69. return
  70. }
  71. // Equip card equip.
  72. func (s *Service) Equip(c context.Context, arg *v1.ModelArgEquip) (err error) {
  73. _, err = s.cardRPC.Equip(c, &v1.EquipReq{Arg: arg})
  74. return
  75. }
  76. // Demount card demount.
  77. func (s *Service) Demount(c context.Context, mid int64) (err error) {
  78. _, err = s.cardRPC.DemountEquip(c, &v1.DemountEquipReq{Mid: mid})
  79. return
  80. }