pendant.go 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. package http
  2. import (
  3. "go-common/library/ecode"
  4. bm "go-common/library/net/http/blademaster"
  5. "strconv"
  6. )
  7. func pendantAll(c *bm.Context) {
  8. mid, ok := c.Get("mid")
  9. //ip := c.RemoteIP()
  10. if !ok {
  11. c.JSON(nil, ecode.AccountNotLogin)
  12. return
  13. }
  14. c.JSON(usSvc.Group(c, mid.(int64)))
  15. }
  16. func pendantMy(c *bm.Context) {
  17. mid, ok := c.Get("mid")
  18. //ip := c.RemoteIP()
  19. if !ok {
  20. c.JSON(nil, ecode.AccountNotLogin)
  21. return
  22. }
  23. c.JSON(usSvc.My(c, mid.(int64)))
  24. }
  25. func pendantMyHistory(c *bm.Context) {
  26. //ip := c.RemoteIP()
  27. mid, ok := c.Get("mid")
  28. pageStr := c.Request.Form.Get("page")
  29. if !ok {
  30. c.JSON(nil, ecode.AccountNotLogin)
  31. return
  32. }
  33. page, _ := strconv.ParseInt(pageStr, 10, 64)
  34. c.JSON(usSvc.MyHistory(c, mid.(int64), page))
  35. }
  36. func pendantCurrent(c *bm.Context) {
  37. mid, ok := c.Get("mid")
  38. //ip := c.RemoteIP()
  39. if !ok {
  40. c.JSON(nil, ecode.AccountNotLogin)
  41. return
  42. }
  43. c.JSON(usSvc.Equipment(c, mid.(int64)))
  44. }
  45. func pendantEntry(c *bm.Context) {
  46. mid, ok := c.Get("mid")
  47. //ip := c.RemoteIP()
  48. if !ok {
  49. c.JSON(nil, ecode.AccountNotLogin)
  50. return
  51. }
  52. c.JSON(usSvc.GroupEntry(c, mid.(int64)))
  53. }
  54. func pendantSingle(c *bm.Context) {
  55. pidStr := c.Request.Form.Get("pid")
  56. //ip := c.RemoteIP()
  57. pid, err := strconv.ParseInt(pidStr, 10, 64)
  58. if err != nil {
  59. c.JSON(nil, err)
  60. return
  61. }
  62. c.JSON(usSvc.Pendant(c, pid))
  63. }
  64. func pendantVIP(c *bm.Context) {
  65. mid, ok := c.Get("mid")
  66. //ip := c.RemoteIP()
  67. if !ok {
  68. c.JSON(nil, ecode.AccountNotLogin)
  69. return
  70. }
  71. c.JSON(usSvc.GroupVIP(c, mid.(int64)))
  72. }
  73. func pendantCheckOrder(c *bm.Context) {
  74. mid, ok := c.Get("mid")
  75. //ip := c.RemoteIP()
  76. if !ok {
  77. c.JSON(nil, ecode.AccountNotLogin)
  78. return
  79. }
  80. orderID := c.Request.Form.Get("orderId")
  81. c.JSON(nil, usSvc.CheckOrder(c, mid.(int64), orderID))
  82. }
  83. func pendantVIPGet(c *bm.Context) {
  84. params := c.Request.Form
  85. mid, ok := c.Get("mid")
  86. //ip := c.RemoteIP()
  87. if !ok {
  88. c.JSON(nil, ecode.AccountNotLogin)
  89. return
  90. }
  91. pidStr := params.Get("pid")
  92. pid, err := strconv.ParseInt(pidStr, 10, 64)
  93. if err != nil {
  94. c.JSON(nil, err)
  95. return
  96. }
  97. if pid == 0 {
  98. c.JSON(nil, ecode.RequestErr)
  99. return
  100. }
  101. activatedStr := params.Get("isActivated")
  102. activated, err := strconv.Atoi(activatedStr)
  103. if err != nil {
  104. c.JSON(nil, err)
  105. return
  106. }
  107. if activated == 0 {
  108. activated = 1
  109. } else {
  110. activated = 2
  111. }
  112. c.JSON(nil, usSvc.VipGet(c, mid.(int64), pid, int8(activated)))
  113. }
  114. func pendantOrder(c *bm.Context) {
  115. params := c.Request.Form
  116. mid, ok := c.Get("mid")
  117. //ip := c.RemoteIP()
  118. if !ok {
  119. c.JSON(nil, ecode.AccountNotLogin)
  120. return
  121. }
  122. pidStr := params.Get("pid")
  123. pid, err := strconv.ParseInt(pidStr, 10, 64)
  124. if err != nil {
  125. c.JSON(nil, err)
  126. return
  127. }
  128. timeLengthStr := params.Get("timeLength")
  129. timeLength, err := strconv.ParseInt(timeLengthStr, 10, 64)
  130. if err != nil {
  131. c.JSON(nil, err)
  132. return
  133. }
  134. if pid <= 0 || timeLength <= 0 {
  135. c.JSON(nil, ecode.RequestErr)
  136. return
  137. }
  138. var (
  139. moneyType int8
  140. moneyTypeStr string
  141. )
  142. moneyTypeStr = params.Get("moneyType")
  143. switch moneyTypeStr {
  144. case "coin":
  145. moneyType = 0
  146. case "bcoin":
  147. moneyType = 1
  148. case "point":
  149. moneyType = 2
  150. default:
  151. c.JSON(nil, ecode.PendantPayTypeErr)
  152. return
  153. }
  154. c.JSON(usSvc.Order(c, mid.(int64), pid, timeLength, moneyType))
  155. }