report.go 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. package report
  2. import (
  3. "bytes"
  4. "context"
  5. "go-common/app/interface/main/app-view/conf"
  6. arcdao "go-common/app/interface/main/app-view/dao/archive"
  7. elcdao "go-common/app/interface/main/app-view/dao/elec"
  8. reportdao "go-common/app/interface/main/app-view/dao/report"
  9. "go-common/app/interface/main/app-view/model"
  10. "go-common/app/interface/main/app-view/model/elec"
  11. "go-common/app/interface/main/app-view/model/report"
  12. "go-common/app/service/main/archive/api"
  13. "go-common/app/service/main/archive/model/archive"
  14. "go-common/library/ecode"
  15. )
  16. const (
  17. _maxContentSize = 400
  18. _maxFileSize = 1048576
  19. )
  20. var (
  21. _elecTypeIds = []int16{
  22. 20, 154, 156, // dance
  23. 31, 30, 59, 29, 28, // music
  24. 26, 22, 126, 127, // guichu
  25. 24, 25, 47, 27, // animae
  26. 17, 18, 16, 65, 136, 19, 121, 171, 172, 173, // game
  27. 37, 124, 122, 39, 96, 95, 98, // tech
  28. 71, 137, 131, // yule
  29. 157, 158, 159, 164, // fashion
  30. 82, 128, // movie and tv
  31. 138, 21, 75, 76, 161, 162, 163, 174, // life
  32. 153, 168, // guo man
  33. 85, 86, 182, 183, 184, // film and television
  34. }
  35. )
  36. // Service is appeal service .
  37. type Service struct {
  38. arcDao *arcdao.Dao
  39. reportDao *reportdao.Dao
  40. elcDao *elcdao.Dao
  41. // elec
  42. allowTypeIds map[int16]struct{}
  43. }
  44. // New init appeal service .
  45. func New(c *conf.Config) (s *Service) {
  46. s = &Service{
  47. reportDao: reportdao.New(c),
  48. arcDao: arcdao.New(c),
  49. elcDao: elcdao.New(c),
  50. }
  51. s.allowTypeIds = map[int16]struct{}{}
  52. for _, id := range _elecTypeIds {
  53. s.allowTypeIds[id] = struct{}{}
  54. }
  55. return
  56. }
  57. // CopyWriter archive appeal copy write .
  58. func (s *Service) CopyWriter(c context.Context, aid int64, plat int8, lang string) (cps []report.CopyWriter, err error) {
  59. var a *api.Arc
  60. if a, err = s.arcDao.Archive(c, aid); err != nil {
  61. return
  62. }
  63. if a == nil {
  64. err = ecode.NothingFound
  65. return
  66. }
  67. // check elec
  68. var info *elec.Info
  69. if _, ok := s.allowTypeIds[int16(a.TypeID)]; ok && a.IsNormal() && a.Copyright == int32(archive.CopyrightOriginal) {
  70. if info, err = s.elcDao.Info(c, a.Author.Mid, 0); err != nil {
  71. return
  72. }
  73. }
  74. if info != nil {
  75. if model.IsOverseas(plat) {
  76. cps = make([]report.CopyWriter, 4)
  77. if lang == model.Hant {
  78. cps[0] = report.CopyWriter{Typ: report.ArchivePVRG, Reason: report.Reason7, Desc: report.Desc7, AllowAdd: true}
  79. cps[1] = report.CopyWriter{Typ: report.ArchiveCopyWriteG, Reason: report.Reason8, Desc: report.Desc8, AllowAdd: false}
  80. cps[2] = report.CopyWriter{Typ: report.ArchiveHarmG, Reason: report.Reason9, Desc: report.Desc9, AllowAdd: true}
  81. cps[3] = report.CopyWriter{Typ: report.OtherG, Reason: report.Reason10, Desc: report.Desc10, AllowAdd: true}
  82. } else {
  83. cps[0] = report.CopyWriter{Typ: report.ArchivePVR, Reason: report.Reason1, Desc: report.Desc1, AllowAdd: true}
  84. cps[1] = report.CopyWriter{Typ: report.ArchiveCopyWrite, Reason: report.Reason2, Desc: report.Desc2, AllowAdd: false}
  85. cps[2] = report.CopyWriter{Typ: report.ArchiveHarmG, Reason: report.Reason11, Desc: report.Desc11, AllowAdd: true}
  86. cps[3] = report.CopyWriter{Typ: report.Other, Reason: report.Reason6, Desc: report.Desc6, AllowAdd: true}
  87. }
  88. } else {
  89. cps = make([]report.CopyWriter, 6)
  90. cps[0] = report.CopyWriter{Typ: report.ArchivePVR, Reason: report.Reason1, Desc: report.Desc1, AllowAdd: true}
  91. cps[1] = report.CopyWriter{Typ: report.ArchiveCopyWrite, Reason: report.Reason2, Desc: report.Desc2, AllowAdd: false}
  92. cps[2] = report.CopyWriter{Typ: report.ArchiveCrash, Reason: report.Reason3, Desc: report.Desc3, AllowAdd: true}
  93. cps[3] = report.CopyWriter{Typ: report.ArchiveNotOwn, Reason: report.Reason4, Desc: report.Desc4, AllowAdd: true}
  94. cps[4] = report.CopyWriter{Typ: report.ArchiveBusiness, Reason: report.Reason5, Desc: report.Desc5, AllowAdd: true}
  95. cps[5] = report.CopyWriter{Typ: report.Other, Reason: report.Reason6, Desc: report.Desc6, AllowAdd: true}
  96. }
  97. } else {
  98. if model.IsOverseas(plat) && lang == model.Hant {
  99. cps = make([]report.CopyWriter, 4)
  100. cps[0] = report.CopyWriter{Typ: report.ArchivePVRG, Reason: report.Reason7, Desc: report.Desc7, AllowAdd: true}
  101. cps[1] = report.CopyWriter{Typ: report.ArchiveCopyWriteG, Reason: report.Reason8, Desc: report.Desc8, AllowAdd: false}
  102. cps[2] = report.CopyWriter{Typ: report.ArchiveHarmG, Reason: report.Reason9, Desc: report.Desc9, AllowAdd: true}
  103. cps[3] = report.CopyWriter{Typ: report.OtherG, Reason: report.Reason10, Desc: report.Desc10, AllowAdd: true}
  104. } else {
  105. cps = make([]report.CopyWriter, 4)
  106. cps[0] = report.CopyWriter{Typ: report.ArchivePVR, Reason: report.Reason1, Desc: report.Desc1, AllowAdd: true}
  107. cps[1] = report.CopyWriter{Typ: report.ArchiveCopyWrite, Reason: report.Reason2, Desc: report.Desc2, AllowAdd: false}
  108. cps[2] = report.CopyWriter{Typ: report.ArchiveCrash, Reason: report.Reason11, Desc: report.Desc11, AllowAdd: true}
  109. cps[3] = report.CopyWriter{Typ: report.Other, Reason: report.Reason6, Desc: report.Desc6, AllowAdd: true}
  110. }
  111. }
  112. return
  113. }
  114. // AddReport add a report .
  115. func (s *Service) AddReport(c context.Context, mid, aid int64, mold int, ak, reason, pics string) (err error) {
  116. if len(reason) > _maxContentSize {
  117. err = ecode.FileTooLarge
  118. return
  119. }
  120. return s.reportDao.AddReport(c, mid, aid, mold, ak, reason, pics)
  121. }
  122. // Upload image upload .
  123. func (s *Service) Upload(c context.Context, fileType string, body []byte) (url string, err error) {
  124. if len(body) == 0 {
  125. err = ecode.FileNotExists
  126. return
  127. }
  128. if len(body) > _maxFileSize {
  129. err = ecode.FileTooLarge
  130. return
  131. }
  132. return s.reportDao.Upload(c, fileType, bytes.NewReader(body))
  133. }