jrebelstruct.go 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. package main
  2. import "encoding/json"
  3. var jRebelLeases JRebelLeasesStruct
  4. var jrebelLeases1 JrebelLeases1Struct
  5. var jrebelValidate JrebelValidateStruct
  6. func init() {
  7. _ = json.Unmarshal([]byte(jrebelLeasesJson), &jRebelLeases)
  8. _ = json.Unmarshal([]byte(jrebelLeases1Json), &jrebelLeases1)
  9. _ = json.Unmarshal([]byte(jrebelValidateJson), &jrebelValidate)
  10. }
  11. //language=JSON
  12. const jrebelLeasesJson = `{
  13. "serverVersion": "3.2.4",
  14. "serverProtocolVersion": "1.1",
  15. "serverGuid": "a1b4aea8-b031-4302-b602-670a990272cb",
  16. "groupType": "managed",
  17. "id": 1,
  18. "licenseType": 1,
  19. "evaluationLicense": false,
  20. "signature": "OJE9wGg2xncSb+VgnYT+9HGCFaLOk28tneMFhCbpVMKoC/Iq4LuaDKPirBjG4o394/UjCDGgTBpIrzcXNPdVxVr8PnQzpy7ZSToGO8wv/KIWZT9/ba7bDbA8/RZ4B37YkCeXhjaixpmoyz/CIZMnei4q7oWR7DYUOlOcEWDQhiY=",
  21. "serverRandomness": "H2ulzLlh7E0=",
  22. "seatPoolType": "standalone",
  23. "statusCode": "SUCCESS",
  24. "offline": false,
  25. "validFrom": null,
  26. "validUntil": null,
  27. "company": "Administrator",
  28. "orderId": "",
  29. "zeroIds": [
  30. ],
  31. "licenseValidFrom": 1490544001000,
  32. "licenseValidUntil": 1691839999000
  33. }`
  34. type JRebelLeasesStruct struct {
  35. ServerVersion string `json:"serverVersion"`
  36. ServerProtocolVersion string `json:"serverProtocolVersion"`
  37. ServerGUID string `json:"serverGuid"`
  38. GroupType string `json:"groupType"`
  39. ID int `json:"id"`
  40. LicenseType int `json:"licenseType"`
  41. EvaluationLicense bool `json:"evaluationLicense"`
  42. Signature string `json:"signature"`
  43. ServerRandomness string `json:"serverRandomness"`
  44. SeatPoolType string `json:"seatPoolType"`
  45. StatusCode string `json:"statusCode"`
  46. Offline bool `json:"offline"`
  47. ValidFrom int64 `json:"validFrom"`
  48. ValidUntil int64 `json:"validUntil"`
  49. Company string `json:"company"`
  50. OrderID string `json:"orderId"`
  51. ZeroIds []interface{} `json:"zeroIds"`
  52. LicenseValidFrom int64 `json:"licenseValidFrom"`
  53. LicenseValidUntil int64 `json:"licenseValidUntil"`
  54. }
  55. //language=JSON
  56. const jrebelLeases1Json = `{
  57. "serverVersion": "3.2.4",
  58. "serverProtocolVersion": "1.1",
  59. "serverGuid": "a1b4aea8-b031-4302-b602-670a990272cb",
  60. "groupType": "managed",
  61. "statusCode": "SUCCESS",
  62. "msg": null,
  63. "statusMessage": null
  64. }
  65. `
  66. type JrebelLeases1Struct struct {
  67. ServerVersion string `json:"serverVersion"`
  68. ServerProtocolVersion string `json:"serverProtocolVersion"`
  69. ServerGUID string `json:"serverGuid"`
  70. GroupType string `json:"groupType"`
  71. StatusCode string `json:"statusCode"`
  72. Company string `json:"company"`
  73. Msg interface{} `json:"msg"`
  74. StatusMessage interface{} `json:"statusMessage"`
  75. }
  76. //language=JSON
  77. const jrebelValidateJson = `{
  78. "serverVersion": "3.2.4",
  79. "serverProtocolVersion": "1.1",
  80. "serverGuid": "a1b4aea8-b031-4302-b602-670a990272cb",
  81. "groupType": "managed",
  82. "statusCode": "SUCCESS",
  83. "company": "Administrator",
  84. "canGetLease": true,
  85. "licenseType": 1,
  86. "evaluationLicense": false,
  87. "seatPoolType": "standalone"
  88. }
  89. `
  90. type JrebelValidateStruct struct {
  91. ServerVersion string `json:"serverVersion"`
  92. ServerProtocolVersion string `json:"serverProtocolVersion"`
  93. ServerGUID string `json:"serverGuid"`
  94. GroupType string `json:"groupType"`
  95. StatusCode string `json:"statusCode"`
  96. Company string `json:"company"`
  97. CanGetLease bool `json:"canGetLease"`
  98. LicenseType int `json:"licenseType"`
  99. EvaluationLicense bool `json:"evaluationLicense"`
  100. SeatPoolType string `json:"seatPoolType"`
  101. }