Skip to content

Commit

Permalink
增加refresh_token存活检测
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinlic committed Apr 10, 2024
1 parent 83a8c00 commit f01006c
Show file tree
Hide file tree
Showing 4 changed files with 87 additions and 9 deletions.
37 changes: 29 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ Moonshot AI(Kimi.ai)接口转API [kimi-free-api](https://github.com/LLM-Red-
* [AI绘图](#AI绘图)
* [文档解读](#文档解读)
* [图像解析](#图像解析)
* [refresh_token存活检测](#refresh_token存活检测)
* [注意事项](#注意事项)
* [Nginx反代优化](#Nginx反代优化)

Expand All @@ -62,37 +63,37 @@ https://udify.app/chat/Pe89TtaX3rKXM8NS

## 效果示例

### 验明正身
### 验明正身Demo

![验明正身](./doc/example-1.png)

### 智能体对话
### 智能体对话Demo

对应智能体链接:[网抑云评论生成器](https://chatglm.cn/main/gdetail/65c046a531d3fcb034918abe)

![智能体对话](./doc/example-9.png)

### 多轮对话
### 多轮对话Demo

![多轮对话](./doc/example-6.png)

### AI绘图
### AI绘图Demo

![AI绘图](./doc/example-10.png)

### 联网搜索
### 联网搜索Demo

![联网搜索](./doc/example-2.png)

### 长文档解读
### 长文档解读Demo

![长文档解读](./doc/example-5.png)

### 代码调用
### 代码调用Demo

![代码调用](./doc/example-12.png)

### 图像解析
### 图像解析Demo

![图像解析](./doc/example-3.png)

Expand Down Expand Up @@ -428,6 +429,26 @@ Authorization: Bearer [refresh_token]
}
```

### refresh_token存活检测

检测refresh_token是否存活,如果存活live未true,否则为false,请不要频繁(小于10分钟)调用此接口。

**POST /token/check**

请求数据:
```json
{
"token": "eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9..."
}
```

响应数据:
```json
{
"live": true
}
```

## 注意事项

### Nginx反代优化
Expand Down
30 changes: 30 additions & 0 deletions src/api/controllers/chat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1118,9 +1118,39 @@ function generateCookie(refreshToken: string, token: string) {
};
}

/**
* 获取Token存活状态
*/
async function getTokenLiveStatus(refreshToken: string) {
const result = await axios.post(
"https://chatglm.cn/chatglm/backend-api/v1/user/refresh",
{},
{
headers: {
Authorization: `Bearer ${refreshToken}`,
Referer: "https://chatglm.cn/main/alltoolsdetail",
"X-Device-Id": util.uuid(false),
"X-Request-Id": util.uuid(false),
...FAKE_HEADERS,
},
timeout: 15000,
validateStatus: () => true,
}
);
try {
const { result: _result } = checkResult(result, refreshToken);
const { accessToken } = _result;
return !!accessToken;
}
catch(err) {
return false;
}
}

export default {
createCompletion,
createCompletionStream,
generateImages,
getTokenLiveStatus,
tokenSplit,
};
4 changes: 3 additions & 1 deletion src/api/routes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Response from '@/lib/response/Response.ts';
import chat from "./chat.ts";
import images from "./images.ts";
import ping from "./ping.ts";
import token from './token.js';

export default [
{
Expand All @@ -21,5 +22,6 @@ export default [
},
chat,
images,
ping
ping,
token
];
25 changes: 25 additions & 0 deletions src/api/routes/token.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import _ from 'lodash';

import Request from '@/lib/request/Request.ts';
import Response from '@/lib/response/Response.ts';
import chat from '@/api/controllers/chat.ts';
import logger from '@/lib/logger.ts';

export default {

prefix: '/token',

post: {

'/check': async (request: Request) => {
request
.validate('body.token', _.isString)
const live = await chat.getTokenLiveStatus(request.body.token);
return {
live
}
}

}

}

0 comments on commit f01006c

Please sign in to comment.