token.api 2.8 KB

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