app_info.go 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. package http
  2. import (
  3. "io/ioutil"
  4. "net/http"
  5. "strconv"
  6. usrmdl "go-common/app/service/main/usersuit/model"
  7. "go-common/library/ecode"
  8. "go-common/library/log"
  9. bm "go-common/library/net/http/blademaster"
  10. "github.com/pkg/errors"
  11. )
  12. func updateFace(c *bm.Context) {
  13. var (
  14. //ip = c.RemoteIP()
  15. mid, ok = c.Get("mid")
  16. )
  17. defer c.Request.Form.Del("face") // 防止日志不出现
  18. if !ok {
  19. c.JSON(nil, ecode.NoLogin)
  20. return
  21. }
  22. c.Request.ParseMultipartForm(32 << 20)
  23. face, err := func() ([]byte, error) {
  24. fs := c.Request.FormValue("face")
  25. if fs != "" {
  26. log.Info("Succeeded to parse face file from form value: mid: %d, length: %d", mid, len(fs))
  27. return []byte(fs), nil
  28. }
  29. log.Warn("Failed to parse face file from form value, fallback to form file: mid: %d", mid)
  30. f, _, err := c.Request.FormFile("face")
  31. if err != nil {
  32. return nil, errors.Wrapf(err, "parse face form file: mid: %d", mid)
  33. }
  34. defer f.Close()
  35. data, err := ioutil.ReadAll(f)
  36. if err != nil {
  37. return nil, errors.Wrapf(err, "read face form file: mid: %d", mid)
  38. }
  39. if len(data) <= 0 {
  40. return nil, errors.Wrapf(err, "form file data: mid: %d, length: %d", mid, len(data))
  41. }
  42. log.Info("Succeeded to parse file from form file: mid: %d, length: %d", mid, len(data))
  43. return data, nil
  44. }()
  45. if err != nil {
  46. log.Error("Failed to parse face file: mid: %d: %+v", mid, err)
  47. c.JSON(nil, ecode.RequestErr)
  48. return
  49. }
  50. log.Info("Succeeded to parse face data: mid: %d, face-length: %d", mid, len(face))
  51. if len(face) > 2*1024*1024 {
  52. c.JSON(nil, ecode.UpdateFaceSize)
  53. return
  54. }
  55. ftype := http.DetectContentType(face)
  56. if ftype != "image/jpeg" && ftype != "image/png" && ftype != "image/jp2" {
  57. c.JSON(nil, ecode.UpdateFaceFormat)
  58. return
  59. }
  60. c.JSON(memberSvc.UpdateFace(c, mid.(int64), face, ftype))
  61. }
  62. func updateSex(c *bm.Context) {
  63. var (
  64. err error
  65. sex int64
  66. //ip = c.RemoteIP()
  67. params = c.Request.Form
  68. mid, ok = c.Get("mid")
  69. )
  70. if !ok {
  71. c.JSON(nil, ecode.NoLogin)
  72. return
  73. }
  74. if sex, err = strconv.ParseInt(params.Get("sex"), 10, 64); err != nil {
  75. c.JSON(nil, ecode.RequestErr)
  76. return
  77. }
  78. c.JSON(nil, memberSvc.UpdateSex(c, mid.(int64), sex))
  79. }
  80. func updateSign(c *bm.Context) {
  81. var (
  82. //ip = c.RemoteIP()
  83. params = c.Request.Form
  84. mid, ok = c.Get("mid")
  85. )
  86. if !ok {
  87. c.JSON(nil, ecode.NoLogin)
  88. return
  89. }
  90. sign := params.Get("user_sign")
  91. c.JSON(nil, memberSvc.UpdateSign(c, mid.(int64), sign))
  92. }
  93. func updateBirthday(c *bm.Context) {
  94. var (
  95. birthday string
  96. //ip = c.RemoteIP()
  97. params = c.Request.Form
  98. mid, ok = c.Get("mid")
  99. )
  100. if !ok {
  101. c.JSON(nil, ecode.NoLogin)
  102. return
  103. }
  104. if birthday = params.Get("birthday"); len(birthday) == 0 {
  105. c.JSON(nil, ecode.RequestErr)
  106. return
  107. }
  108. c.JSON(nil, memberSvc.UpdateBirthday(c, mid.(int64), birthday))
  109. }
  110. func updateUname(c *bm.Context) {
  111. var (
  112. uname string
  113. //ip = c.RemoteIP()
  114. params = c.Request.Form
  115. mid, ok = c.Get("mid")
  116. )
  117. if !ok {
  118. c.JSON(nil, ecode.NoLogin)
  119. return
  120. }
  121. if uname = params.Get("uname"); len(uname) == 0 {
  122. c.JSON(nil, ecode.RequestErr)
  123. return
  124. }
  125. c.JSON(nil, memberSvc.UpdateName(c, mid.(int64), uname, params.Get("appkey")))
  126. }
  127. func nickFree(c *bm.Context) {
  128. var (
  129. mid, ok = c.Get("mid")
  130. //ip = c.RemoteIP()
  131. )
  132. if !ok {
  133. c.JSON(nil, ecode.NoLogin)
  134. return
  135. }
  136. c.JSON(memberSvc.NickFree(c, mid.(int64)))
  137. }
  138. func pendantEquip(c *bm.Context) {
  139. var (
  140. mid, ok = c.Get("mid")
  141. params = c.Request.Form
  142. err error
  143. pid int64
  144. status int64
  145. source int64
  146. )
  147. if !ok {
  148. c.JSON(nil, ecode.NoLogin)
  149. return
  150. }
  151. if pid, err = strconv.ParseInt(params.Get("pid"), 10, 64); err != nil {
  152. c.JSON(nil, ecode.RequestErr)
  153. return
  154. }
  155. if status, err = strconv.ParseInt(params.Get("status"), 10, 64); err != nil || (status != usrmdl.PendantPutOn && status != usrmdl.PendantPickOff) {
  156. c.JSON(nil, ecode.RequestErr)
  157. return
  158. }
  159. // source 挂件来源 可选, 默认0, 0未知 1 背包挂件 2大会员挂件
  160. source = usrmdl.ParseSource(params.Get("source"))
  161. c.JSON(nil, usSvc.Equip(c, mid.(int64), pid, int8(status), source))
  162. }