revoc.go 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. package assist
  2. import (
  3. "context"
  4. "strconv"
  5. "go-common/app/interface/main/creative/model/assist"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. )
  9. func (s *Service) revoc(c context.Context, assistLog *assist.AssistLog, ck, ip string) (err error) {
  10. switch {
  11. case assistLog.Type == 1 && assistLog.Action == 1:
  12. objectID, _ := strconv.ParseInt(assistLog.ObjectID, 10, 64)
  13. if objectID == 0 {
  14. err = ecode.RequestErr
  15. log.Error("strconv.ParseInt(%s) err(%v)", assistLog.ObjectID, err)
  16. return
  17. }
  18. if err = s.reply.ReplyRecover(c, assistLog.Mid, assistLog.SubjectID, objectID, ip); err != nil {
  19. log.Error("s.reply.ReplyRecover(%d,%d,%d,%s) err(%v)", assistLog.Mid, assistLog.SubjectID, assistLog.ObjectID, ip, err)
  20. return
  21. }
  22. case assistLog.Type == 2 && (assistLog.Action == 1 || assistLog.Action == 3):
  23. objectID, _ := strconv.ParseInt(assistLog.ObjectID, 10, 64)
  24. if err = s.dm.Edit(c, assistLog.Mid, assistLog.SubjectID, 0, []int64{objectID}, ip); err != nil {
  25. log.Error("s.dm.ResetDmStat(%d,%d,%d,%s) err(%v)", assistLog.Mid, assistLog.SubjectID, assistLog.ObjectID, ip, err)
  26. return
  27. }
  28. case assistLog.Type == 2 && assistLog.Action == 4:
  29. // 拉黑用户
  30. if err = s.dm.ResetUpBanned(c, assistLog.Mid, 0, assistLog.ObjectID, ip); err != nil {
  31. log.Error("s.dm.ResetUpBanned(%d,%d,%d,%s) err(%v)", assistLog.Mid, assistLog.SubjectID, assistLog.ObjectID, ip, err)
  32. return
  33. }
  34. case assistLog.Type == 2 && assistLog.Action == 5:
  35. // 移动弹幕到字幕池
  36. objectID, _ := strconv.ParseInt(assistLog.ObjectID, 10, 64)
  37. if err = s.dm.UpPool(c, assistLog.Mid, assistLog.SubjectID, []int64{objectID}, 0); err != nil {
  38. log.Error("s.dm.UpPool(%d,%d,%d,%s) err(%v)", assistLog.Mid, assistLog.SubjectID, assistLog.ObjectID, ip, err)
  39. return
  40. }
  41. case assistLog.Type == 2 && assistLog.Action == 6:
  42. // 忽略字幕池的弹幕
  43. objectID, _ := strconv.ParseInt(assistLog.ObjectID, 10, 64)
  44. if err = s.dm.UpPool(c, assistLog.Mid, assistLog.SubjectID, []int64{objectID}, 1); err != nil {
  45. log.Error("s.dm.UpPool(%d,%d,%d,%s) err(%v)", assistLog.Mid, assistLog.SubjectID, assistLog.ObjectID, ip, err)
  46. return
  47. }
  48. case assistLog.Type == 2 && assistLog.Action == 7:
  49. // 取消拉黑用户
  50. if err = s.dm.ResetUpBanned(c, assistLog.Mid, 1, assistLog.ObjectID, ip); err != nil {
  51. log.Error("s.dm.ResetUpBanned(%d,%d,%d,%s) err(%v)", assistLog.Mid, assistLog.SubjectID, assistLog.ObjectID, ip, err)
  52. return
  53. }
  54. case assistLog.Type == 3 && assistLog.Action == 8:
  55. // 取消拉黑用户
  56. if err = s.LiveRevocBanned(c, assistLog.Mid, assistLog.ObjectID, ck, ip); err != nil {
  57. log.Error("s.reply.LiveRevocBanned(%d,%d,%d,%s) err(%v)", assistLog.Mid, assistLog.SubjectID, assistLog.ObjectID, ip, err)
  58. return
  59. }
  60. }
  61. return
  62. }