up.go 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. package http
  2. import (
  3. "go-common/library/ecode"
  4. bm "go-common/library/net/http/blademaster"
  5. "go-common/library/net/metadata"
  6. "strconv"
  7. )
  8. func upPorder(c *bm.Context) {
  9. params := c.Request.Form
  10. aidStr := params.Get("aid")
  11. aid, err := strconv.ParseInt(aidStr, 10, 64)
  12. if err != nil || aid <= 0 {
  13. c.JSON(nil, ecode.RequestErr)
  14. return
  15. }
  16. pd, err := arcSvc.Porder(c, aid)
  17. if err != nil {
  18. c.JSON(nil, err)
  19. return
  20. }
  21. if pd == nil || pd.ID == 0 {
  22. c.JSON(nil, ecode.NothingFound)
  23. return
  24. }
  25. c.JSON(pd, nil)
  26. }
  27. func arcOrderGameInfo(c *bm.Context) {
  28. params := c.Request.Form
  29. aidStr := params.Get("aid")
  30. aid, err := strconv.ParseInt(aidStr, 10, 64)
  31. if err != nil || aid <= 0 {
  32. c.JSON(nil, ecode.RequestErr)
  33. return
  34. }
  35. platformStr := params.Get("platform")
  36. platform, err := strconv.Atoi(platformStr)
  37. if err != nil || platform <= 0 {
  38. c.JSON(nil, ecode.RequestErr)
  39. return
  40. }
  41. ip := metadata.String(c, metadata.RemoteIP)
  42. gameInfo, err := arcSvc.ArcOrderGameInfo(c, aid, platform, ip)
  43. if err != nil {
  44. c.JSON(nil, err)
  45. return
  46. }
  47. if gameInfo == nil {
  48. c.JSON(nil, ecode.NothingFound)
  49. return
  50. }
  51. c.JSON(gameInfo, nil)
  52. }