member.go 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. package http
  2. import (
  3. "io/ioutil"
  4. "net/http"
  5. "go-common/app/interface/main/account/model"
  6. "go-common/library/ecode"
  7. "go-common/library/log"
  8. bm "go-common/library/net/http/blademaster"
  9. )
  10. func identifyInfo(c *bm.Context) {
  11. mid, ok := c.Get("mid")
  12. if !ok {
  13. c.JSON(nil, ecode.RequestErr)
  14. return
  15. }
  16. var (
  17. resData struct {
  18. Status model.IdentifyStatus `json:"identification"`
  19. }
  20. status int8
  21. err error
  22. )
  23. if status, err = realnameSvc.Status(c, mid.(int64)); err != nil {
  24. log.Error("%+v", err)
  25. c.JSON(nil, err)
  26. return
  27. }
  28. switch status {
  29. case 1:
  30. resData.Status = model.IdentifyOK
  31. case 0:
  32. resData.Status = model.IdentifyNotOK
  33. }
  34. c.JSON(resData, nil)
  35. }
  36. func submitOffical(c *bm.Context) {
  37. mid, ok := c.Get("mid")
  38. if !ok {
  39. c.JSON(nil, ecode.RequestErr)
  40. return
  41. }
  42. params := new(model.OfficialApply)
  43. if err := c.Bind(params); err != nil {
  44. return
  45. }
  46. c.JSON(nil, memberSvc.SubmitOfficial(c, mid.(int64), params))
  47. }
  48. func officialDoc(c *bm.Context) {
  49. mid, ok := c.Get("mid")
  50. if !ok {
  51. c.JSON(nil, ecode.RequestErr)
  52. return
  53. }
  54. c.JSON(memberSvc.OfficialDoc(c, mid.(int64)))
  55. }
  56. func officialConditions(c *bm.Context) {
  57. mid, ok := c.Get("mid")
  58. if !ok {
  59. c.JSON(nil, ecode.RequestErr)
  60. return
  61. }
  62. c.JSON(memberSvc.OfficialConditions(c, mid.(int64)))
  63. }
  64. func uploadImage(c *bm.Context) {
  65. midI, _ := c.Get("mid")
  66. mid := midI.(int64)
  67. log.Infov(c, log.KV("log", "account-interface: upload image"), log.KV("mid", mid))
  68. file, _, err := c.Request.FormFile("file")
  69. if err != nil {
  70. c.JSON(nil, ecode.RequestErr)
  71. return
  72. }
  73. defer file.Close()
  74. bs, err := ioutil.ReadAll(file)
  75. if err != nil {
  76. c.JSON(nil, ecode.RequestErr)
  77. return
  78. }
  79. ftype := http.DetectContentType(bs)
  80. if ftype != "image/jpeg" && ftype != "image/jpg" && ftype != "image/png" && ftype != "image/gif" {
  81. log.Error("account-interface: file type not allow file type(%s, mid: %v)", ftype, mid)
  82. c.JSON(nil, ecode.RequestErr)
  83. return
  84. }
  85. url, err := memberSvc.UploadImage(c, ftype, bs)
  86. if err != nil {
  87. c.JSON(nil, err)
  88. return
  89. }
  90. c.JSON(map[string]interface{}{
  91. "url": url,
  92. "size": len(bs),
  93. }, nil)
  94. }
  95. func mobileVerify(c *bm.Context) {
  96. midI, _ := c.Get("mid")
  97. arg := &model.ArgMobileVerify{}
  98. if err := c.Bind(arg); err != nil {
  99. return
  100. }
  101. if arg.Country == 0 {
  102. arg.Country = 86
  103. }
  104. c.JSON(nil, memberSvc.MobileVerify(c, midI.(int64), arg.Mobile, arg.Country))
  105. }
  106. func officialPermission(ctx *bm.Context) {
  107. resp := &model.OfficialPermissionResponse{
  108. DeniedRoles: []int8{},
  109. Metadata: map[string]interface{}{},
  110. }
  111. ctx.JSON(resp, nil)
  112. }
  113. func monthlyOfficialSubmittedTimes(ctx *bm.Context) {
  114. midI, _ := ctx.Get("mid")
  115. ctx.JSON(memberSvc.MonthlyOfficialSubmittedTimes(ctx, midI.(int64)), nil)
  116. }
  117. func officialAutoFillDoc(ctx *bm.Context) {
  118. midI, _ := ctx.Get("mid")
  119. ctx.JSON(memberSvc.OfficialAutoFillDoc(ctx, midI.(int64)))
  120. }