web_info.go 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. package http
  2. import (
  3. "strconv"
  4. "go-common/app/interface/main/account/model"
  5. "go-common/library/ecode"
  6. "go-common/library/log"
  7. bm "go-common/library/net/http/blademaster"
  8. )
  9. // replyHistoryList
  10. func replyHistoryList(c *bm.Context) {
  11. var (
  12. err error
  13. //ip = c.RemoteIP()
  14. header = c.Request.Header
  15. params = c.Request.Form
  16. mid, _ = c.Get("mid")
  17. cookie = header.Get("Cookie")
  18. accessKey = params.Get("access_key")
  19. stime = params.Get("stime")
  20. etime = params.Get("etime")
  21. order = params.Get("order")
  22. sort = params.Get("sort")
  23. pnStr = params.Get("pn")
  24. psStr = params.Get("ps")
  25. pn, ps int64
  26. )
  27. if pnStr != "" {
  28. if pn, err = strconv.ParseInt(pnStr, 10, 64); err != nil {
  29. c.JSON(nil, ecode.RequestErr)
  30. return
  31. }
  32. }
  33. if psStr != "" {
  34. if ps, err = strconv.ParseInt(psStr, 10, 64); err != nil {
  35. c.JSON(nil, ecode.RequestErr)
  36. return
  37. }
  38. }
  39. c.JSON(memberSvc.ReplyHistoryList(c, mid.(int64), stime, etime, order, sort, pn, ps, accessKey, cookie))
  40. }
  41. // updateSettings
  42. func update(c *bm.Context) {
  43. var (
  44. params = c.Request.Form
  45. mid, ok = c.Get("mid")
  46. //ip = c.RemoteIP()
  47. unameStr = params.Get("uname")
  48. signStr = params.Get("usersign")
  49. sexStr = params.Get("sex")
  50. birthdayStr = params.Get("birthday")
  51. )
  52. if !ok {
  53. c.JSON(nil, ecode.NoLogin)
  54. return
  55. }
  56. settings := &model.Settings{
  57. Uname: unameStr,
  58. Sign: signStr,
  59. Sex: sexStr,
  60. Birthday: birthdayStr,
  61. }
  62. log.Error("request(%v)", settings)
  63. c.JSON(nil, memberSvc.UpdateSettings(c, mid.(int64), settings))
  64. }
  65. func account(c *bm.Context) {
  66. var (
  67. //ip = c.RemoteIP()
  68. mid, ok = c.Get("mid")
  69. )
  70. if !ok {
  71. c.JSON(nil, ecode.NoLogin)
  72. return
  73. }
  74. c.JSON(memberSvc.SettingsInfo(c, mid.(int64)))
  75. }
  76. // logCoin
  77. func logCoin(c *bm.Context) {
  78. var (
  79. //ip = c.RemoteIP()
  80. mid, ok = c.Get("mid")
  81. )
  82. if !ok {
  83. c.JSON(nil, ecode.NoLogin)
  84. return
  85. }
  86. c.JSON(memberSvc.LogCoin(c, mid.(int64)))
  87. }
  88. // coin
  89. func coin(c *bm.Context) {
  90. var (
  91. //ip = c.RemoteIP()
  92. mid, ok = c.Get("mid")
  93. )
  94. if !ok {
  95. c.JSON(nil, ecode.NoLogin)
  96. return
  97. }
  98. c.JSON(memberSvc.Coin(c, mid.(int64)))
  99. }
  100. func logMoral(c *bm.Context) {
  101. var (
  102. //ip = c.RemoteIP()
  103. mid, ok = c.Get("mid")
  104. )
  105. if !ok {
  106. c.JSON(nil, ecode.NoLogin)
  107. return
  108. }
  109. c.JSON(memberSvc.LogMoral(c, mid.(int64)))
  110. }
  111. func logExp(c *bm.Context) {
  112. var (
  113. //ip = c.RemoteIP()
  114. mid, ok = c.Get("mid")
  115. )
  116. if !ok {
  117. c.JSON(nil, ecode.NoLogin)
  118. return
  119. }
  120. c.JSON(memberSvc.LogExp(c, mid.(int64)))
  121. }
  122. // logLogin
  123. func logLogin(c *bm.Context) {
  124. var (
  125. //ip = c.RemoteIP()
  126. mid, ok = c.Get("mid")
  127. )
  128. if !ok {
  129. c.JSON(nil, ecode.NoLogin)
  130. return
  131. }
  132. c.JSON(memberSvc.LogLogin(c, mid.(int64)))
  133. }
  134. func reward(c *bm.Context) {
  135. var (
  136. //ip = c.RemoteIP()
  137. mid, ok = c.Get("mid")
  138. )
  139. if !ok {
  140. c.JSON(nil, ecode.NoLogin)
  141. return
  142. }
  143. c.JSON(memberSvc.Reward(c, mid.(int64)))
  144. }