response.go 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. package dto
  2. import (
  3. "github.com/gin-gonic/gin"
  4. "log"
  5. "net/http"
  6. "runtime/debug"
  7. )
  8. func BadRequest(c *gin.Context, err error) {
  9. log.Printf("err: %+v", err)
  10. debug.PrintStack()
  11. c.JSON(http.StatusBadRequest, Response{
  12. Status: 0,
  13. Message: err.Error(),
  14. })
  15. }
  16. func Error(c *gin.Context, err error) {
  17. log.Printf("err: %+v", err)
  18. debug.PrintStack()
  19. c.JSON(http.StatusInternalServerError, Response{
  20. Status: 0,
  21. Message: err.Error(),
  22. })
  23. }
  24. func NewOkResponse() Response {
  25. return Response{Status: 1, Message: "ok"}
  26. }
  27. type Response struct {
  28. Status int `json:"status"`
  29. Message string `json:"message"`
  30. }
  31. type RegisterResponse struct {
  32. Response
  33. Data RegisterResult `json:"data"`
  34. }
  35. type RegisterResult struct {
  36. Success bool `json:"success"`
  37. }
  38. type ListResponse struct {
  39. Response
  40. Data []*Node `json:"data"`
  41. }
  42. type DetailResponse struct {
  43. Response
  44. Data Node `json:"data"`
  45. }
  46. type Node struct {
  47. CountryCode string `json:"countryCode"`
  48. CountryName string `json:"countryName"`
  49. City string `json:"city"`
  50. CountryLabel string `json:"countryLabel"`
  51. Ip string `json:"ip"`
  52. Icon string `json:"icon"`
  53. SecretUrl string `json:"secretUrl"`
  54. Continent string `json:"continent"`
  55. Vip bool `json:"vip"`
  56. }
  57. type GroupResponse struct {
  58. Response
  59. Data []*Group `json:"data"`
  60. }
  61. type Group struct {
  62. Continent string `json:"continent"`
  63. Nodes []*Node `json:"nodes"`
  64. }
  65. type ConfigResponse struct {
  66. Response
  67. Data ConfigResult `json:"data"`
  68. }
  69. type ConfigResult struct {
  70. FreeTrialDuration uint64 `json:"freeTrialDuration"`
  71. Timestamp int64 `json:"timestamp"`
  72. Node *Node `json:"node"`
  73. }