relation.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. package relation
  2. import (
  3. "context"
  4. "go-common/app/interface/main/app-show/conf"
  5. relation "go-common/app/service/main/relation/model"
  6. relrpc "go-common/app/service/main/relation/rpc/client"
  7. "go-common/library/log"
  8. )
  9. // Dao is rpc dao.
  10. type Dao struct {
  11. // relation rpc
  12. relRPC *relrpc.Service
  13. }
  14. // New new a relation dao.
  15. func New(c *conf.Config) (d *Dao) {
  16. d = &Dao{
  17. // relation rpc
  18. relRPC: relrpc.New(c.RelationRPC),
  19. }
  20. return
  21. }
  22. // Relations fids relations
  23. func (d *Dao) Relations(ctx context.Context, mid int64, fids []int64) (res map[int64]*relation.Following, err error) {
  24. arg := &relation.ArgRelations{
  25. Mid: mid,
  26. Fids: fids,
  27. }
  28. if res, err = d.relRPC.Relations(ctx, arg); err != nil {
  29. log.Error("d.relRPC.Relations(%v) error(%v)", arg, err)
  30. res = nil
  31. return
  32. }
  33. return
  34. }
  35. // Stats fids stats
  36. func (d *Dao) Stats(ctx context.Context, mids []int64) (res map[int64]*relation.Stat, err error) {
  37. arg := &relation.ArgMids{
  38. Mids: mids,
  39. }
  40. if res, err = d.relRPC.Stats(ctx, arg); err != nil {
  41. log.Error("d.relRPC.Stats(%v) error(%v)", arg, err)
  42. res = nil
  43. return
  44. }
  45. return
  46. }