common.go 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package service
  2. import (
  3. "context"
  4. "fmt"
  5. "go-common/app/interface/main/answer/model"
  6. "go-common/library/ecode"
  7. )
  8. func (s *Service) convertModel(rpcRes *model.AnsQuesList) (res *model.AnsQueDetailList) {
  9. res = &model.AnsQueDetailList{CurrentTime: rpcRes.CurrentTime.Unix(), EndTime: rpcRes.EndTime.Unix()}
  10. for _, q := range rpcRes.QuesList {
  11. que := &model.AnsQueDetail{
  12. ID: q.ID, AnsImg: q.Img, QsHeight: q.Height, QsPositionY: q.PositionY,
  13. Ans1Hash: q.Ans[0].AnsHash, Ans0Height: q.Ans[0].Height, Ans0PositionY: q.Ans[0].PositionY,
  14. Ans2Hash: q.Ans[1].AnsHash, Ans1Height: q.Ans[1].Height, Ans1PositionY: q.Ans[1].PositionY,
  15. Ans3Hash: q.Ans[2].AnsHash, Ans2Height: q.Ans[2].Height, Ans2PositionY: q.Ans[2].PositionY,
  16. Ans4Hash: q.Ans[3].AnsHash, Ans3Height: q.Ans[3].Height, Ans3PositionY: q.Ans[3].PositionY,
  17. }
  18. res.QuesList = append(res.QuesList, que)
  19. }
  20. return
  21. }
  22. func (s *Service) convertExtraModel(rpcRes *model.AnsQuesList) (res *model.AnsQueDetailList) {
  23. res = &model.AnsQueDetailList{CurrentTime: rpcRes.CurrentTime.Unix(), EndTime: rpcRes.EndTime.Unix()}
  24. for _, q := range rpcRes.QuesList {
  25. que := &model.AnsQueDetail{
  26. ID: q.ID, AnsImg: q.Img, QsHeight: q.Height, QsPositionY: q.PositionY,
  27. Ans1Hash: q.Ans[0].AnsHash, Ans0Height: q.Ans[0].Height, Ans0PositionY: q.Ans[0].PositionY,
  28. Ans2Hash: q.Ans[1].AnsHash, Ans1Height: q.Ans[1].Height, Ans1PositionY: q.Ans[1].PositionY,
  29. }
  30. res.QuesList = append(res.QuesList, que)
  31. }
  32. return
  33. }
  34. func (s *Service) historyByHid(ctx context.Context, hid int64) (his *model.AnswerHistory, err error) {
  35. his, err = s.answerDao.HidCache(ctx, hid)
  36. if err != nil {
  37. return
  38. }
  39. if his != nil {
  40. return
  41. }
  42. if len(fmt.Sprintf("%d", hid)) < 10 {
  43. i, _ := s.answerDao.SharingIndexByHid(ctx, hid)
  44. his, err = s.answerDao.OldHistory(ctx, hid, i)
  45. } else {
  46. his, err = s.answerDao.HistoryByHid(ctx, hid)
  47. }
  48. if err != nil || his == nil {
  49. err = ecode.NothingFound
  50. return
  51. }
  52. s.answerDao.SetHidCache(ctx, his)
  53. return
  54. }