member.go 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267
  1. package member
  2. import (
  3. "context"
  4. "go-common/app/interface/main/account/model"
  5. accmdl "go-common/app/service/main/account/model"
  6. arcmdl "go-common/app/service/main/archive/model/archive"
  7. memmdl "go-common/app/service/main/member/model"
  8. "go-common/library/ecode"
  9. "go-common/library/log"
  10. "go-common/library/net/metadata"
  11. )
  12. const (
  13. _maxMonthlyOfficialSubmitTimes = 3
  14. )
  15. // IdentifyInfo get user identify info.
  16. func (s *Service) IdentifyInfo(c context.Context, mid int64, ip string) (res *model.Identification, err error) {
  17. var rid *model.IdentifyInfo
  18. if rid, err = s.accDao.IdentifyInfo(c, mid, ip); err != nil {
  19. log.Error("s.memRPC.IdentifyInfo(%d) err(%+v)", mid, err)
  20. return
  21. }
  22. res = &model.Identification{}
  23. switch rid.Identify {
  24. case model.APIIdentifyOk:
  25. res.Identification = model.IdentifyOK
  26. case model.APIIdentifyNoInfo:
  27. res.Identification = model.IdentifyNotOK
  28. default:
  29. log.Error("unknow mid(%d) identify(%d) status", mid, rid.Identify)
  30. }
  31. return
  32. }
  33. // SubmitOfficial is.
  34. func (s *Service) SubmitOfficial(c context.Context, mid int64, apply *model.OfficialApply) error {
  35. //ip := metadata.String(c, metadata.RemoteIP)
  36. if apply.Role == memmdl.OfficialRoleUp || apply.Role == memmdl.OfficialRoleIdentify {
  37. cons, err := s.OfficialConditions(c, mid)
  38. if err != nil {
  39. return err
  40. }
  41. if !cons.AllPass() {
  42. log.Warn("Unexpected official apply submited: mid: %d conditons: %+v apply: %+v", mid, cons, apply)
  43. return ecode.RequestErr
  44. }
  45. }
  46. // 是否超出本月提交次数限制
  47. times, err := s.accDao.GetMonthlyOfficialSubmittedTimes(c, mid)
  48. if err != nil {
  49. log.Error("Faield to get monthly official submitted times with mid %d: %+v", mid, err)
  50. }
  51. if times >= _maxMonthlyOfficialSubmitTimes {
  52. log.Warn("User %d is exceed max monthly official submitted times")
  53. return ecode.LimitExceed
  54. }
  55. ood, err := s.memRPC.OfficialDoc(c, &memmdl.ArgMid{Mid: mid})
  56. // 是否已经存在审核中的申请
  57. if err == nil && ood != nil && ood.State == memmdl.OfficialStateWait {
  58. return nil
  59. }
  60. if apply.Telephone != "" {
  61. if apply.TelVerifyCode == 0 {
  62. log.Error("Invalid tel verify code: mid: %d code:%d", mid, apply.TelVerifyCode)
  63. return ecode.RequestErr
  64. }
  65. vcode, verr := s.accDao.GetVerifyCode(c, mid, apply.Telephone)
  66. if verr != nil {
  67. log.Error("Failed to get verify code: %d, %s: %+v", mid, apply.Telephone, verr)
  68. return ecode.CaptchaErr
  69. }
  70. if apply.TelVerifyCode != vcode {
  71. log.Error("Failed to verify telephone verification code: %s, %d, %d", apply.Telephone, apply.TelVerifyCode, vcode)
  72. return ecode.CaptchaErr
  73. }
  74. }
  75. arg := &memmdl.ArgOfficialDoc{
  76. Mid: mid,
  77. Name: apply.Name,
  78. Role: apply.Role,
  79. Title: apply.Title,
  80. Desc: apply.Desc,
  81. Operator: apply.Operator,
  82. Telephone: apply.Telephone,
  83. Email: apply.Email,
  84. Address: apply.Address,
  85. Company: apply.Company,
  86. CreditCode: apply.CreditCode,
  87. Organization: apply.Organization,
  88. OrganizationType: apply.OrganizationType,
  89. BusinessLicense: apply.BusinessLicense,
  90. BusinessScale: apply.BusinessScale,
  91. BusinessLevel: apply.BusinessLevel,
  92. BusinessAuth: apply.BusinessAuth,
  93. Supplement: apply.Supplement,
  94. Professional: apply.Professional,
  95. Identification: apply.Identification,
  96. OfficialSite: apply.OfficialSite,
  97. RegisteredCapital: apply.RegisteredCapital,
  98. SubmitSource: "user", // 来自 account-interface 的全部为 user
  99. }
  100. pros, err := s.accRPC.ProfileWithStat3(c, &accmdl.ArgMid{Mid: mid})
  101. if err != nil {
  102. log.Error("Failed to call ProfileWithStat3(%d): %+v", mid, err)
  103. return err
  104. }
  105. arg.Realname = int8(pros.Identification)
  106. if err := s.accDao.DelVerifyCode(c, mid, apply.Telephone); err != nil {
  107. log.Error("Failed to delete verify code: mid: %d: mobile: %s: %+v", mid, apply.Telephone, err)
  108. }
  109. if _, err = s.accDao.IncreaseMonthlyOfficialSubmittedTimes(c, mid); err != nil {
  110. log.Error("Failed to increase monthly official submitted times with mid: %d: %+v", mid, err)
  111. }
  112. return s.memRPC.SetOfficialDoc(c, arg)
  113. }
  114. // OfficialConditions is.
  115. func (s *Service) OfficialConditions(c context.Context, mid int64) (*model.OfficialConditions, error) {
  116. con := new(model.OfficialConditions)
  117. pros, err := s.accRPC.ProfileWithStat3(c, &accmdl.ArgMid{Mid: mid})
  118. if err != nil {
  119. log.Error("Failed to call ProfileWithStat3(%d): %+v", mid, err)
  120. return nil, err
  121. }
  122. if pros.Rank >= 10000 {
  123. con.IsFormal = true
  124. }
  125. // 1 正常号码,2 虚拟号码
  126. if pros.TelStatus >= 1 {
  127. con.BindTel = true
  128. }
  129. if pros.Identification == 1 {
  130. con.Realname = true
  131. }
  132. if pros.Follower >= 100000 {
  133. con.FollowerCount = true
  134. }
  135. arcCount, err := s.arcRPC.UpCount2(c, &arcmdl.ArgUpCount2{Mid: mid})
  136. if err != nil {
  137. log.Error("Failed to call s.arcRPC.UpCount2(%d): %+v", mid, err)
  138. // return nil, err
  139. }
  140. if err == nil && arcCount >= 1 {
  141. con.ArchiveCount = true
  142. }
  143. // 累计播放数
  144. // upStat, err := s.upRPC.UpStatBase(c, &upmdl.ArgMidWithDate{Mid: mid})
  145. // if err != nil {
  146. // log.Error("Failed to call s.upRPC.UpStatBase(%d): %+v", mid, err)
  147. // }
  148. // if err == nil && upStat != nil && upStat.View >= 1000000 {
  149. // con.ViewCount = true
  150. // }
  151. return con, nil
  152. }
  153. // UploadImage article upload cover.
  154. func (s *Service) UploadImage(c context.Context, fileType string, body []byte) (url string, err error) {
  155. if len(body) == 0 {
  156. err = ecode.FileNotExists
  157. return
  158. }
  159. if len(body) > s.c.BFS.MaxFileSize {
  160. err = ecode.FileTooLarge
  161. return
  162. }
  163. url, err = s.accDao.UploadImage(c, fileType, body, s.c.BFS)
  164. if err != nil {
  165. log.Error("account-interface: s.bfs.Upload error(%v)", err)
  166. return
  167. }
  168. return
  169. }
  170. // MobileVerify is.
  171. func (s *Service) MobileVerify(c context.Context, mid int64, mobile string, country int64) error {
  172. ip := metadata.String(c, metadata.RemoteIP)
  173. vcode, err := s.accDao.GenVerifyCode(c, mid, mobile)
  174. if err != nil {
  175. log.Error("Failed to generate verify code: %+v", err)
  176. return err
  177. }
  178. return s.accDao.SendMobileVerify(c, vcode, country, mobile, ip)
  179. }
  180. // OfficialDoc is.
  181. func (s *Service) OfficialDoc(c context.Context, mid int64) (*memmdl.OfficialDoc, error) {
  182. ip := metadata.String(c, metadata.RemoteIP)
  183. od, err := s.memRPC.OfficialDoc(c, &memmdl.ArgMid{Mid: mid, RealIP: ip})
  184. if err != nil {
  185. return nil, err
  186. }
  187. return od, nil
  188. }
  189. // MonthlyOfficialSubmittedTimes is
  190. func (s *Service) MonthlyOfficialSubmittedTimes(c context.Context, mid int64) *model.OfficialSubmittedTimes {
  191. result := &model.OfficialSubmittedTimes{
  192. Submitted: 0,
  193. Remain: _maxMonthlyOfficialSubmitTimes,
  194. }
  195. times, err := s.accDao.GetMonthlyOfficialSubmittedTimes(c, mid)
  196. if err != nil {
  197. log.Warn("Failed to get monthly official submitted times with mid: %d: %+v", mid, err)
  198. return result
  199. }
  200. result.Submitted = times
  201. if result.Submitted > _maxMonthlyOfficialSubmitTimes {
  202. result.Submitted = _maxMonthlyOfficialSubmitTimes
  203. }
  204. result.Remain = _maxMonthlyOfficialSubmitTimes - result.Submitted
  205. return result
  206. }
  207. // OfficialAutoFillDoc is
  208. func (s *Service) OfficialAutoFillDoc(ctx context.Context, mid int64) (*memmdl.OfficialDoc, error) {
  209. res := &memmdl.OfficialDoc{
  210. Mid: mid,
  211. }
  212. // default name
  213. info, err := s.accRPC.Info3(ctx, &accmdl.ArgMid{Mid: mid})
  214. if err != nil {
  215. return nil, err
  216. }
  217. res.Name = info.Name
  218. // default from cm api
  219. func() {
  220. cminfo, err := s.accDao.BusinessAccountInfo(ctx, mid)
  221. if err != nil {
  222. log.Error("Failed to get cm business account info with mid: %d: %+v", mid, err)
  223. return
  224. }
  225. if cminfo.Nickname != "" {
  226. res.Name = cminfo.Nickname
  227. }
  228. if cminfo.CertificationTitle != "" {
  229. res.Title = cminfo.CertificationTitle
  230. }
  231. if cminfo.CreditCode != "" {
  232. res.CreditCode = cminfo.CreditCode
  233. }
  234. if cminfo.CompanyName != "" {
  235. res.Company = cminfo.CompanyName
  236. }
  237. if cminfo.Organization != "" {
  238. res.Organization = cminfo.Organization
  239. }
  240. if cminfo.OrganizationType != "" {
  241. res.OrganizationType = cminfo.OrganizationType
  242. }
  243. }()
  244. return res, nil
  245. }