token.api 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  1. import "../base.api"
  2. type (
  3. // The data of token information | Token信息
  4. TokenInfo {
  5. BaseIDInfo
  6. // 过期时间
  7. ExpireAt *int64 `json:"expireAt,optional"`
  8. ExpireAtStr *string `json:"expireAtStr,optional"`
  9. // Token
  10. Token *string `json:"token,optional"`
  11. // Mac地址
  12. Mac *string `json:"mac,optional"`
  13. // 租户ID
  14. OrganizationId *uint64 `json:"organization_id,optional"`
  15. }
  16. // The response data of token list | Token列表数据
  17. TokenListResp {
  18. BaseDataInfo
  19. // Token list data | Token列表数据
  20. Data TokenListInfo `json:"data"`
  21. }
  22. // Token list data | Token列表数据
  23. TokenListInfo {
  24. BaseListInfo
  25. // The API list data | Token列表数据
  26. Data []TokenInfo `json:"data"`
  27. }
  28. // Get token list request params | Token列表请求参数
  29. TokenListReq {
  30. PageInfo
  31. // Token
  32. Token *string `json:"token,optional"`
  33. // Mac地址
  34. Mac *string `json:"mac,optional"`
  35. }
  36. // Token information response | Token信息返回体
  37. TokenInfoResp {
  38. BaseDataInfo
  39. // Token information | Token数据
  40. Data TokenInfo `json:"data"`
  41. }
  42. CheckTokenReq {
  43. // Token
  44. Token *string `json:"token"`
  45. // Mac地址
  46. Mac *string `json:"mac"`
  47. }
  48. CheckTokenResp {
  49. // 是否合法
  50. Valid *bool `json:"valid"`
  51. // Sign 签名内容
  52. Sign *string `json:"sign"`
  53. // Timestamp 时间戳
  54. Timestamp *int64 `json:"timestamp"`
  55. }
  56. )
  57. @server(
  58. group: token
  59. )
  60. service Wechat {
  61. // Check if token and mac are valid | 检查token和mac的合法性
  62. @handler checkToken
  63. post /token/check (CheckTokenReq) returns (CheckTokenResp)
  64. }
  65. @server(
  66. group: token
  67. jwt: Auth
  68. middleware: Authority
  69. )
  70. service Wechat {
  71. // Create token information | 创建Token
  72. @handler createToken
  73. post /token/third/create (TokenInfo) returns (BaseMsgResp)
  74. // Update token information | 更新Token
  75. @handler updateToken
  76. post /token/third/update (TokenInfo) returns (BaseMsgResp)
  77. // Delete token information | 删除Token信息
  78. @handler deleteToken
  79. post /token/third/delete (IDsReq) returns (BaseMsgResp)
  80. // Get token list | 获取Token列表
  81. @handler getTokenList
  82. post /token/third/list (TokenListReq) returns (TokenListResp)
  83. // Get token by ID | 通过ID获取Token
  84. @handler getTokenById
  85. post /token/third/detail (IDReq) returns (TokenInfoResp)
  86. }