realname.go 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. package realname
  2. import (
  3. "context"
  4. "strings"
  5. "go-common/app/interface/main/account/conf"
  6. "go-common/app/interface/main/account/dao/realname"
  7. "go-common/app/interface/main/account/model"
  8. "go-common/app/interface/main/account/service/realname/crypto"
  9. memrpc "go-common/app/service/main/member/api/gorpc"
  10. memmodel "go-common/app/service/main/member/model"
  11. "go-common/library/log"
  12. )
  13. // Service is
  14. type Service struct {
  15. c *conf.Config
  16. memRPC *memrpc.Service
  17. realnameDao *realname.Dao
  18. mainCryptor *crypto.Main
  19. alipayCryptor *crypto.Alipay
  20. missch chan func()
  21. }
  22. // New create service instance and return.
  23. func New(c *conf.Config, rsapub, rsapriv, alipub, alibilipriv string) (s *Service) {
  24. s = &Service{
  25. c: c,
  26. memRPC: memrpc.New(c.RPCClient2.Member),
  27. realnameDao: realname.New(c),
  28. mainCryptor: crypto.NewMain(rsapub, rsapriv),
  29. alipayCryptor: crypto.NewAlipay(alipub, alibilipriv),
  30. missch: make(chan func(), 1024),
  31. }
  32. go s.missproc()
  33. return
  34. }
  35. // Status get status of realname
  36. func (s *Service) Status(c context.Context, mid int64) (status int8, err error) {
  37. var (
  38. arg = &memmodel.ArgMemberMid{
  39. Mid: mid,
  40. }
  41. res *memmodel.RealnameStatus
  42. )
  43. if res, err = s.memRPC.RealnameStatus(c, arg); err != nil {
  44. return
  45. }
  46. status = int8(*res)
  47. return
  48. }
  49. // ApplyStatus return realname apply status
  50. func (s *Service) ApplyStatus(c context.Context, mid int64) (status int8, remark string, realname string, card string, err error) {
  51. var (
  52. arg = &memmodel.ArgMemberMid{
  53. Mid: mid,
  54. }
  55. res *memmodel.RealnameApplyStatusInfo
  56. )
  57. if res, err = s.memRPC.RealnameApplyStatus(c, arg); err != nil {
  58. return
  59. }
  60. status = int8(res.Status)
  61. remark = res.Remark
  62. realname, card = maskRealnameInfo(res.Realname, res.Card)
  63. return
  64. }
  65. func maskRealnameInfo(realname, card string) (r, c string) {
  66. var (
  67. rStrs = strings.Split(realname, "")
  68. cStrs = strings.Split(card, "")
  69. )
  70. if len(rStrs) > 0 {
  71. r = "*" + strings.Join(rStrs[1:], "")
  72. }
  73. if len(cStrs) > 0 {
  74. if len(cStrs) == 1 {
  75. c = "*"
  76. } else if len(cStrs) > 5 {
  77. c = cStrs[0] + strings.Repeat("*", len(cStrs)-3) + strings.Join(cStrs[len(cStrs)-2:], "")
  78. } else {
  79. c = cStrs[0] + strings.Repeat("*", len(cStrs)-1)
  80. }
  81. }
  82. return
  83. }
  84. // CountryList .
  85. func (s *Service) CountryList(c context.Context) (list []*model.RealnameCountry, err error) {
  86. list = countryList
  87. return
  88. }
  89. // CardTypes .
  90. func (s *Service) CardTypes(c context.Context, platform string, mobiapp string, device string, build int) (list []*model.RealnameCardType, err error) {
  91. if (platform == "android" && build < 512000) || (platform == "ios" && build <= 5990) {
  92. list = cardTypeOldList
  93. return
  94. }
  95. // IOS粉暂返回 5.32 版本数据,待 5.36 IOS 重新接入后,根据 build 号,返回 cardTypeList
  96. if platform == "ios" && mobiapp == "iphone" && device != "pad" {
  97. list = cardTypeOldIOSList
  98. return
  99. }
  100. list = cardTypeList
  101. return
  102. }
  103. // CardTypesV2 .
  104. func (s *Service) CardTypesV2(c context.Context) (list []*model.RealnameCardType, err error) {
  105. list = cardTypeList
  106. return
  107. }
  108. // TelCapture .
  109. func (s *Service) TelCapture(c context.Context, mid int64) (err error) {
  110. var (
  111. arg = &memmodel.ArgMemberMid{
  112. Mid: mid,
  113. }
  114. )
  115. if err = s.memRPC.RealnameTelCapture(c, arg); err != nil {
  116. return
  117. }
  118. return
  119. }
  120. // TelInfo .
  121. func (s *Service) TelInfo(c context.Context, mid int64) (tel string, err error) {
  122. if tel, err = s.realnameDao.TelInfo(c, mid); err != nil {
  123. return
  124. }
  125. if len(tel) == 0 {
  126. return
  127. }
  128. if len(tel) < 4 {
  129. tel = tel[:1] + "****"
  130. return
  131. }
  132. tel = tel[:3] + "****" + tel[len(tel)-4:]
  133. return
  134. }
  135. // Apply .
  136. func (s *Service) Apply(c context.Context, mid int64, realname string, cardType int, cardNum string, countryID int, captureCode int, handIMGToken, frontIMGToken, backIMGToken string) (err error) {
  137. var (
  138. arg = &memmodel.ArgRealnameApply{
  139. MID: mid,
  140. CaptureCode: captureCode,
  141. Realname: realname,
  142. CardType: int8(cardType),
  143. CardCode: cardNum,
  144. Country: int16(countryID),
  145. HandIMGToken: handIMGToken,
  146. FrontIMGToken: frontIMGToken,
  147. BackIMGToken: backIMGToken,
  148. }
  149. )
  150. if err = s.memRPC.RealnameApply(c, arg); err != nil {
  151. return
  152. }
  153. return
  154. }
  155. // Channel .
  156. func (s *Service) Channel(c context.Context) (channels []*model.RealnameChannel, err error) {
  157. for _, c := range conf.Conf.Realname.Channel {
  158. var (
  159. channel = &model.RealnameChannel{
  160. Name: c.Name,
  161. Flag: model.RealnameFalse,
  162. }
  163. )
  164. if c.Flag {
  165. channel.Flag = model.RealnameTrue
  166. }
  167. channels = append(channels, channel)
  168. }
  169. return
  170. }
  171. func (s *Service) addmiss(f func()) {
  172. select {
  173. case s.missch <- f:
  174. default:
  175. log.Error("eventproc chan full")
  176. }
  177. }
  178. // missproc is a routine for executing closure.
  179. func (s *Service) missproc() {
  180. defer func() {
  181. if x := recover(); x != nil {
  182. log.Error("missproc panic %+v", x)
  183. }
  184. go s.missproc()
  185. }()
  186. for {
  187. f := <-s.missch
  188. f()
  189. }
  190. }