Spaces:
Sleeping
Sleeping
kevin commited on
Commit ·
bf17fd9
1
Parent(s): 7336a39
ds2api
Browse files- src/api/consts/exceptions.ts +11 -0
- src/api/controllers/chat.ts +1237 -0
- src/api/routes/chat.ts +36 -0
- src/api/routes/index.ts +27 -0
- src/api/routes/models.ts +26 -0
- src/api/routes/ping.ts +6 -0
- src/api/routes/token.ts +25 -0
- src/daemon.ts +82 -0
- src/index.ts +32 -0
- src/lib/challenge.ts +135 -0
- src/lib/config.ts +14 -0
- src/lib/configs/service-config.ts +68 -0
- src/lib/configs/system-config.ts +84 -0
- src/lib/consts/exceptions.ts +5 -0
- src/lib/environment.ts +44 -0
- src/lib/exceptions/APIException.ts +14 -0
- src/lib/exceptions/Exception.ts +47 -0
- src/lib/http-status-codes.ts +61 -0
- src/lib/initialize.ts +30 -0
- src/lib/interfaces/ICompletionMessage.ts +4 -0
- src/lib/logger.ts +184 -0
- src/lib/request/Request.ts +72 -0
- src/lib/response/Body.ts +41 -0
- src/lib/response/FailureBody.ts +31 -0
- src/lib/response/Response.ts +63 -0
- src/lib/response/SuccessfulBody.ts +19 -0
- src/lib/server.ts +173 -0
- src/lib/util.ts +307 -0
- src/workers/challengeWorker.ts +31 -0
src/api/consts/exceptions.ts
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export default {
|
| 2 |
+
API_TEST: [-9999, 'API异常错误'],
|
| 3 |
+
API_REQUEST_PARAMS_INVALID: [-2000, '请求参数非法'],
|
| 4 |
+
API_REQUEST_FAILED: [-2001, '请求失败'],
|
| 5 |
+
API_TOKEN_EXPIRES: [-2002, 'Token已失效'],
|
| 6 |
+
API_FILE_URL_INVALID: [-2003, '远程文件URL非法'],
|
| 7 |
+
API_FILE_EXECEEDS_SIZE: [-2004, '远程文件超出大小'],
|
| 8 |
+
API_CHAT_STREAM_PUSHING: [-2005, '已有对话流正在输出'],
|
| 9 |
+
API_CONTENT_FILTERED: [-2006, '内容由于合规问题已被阻止生成'],
|
| 10 |
+
API_IMAGE_GENERATION_FAILED: [-2007, '图像生成失败']
|
| 11 |
+
}
|
src/api/controllers/chat.ts
ADDED
|
@@ -0,0 +1,1237 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import { PassThrough } from "stream";
|
| 2 |
+
import _ from "lodash";
|
| 3 |
+
import axios, { AxiosResponse } from "axios";
|
| 4 |
+
|
| 5 |
+
import APIException from "@/lib/exceptions/APIException.ts";
|
| 6 |
+
import EX from "@/api/consts/exceptions.ts";
|
| 7 |
+
import { createParser } from "eventsource-parser";
|
| 8 |
+
import { DeepSeekHash } from "@/lib/challenge.ts";
|
| 9 |
+
import logger from "@/lib/logger.ts";
|
| 10 |
+
import util from "@/lib/util.ts";
|
| 11 |
+
|
| 12 |
+
// 模型名称
|
| 13 |
+
const MODEL_NAME = "deepseek-chat";
|
| 14 |
+
// 插冷鸡WASM文件路径
|
| 15 |
+
const WASM_PATH = './sha3_wasm_bg.7b9ca65ddd.wasm';
|
| 16 |
+
// access_token有效期
|
| 17 |
+
const ACCESS_TOKEN_EXPIRES = 3600;
|
| 18 |
+
// 最大重试次数
|
| 19 |
+
const MAX_RETRY_COUNT = 3;
|
| 20 |
+
// 重试延迟
|
| 21 |
+
const RETRY_DELAY = 5000;
|
| 22 |
+
// 伪装headers
|
| 23 |
+
const FAKE_HEADERS = {
|
| 24 |
+
Accept: "*/*",
|
| 25 |
+
"Accept-Encoding": "gzip, deflate, br, zstd",
|
| 26 |
+
"Accept-Language": "zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7",
|
| 27 |
+
Origin: "https://chat.deepseek.com",
|
| 28 |
+
Pragma: "no-cache",
|
| 29 |
+
Priority: "u=1, i",
|
| 30 |
+
Referer: "https://chat.deepseek.com/",
|
| 31 |
+
"Sec-Ch-Ua":
|
| 32 |
+
'"Chromium";v="130", "Google Chrome";v="130", "Not?A_Brand";v="99"',
|
| 33 |
+
"Sec-Ch-Ua-Mobile": "?0",
|
| 34 |
+
"Sec-Ch-Ua-Platform": '"Windows"',
|
| 35 |
+
"Sec-Fetch-Dest": "empty",
|
| 36 |
+
"Sec-Fetch-Mode": "cors",
|
| 37 |
+
"Sec-Fetch-Site": "same-origin",
|
| 38 |
+
"User-Agent":
|
| 39 |
+
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36",
|
| 40 |
+
"X-App-Version": "20241129.1"
|
| 41 |
+
};
|
| 42 |
+
const EVENT_COMMIT_ID = '41e9c7b1';
|
| 43 |
+
// 当前IP地址
|
| 44 |
+
let ipAddress = '';
|
| 45 |
+
// access_token映射
|
| 46 |
+
const accessTokenMap = new Map();
|
| 47 |
+
// access_token请求队列映射
|
| 48 |
+
const accessTokenRequestQueueMap: Record<string, Function[]> = {};
|
| 49 |
+
|
| 50 |
+
async function getIPAddress() {
|
| 51 |
+
if (ipAddress) return ipAddress;
|
| 52 |
+
const result = await axios.get('https://chat.deepseek.com/', {
|
| 53 |
+
headers: {
|
| 54 |
+
...FAKE_HEADERS,
|
| 55 |
+
Cookie: generateCookie()
|
| 56 |
+
},
|
| 57 |
+
timeout: 15000,
|
| 58 |
+
validateStatus: () => true,
|
| 59 |
+
});
|
| 60 |
+
const ip = result.data.match(/<meta name="ip" content="([\d.]+)">/)?.[1];
|
| 61 |
+
if (!ip) throw new APIException(EX.API_REQUEST_FAILED, '获取IP地址失败');
|
| 62 |
+
logger.info(`当前IP地址: ${ip}`);
|
| 63 |
+
ipAddress = ip;
|
| 64 |
+
return ip;
|
| 65 |
+
}
|
| 66 |
+
|
| 67 |
+
/**
|
| 68 |
+
* 请求access_token
|
| 69 |
+
*
|
| 70 |
+
* 使用refresh_token去刷新获得access_token
|
| 71 |
+
*
|
| 72 |
+
* @param refreshToken 用于刷新access_token的refresh_token
|
| 73 |
+
*/
|
| 74 |
+
async function requestToken(refreshToken: string) {
|
| 75 |
+
if (accessTokenRequestQueueMap[refreshToken])
|
| 76 |
+
return new Promise((resolve) =>
|
| 77 |
+
accessTokenRequestQueueMap[refreshToken].push(resolve)
|
| 78 |
+
);
|
| 79 |
+
accessTokenRequestQueueMap[refreshToken] = [];
|
| 80 |
+
logger.info(`Refresh token: ${refreshToken}`);
|
| 81 |
+
const result = await (async () => {
|
| 82 |
+
const result = await axios.get(
|
| 83 |
+
"https://chat.deepseek.com/api/v0/users/current",
|
| 84 |
+
{
|
| 85 |
+
headers: {
|
| 86 |
+
Authorization: `Bearer ${refreshToken}`,
|
| 87 |
+
...FAKE_HEADERS,
|
| 88 |
+
},
|
| 89 |
+
timeout: 15000,
|
| 90 |
+
validateStatus: () => true,
|
| 91 |
+
}
|
| 92 |
+
);
|
| 93 |
+
const { token } = checkResult(result, refreshToken);
|
| 94 |
+
return {
|
| 95 |
+
accessToken: token,
|
| 96 |
+
refreshToken: token,
|
| 97 |
+
refreshTime: util.unixTimestamp() + ACCESS_TOKEN_EXPIRES,
|
| 98 |
+
};
|
| 99 |
+
})()
|
| 100 |
+
.then((result) => {
|
| 101 |
+
if (accessTokenRequestQueueMap[refreshToken]) {
|
| 102 |
+
accessTokenRequestQueueMap[refreshToken].forEach((resolve) =>
|
| 103 |
+
resolve(result)
|
| 104 |
+
);
|
| 105 |
+
delete accessTokenRequestQueueMap[refreshToken];
|
| 106 |
+
}
|
| 107 |
+
logger.success(`Refresh successful`);
|
| 108 |
+
return result;
|
| 109 |
+
})
|
| 110 |
+
.catch((err) => {
|
| 111 |
+
if (accessTokenRequestQueueMap[refreshToken]) {
|
| 112 |
+
accessTokenRequestQueueMap[refreshToken].forEach((resolve) =>
|
| 113 |
+
resolve(err)
|
| 114 |
+
);
|
| 115 |
+
delete accessTokenRequestQueueMap[refreshToken];
|
| 116 |
+
}
|
| 117 |
+
return err;
|
| 118 |
+
});
|
| 119 |
+
if (_.isError(result)) throw result;
|
| 120 |
+
return result;
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
/**
|
| 124 |
+
* 获取缓存中的access_token
|
| 125 |
+
*
|
| 126 |
+
* 避免短时间大量刷新token,未加锁,如果有并发要求还需加锁
|
| 127 |
+
*
|
| 128 |
+
* @param refreshToken 用于刷新access_token的refresh_token
|
| 129 |
+
*/
|
| 130 |
+
async function acquireToken(refreshToken: string): Promise<string> {
|
| 131 |
+
let result = accessTokenMap.get(refreshToken);
|
| 132 |
+
if (!result) {
|
| 133 |
+
result = await requestToken(refreshToken);
|
| 134 |
+
accessTokenMap.set(refreshToken, result);
|
| 135 |
+
}
|
| 136 |
+
if (util.unixTimestamp() > result.refreshTime) {
|
| 137 |
+
result = await requestToken(refreshToken);
|
| 138 |
+
accessTokenMap.set(refreshToken, result);
|
| 139 |
+
}
|
| 140 |
+
return result.accessToken;
|
| 141 |
+
}
|
| 142 |
+
|
| 143 |
+
/**
|
| 144 |
+
* 生成cookie
|
| 145 |
+
*/
|
| 146 |
+
function generateCookie() {
|
| 147 |
+
return `intercom-HWWAFSESTIME=${util.timestamp()}; HWWAFSESID=${util.generateRandomString({
|
| 148 |
+
charset: 'hex',
|
| 149 |
+
length: 18
|
| 150 |
+
})}; Hm_lvt_${util.uuid(false)}=${util.unixTimestamp()},${util.unixTimestamp()},${util.unixTimestamp()}; Hm_lpvt_${util.uuid(false)}=${util.unixTimestamp()}; _frid=${util.uuid(false)}; _fr_ssid=${util.uuid(false)}; _fr_pvid=${util.uuid(false)}`
|
| 151 |
+
}
|
| 152 |
+
|
| 153 |
+
async function createSession(model: string, refreshToken: string): Promise<string> {
|
| 154 |
+
const token = await acquireToken(refreshToken);
|
| 155 |
+
const result = await axios.post(
|
| 156 |
+
"https://chat.deepseek.com/api/v0/chat_session/create",
|
| 157 |
+
{
|
| 158 |
+
agent: "chat",
|
| 159 |
+
},
|
| 160 |
+
{
|
| 161 |
+
headers: {
|
| 162 |
+
Authorization: `Bearer ${token}`,
|
| 163 |
+
...FAKE_HEADERS,
|
| 164 |
+
},
|
| 165 |
+
timeout: 15000,
|
| 166 |
+
validateStatus: () => true,
|
| 167 |
+
}
|
| 168 |
+
);
|
| 169 |
+
const { biz_data } = checkResult(result, refreshToken);
|
| 170 |
+
if (!biz_data)
|
| 171 |
+
throw new APIException(EX.API_REQUEST_FAILED, "创建会话失败,可能是账号或IP地址被封禁");
|
| 172 |
+
return biz_data.id;
|
| 173 |
+
}
|
| 174 |
+
|
| 175 |
+
/**
|
| 176 |
+
* 碰撞challenge答案
|
| 177 |
+
*
|
| 178 |
+
* 厂商这个反逆向的策略不错哦
|
| 179 |
+
* 相当于把计算量放在浏览器侧的话,用户分摊了这个计算量
|
| 180 |
+
* 但是如果逆向在服务器上算,那这个成本都在服务器集中,并发一高就GG
|
| 181 |
+
*/
|
| 182 |
+
async function answerChallenge(response: any, targetPath: string): Promise<any> {
|
| 183 |
+
const { algorithm, challenge, salt, difficulty, expire_at, signature } = response;
|
| 184 |
+
const deepSeekHash = new DeepSeekHash();
|
| 185 |
+
await deepSeekHash.init(WASM_PATH);
|
| 186 |
+
const answer = deepSeekHash.calculateHash(algorithm, challenge, salt, difficulty, expire_at);
|
| 187 |
+
return Buffer.from(JSON.stringify({
|
| 188 |
+
algorithm,
|
| 189 |
+
challenge,
|
| 190 |
+
salt,
|
| 191 |
+
answer,
|
| 192 |
+
signature,
|
| 193 |
+
target_path: targetPath
|
| 194 |
+
})).toString('base64');
|
| 195 |
+
}
|
| 196 |
+
|
| 197 |
+
/**
|
| 198 |
+
* 获取challenge响应
|
| 199 |
+
*
|
| 200 |
+
* @param refreshToken 用于刷新access_token的refresh_token
|
| 201 |
+
*/
|
| 202 |
+
async function getChallengeResponse(refreshToken: string, targetPath: string) {
|
| 203 |
+
const token = await acquireToken(refreshToken);
|
| 204 |
+
const result = await axios.post('https://chat.deepseek.com/api/v0/chat/create_pow_challenge', {
|
| 205 |
+
target_path: targetPath
|
| 206 |
+
}, {
|
| 207 |
+
headers: {
|
| 208 |
+
Authorization: `Bearer ${token}`,
|
| 209 |
+
...FAKE_HEADERS,
|
| 210 |
+
Cookie: generateCookie()
|
| 211 |
+
},
|
| 212 |
+
timeout: 15000,
|
| 213 |
+
validateStatus: () => true,
|
| 214 |
+
});
|
| 215 |
+
const { biz_data: { challenge } } = checkResult(result, refreshToken);
|
| 216 |
+
return challenge;
|
| 217 |
+
}
|
| 218 |
+
|
| 219 |
+
/**
|
| 220 |
+
* 同步对话补全
|
| 221 |
+
*
|
| 222 |
+
* @param model 模型名称
|
| 223 |
+
* @param messages 参考gpt系列消息格式,多轮对话请完整提供上下文
|
| 224 |
+
* @param refreshToken 用于刷新access_token的refresh_token
|
| 225 |
+
* @param refConvId 引用对话ID
|
| 226 |
+
* @param retryCount 重试次数
|
| 227 |
+
*/
|
| 228 |
+
async function createCompletion(
|
| 229 |
+
model = MODEL_NAME,
|
| 230 |
+
messages: any[],
|
| 231 |
+
refreshToken: string,
|
| 232 |
+
refConvId?: string,
|
| 233 |
+
retryCount = 0
|
| 234 |
+
) {
|
| 235 |
+
return (async () => {
|
| 236 |
+
logger.info(messages);
|
| 237 |
+
|
| 238 |
+
// 如果引用对话ID不正确则重置引用
|
| 239 |
+
if (!/[0-9a-z\-]{36}@[0-9]+/.test(refConvId))
|
| 240 |
+
refConvId = null;
|
| 241 |
+
|
| 242 |
+
// 消息预处理
|
| 243 |
+
const prompt = messagesPrepare(messages);
|
| 244 |
+
|
| 245 |
+
// 解析引用对话ID
|
| 246 |
+
const [refSessionId, refParentMsgId] = refConvId?.split('@') || [];
|
| 247 |
+
|
| 248 |
+
// 创建会话
|
| 249 |
+
const sessionId = refSessionId || await createSession(model, refreshToken);
|
| 250 |
+
// 请求流
|
| 251 |
+
const token = await acquireToken(refreshToken);
|
| 252 |
+
|
| 253 |
+
const isSearchModel = model.includes('search') || prompt.includes('联网搜索');
|
| 254 |
+
const isThinkingModel = model.includes('think') || model.includes('r1') || prompt.includes('深度思考');
|
| 255 |
+
|
| 256 |
+
if(isSearchModel && isThinkingModel)
|
| 257 |
+
throw new APIException(EX.API_REQUEST_FAILED, '深度思考和联网搜索不能同时使用');
|
| 258 |
+
|
| 259 |
+
if (isThinkingModel) {
|
| 260 |
+
const thinkingQuota = await getThinkingQuota(refreshToken);
|
| 261 |
+
if (thinkingQuota <= 0) {
|
| 262 |
+
throw new APIException(EX.API_REQUEST_FAILED, '深度思考配额不足');
|
| 263 |
+
}
|
| 264 |
+
}
|
| 265 |
+
|
| 266 |
+
const challengeResponse = await getChallengeResponse(refreshToken, '/api/v0/chat/completion');
|
| 267 |
+
const challenge = await answerChallenge(challengeResponse, '/api/v0/chat/completion');
|
| 268 |
+
logger.info(`插冷鸡: ${challenge}`);
|
| 269 |
+
|
| 270 |
+
const result = await axios.post(
|
| 271 |
+
"https://chat.deepseek.com/api/v0/chat/completion",
|
| 272 |
+
{
|
| 273 |
+
chat_session_id: sessionId,
|
| 274 |
+
parent_message_id: refParentMsgId || null,
|
| 275 |
+
prompt,
|
| 276 |
+
ref_file_ids: [],
|
| 277 |
+
search_enabled: isSearchModel,
|
| 278 |
+
thinking_enabled: isThinkingModel
|
| 279 |
+
},
|
| 280 |
+
{
|
| 281 |
+
headers: {
|
| 282 |
+
Authorization: `Bearer ${token}`,
|
| 283 |
+
...FAKE_HEADERS,
|
| 284 |
+
Cookie: generateCookie(),
|
| 285 |
+
'X-Ds-Pow-Response': challenge
|
| 286 |
+
},
|
| 287 |
+
// 120秒超时
|
| 288 |
+
timeout: 120000,
|
| 289 |
+
validateStatus: () => true,
|
| 290 |
+
responseType: "stream",
|
| 291 |
+
}
|
| 292 |
+
);
|
| 293 |
+
|
| 294 |
+
// 发送事件,缓解被封号风险
|
| 295 |
+
await sendEvents(sessionId, refreshToken);
|
| 296 |
+
|
| 297 |
+
if (result.headers["content-type"].indexOf("text/event-stream") == -1) {
|
| 298 |
+
result.data.on("data", buffer => logger.error(buffer.toString()));
|
| 299 |
+
throw new APIException(
|
| 300 |
+
EX.API_REQUEST_FAILED,
|
| 301 |
+
`Stream response Content-Type invalid: ${result.headers["content-type"]}`
|
| 302 |
+
);
|
| 303 |
+
}
|
| 304 |
+
|
| 305 |
+
const streamStartTime = util.timestamp();
|
| 306 |
+
// 接收流为输出文本
|
| 307 |
+
const answer = await receiveStream(model, result.data, sessionId);
|
| 308 |
+
logger.success(
|
| 309 |
+
`Stream has completed transfer ${util.timestamp() - streamStartTime}ms`
|
| 310 |
+
);
|
| 311 |
+
|
| 312 |
+
return answer;
|
| 313 |
+
})().catch((err) => {
|
| 314 |
+
if (retryCount < MAX_RETRY_COUNT) {
|
| 315 |
+
logger.error(`Stream response error: ${err.stack}`);
|
| 316 |
+
logger.warn(`Try again after ${RETRY_DELAY / 1000}s...`);
|
| 317 |
+
return (async () => {
|
| 318 |
+
await new Promise((resolve) => setTimeout(resolve, RETRY_DELAY));
|
| 319 |
+
return createCompletion(
|
| 320 |
+
model,
|
| 321 |
+
messages,
|
| 322 |
+
refreshToken,
|
| 323 |
+
refConvId,
|
| 324 |
+
retryCount + 1
|
| 325 |
+
);
|
| 326 |
+
})();
|
| 327 |
+
}
|
| 328 |
+
throw err;
|
| 329 |
+
});
|
| 330 |
+
}
|
| 331 |
+
|
| 332 |
+
/**
|
| 333 |
+
* 流式对话补全
|
| 334 |
+
*
|
| 335 |
+
* @param model 模型名称
|
| 336 |
+
* @param messages 参考gpt系列消息格式,多轮对话请完整提供上下文
|
| 337 |
+
* @param refreshToken 用于刷新access_token的refresh_token
|
| 338 |
+
* @param refConvId 引用对话ID
|
| 339 |
+
* @param retryCount 重试次数
|
| 340 |
+
*/
|
| 341 |
+
async function createCompletionStream(
|
| 342 |
+
model = MODEL_NAME,
|
| 343 |
+
messages: any[],
|
| 344 |
+
refreshToken: string,
|
| 345 |
+
refConvId?: string,
|
| 346 |
+
retryCount = 0
|
| 347 |
+
) {
|
| 348 |
+
return (async () => {
|
| 349 |
+
logger.info(messages);
|
| 350 |
+
|
| 351 |
+
// 如果引用对话ID不正确则重置引用
|
| 352 |
+
if (!/[0-9a-z\-]{36}@[0-9]+/.test(refConvId))
|
| 353 |
+
refConvId = null;
|
| 354 |
+
|
| 355 |
+
// 消息预处理
|
| 356 |
+
const prompt = messagesPrepare(messages);
|
| 357 |
+
|
| 358 |
+
// 解析引用对话ID
|
| 359 |
+
const [refSessionId, refParentMsgId] = refConvId?.split('@') || [];
|
| 360 |
+
|
| 361 |
+
const isSearchModel = model.includes('search') || prompt.includes('联网搜索');
|
| 362 |
+
const isThinkingModel = model.includes('think') || model.includes('r1') || prompt.includes('深度思考');
|
| 363 |
+
|
| 364 |
+
if(isSearchModel && isThinkingModel)
|
| 365 |
+
throw new APIException(EX.API_REQUEST_FAILED, '深度思考和联网搜索不能同时使用');
|
| 366 |
+
|
| 367 |
+
if (isThinkingModel) {
|
| 368 |
+
const thinkingQuota = await getThinkingQuota(refreshToken);
|
| 369 |
+
if (thinkingQuota <= 0) {
|
| 370 |
+
throw new APIException(EX.API_REQUEST_FAILED, '深度思考配额不足');
|
| 371 |
+
}
|
| 372 |
+
}
|
| 373 |
+
|
| 374 |
+
const challengeResponse = await getChallengeResponse(refreshToken, '/api/v0/chat/completion');
|
| 375 |
+
const challenge = await answerChallenge(challengeResponse, '/api/v0/chat/completion');
|
| 376 |
+
logger.info(`插冷鸡: ${challenge}`);
|
| 377 |
+
|
| 378 |
+
// 创建会话
|
| 379 |
+
const sessionId = refSessionId || await createSession(model, refreshToken);
|
| 380 |
+
// 请求流
|
| 381 |
+
const token = await acquireToken(refreshToken);
|
| 382 |
+
|
| 383 |
+
const result = await axios.post(
|
| 384 |
+
"https://chat.deepseek.com/api/v0/chat/completion",
|
| 385 |
+
{
|
| 386 |
+
chat_session_id: sessionId,
|
| 387 |
+
parent_message_id: refParentMsgId || null,
|
| 388 |
+
prompt,
|
| 389 |
+
ref_file_ids: [],
|
| 390 |
+
search_enabled: isSearchModel,
|
| 391 |
+
thinking_enabled: isThinkingModel
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
headers: {
|
| 395 |
+
Authorization: `Bearer ${token}`,
|
| 396 |
+
...FAKE_HEADERS,
|
| 397 |
+
Cookie: generateCookie(),
|
| 398 |
+
'X-Ds-Pow-Response': challenge
|
| 399 |
+
},
|
| 400 |
+
// 120秒超时
|
| 401 |
+
timeout: 120000,
|
| 402 |
+
validateStatus: () => true,
|
| 403 |
+
responseType: "stream",
|
| 404 |
+
}
|
| 405 |
+
);
|
| 406 |
+
|
| 407 |
+
// 发送事件,缓解被封号风险
|
| 408 |
+
await sendEvents(sessionId, refreshToken);
|
| 409 |
+
|
| 410 |
+
if (result.headers["content-type"].indexOf("text/event-stream") == -1) {
|
| 411 |
+
logger.error(
|
| 412 |
+
`Invalid response Content-Type:`,
|
| 413 |
+
result.headers["content-type"]
|
| 414 |
+
);
|
| 415 |
+
result.data.on("data", buffer => logger.error(buffer.toString()));
|
| 416 |
+
const transStream = new PassThrough();
|
| 417 |
+
transStream.end(
|
| 418 |
+
`data: ${JSON.stringify({
|
| 419 |
+
id: "",
|
| 420 |
+
model: MODEL_NAME,
|
| 421 |
+
object: "chat.completion.chunk",
|
| 422 |
+
choices: [
|
| 423 |
+
{
|
| 424 |
+
index: 0,
|
| 425 |
+
delta: {
|
| 426 |
+
role: "assistant",
|
| 427 |
+
content: "服务暂时不可用,第三方响应错误",
|
| 428 |
+
},
|
| 429 |
+
finish_reason: "stop",
|
| 430 |
+
},
|
| 431 |
+
],
|
| 432 |
+
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
|
| 433 |
+
created: util.unixTimestamp(),
|
| 434 |
+
})}\n\n`
|
| 435 |
+
);
|
| 436 |
+
return transStream;
|
| 437 |
+
}
|
| 438 |
+
const streamStartTime = util.timestamp();
|
| 439 |
+
// 创建转换流将消息格式转换为gpt兼容格式
|
| 440 |
+
return createTransStream(model, result.data, sessionId, () => {
|
| 441 |
+
logger.success(
|
| 442 |
+
`Stream has completed transfer ${util.timestamp() - streamStartTime}ms`
|
| 443 |
+
);
|
| 444 |
+
});
|
| 445 |
+
})().catch((err) => {
|
| 446 |
+
if (retryCount < MAX_RETRY_COUNT) {
|
| 447 |
+
logger.error(`Stream response error: ${err.stack}`);
|
| 448 |
+
logger.warn(`Try again after ${RETRY_DELAY / 1000}s...`);
|
| 449 |
+
return (async () => {
|
| 450 |
+
await new Promise((resolve) => setTimeout(resolve, RETRY_DELAY));
|
| 451 |
+
return createCompletionStream(
|
| 452 |
+
model,
|
| 453 |
+
messages,
|
| 454 |
+
refreshToken,
|
| 455 |
+
refConvId,
|
| 456 |
+
retryCount + 1
|
| 457 |
+
);
|
| 458 |
+
})();
|
| 459 |
+
}
|
| 460 |
+
throw err;
|
| 461 |
+
});
|
| 462 |
+
}
|
| 463 |
+
|
| 464 |
+
/**
|
| 465 |
+
* 消息预处理
|
| 466 |
+
*
|
| 467 |
+
* 由于接口只取第一条消息,此处会将多条消息合并为一条,实现多轮对话效果
|
| 468 |
+
*
|
| 469 |
+
* @param messages 参考gpt系列消息格式,多轮对话请完整提供上下文
|
| 470 |
+
*/
|
| 471 |
+
function messagesPrepare(messages: any[]) {
|
| 472 |
+
let content;
|
| 473 |
+
if (messages.length < 2) {
|
| 474 |
+
content = messages.reduce((content, message) => {
|
| 475 |
+
if (_.isArray(message.content)) {
|
| 476 |
+
return (
|
| 477 |
+
message.content.reduce((_content, v) => {
|
| 478 |
+
if (!_.isObject(v) || v["type"] != "text") return _content;
|
| 479 |
+
return _content + (v["text"] || "") + "\n";
|
| 480 |
+
}, content)
|
| 481 |
+
);
|
| 482 |
+
}
|
| 483 |
+
return content + `${message.content}\n`;
|
| 484 |
+
}, "");
|
| 485 |
+
logger.info("\n透传内容:\n" + content);
|
| 486 |
+
}
|
| 487 |
+
else {
|
| 488 |
+
content = (
|
| 489 |
+
messages.reduce((content, message) => {
|
| 490 |
+
if (_.isArray(message.content)) {
|
| 491 |
+
return (
|
| 492 |
+
message.content.reduce((_content, v) => {
|
| 493 |
+
if (!_.isObject(v) || v["type"] != "text") return _content;
|
| 494 |
+
return _content + (`${message.role}:` + v["text"] || "") + "\n";
|
| 495 |
+
}, content)
|
| 496 |
+
);
|
| 497 |
+
}
|
| 498 |
+
return (content += `${message.role}:${message.content}\n`);
|
| 499 |
+
}, "") + "assistant:"
|
| 500 |
+
)
|
| 501 |
+
// 移除MD图像URL避免幻觉
|
| 502 |
+
.replace(/\!\[.+\]\(.+\)/g, "");
|
| 503 |
+
logger.info("\n对话合并:\n" + content);
|
| 504 |
+
}
|
| 505 |
+
return content;
|
| 506 |
+
}
|
| 507 |
+
|
| 508 |
+
/**
|
| 509 |
+
* 检查请求结果
|
| 510 |
+
*
|
| 511 |
+
* @param result 结果
|
| 512 |
+
* @param refreshToken 用于刷新access_token的refresh_token
|
| 513 |
+
*/
|
| 514 |
+
function checkResult(result: AxiosResponse, refreshToken: string) {
|
| 515 |
+
if (!result.data) return null;
|
| 516 |
+
const { code, data, msg } = result.data;
|
| 517 |
+
if (!_.isFinite(code)) return result.data;
|
| 518 |
+
if (code === 0) return data;
|
| 519 |
+
if (code == 40003) accessTokenMap.delete(refreshToken);
|
| 520 |
+
throw new APIException(EX.API_REQUEST_FAILED, `[请求deepseek失败]: ${msg}`);
|
| 521 |
+
}
|
| 522 |
+
|
| 523 |
+
/**
|
| 524 |
+
* 从流接收完整的消息内容
|
| 525 |
+
*
|
| 526 |
+
* @param model 模型名称
|
| 527 |
+
* @param stream 消息流
|
| 528 |
+
*/
|
| 529 |
+
async function receiveStream(model: string, stream: any, refConvId?: string): Promise<any> {
|
| 530 |
+
let thinking = false;
|
| 531 |
+
const isSearchModel = model.includes('search');
|
| 532 |
+
const isThinkingModel = model.includes('think') || model.includes('r1');
|
| 533 |
+
const isSilentModel = model.includes('silent');
|
| 534 |
+
const isFoldModel = model.includes('fold');
|
| 535 |
+
logger.info(`模型: ${model}, 是否思考: ${isThinkingModel} 是否联网搜索: ${isSearchModel}, 是否静默思考: ${isSilentModel}, 是否折叠思考: ${isFoldModel}`);
|
| 536 |
+
let refContent = '';
|
| 537 |
+
return new Promise((resolve, reject) => {
|
| 538 |
+
// 消息初始化
|
| 539 |
+
const data = {
|
| 540 |
+
id: "",
|
| 541 |
+
model,
|
| 542 |
+
object: "chat.completion",
|
| 543 |
+
choices: [
|
| 544 |
+
{
|
| 545 |
+
index: 0,
|
| 546 |
+
message: { role: "assistant", content: "" },
|
| 547 |
+
finish_reason: "stop",
|
| 548 |
+
},
|
| 549 |
+
],
|
| 550 |
+
usage: { prompt_tokens: 1, completion_tokens: 1, total_tokens: 2 },
|
| 551 |
+
created: util.unixTimestamp(),
|
| 552 |
+
};
|
| 553 |
+
const parser = createParser((event) => {
|
| 554 |
+
try {
|
| 555 |
+
if (event.type !== "event" || event.data.trim() == "[DONE]") return;
|
| 556 |
+
// 解析JSON
|
| 557 |
+
const result = _.attempt(() => JSON.parse(event.data));
|
| 558 |
+
if (_.isError(result))
|
| 559 |
+
throw new Error(`Stream response invalid: ${event.data}`);
|
| 560 |
+
if (!result.choices || !result.choices[0] || !result.choices[0].delta)
|
| 561 |
+
return;
|
| 562 |
+
if (!data.id)
|
| 563 |
+
data.id = `${refConvId}@${result.message_id}`;
|
| 564 |
+
if (result.choices[0].delta.type === "search_result" && !isSilentModel) {
|
| 565 |
+
const searchResults = result.choices[0]?.delta?.search_results || [];
|
| 566 |
+
refContent += searchResults.map(item => `${item.title} - ${item.url}`).join('\n');
|
| 567 |
+
return;
|
| 568 |
+
}
|
| 569 |
+
if (result.choices[0].delta.type === "thinking") {
|
| 570 |
+
if (!thinking && isThinkingModel && !isSilentModel) {
|
| 571 |
+
thinking = true;
|
| 572 |
+
data.choices[0].message.content += isFoldModel ? "<details><summary>思考过程</summary><pre>" : "[思考开始]";
|
| 573 |
+
}
|
| 574 |
+
if (isSilentModel)
|
| 575 |
+
return;
|
| 576 |
+
}
|
| 577 |
+
else if (thinking && isThinkingModel && !isSilentModel) {
|
| 578 |
+
thinking = false;
|
| 579 |
+
data.choices[0].message.content += isFoldModel ? "</pre></details>" : "[思考结束]";
|
| 580 |
+
}
|
| 581 |
+
if (result.choices[0].delta.content)
|
| 582 |
+
data.choices[0].message.content += result.choices[0].delta.content;
|
| 583 |
+
if (result.choices && result.choices[0] && result.choices[0].finish_reason === "stop") {
|
| 584 |
+
data.choices[0].message.content = data.choices[0].message.content.replace(/^\n+/, '').replace(/\[citation:\d+\]/g, '') + (refContent ? `\n\n搜索结果来自:\n${refContent}` : '');
|
| 585 |
+
resolve(data);
|
| 586 |
+
}
|
| 587 |
+
} catch (err) {
|
| 588 |
+
logger.error(err);
|
| 589 |
+
reject(err);
|
| 590 |
+
}
|
| 591 |
+
});
|
| 592 |
+
// 将流数据喂给SSE转换器
|
| 593 |
+
stream.on("data", (buffer) => parser.feed(buffer.toString()));
|
| 594 |
+
stream.once("error", (err) => reject(err));
|
| 595 |
+
stream.once("close", () => resolve(data));
|
| 596 |
+
});
|
| 597 |
+
}
|
| 598 |
+
|
| 599 |
+
/**
|
| 600 |
+
* 创建转换流
|
| 601 |
+
*
|
| 602 |
+
* 将流格式转换为gpt兼容流格式
|
| 603 |
+
*
|
| 604 |
+
* @param model 模型名称
|
| 605 |
+
* @param stream 消息流
|
| 606 |
+
* @param endCallback 传输结束回调
|
| 607 |
+
*/
|
| 608 |
+
function createTransStream(model: string, stream: any, refConvId: string, endCallback?: Function) {
|
| 609 |
+
let thinking = false;
|
| 610 |
+
const isSearchModel = model.includes('search');
|
| 611 |
+
const isThinkingModel = model.includes('think') || model.includes('r1');
|
| 612 |
+
const isSilentModel = model.includes('silent');
|
| 613 |
+
const isFoldModel = model.includes('fold');
|
| 614 |
+
logger.info(`模型: ${model}, 是否思考: ${isThinkingModel}, 是否联网搜索: ${isSearchModel}, 是否静默思考: ${isSilentModel}, 是否折叠思考: ${isFoldModel}`);
|
| 615 |
+
// 消息创建时间
|
| 616 |
+
const created = util.unixTimestamp();
|
| 617 |
+
// 创建转换流
|
| 618 |
+
const transStream = new PassThrough();
|
| 619 |
+
!transStream.closed &&
|
| 620 |
+
transStream.write(
|
| 621 |
+
`data: ${JSON.stringify({
|
| 622 |
+
id: "",
|
| 623 |
+
model,
|
| 624 |
+
object: "chat.completion.chunk",
|
| 625 |
+
choices: [
|
| 626 |
+
{
|
| 627 |
+
index: 0,
|
| 628 |
+
delta: { role: "assistant", content: "" },
|
| 629 |
+
finish_reason: null,
|
| 630 |
+
},
|
| 631 |
+
],
|
| 632 |
+
created,
|
| 633 |
+
})}\n\n`
|
| 634 |
+
);
|
| 635 |
+
const parser = createParser((event) => {
|
| 636 |
+
try {
|
| 637 |
+
if (event.type !== "event" || event.data.trim() == "[DONE]") return;
|
| 638 |
+
// 解析JSON
|
| 639 |
+
const result = _.attempt(() => JSON.parse(event.data));
|
| 640 |
+
if (_.isError(result))
|
| 641 |
+
throw new Error(`Stream response invalid: ${event.data}`);
|
| 642 |
+
if (!result.choices || !result.choices[0] || !result.choices[0].delta)
|
| 643 |
+
return;
|
| 644 |
+
result.model = model;
|
| 645 |
+
if (result.choices[0].delta.type === "search_result" && !isSilentModel) {
|
| 646 |
+
const searchResults = result.choices[0]?.delta?.search_results || [];
|
| 647 |
+
if (searchResults.length > 0) {
|
| 648 |
+
const refContent = searchResults.map(item => `检索 ${item.title} - ${item.url}`).join('\n') + '\n\n';
|
| 649 |
+
transStream.write(`data: ${JSON.stringify({
|
| 650 |
+
id: `${refConvId}@${result.message_id}`,
|
| 651 |
+
model: result.model,
|
| 652 |
+
object: "chat.completion.chunk",
|
| 653 |
+
choices: [
|
| 654 |
+
{
|
| 655 |
+
index: 0,
|
| 656 |
+
delta: { role: "assistant", content: refContent },
|
| 657 |
+
finish_reason: null,
|
| 658 |
+
},
|
| 659 |
+
],
|
| 660 |
+
})}\n\n`);
|
| 661 |
+
}
|
| 662 |
+
return;
|
| 663 |
+
}
|
| 664 |
+
if (result.choices[0].delta.type === "thinking") {
|
| 665 |
+
if (!thinking && isThinkingModel && !isSilentModel) {
|
| 666 |
+
thinking = true;
|
| 667 |
+
transStream.write(`data: ${JSON.stringify({
|
| 668 |
+
id: `${refConvId}@${result.message_id}`,
|
| 669 |
+
model: result.model,
|
| 670 |
+
object: "chat.completion.chunk",
|
| 671 |
+
choices: [
|
| 672 |
+
{
|
| 673 |
+
index: 0,
|
| 674 |
+
delta: { role: "assistant", content: isFoldModel ? "<details><summary>思考过程</summary><pre>" : "[思考开始]" },
|
| 675 |
+
finish_reason: null,
|
| 676 |
+
},
|
| 677 |
+
],
|
| 678 |
+
created,
|
| 679 |
+
})}\n\n`);
|
| 680 |
+
}
|
| 681 |
+
if (isSilentModel)
|
| 682 |
+
return;
|
| 683 |
+
}
|
| 684 |
+
else if (thinking && isThinkingModel && !isSilentModel) {
|
| 685 |
+
thinking = false;
|
| 686 |
+
transStream.write(`data: ${JSON.stringify({
|
| 687 |
+
id: `${refConvId}@${result.message_id}`,
|
| 688 |
+
model: result.model,
|
| 689 |
+
object: "chat.completion.chunk",
|
| 690 |
+
choices: [
|
| 691 |
+
{
|
| 692 |
+
index: 0,
|
| 693 |
+
delta: { role: "assistant", content: isFoldModel ? "</pre></details>" : "[思考结束]" },
|
| 694 |
+
finish_reason: null,
|
| 695 |
+
},
|
| 696 |
+
],
|
| 697 |
+
created,
|
| 698 |
+
})}\n\n`);
|
| 699 |
+
}
|
| 700 |
+
|
| 701 |
+
if (!result.choices[0].delta.content)
|
| 702 |
+
return;
|
| 703 |
+
|
| 704 |
+
transStream.write(`data: ${JSON.stringify({
|
| 705 |
+
id: `${refConvId}@${result.message_id}`,
|
| 706 |
+
model: result.model,
|
| 707 |
+
object: "chat.completion.chunk",
|
| 708 |
+
choices: [
|
| 709 |
+
{
|
| 710 |
+
index: 0,
|
| 711 |
+
delta: { role: "assistant", content: result.choices[0].delta.content.replace(/\[citation:\d+\]/g, '') },
|
| 712 |
+
finish_reason: null,
|
| 713 |
+
},
|
| 714 |
+
],
|
| 715 |
+
created,
|
| 716 |
+
})}\n\n`);
|
| 717 |
+
if (result.choices && result.choices[0] && result.choices[0].finish_reason === "stop") {
|
| 718 |
+
transStream.write(`data: ${JSON.stringify({
|
| 719 |
+
id: `${refConvId}@${result.message_id}`,
|
| 720 |
+
model: result.model,
|
| 721 |
+
object: "chat.completion.chunk",
|
| 722 |
+
choices: [
|
| 723 |
+
{
|
| 724 |
+
index: 0,
|
| 725 |
+
delta: { role: "assistant", content: "" },
|
| 726 |
+
finish_reason: "stop"
|
| 727 |
+
},
|
| 728 |
+
],
|
| 729 |
+
created,
|
| 730 |
+
})}\n\n`);
|
| 731 |
+
!transStream.closed && transStream.end("data: [DONE]\n\n");
|
| 732 |
+
endCallback && endCallback();
|
| 733 |
+
}
|
| 734 |
+
} catch (err) {
|
| 735 |
+
logger.error(err);
|
| 736 |
+
!transStream.closed && transStream.end("data: [DONE]\n\n");
|
| 737 |
+
}
|
| 738 |
+
});
|
| 739 |
+
// 将流数据喂给SSE转换器
|
| 740 |
+
stream.on("data", (buffer) => parser.feed(buffer.toString()));
|
| 741 |
+
stream.once(
|
| 742 |
+
"error",
|
| 743 |
+
() => !transStream.closed && transStream.end("data: [DONE]\n\n")
|
| 744 |
+
);
|
| 745 |
+
stream.once(
|
| 746 |
+
"close",
|
| 747 |
+
() => {
|
| 748 |
+
!transStream.closed && transStream.end("data: [DONE]\n\n");
|
| 749 |
+
endCallback && endCallback();
|
| 750 |
+
}
|
| 751 |
+
);
|
| 752 |
+
return transStream;
|
| 753 |
+
}
|
| 754 |
+
|
| 755 |
+
/**
|
| 756 |
+
* Token切分
|
| 757 |
+
*
|
| 758 |
+
* @param authorization 认证字符串
|
| 759 |
+
*/
|
| 760 |
+
function tokenSplit(authorization: string) {
|
| 761 |
+
return authorization.replace("Bearer ", "").split(",");
|
| 762 |
+
}
|
| 763 |
+
|
| 764 |
+
/**
|
| 765 |
+
* 获取Token存活状态
|
| 766 |
+
*/
|
| 767 |
+
async function getTokenLiveStatus(refreshToken: string) {
|
| 768 |
+
const token = await acquireToken(refreshToken);
|
| 769 |
+
const result = await axios.get(
|
| 770 |
+
"https://chat.deepseek.com/api/v0/users/current",
|
| 771 |
+
{
|
| 772 |
+
headers: {
|
| 773 |
+
Authorization: `Bearer ${token}`,
|
| 774 |
+
...FAKE_HEADERS,
|
| 775 |
+
Cookie: generateCookie()
|
| 776 |
+
},
|
| 777 |
+
timeout: 15000,
|
| 778 |
+
validateStatus: () => true,
|
| 779 |
+
}
|
| 780 |
+
);
|
| 781 |
+
try {
|
| 782 |
+
const { token } = checkResult(result, refreshToken);
|
| 783 |
+
return !!token;
|
| 784 |
+
}
|
| 785 |
+
catch (err) {
|
| 786 |
+
return false;
|
| 787 |
+
}
|
| 788 |
+
}
|
| 789 |
+
|
| 790 |
+
async function sendEvents(refConvId: string, refreshToken: string) {
|
| 791 |
+
try {
|
| 792 |
+
const token = await acquireToken(refreshToken);
|
| 793 |
+
const sessionId = `session_v0_${Math.random().toString(36).slice(2)}`;
|
| 794 |
+
const timestamp = util.timestamp();
|
| 795 |
+
const fakeDuration1 = Math.floor(Math.random() * 1000);
|
| 796 |
+
const fakeDuration2 = Math.floor(Math.random() * 1000);
|
| 797 |
+
const fakeDuration3 = Math.floor(Math.random() * 1000);
|
| 798 |
+
const ipAddress = await getIPAddress();
|
| 799 |
+
const response = await axios.post('https://chat.deepseek.com/api/v0/events', {
|
| 800 |
+
"events": [
|
| 801 |
+
{
|
| 802 |
+
"session_id": sessionId,
|
| 803 |
+
"client_timestamp_ms": timestamp,
|
| 804 |
+
"event_name": "__reportEvent",
|
| 805 |
+
"event_message": "调用上报事件接口",
|
| 806 |
+
"payload": {
|
| 807 |
+
"__location": "https://chat.deepseek.com/",
|
| 808 |
+
"__ip": ipAddress,
|
| 809 |
+
"__region": "CN",
|
| 810 |
+
"__pageVisibility": "true",
|
| 811 |
+
"__nodeEnv": "production",
|
| 812 |
+
"__deployEnv": "production",
|
| 813 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 814 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 815 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 816 |
+
"__referrer": "",
|
| 817 |
+
"method": "post",
|
| 818 |
+
"url": "/api/v0/events",
|
| 819 |
+
"path": "/api/v0/events"
|
| 820 |
+
},
|
| 821 |
+
"level": "info"
|
| 822 |
+
},
|
| 823 |
+
{
|
| 824 |
+
"session_id": sessionId,
|
| 825 |
+
"client_timestamp_ms": timestamp + 100 + Math.floor(Math.random() * 1000),
|
| 826 |
+
"event_name": "__reportEventOk",
|
| 827 |
+
"event_message": "调用上报事件接口成功",
|
| 828 |
+
"payload": {
|
| 829 |
+
"__location": "https://chat.deepseek.com/",
|
| 830 |
+
"__ip": ipAddress,
|
| 831 |
+
"__region": "CN",
|
| 832 |
+
"__pageVisibility": "true",
|
| 833 |
+
"__nodeEnv": "production",
|
| 834 |
+
"__deployEnv": "production",
|
| 835 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 836 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 837 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 838 |
+
"__referrer": "",
|
| 839 |
+
"method": "post",
|
| 840 |
+
"url": "/api/v0/events",
|
| 841 |
+
"path": "/api/v0/events",
|
| 842 |
+
"logId": util.uuid(),
|
| 843 |
+
"metricDuration": Math.floor(Math.random() * 1000),
|
| 844 |
+
"status": "200"
|
| 845 |
+
},
|
| 846 |
+
"level": "info"
|
| 847 |
+
},
|
| 848 |
+
{
|
| 849 |
+
"session_id": sessionId,
|
| 850 |
+
"client_timestamp_ms": timestamp + 200 + Math.floor(Math.random() * 1000),
|
| 851 |
+
"event_name": "createSessionAndStartCompletion",
|
| 852 |
+
"event_message": "开始创建对话",
|
| 853 |
+
"payload": {
|
| 854 |
+
"__location": "https://chat.deepseek.com/",
|
| 855 |
+
"__ip": ipAddress,
|
| 856 |
+
"__region": "CN",
|
| 857 |
+
"__pageVisibility": "true",
|
| 858 |
+
"__nodeEnv": "production",
|
| 859 |
+
"__deployEnv": "production",
|
| 860 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 861 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 862 |
+
"__userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
|
| 863 |
+
"__referrer": "",
|
| 864 |
+
"agentId": "chat",
|
| 865 |
+
"thinkingEnabled": false
|
| 866 |
+
},
|
| 867 |
+
"level": "info"
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"session_id": sessionId,
|
| 871 |
+
"client_timestamp_ms": timestamp + 300 + Math.floor(Math.random() * 1000),
|
| 872 |
+
"event_name": "__httpRequest",
|
| 873 |
+
"event_message": "httpRequest POST /api/v0/chat_session/create",
|
| 874 |
+
"payload": {
|
| 875 |
+
"__location": "https://chat.deepseek.com/",
|
| 876 |
+
"__ip": ipAddress,
|
| 877 |
+
"__region": "CN",
|
| 878 |
+
"__pageVisibility": "true",
|
| 879 |
+
"__nodeEnv": "production",
|
| 880 |
+
"__deployEnv": "production",
|
| 881 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 882 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 883 |
+
"__userAgent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36",
|
| 884 |
+
"__referrer": "",
|
| 885 |
+
"url": "/api/v0/chat_session/create",
|
| 886 |
+
"path": "/api/v0/chat_session/create",
|
| 887 |
+
"method": "POST"
|
| 888 |
+
},
|
| 889 |
+
"level": "info"
|
| 890 |
+
},
|
| 891 |
+
{
|
| 892 |
+
"session_id": sessionId,
|
| 893 |
+
"client_timestamp_ms": timestamp + 400 + Math.floor(Math.random() * 1000),
|
| 894 |
+
"event_name": "__httpResponse",
|
| 895 |
+
"event_message": `httpResponse POST /api/v0/chat_session/create, ${Math.floor(Math.random() * 1000)}ms, reason: none`,
|
| 896 |
+
"payload": {
|
| 897 |
+
"__location": "https://chat.deepseek.com/",
|
| 898 |
+
"__ip": ipAddress,
|
| 899 |
+
"__region": "CN",
|
| 900 |
+
"__pageVisibility": "true",
|
| 901 |
+
"__nodeEnv": "production",
|
| 902 |
+
"__deployEnv": "production",
|
| 903 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 904 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 905 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 906 |
+
"__referrer": "",
|
| 907 |
+
"url": "/api/v0/chat_session/create",
|
| 908 |
+
"path": "/api/v0/chat_session/create",
|
| 909 |
+
"method": "POST",
|
| 910 |
+
"metricDuration": Math.floor(Math.random() * 1000),
|
| 911 |
+
"status": "200",
|
| 912 |
+
"logId": util.uuid()
|
| 913 |
+
},
|
| 914 |
+
"level": "info"
|
| 915 |
+
},
|
| 916 |
+
{
|
| 917 |
+
"session_id": sessionId,
|
| 918 |
+
"client_timestamp_ms": timestamp + 500 + Math.floor(Math.random() * 1000),
|
| 919 |
+
"event_name": "__log",
|
| 920 |
+
"event_message": "使用 buffer 模式",
|
| 921 |
+
"payload": {
|
| 922 |
+
"__location": "https://chat.deepseek.com/",
|
| 923 |
+
"__ip": ipAddress,
|
| 924 |
+
"__region": "CN",
|
| 925 |
+
"__pageVisibility": "true",
|
| 926 |
+
"__nodeEnv": "production",
|
| 927 |
+
"__deployEnv": "production",
|
| 928 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 929 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 930 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 931 |
+
"__referrer": ""
|
| 932 |
+
},
|
| 933 |
+
"level": "info"
|
| 934 |
+
},
|
| 935 |
+
{
|
| 936 |
+
"session_id": sessionId,
|
| 937 |
+
"client_timestamp_ms": timestamp + 600 + Math.floor(Math.random() * 1000),
|
| 938 |
+
"event_name": "chatCompletionApi",
|
| 939 |
+
"event_message": "chatCompletionApi 被调用",
|
| 940 |
+
"payload": {
|
| 941 |
+
"__location": "https://chat.deepseek.com/",
|
| 942 |
+
"__ip": ipAddress,
|
| 943 |
+
"__region": "CN",
|
| 944 |
+
"__pageVisibility": "true",
|
| 945 |
+
"__nodeEnv": "production",
|
| 946 |
+
"__deployEnv": "production",
|
| 947 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 948 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 949 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 950 |
+
"__referrer": "",
|
| 951 |
+
"scene": "completion",
|
| 952 |
+
"chatSessionId": refConvId,
|
| 953 |
+
"withFile": "false",
|
| 954 |
+
"thinkingEnabled": "false"
|
| 955 |
+
},
|
| 956 |
+
"level": "info"
|
| 957 |
+
},
|
| 958 |
+
{
|
| 959 |
+
"session_id": sessionId,
|
| 960 |
+
"client_timestamp_ms": timestamp + 700 + Math.floor(Math.random() * 1000),
|
| 961 |
+
"event_name": "__httpRequest",
|
| 962 |
+
"event_message": "httpRequest POST /api/v0/chat/completion",
|
| 963 |
+
"payload": {
|
| 964 |
+
"__location": "https://chat.deepseek.com/",
|
| 965 |
+
"__ip": ipAddress,
|
| 966 |
+
"__region": "CN",
|
| 967 |
+
"__pageVisibility": "true",
|
| 968 |
+
"__nodeEnv": "production",
|
| 969 |
+
"__deployEnv": "production",
|
| 970 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 971 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 972 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 973 |
+
"__referrer": "",
|
| 974 |
+
"url": "/api/v0/chat/completion",
|
| 975 |
+
"path": "/api/v0/chat/completion",
|
| 976 |
+
"method": "POST"
|
| 977 |
+
},
|
| 978 |
+
"level": "info"
|
| 979 |
+
},
|
| 980 |
+
{
|
| 981 |
+
"session_id": sessionId,
|
| 982 |
+
"client_timestamp_ms": timestamp + 800 + Math.floor(Math.random() * 1000),
|
| 983 |
+
"event_name": "completionFirstChunkReceived",
|
| 984 |
+
"event_message": "收到第一个 completion chunk(可以是空 chunk)",
|
| 985 |
+
"payload": {
|
| 986 |
+
"__location": "https://chat.deepseek.com/",
|
| 987 |
+
"__ip": ipAddress,
|
| 988 |
+
"__region": "CN",
|
| 989 |
+
"__pageVisibility": "true",
|
| 990 |
+
"__nodeEnv": "production",
|
| 991 |
+
"__deployEnv": "production",
|
| 992 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 993 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 994 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 995 |
+
"__referrer": "",
|
| 996 |
+
"metricDuration": Math.floor(Math.random() * 1000),
|
| 997 |
+
"logId": util.uuid()
|
| 998 |
+
},
|
| 999 |
+
"level": "info"
|
| 1000 |
+
},
|
| 1001 |
+
{
|
| 1002 |
+
"session_id": sessionId,
|
| 1003 |
+
"client_timestamp_ms": timestamp + 900 + Math.floor(Math.random() * 1000),
|
| 1004 |
+
"event_name": "createSessionAndStartCompletion",
|
| 1005 |
+
"event_message": "创建会话并开始补全",
|
| 1006 |
+
"payload": {
|
| 1007 |
+
"__location": "https://chat.deepseek.com/",
|
| 1008 |
+
"__ip": ipAddress,
|
| 1009 |
+
"__region": "CN",
|
| 1010 |
+
"__pageVisibility": "true",
|
| 1011 |
+
"__nodeEnv": "production",
|
| 1012 |
+
"__deployEnv": "production",
|
| 1013 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 1014 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 1015 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 1016 |
+
"__referrer": "",
|
| 1017 |
+
"agentId": "chat",
|
| 1018 |
+
"newSessionId": refConvId,
|
| 1019 |
+
"isCreateNewChat": "false",
|
| 1020 |
+
"thinkingEnabled": "false"
|
| 1021 |
+
},
|
| 1022 |
+
"level": "info"
|
| 1023 |
+
},
|
| 1024 |
+
{
|
| 1025 |
+
"session_id": sessionId,
|
| 1026 |
+
"client_timestamp_ms": timestamp + 1000 + Math.floor(Math.random() * 1000),
|
| 1027 |
+
"event_name": "routeChange",
|
| 1028 |
+
"event_message": `路由改变 => /a/chat/s/${refConvId}`,
|
| 1029 |
+
"payload": {
|
| 1030 |
+
"__location": `https://chat.deepseek.com/a/chat/s/${refConvId}`,
|
| 1031 |
+
"__ip": ipAddress,
|
| 1032 |
+
"__region": "CN",
|
| 1033 |
+
"__pageVisibility": "true",
|
| 1034 |
+
"__nodeEnv": "production",
|
| 1035 |
+
"__deployEnv": "production",
|
| 1036 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 1037 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 1038 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 1039 |
+
"__referrer": "",
|
| 1040 |
+
"to": `/a/chat/s/${refConvId}`,
|
| 1041 |
+
"redirect": "false",
|
| 1042 |
+
"redirected": "false",
|
| 1043 |
+
"redirectReason": "",
|
| 1044 |
+
"redirectTo": "/",
|
| 1045 |
+
"hasToken": "true",
|
| 1046 |
+
"hasUserInfo": "true"
|
| 1047 |
+
},
|
| 1048 |
+
"level": "info"
|
| 1049 |
+
},
|
| 1050 |
+
{
|
| 1051 |
+
"session_id": sessionId,
|
| 1052 |
+
"client_timestamp_ms": timestamp + 1100 + Math.floor(Math.random() * 1000),
|
| 1053 |
+
"event_name": "__pageVisit",
|
| 1054 |
+
"event_message": `访问页面 [/a/chat/s/${refConvId}] [0]:${fakeDuration1}ms`,
|
| 1055 |
+
"payload": {
|
| 1056 |
+
"__location": `https://chat.deepseek.com/a/chat/s/${refConvId}`,
|
| 1057 |
+
"__ip": ipAddress,
|
| 1058 |
+
"__region": "CN",
|
| 1059 |
+
"__pageVisibility": "true",
|
| 1060 |
+
"__nodeEnv": "production",
|
| 1061 |
+
"__deployEnv": "production",
|
| 1062 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 1063 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 1064 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 1065 |
+
"__referrer": "",
|
| 1066 |
+
"pathname": `/a/chat/s/${refConvId}`,
|
| 1067 |
+
"metricVisitIndex": 0,
|
| 1068 |
+
"metricDuration": fakeDuration1,
|
| 1069 |
+
"referrer": "none",
|
| 1070 |
+
"appTheme": "light"
|
| 1071 |
+
},
|
| 1072 |
+
"level": "info"
|
| 1073 |
+
},
|
| 1074 |
+
{
|
| 1075 |
+
"session_id": sessionId,
|
| 1076 |
+
"client_timestamp_ms": timestamp + 1200 + Math.floor(Math.random() * 1000),
|
| 1077 |
+
"event_name": "__tti",
|
| 1078 |
+
"event_message": `/a/chat/s/${refConvId} TTI 上报:${fakeDuration2}ms`,
|
| 1079 |
+
"payload": {
|
| 1080 |
+
"__location": `https://chat.deepseek.com/a/chat/s/${refConvId}`,
|
| 1081 |
+
"__ip": ipAddress,
|
| 1082 |
+
"__region": "CN",
|
| 1083 |
+
"__pageVisibility": "true",
|
| 1084 |
+
"__nodeEnv": "production",
|
| 1085 |
+
"__deployEnv": "production",
|
| 1086 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 1087 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 1088 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 1089 |
+
"__referrer": "",
|
| 1090 |
+
"type": "warmStart",
|
| 1091 |
+
"referer": "",
|
| 1092 |
+
"metricDuration": fakeDuration2,
|
| 1093 |
+
"metricVisitIndex": 0,
|
| 1094 |
+
"metricDurationSinceMounted": 0,
|
| 1095 |
+
"hasError": "false"
|
| 1096 |
+
},
|
| 1097 |
+
"level": "info"
|
| 1098 |
+
},
|
| 1099 |
+
{
|
| 1100 |
+
"session_id": sessionId,
|
| 1101 |
+
"client_timestamp_ms": timestamp + 1300 + Math.floor(Math.random() * 1000),
|
| 1102 |
+
"event_name": "__httpResponse",
|
| 1103 |
+
"event_message": `httpResponse POST /api/v0/chat/completion, ${fakeDuration3}ms, reason: none`,
|
| 1104 |
+
"payload": {
|
| 1105 |
+
"__location": `https://chat.deepseek.com/a/chat/s/${refConvId}`,
|
| 1106 |
+
"__ip": ipAddress,
|
| 1107 |
+
"__region": "CN",
|
| 1108 |
+
"__pageVisibility": "true",
|
| 1109 |
+
"__nodeEnv": "production",
|
| 1110 |
+
"__deployEnv": "production",
|
| 1111 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 1112 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 1113 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 1114 |
+
"__referrer": "",
|
| 1115 |
+
"url": "/api/v0/chat/completion",
|
| 1116 |
+
"path": "/api/v0/chat/completion",
|
| 1117 |
+
"method": "POST",
|
| 1118 |
+
"metricDuration": fakeDuration3,
|
| 1119 |
+
"status": "200",
|
| 1120 |
+
"logId": util.uuid()
|
| 1121 |
+
},
|
| 1122 |
+
"level": "info"
|
| 1123 |
+
},
|
| 1124 |
+
{
|
| 1125 |
+
"session_id": sessionId,
|
| 1126 |
+
"client_timestamp_ms": timestamp + 1400 + Math.floor(Math.floor(Math.random() * 1000)),
|
| 1127 |
+
"event_name": "completionApiOk",
|
| 1128 |
+
"event_message": "完成响应,响应有正常的的 finish reason",
|
| 1129 |
+
"payload": {
|
| 1130 |
+
"__location": `https://chat.deepseek.com/a/chat/s/${refConvId}`,
|
| 1131 |
+
"__ip": ipAddress,
|
| 1132 |
+
"__region": "CN",
|
| 1133 |
+
"__pageVisibility": "true",
|
| 1134 |
+
"__nodeEnv": "production",
|
| 1135 |
+
"__deployEnv": "production",
|
| 1136 |
+
"__appVersion": FAKE_HEADERS["X-App-Version"],
|
| 1137 |
+
"__commitId": EVENT_COMMIT_ID,
|
| 1138 |
+
"__userAgent": FAKE_HEADERS["User-Agent"],
|
| 1139 |
+
"__referrer": "",
|
| 1140 |
+
"condition": "hasDone",
|
| 1141 |
+
"streamClosed": false,
|
| 1142 |
+
"scene": "completion",
|
| 1143 |
+
"chatSessionId": refConvId
|
| 1144 |
+
},
|
| 1145 |
+
"level": "info"
|
| 1146 |
+
}
|
| 1147 |
+
]
|
| 1148 |
+
}, {
|
| 1149 |
+
headers: {
|
| 1150 |
+
Authorization: `Bearer ${token}`,
|
| 1151 |
+
...FAKE_HEADERS,
|
| 1152 |
+
Referer: `https://chat.deepseek.com/a/chat/s/${refConvId}`,
|
| 1153 |
+
Cookie: generateCookie()
|
| 1154 |
+
},
|
| 1155 |
+
validateStatus: () => true,
|
| 1156 |
+
});
|
| 1157 |
+
checkResult(response, refreshToken);
|
| 1158 |
+
logger.info('发送事件成功');
|
| 1159 |
+
}
|
| 1160 |
+
catch (err) {
|
| 1161 |
+
logger.error(err);
|
| 1162 |
+
}
|
| 1163 |
+
}
|
| 1164 |
+
|
| 1165 |
+
/**
|
| 1166 |
+
* 获取深度思考配额
|
| 1167 |
+
*/
|
| 1168 |
+
async function getThinkingQuota(refreshToken: string) {
|
| 1169 |
+
try {
|
| 1170 |
+
const response = await axios.get('https://chat.deepseek.com/api/v0/users/feature_quota', {
|
| 1171 |
+
headers: {
|
| 1172 |
+
Authorization: `Bearer ${refreshToken}`,
|
| 1173 |
+
...FAKE_HEADERS,
|
| 1174 |
+
Cookie: generateCookie()
|
| 1175 |
+
},
|
| 1176 |
+
timeout: 15000,
|
| 1177 |
+
validateStatus: () => true,
|
| 1178 |
+
});
|
| 1179 |
+
const { biz_data } = checkResult(response, refreshToken);
|
| 1180 |
+
if (!biz_data) return 0;
|
| 1181 |
+
const { quota, used } = biz_data.thinking;
|
| 1182 |
+
if (!_.isFinite(quota) || !_.isFinite(used)) return 0;
|
| 1183 |
+
logger.info(`获取深度思考配额: ${quota}/${used}`);
|
| 1184 |
+
return quota - used;
|
| 1185 |
+
}
|
| 1186 |
+
catch (err) {
|
| 1187 |
+
logger.error('获取深度思考配额失败:', err);
|
| 1188 |
+
return 0;
|
| 1189 |
+
}
|
| 1190 |
+
}
|
| 1191 |
+
|
| 1192 |
+
/**
|
| 1193 |
+
* 获取版本号
|
| 1194 |
+
*/
|
| 1195 |
+
async function fetchAppVersion(): Promise<string> {
|
| 1196 |
+
try {
|
| 1197 |
+
logger.info('自动获取版本号');
|
| 1198 |
+
const response = await axios.get('https://chat.deepseek.com/version.txt', {
|
| 1199 |
+
timeout: 5000,
|
| 1200 |
+
validateStatus: () => true,
|
| 1201 |
+
headers: {
|
| 1202 |
+
...FAKE_HEADERS,
|
| 1203 |
+
Cookie: generateCookie()
|
| 1204 |
+
}
|
| 1205 |
+
});
|
| 1206 |
+
if (response.status === 200 && response.data) {
|
| 1207 |
+
const version = response.data.toString().trim();
|
| 1208 |
+
logger.info(`获取版本号: ${version}`);
|
| 1209 |
+
return version;
|
| 1210 |
+
}
|
| 1211 |
+
} catch (err) {
|
| 1212 |
+
logger.error('获取版本号失败:', err);
|
| 1213 |
+
}
|
| 1214 |
+
return "20241018.0";
|
| 1215 |
+
}
|
| 1216 |
+
|
| 1217 |
+
function autoUpdateAppVersion() {
|
| 1218 |
+
fetchAppVersion().then((version) => {
|
| 1219 |
+
FAKE_HEADERS["X-App-Version"] = version;
|
| 1220 |
+
});
|
| 1221 |
+
}
|
| 1222 |
+
|
| 1223 |
+
util.createCronJob('0 */10 * * * *', autoUpdateAppVersion).start();
|
| 1224 |
+
|
| 1225 |
+
getIPAddress().then(() => {
|
| 1226 |
+
autoUpdateAppVersion();
|
| 1227 |
+
}).catch((err) => {
|
| 1228 |
+
logger.error('获取 IP 地址失败:', err);
|
| 1229 |
+
});
|
| 1230 |
+
|
| 1231 |
+
export default {
|
| 1232 |
+
createCompletion,
|
| 1233 |
+
createCompletionStream,
|
| 1234 |
+
getTokenLiveStatus,
|
| 1235 |
+
tokenSplit,
|
| 1236 |
+
fetchAppVersion,
|
| 1237 |
+
};
|
src/api/routes/chat.ts
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import _ from 'lodash';
|
| 2 |
+
|
| 3 |
+
import Request from '@/lib/request/Request.ts';
|
| 4 |
+
import Response from '@/lib/response/Response.ts';
|
| 5 |
+
import chat from '@/api/controllers/chat.ts';
|
| 6 |
+
|
| 7 |
+
export default {
|
| 8 |
+
|
| 9 |
+
prefix: '/v1/chat',
|
| 10 |
+
|
| 11 |
+
post: {
|
| 12 |
+
|
| 13 |
+
'/completions': async (request: Request) => {
|
| 14 |
+
request
|
| 15 |
+
.validate('body.conversation_id', v => _.isUndefined(v) || _.isString(v))
|
| 16 |
+
.validate('body.messages', _.isArray)
|
| 17 |
+
.validate('headers.authorization', _.isString)
|
| 18 |
+
// token切分
|
| 19 |
+
const tokens = chat.tokenSplit(request.headers.authorization);
|
| 20 |
+
// 随机挑选一个token
|
| 21 |
+
const token = _.sample(tokens);
|
| 22 |
+
let { model, conversation_id: convId, messages, stream } = request.body;
|
| 23 |
+
model = model.toLowerCase();
|
| 24 |
+
if (stream) {
|
| 25 |
+
const stream = await chat.createCompletionStream(model, messages, token, convId);
|
| 26 |
+
return new Response(stream, {
|
| 27 |
+
type: "text/event-stream"
|
| 28 |
+
});
|
| 29 |
+
}
|
| 30 |
+
else
|
| 31 |
+
return await chat.createCompletion(model, messages, token, convId);
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
}
|
src/api/routes/index.ts
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import fs from 'fs-extra';
|
| 2 |
+
|
| 3 |
+
import Response from '@/lib/response/Response.ts';
|
| 4 |
+
import chat from "./chat.ts";
|
| 5 |
+
import ping from "./ping.ts";
|
| 6 |
+
import token from './token.js';
|
| 7 |
+
import models from './models.ts';
|
| 8 |
+
|
| 9 |
+
export default [
|
| 10 |
+
{
|
| 11 |
+
get: {
|
| 12 |
+
'/': async () => {
|
| 13 |
+
const content = await fs.readFile('public/welcome.html');
|
| 14 |
+
return new Response(content, {
|
| 15 |
+
type: 'html',
|
| 16 |
+
headers: {
|
| 17 |
+
Expires: '-1'
|
| 18 |
+
}
|
| 19 |
+
});
|
| 20 |
+
}
|
| 21 |
+
}
|
| 22 |
+
},
|
| 23 |
+
chat,
|
| 24 |
+
ping,
|
| 25 |
+
token,
|
| 26 |
+
models
|
| 27 |
+
];
|
src/api/routes/models.ts
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import _ from 'lodash';
|
| 2 |
+
|
| 3 |
+
export default {
|
| 4 |
+
|
| 5 |
+
prefix: '/v1',
|
| 6 |
+
|
| 7 |
+
get: {
|
| 8 |
+
'/models': async () => {
|
| 9 |
+
return {
|
| 10 |
+
"data": [
|
| 11 |
+
{
|
| 12 |
+
"id": "deepseek-chat",
|
| 13 |
+
"object": "model",
|
| 14 |
+
"owned_by": "deepseek-free-api"
|
| 15 |
+
},
|
| 16 |
+
{
|
| 17 |
+
"id": "deepseek-coder",
|
| 18 |
+
"object": "model",
|
| 19 |
+
"owned_by": "deepseek-free-api"
|
| 20 |
+
}
|
| 21 |
+
]
|
| 22 |
+
};
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
}
|
| 26 |
+
}
|
src/api/routes/ping.ts
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export default {
|
| 2 |
+
prefix: '/ping',
|
| 3 |
+
get: {
|
| 4 |
+
'': async () => "pong"
|
| 5 |
+
}
|
| 6 |
+
}
|
src/api/routes/token.ts
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import _ from 'lodash';
|
| 2 |
+
|
| 3 |
+
import Request from '@/lib/request/Request.ts';
|
| 4 |
+
import Response from '@/lib/response/Response.ts';
|
| 5 |
+
import chat from '@/api/controllers/chat.ts';
|
| 6 |
+
import logger from '@/lib/logger.ts';
|
| 7 |
+
|
| 8 |
+
export default {
|
| 9 |
+
|
| 10 |
+
prefix: '/token',
|
| 11 |
+
|
| 12 |
+
post: {
|
| 13 |
+
|
| 14 |
+
'/check': async (request: Request) => {
|
| 15 |
+
request
|
| 16 |
+
.validate('body.token', _.isString)
|
| 17 |
+
const live = await chat.getTokenLiveStatus(request.body.token);
|
| 18 |
+
return {
|
| 19 |
+
live
|
| 20 |
+
}
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
}
|
src/daemon.ts
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
/**
|
| 2 |
+
* 守护进程
|
| 3 |
+
*/
|
| 4 |
+
|
| 5 |
+
import process from 'process';
|
| 6 |
+
import path from 'path';
|
| 7 |
+
import { spawn } from 'child_process';
|
| 8 |
+
|
| 9 |
+
import fs from 'fs-extra';
|
| 10 |
+
import { format as dateFormat } from 'date-fns';
|
| 11 |
+
import 'colors';
|
| 12 |
+
|
| 13 |
+
const CRASH_RESTART_LIMIT = 600; //进程崩溃重启次数限制
|
| 14 |
+
const CRASH_RESTART_DELAY = 5000; //进程崩溃重启延迟
|
| 15 |
+
const LOG_PATH = path.resolve("./logs/daemon.log"); //守护进程日志路径
|
| 16 |
+
let crashCount = 0; //进程崩溃次数
|
| 17 |
+
let currentProcess; //当前运行进程
|
| 18 |
+
|
| 19 |
+
/**
|
| 20 |
+
* 写入守护进程日志
|
| 21 |
+
*/
|
| 22 |
+
function daemonLog(value, color?: string) {
|
| 23 |
+
try {
|
| 24 |
+
const head = `[daemon][${dateFormat(new Date(), "yyyy-MM-dd HH:mm:ss.SSS")}] `;
|
| 25 |
+
value = head + value;
|
| 26 |
+
console.log(color ? value[color] : value);
|
| 27 |
+
fs.ensureDirSync(path.dirname(LOG_PATH));
|
| 28 |
+
fs.appendFileSync(LOG_PATH, value + "\n");
|
| 29 |
+
}
|
| 30 |
+
catch(err) {
|
| 31 |
+
console.error("daemon log write error:", err);
|
| 32 |
+
}
|
| 33 |
+
}
|
| 34 |
+
|
| 35 |
+
daemonLog(`daemon pid: ${process.pid}`);
|
| 36 |
+
|
| 37 |
+
function createProcess() {
|
| 38 |
+
const childProcess = spawn("node", ["index.js", ...process.argv.slice(2)]); //启动子进程
|
| 39 |
+
childProcess.stdout.pipe(process.stdout, { end: false }); //将子进程输出管道到当前进程输出
|
| 40 |
+
childProcess.stderr.pipe(process.stderr, { end: false }); //将子进程错误输出管道到当前进程输出
|
| 41 |
+
currentProcess = childProcess; //更新当前进程
|
| 42 |
+
daemonLog(`process(${childProcess.pid}) has started`);
|
| 43 |
+
childProcess.on("error", err => daemonLog(`process(${childProcess.pid}) error: ${err.stack}`, "red"));
|
| 44 |
+
childProcess.on("close", code => {
|
| 45 |
+
if(code === 0) //进程正常退出
|
| 46 |
+
daemonLog(`process(${childProcess.pid}) has exited`);
|
| 47 |
+
else if(code === 2) //进程已被杀死
|
| 48 |
+
daemonLog(`process(${childProcess.pid}) has been killed!`, "bgYellow");
|
| 49 |
+
else if(code === 3) { //进程主动重启
|
| 50 |
+
daemonLog(`process(${childProcess.pid}) has restart`, "yellow");
|
| 51 |
+
createProcess(); //重新创建进程
|
| 52 |
+
}
|
| 53 |
+
else { //进程发生崩溃
|
| 54 |
+
if(crashCount++ < CRASH_RESTART_LIMIT) { //进程崩溃次数未达重启次数上限前尝试重启
|
| 55 |
+
daemonLog(`process(${childProcess.pid}) has crashed! delay ${CRASH_RESTART_DELAY}ms try restarting...(${crashCount})`, "bgRed");
|
| 56 |
+
setTimeout(() => createProcess(), CRASH_RESTART_DELAY); //延迟指定时长后再重启
|
| 57 |
+
}
|
| 58 |
+
else //进程已崩溃,且无法重启
|
| 59 |
+
daemonLog(`process(${childProcess.pid}) has crashed! unable to restart`, "bgRed");
|
| 60 |
+
}
|
| 61 |
+
}); //子进程关闭监听
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
process.on("exit", code => {
|
| 65 |
+
if(code === 0)
|
| 66 |
+
daemonLog("daemon process exited");
|
| 67 |
+
else if(code === 2)
|
| 68 |
+
daemonLog("daemon process has been killed!");
|
| 69 |
+
}); //守护进程退出事件
|
| 70 |
+
|
| 71 |
+
process.on("SIGTERM", () => {
|
| 72 |
+
daemonLog("received kill signal", "yellow");
|
| 73 |
+
currentProcess && currentProcess.kill("SIGINT");
|
| 74 |
+
process.exit(2);
|
| 75 |
+
}); //kill退出守护进程
|
| 76 |
+
|
| 77 |
+
process.on("SIGINT", () => {
|
| 78 |
+
currentProcess && currentProcess.kill("SIGINT");
|
| 79 |
+
process.exit(0);
|
| 80 |
+
}); //主动退出守护进程
|
| 81 |
+
|
| 82 |
+
createProcess(); //创建进程
|
src/index.ts
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"use strict";
|
| 2 |
+
|
| 3 |
+
import environment from "@/lib/environment.ts";
|
| 4 |
+
import config from "@/lib/config.ts";
|
| 5 |
+
import "@/lib/initialize.ts";
|
| 6 |
+
import server from "@/lib/server.ts";
|
| 7 |
+
import routes from "@/api/routes/index.ts";
|
| 8 |
+
import logger from "@/lib/logger.ts";
|
| 9 |
+
|
| 10 |
+
const startupTime = performance.now();
|
| 11 |
+
|
| 12 |
+
(async () => {
|
| 13 |
+
logger.header();
|
| 14 |
+
|
| 15 |
+
logger.info("<<<< deepseek free server >>>>");
|
| 16 |
+
logger.info("Version:", environment.package.version);
|
| 17 |
+
logger.info("Process id:", process.pid);
|
| 18 |
+
logger.info("Environment:", environment.env);
|
| 19 |
+
logger.info("Service name:", config.service.name);
|
| 20 |
+
|
| 21 |
+
server.attachRoutes(routes);
|
| 22 |
+
await server.listen();
|
| 23 |
+
|
| 24 |
+
config.service.bindAddress &&
|
| 25 |
+
logger.success("Service bind address:", config.service.bindAddress);
|
| 26 |
+
})()
|
| 27 |
+
.then(() =>
|
| 28 |
+
logger.success(
|
| 29 |
+
`Service startup completed (${Math.floor(performance.now() - startupTime)}ms)`
|
| 30 |
+
)
|
| 31 |
+
)
|
| 32 |
+
.catch((err) => console.error(err));
|
src/lib/challenge.ts
ADDED
|
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import fs from 'fs-extra';
|
| 2 |
+
|
| 3 |
+
export class DeepSeekHash {
|
| 4 |
+
private wasmInstance: any;
|
| 5 |
+
private offset: number = 0;
|
| 6 |
+
private cachedUint8Memory: Uint8Array | null = null;
|
| 7 |
+
private cachedTextEncoder: TextEncoder = new TextEncoder();
|
| 8 |
+
|
| 9 |
+
// 编码字符串到 WASM 内存
|
| 10 |
+
private encodeString(
|
| 11 |
+
text: string,
|
| 12 |
+
allocate: (size: number, align: number) => number,
|
| 13 |
+
reallocate?: (ptr: number, oldSize: number, newSize: number, align: number) => number
|
| 14 |
+
): number {
|
| 15 |
+
// 简单情况:当没有 reallocate 函数时,直接编码整个字符串
|
| 16 |
+
if (!reallocate) {
|
| 17 |
+
const encoded = this.cachedTextEncoder.encode(text);
|
| 18 |
+
const ptr = allocate(encoded.length, 1) >>> 0;
|
| 19 |
+
const memory = this.getCachedUint8Memory();
|
| 20 |
+
memory.subarray(ptr, ptr + encoded.length).set(encoded);
|
| 21 |
+
this.offset = encoded.length;
|
| 22 |
+
return ptr;
|
| 23 |
+
}
|
| 24 |
+
|
| 25 |
+
// 复杂情况:分两步处理 ASCII 和非 ASCII 字符
|
| 26 |
+
const strLength = text.length;
|
| 27 |
+
let ptr = allocate(strLength, 1) >>> 0;
|
| 28 |
+
const memory = this.getCachedUint8Memory();
|
| 29 |
+
let asciiLength = 0;
|
| 30 |
+
|
| 31 |
+
// 首先尝试 ASCII 编码
|
| 32 |
+
for (; asciiLength < strLength; asciiLength++) {
|
| 33 |
+
const charCode = text.charCodeAt(asciiLength);
|
| 34 |
+
if (charCode > 127) break;
|
| 35 |
+
memory[ptr + asciiLength] = charCode;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
// 如果存在非 ASCII 字符,需要重新分配空间并处理
|
| 39 |
+
if (asciiLength !== strLength) {
|
| 40 |
+
if (asciiLength > 0) {
|
| 41 |
+
text = text.slice(asciiLength);
|
| 42 |
+
}
|
| 43 |
+
|
| 44 |
+
// 为非 ASCII 字符重新分配空间(每个字符最多需要 3 字节)
|
| 45 |
+
ptr = reallocate(ptr, strLength, asciiLength + text.length * 3, 1) >>> 0;
|
| 46 |
+
|
| 47 |
+
// 使用 encodeInto 处理剩余的非 ASCII 字符
|
| 48 |
+
const result = this.cachedTextEncoder.encodeInto(
|
| 49 |
+
text,
|
| 50 |
+
this.getCachedUint8Memory().subarray(ptr + asciiLength, ptr + asciiLength + text.length * 3)
|
| 51 |
+
);
|
| 52 |
+
asciiLength += result.written;
|
| 53 |
+
|
| 54 |
+
// 最终调整内存大小
|
| 55 |
+
ptr = reallocate(ptr, asciiLength + text.length * 3, asciiLength, 1) >>> 0;
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
+
this.offset = asciiLength;
|
| 59 |
+
return ptr;
|
| 60 |
+
}
|
| 61 |
+
|
| 62 |
+
// 获取 WASM 内存视图
|
| 63 |
+
private getCachedUint8Memory(): Uint8Array {
|
| 64 |
+
if (this.cachedUint8Memory === null || this.cachedUint8Memory.byteLength === 0) {
|
| 65 |
+
this.cachedUint8Memory = new Uint8Array(this.wasmInstance.memory.buffer);
|
| 66 |
+
}
|
| 67 |
+
return this.cachedUint8Memory;
|
| 68 |
+
}
|
| 69 |
+
|
| 70 |
+
// DeepSeekHash 计算函数
|
| 71 |
+
public calculateHash(
|
| 72 |
+
algorithm: string,
|
| 73 |
+
challenge: string,
|
| 74 |
+
salt: string,
|
| 75 |
+
difficulty: number,
|
| 76 |
+
expireAt: number
|
| 77 |
+
): number | undefined {
|
| 78 |
+
if (algorithm !== 'DeepSeekHashV1') {
|
| 79 |
+
throw new Error('Unsupported algorithm: ' + algorithm);
|
| 80 |
+
}
|
| 81 |
+
|
| 82 |
+
// 拼接前缀
|
| 83 |
+
const prefix = `${salt}_${expireAt}_`;
|
| 84 |
+
|
| 85 |
+
try {
|
| 86 |
+
// 分配栈空间
|
| 87 |
+
const retptr = this.wasmInstance.__wbindgen_add_to_stack_pointer(-16);
|
| 88 |
+
|
| 89 |
+
// 获取编码后的指针和长度
|
| 90 |
+
const ptr0 = this.encodeString(
|
| 91 |
+
challenge,
|
| 92 |
+
this.wasmInstance.__wbindgen_export_0,
|
| 93 |
+
this.wasmInstance.__wbindgen_export_1
|
| 94 |
+
);
|
| 95 |
+
const len0 = this.offset;
|
| 96 |
+
|
| 97 |
+
const ptr1 = this.encodeString(
|
| 98 |
+
prefix,
|
| 99 |
+
this.wasmInstance.__wbindgen_export_0,
|
| 100 |
+
this.wasmInstance.__wbindgen_export_1
|
| 101 |
+
);
|
| 102 |
+
const len1 = this.offset;
|
| 103 |
+
|
| 104 |
+
// 传入正确的长度参数
|
| 105 |
+
this.wasmInstance.wasm_solve(retptr, ptr0, len0, ptr1, len1, difficulty);
|
| 106 |
+
|
| 107 |
+
// 获取返回结果
|
| 108 |
+
const dataView = new DataView(this.wasmInstance.memory.buffer);
|
| 109 |
+
const status = dataView.getInt32(retptr + 0, true);
|
| 110 |
+
const value = dataView.getFloat64(retptr + 8, true);
|
| 111 |
+
|
| 112 |
+
// 如果求解失败,返回 undefined
|
| 113 |
+
if (status === 0)
|
| 114 |
+
return undefined;
|
| 115 |
+
|
| 116 |
+
return value;
|
| 117 |
+
|
| 118 |
+
} finally {
|
| 119 |
+
// 释放栈空间
|
| 120 |
+
this.wasmInstance.__wbindgen_add_to_stack_pointer(16);
|
| 121 |
+
}
|
| 122 |
+
}
|
| 123 |
+
|
| 124 |
+
// 初始化 WASM 模块
|
| 125 |
+
public async init(wasmPath: string): Promise<any> {
|
| 126 |
+
const imports = { wbg: {} };
|
| 127 |
+
const wasmBuffer = await fs.readFile(wasmPath);
|
| 128 |
+
const { instance } = await WebAssembly.instantiate(wasmBuffer, imports);
|
| 129 |
+
this.wasmInstance = instance.exports;
|
| 130 |
+
return this.wasmInstance;
|
| 131 |
+
}
|
| 132 |
+
}
|
| 133 |
+
|
| 134 |
+
// 导出类
|
| 135 |
+
export default DeepSeekHash;
|
src/lib/config.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import serviceConfig from "./configs/service-config.ts";
|
| 2 |
+
import systemConfig from "./configs/system-config.ts";
|
| 3 |
+
|
| 4 |
+
class Config {
|
| 5 |
+
|
| 6 |
+
/** 服务配置 */
|
| 7 |
+
service = serviceConfig;
|
| 8 |
+
|
| 9 |
+
/** 系统配置 */
|
| 10 |
+
system = systemConfig;
|
| 11 |
+
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
export default new Config();
|
src/lib/configs/service-config.ts
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import path from 'path';
|
| 2 |
+
|
| 3 |
+
import fs from 'fs-extra';
|
| 4 |
+
import yaml from 'yaml';
|
| 5 |
+
import _ from 'lodash';
|
| 6 |
+
|
| 7 |
+
import environment from '../environment.ts';
|
| 8 |
+
import util from '../util.ts';
|
| 9 |
+
|
| 10 |
+
const CONFIG_PATH = path.join(path.resolve(), 'configs/', environment.env, "/service.yml");
|
| 11 |
+
|
| 12 |
+
/**
|
| 13 |
+
* 服务配置
|
| 14 |
+
*/
|
| 15 |
+
export class ServiceConfig {
|
| 16 |
+
|
| 17 |
+
/** 服务名称 */
|
| 18 |
+
name: string;
|
| 19 |
+
/** @type {string} 服务绑定主机地址 */
|
| 20 |
+
host;
|
| 21 |
+
/** @type {number} 服务绑定端口 */
|
| 22 |
+
port;
|
| 23 |
+
/** @type {string} 服务路由前缀 */
|
| 24 |
+
urlPrefix;
|
| 25 |
+
/** @type {string} 服务绑定地址(外部访问地址) */
|
| 26 |
+
bindAddress;
|
| 27 |
+
|
| 28 |
+
constructor(options?: any) {
|
| 29 |
+
const { name, host, port, urlPrefix, bindAddress } = options || {};
|
| 30 |
+
this.name = _.defaultTo(name, 'deepseek-free-api');
|
| 31 |
+
this.host = _.defaultTo(host, '0.0.0.0');
|
| 32 |
+
this.port = _.defaultTo(port, 5566);
|
| 33 |
+
this.urlPrefix = _.defaultTo(urlPrefix, '');
|
| 34 |
+
this.bindAddress = bindAddress;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
get addressHost() {
|
| 38 |
+
if(this.bindAddress) return this.bindAddress;
|
| 39 |
+
const ipAddresses = util.getIPAddressesByIPv4();
|
| 40 |
+
for(let ipAddress of ipAddresses) {
|
| 41 |
+
if(ipAddress === this.host)
|
| 42 |
+
return ipAddress;
|
| 43 |
+
}
|
| 44 |
+
return ipAddresses[0] || "127.0.0.1";
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
get address() {
|
| 48 |
+
return `${this.addressHost}:${this.port}`;
|
| 49 |
+
}
|
| 50 |
+
|
| 51 |
+
get pageDirUrl() {
|
| 52 |
+
return `http://127.0.0.1:${this.port}/page`;
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
get publicDirUrl() {
|
| 56 |
+
return `http://127.0.0.1:${this.port}/public`;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
static load() {
|
| 60 |
+
const external = _.pickBy(environment, (v, k) => ["name", "host", "port"].includes(k) && !_.isUndefined(v));
|
| 61 |
+
if(!fs.pathExistsSync(CONFIG_PATH)) return new ServiceConfig(external);
|
| 62 |
+
const data = yaml.parse(fs.readFileSync(CONFIG_PATH).toString());
|
| 63 |
+
return new ServiceConfig({ ...data, ...external });
|
| 64 |
+
}
|
| 65 |
+
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
export default ServiceConfig.load();
|
src/lib/configs/system-config.ts
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import path from 'path';
|
| 2 |
+
|
| 3 |
+
import fs from 'fs-extra';
|
| 4 |
+
import yaml from 'yaml';
|
| 5 |
+
import _ from 'lodash';
|
| 6 |
+
|
| 7 |
+
import environment from '../environment.ts';
|
| 8 |
+
|
| 9 |
+
const CONFIG_PATH = path.join(path.resolve(), 'configs/', environment.env, "/system.yml");
|
| 10 |
+
|
| 11 |
+
/**
|
| 12 |
+
* 系统配置
|
| 13 |
+
*/
|
| 14 |
+
export class SystemConfig {
|
| 15 |
+
|
| 16 |
+
/** 是否开启请求日志 */
|
| 17 |
+
requestLog: boolean;
|
| 18 |
+
/** 临时目录路径 */
|
| 19 |
+
tmpDir: string;
|
| 20 |
+
/** 日志目录路径 */
|
| 21 |
+
logDir: string;
|
| 22 |
+
/** 日志写入间隔(毫秒) */
|
| 23 |
+
logWriteInterval: number;
|
| 24 |
+
/** 日志文件有效期(毫秒) */
|
| 25 |
+
logFileExpires: number;
|
| 26 |
+
/** 公共目录路径 */
|
| 27 |
+
publicDir: string;
|
| 28 |
+
/** 临时文件有效期(毫秒) */
|
| 29 |
+
tmpFileExpires: number;
|
| 30 |
+
/** 请求体配置 */
|
| 31 |
+
requestBody: any;
|
| 32 |
+
/** 是否调试模式 */
|
| 33 |
+
debug: boolean;
|
| 34 |
+
|
| 35 |
+
constructor(options?: any) {
|
| 36 |
+
const { requestLog, tmpDir, logDir, logWriteInterval, logFileExpires, publicDir, tmpFileExpires, requestBody, debug } = options || {};
|
| 37 |
+
this.requestLog = _.defaultTo(requestLog, false);
|
| 38 |
+
this.tmpDir = _.defaultTo(tmpDir, './tmp');
|
| 39 |
+
this.logDir = _.defaultTo(logDir, './logs');
|
| 40 |
+
this.logWriteInterval = _.defaultTo(logWriteInterval, 200);
|
| 41 |
+
this.logFileExpires = _.defaultTo(logFileExpires, 2626560000);
|
| 42 |
+
this.publicDir = _.defaultTo(publicDir, './public');
|
| 43 |
+
this.tmpFileExpires = _.defaultTo(tmpFileExpires, 86400000);
|
| 44 |
+
this.requestBody = Object.assign(requestBody || {}, {
|
| 45 |
+
enableTypes: ['json', 'form', 'text', 'xml'],
|
| 46 |
+
encoding: 'utf-8',
|
| 47 |
+
formLimit: '100mb',
|
| 48 |
+
jsonLimit: '100mb',
|
| 49 |
+
textLimit: '100mb',
|
| 50 |
+
xmlLimit: '100mb',
|
| 51 |
+
formidable: {
|
| 52 |
+
maxFileSize: '100mb'
|
| 53 |
+
},
|
| 54 |
+
multipart: true,
|
| 55 |
+
parsedMethods: ['POST', 'PUT', 'PATCH']
|
| 56 |
+
});
|
| 57 |
+
this.debug = _.defaultTo(debug, true);
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
+
get rootDirPath() {
|
| 61 |
+
return path.resolve();
|
| 62 |
+
}
|
| 63 |
+
|
| 64 |
+
get tmpDirPath() {
|
| 65 |
+
return path.resolve(this.tmpDir);
|
| 66 |
+
}
|
| 67 |
+
|
| 68 |
+
get logDirPath() {
|
| 69 |
+
return path.resolve(this.logDir);
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
get publicDirPath() {
|
| 73 |
+
return path.resolve(this.publicDir);
|
| 74 |
+
}
|
| 75 |
+
|
| 76 |
+
static load() {
|
| 77 |
+
if (!fs.pathExistsSync(CONFIG_PATH)) return new SystemConfig();
|
| 78 |
+
const data = yaml.parse(fs.readFileSync(CONFIG_PATH).toString());
|
| 79 |
+
return new SystemConfig(data);
|
| 80 |
+
}
|
| 81 |
+
|
| 82 |
+
}
|
| 83 |
+
|
| 84 |
+
export default SystemConfig.load();
|
src/lib/consts/exceptions.ts
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export default {
|
| 2 |
+
SYSTEM_ERROR: [-1000, '系统异常'],
|
| 3 |
+
SYSTEM_REQUEST_VALIDATION_ERROR: [-1001, '请求参数校验错误'],
|
| 4 |
+
SYSTEM_NOT_ROUTE_MATCHING: [-1002, '无匹配的路由']
|
| 5 |
+
} as Record<string, [number, string]>
|
src/lib/environment.ts
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import path from 'path';
|
| 2 |
+
|
| 3 |
+
import fs from 'fs-extra';
|
| 4 |
+
import minimist from 'minimist';
|
| 5 |
+
import _ from 'lodash';
|
| 6 |
+
|
| 7 |
+
const cmdArgs = minimist(process.argv.slice(2)); //获取命令行参数
|
| 8 |
+
const envVars = process.env; //获取环境变量
|
| 9 |
+
|
| 10 |
+
class Environment {
|
| 11 |
+
|
| 12 |
+
/** 命令行参数 */
|
| 13 |
+
cmdArgs: any;
|
| 14 |
+
/** 环境变量 */
|
| 15 |
+
envVars: any;
|
| 16 |
+
/** 环境名称 */
|
| 17 |
+
env?: string;
|
| 18 |
+
/** 服务名称 */
|
| 19 |
+
name?: string;
|
| 20 |
+
/** 服务地址 */
|
| 21 |
+
host?: string;
|
| 22 |
+
/** 服务端口 */
|
| 23 |
+
port?: number;
|
| 24 |
+
/** 包参数 */
|
| 25 |
+
package: any;
|
| 26 |
+
|
| 27 |
+
constructor(options: any = {}) {
|
| 28 |
+
const { cmdArgs, envVars, package: _package } = options;
|
| 29 |
+
this.cmdArgs = cmdArgs;
|
| 30 |
+
this.envVars = envVars;
|
| 31 |
+
this.env = _.defaultTo(cmdArgs.env || envVars.SERVER_ENV, 'dev');
|
| 32 |
+
this.name = cmdArgs.name || envVars.SERVER_NAME || undefined;
|
| 33 |
+
this.host = cmdArgs.host || envVars.SERVER_HOST || undefined;
|
| 34 |
+
this.port = Number(cmdArgs.port || envVars.SERVER_PORT) ? Number(cmdArgs.port || envVars.SERVER_PORT) : undefined;
|
| 35 |
+
this.package = _package;
|
| 36 |
+
}
|
| 37 |
+
|
| 38 |
+
}
|
| 39 |
+
|
| 40 |
+
export default new Environment({
|
| 41 |
+
cmdArgs,
|
| 42 |
+
envVars,
|
| 43 |
+
package: JSON.parse(fs.readFileSync(path.join(path.resolve(), "package.json")).toString())
|
| 44 |
+
});
|
src/lib/exceptions/APIException.ts
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Exception from './Exception.js';
|
| 2 |
+
|
| 3 |
+
export default class APIException extends Exception {
|
| 4 |
+
|
| 5 |
+
/**
|
| 6 |
+
* 构造异常
|
| 7 |
+
*
|
| 8 |
+
* @param {[number, string]} exception 异常
|
| 9 |
+
*/
|
| 10 |
+
constructor(exception: (string | number)[], errmsg?: string) {
|
| 11 |
+
super(exception, errmsg);
|
| 12 |
+
}
|
| 13 |
+
|
| 14 |
+
}
|
src/lib/exceptions/Exception.ts
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import assert from 'assert';
|
| 2 |
+
|
| 3 |
+
import _ from 'lodash';
|
| 4 |
+
|
| 5 |
+
export default class Exception extends Error {
|
| 6 |
+
|
| 7 |
+
/** 错误码 */
|
| 8 |
+
errcode: number;
|
| 9 |
+
/** 错误消息 */
|
| 10 |
+
errmsg: string;
|
| 11 |
+
/** 数据 */
|
| 12 |
+
data: any;
|
| 13 |
+
/** HTTP状态码 */
|
| 14 |
+
httpStatusCode: number;
|
| 15 |
+
|
| 16 |
+
/**
|
| 17 |
+
* 构造异常
|
| 18 |
+
*
|
| 19 |
+
* @param exception 异常
|
| 20 |
+
* @param _errmsg 异常消息
|
| 21 |
+
*/
|
| 22 |
+
constructor(exception: (string | number)[], _errmsg?: string) {
|
| 23 |
+
assert(_.isArray(exception), 'Exception must be Array');
|
| 24 |
+
const [errcode, errmsg] = exception as [number, string];
|
| 25 |
+
assert(_.isFinite(errcode), 'Exception errcode invalid');
|
| 26 |
+
assert(_.isString(errmsg), 'Exception errmsg invalid');
|
| 27 |
+
super(_errmsg || errmsg);
|
| 28 |
+
this.errcode = errcode;
|
| 29 |
+
this.errmsg = _errmsg || errmsg;
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
compare(exception: (string | number)[]) {
|
| 33 |
+
const [errcode] = exception as [number, string];
|
| 34 |
+
return this.errcode == errcode;
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
setHTTPStatusCode(value: number) {
|
| 38 |
+
this.httpStatusCode = value;
|
| 39 |
+
return this;
|
| 40 |
+
}
|
| 41 |
+
|
| 42 |
+
setData(value: any) {
|
| 43 |
+
this.data = _.defaultTo(value, null);
|
| 44 |
+
return this;
|
| 45 |
+
}
|
| 46 |
+
|
| 47 |
+
}
|
src/lib/http-status-codes.ts
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export default {
|
| 2 |
+
|
| 3 |
+
CONTINUE: 100, //客户端应当继续发送请求。这个临时响应是用来通知客户端它的部分请求已经被服务器接收,且仍未被拒绝。客户端应当继续发送请求的剩余部分,或者如果请求已经完成,忽略这个响应。服务器必须在请求完成后向客户端发送一个最终响应
|
| 4 |
+
SWITCHING_PROTOCOLS: 101, //服务器已经理解了客户端的请求,并将通过Upgrade 消息头通知客户端采用不同的协议来完成这个请求。在发送完这个响应最后的空行后,服务器将会切换到在Upgrade 消息头中定义的那些协议。只有在切换新的协议更有好处的时候才应该采取类似措施。例如,切换到新的HTTP 版本比旧版本更有优势,或者切换到一个实时且同步的协议以传送利用此类特性的资源
|
| 5 |
+
PROCESSING: 102, //处理将被继续执行
|
| 6 |
+
|
| 7 |
+
OK: 200, //请求已成功,请求所希望的响应头或数据体将随此响应返回
|
| 8 |
+
CREATED: 201, //请求已经被实现,而且有一个新的资源已经依据请求的需要而建立,且其 URI 已经随Location 头信息返回。假如需要的资源无法及时建立的话,应当返回 '202 Accepted'
|
| 9 |
+
ACCEPTED: 202, //服务器已接受请求,但尚未处理。正如它可能被拒绝一样,最终该请求可能会也可能不会被执行。在异步操作的场合下,没有比发送这个状态码更方便的做法了。返回202状态码的响应的目的是允许服务器接受其他过程的请求(例如某个每天只执行一次的基于批处理的操作),而不必让客户端一直保持与服务器的连接直到批处理操作全部完成。在接受请求处理并返回202状态码的响应应当在返回的实体中包含一些指示处理当前状态的信息,以及指向处理状态监视器或状态预测的指针,以便用户能够估计操作是否已经完成
|
| 10 |
+
NON_AUTHORITATIVE_INFO: 203, //服务器已成功处理了请求,但返回的实体头部元信息不是在原始服务器上有效的确定集合,而是来自本地或者第三方的拷贝。当前的信息可能是原始版本的子集或者超集。例如,包含资源的元数据可能导致原始服务器知道元信息的超级。使用此状态码不是必须的,而且只有在响应不使用此状态码便会返回200 OK的情况下才是合适的
|
| 11 |
+
NO_CONTENT: 204, //服务器成功处理了请求,但不需要返回任何实体内容,并且希望返回更新了的元信息。响应可能通过实体头部的形式,返回新的或更新后的元信息。如果存在这些头部信息,则应当与所请求的变量相呼应。如果客户端是浏览器的话,那么用户浏览器应保留发送了该请求的页面,而不产生任何文档视图上的变化,即使按照规范新的或更新后的元信息应当被应用到用户浏览器活动视图中的文档。由于204响应被禁止包含任何消息体,因此它始终以消息头后的第一个空行结尾
|
| 12 |
+
RESET_CONTENT: 205, //服务器成功处理了请求,且没有返回任何内容。但是与204响应不同,返回此状态码的响应要求请求者重置文档视图。该响应主要是被用于接受用户输入后,立即重置表单,以便用户能够轻松地开始另一次输入。与204响应一样,该响应也被禁止包含任何消息体,且以消息头后的第一个空行结束
|
| 13 |
+
PARTIAL_CONTENT: 206, //服务器已经成功处理了部分 GET 请求。类似于FlashGet或者迅雷这类的HTTP下载工具都是使用此类响应实现断点续传或者将一个大文档分解为多个下载段同时下载。该请求必须包含 Range 头信息来指示客户端希望得到的内容范围,并且可能包含 If-Range 来作为请求条件。响应必须包含如下的头部域:Content-Range 用以指示本次响应中返回的内容的范围;如果是Content-Type为multipart/byteranges的多段下载,则每一段multipart中都应包含Content-Range域用以指示本段的内容范围。假如响应中包含Content-Length,那么它的数值必须匹配它返回的内容范围的真实字节数。Date和ETag或Content-Location,假如同样的请求本应该返回200响应。Expires, Cache-Control,和/或 Vary,假如其值可能与之前相同变量的其他响应对应的值不同的话。假如本响应请求使用了 If-Range 强缓存验证,那么本次响应不应该包含其他实体头;假如本响应的请求使用了 If-Range 弱缓存验证,那么本次响应禁止包含其他实体头;这避免了缓存的实体内容和更新了的实体头信息之间的不一致。否则,本响应就应当包含所有本应该返回200响应中应当返回的所有实体头部域。假如 ETag 或 Latest-Modified 头部不能精确匹配的话,则客户端缓存应禁止将206响应返回的内容与之前任何缓存过的内容组合在一起。任何不支持 Range 以及 Content-Range 头的缓存都禁止缓存206响应返���的内容
|
| 14 |
+
MULTIPLE_STATUS: 207, //代表之后的消息体将是一个XML消息,并且可能依照之前子请求数量的不同,包含一系列独立的响应代码
|
| 15 |
+
|
| 16 |
+
MULTIPLE_CHOICES: 300, //被请求的资源有一系列可供选择的回馈信息,每个都有自己特定的地址和浏览器驱动的商议信息。用户或浏览器能够自行选择一个首选的地址进行重定向。除非这是一个HEAD请求,否则该响应应当包括一个资源特性及地址的列表的实体,以便用户或浏览器从中选择最合适的重定向地址。这个实体的格式由Content-Type定义的格式所决定。浏览器可能根据响应的格式以及浏览器自身能力,自动作出最合适的选择。当然,RFC 2616规范并没有规定这样的自动选择该如何进行。如果服务器本身已经有了首选的回馈选择,那么在Location中应当指明这个回馈的 URI;浏览器可能会将这个 Location 值作为自动重定向的地址。此外,除非额外指定,否则这个响应也是可缓存的
|
| 17 |
+
MOVED_PERMANENTLY: 301, //被请求的资源已永久移动到新位置,并且将来任何对此资源的引用都应该使用本响应返回的若干个URI之一。如果可能,拥有链接编辑功能的客户端应当自动把请求的地址修改为从服务器反馈回来的地址。除非额外指定,否则这个响应也是可缓存的。新的永久性的URI应当在响应的Location域中返回。除非这是一个HEAD请求,否则响应的实体中应当包含指向新的URI的超链接及简短说明。如果这不是一个GET或者HEAD请求,因此浏览器禁止自动进行重定向,除非得到用户的确认,因为请求的条件可能因此发生变化。注意:对于某些使用 HTTP/1.0 协议的浏览器,当它们发送的POST请求得到了一个301响应的话,接下来的重定向请求将会变成GET方式
|
| 18 |
+
FOUND: 302, //请求的资源现在临时从不同的URI响应请求。由于这样的重定向是临时的,客户端应当继续向原有地址发送以后的请求。只有在Cache-Control或Expires中进行了指定的情况下,这个响应才是可缓存的。新的临时性的URI应当在响应的 Location 域中返回。除非这是一个HEAD请求,否则响应的实体中应当包含指向新的URI的超链接及简短说明。如果这不是一个GET或者HEAD请求,那么浏览器禁止自动进行重定向,除非得到用户的确认,因为请求的条件可能因此发生变化。注意:虽然RFC 1945和RFC 2068规范不允许客户端在重定向时改变请求的方法,但是很多现存的浏览器将302响应视作为303响应,并且使用GET方式访问在Location中规定的URI,而无视原先请求的方法。状态码303和307被添加了进来,用以明确服务器期待客户端进行何种反应
|
| 19 |
+
SEE_OTHER: 303, //对应当前请求的响应可以在另一个URI上被找到,而且客户端应当采用 GET 的方式访问那个资源。这个方法的存在主要是为了允许由脚本激活的POST请求输出重定向到一个新的资源。这个新的 URI 不是原始资源的替代引用。同时,303响应禁止被缓存。当然,第二个请求(重定向)可能被缓存。新的 URI 应当在响应的Location域中返回。除非这是一个HEAD请求,否则响应的实体中应当包含指向新的URI的超链接及简短说明。注意:许多 HTTP/1.1 版以前的浏览器不能正确理解303状态。如果需要考虑与这些浏览器之间的互动,302状态码应该可以胜任,因为大多数的浏览器处理302响应时的方式恰恰就是上述规范要求客户端处理303响应时应当做的
|
| 20 |
+
NOT_MODIFIED: 304, //如果客户端发送了一个带条件的GET请求且该请求已被允许,而文档的内容(自上次访问以来或者根据请求的条件)并没有改变,则服务器应当返回这个状态码。304响应禁止包含消息体,因此始终以消息头后的第一个空行结尾。该响应必须包含以下的头信息:Date,除非这个服务器没有时钟。假如没有时钟的服务器也遵守这些规则,那么代理服务器以及客户端可以自行将Date字段添加到接收到的响应头中去(正如RFC 2068中规定的一样),缓存机制将会正常工作。ETag或 Content-Location,假如同样的请求本应返回200响应。Expires, Cache-Control,和/或Vary,假如其值可能与之前相同变量的其他响应对应的值不同的话。假如本响应请求使用了强缓存验证,那么本次响应不应该包含其他实体头;否则(例如,某个带条件的 GET 请求使用了弱缓存验证),本次响应禁止包含其他实体头;这避免了缓存了的实体内容和更新了的实体头信息之间的不一致。假如某个304响应指明了当前某个实体没有缓存,那么缓存系统必须忽视这个响应,并且重复发送不包含限制条件的请求。假如接收到一个要求更新某个缓存条目的304响应,那么缓存系统必须更新整个条目以反映所有在响应中被更新的字段的值
|
| 21 |
+
USE_PROXY: 305, //被请求的资源必须通过指定的代理才能被访问。Location域中将给出指定的代理所在的URI信息,接收者需要重复发送一个单独的请求,通过这个代理才能访问相应资源。只有原始服务器才能建立305响应。注意:RFC 2068中没有明确305响应是为了重定向一个单独的请求,而且只能被原始服务器建立。忽视这些限制可能导致严重的安全后果
|
| 22 |
+
UNUSED: 306, //在最新版的规范中,306状态码已经不再被使用
|
| 23 |
+
TEMPORARY_REDIRECT: 307, //请求的资源现在临时从不同的URI 响应请求。由于这样的重定向是临时的,客户端应当继续向原有地址发送以后的请求。只有在Cache-Control或Expires中进行了指定的情况下,这个响应才是可缓存的。新的临时性的URI 应当在响应的Location域中返回。除非这是一个HEAD请求,否则响应的实体中应当包含指向新的URI 的超链接及简短说明。因为部分浏览器不能识别307响应,因此需要添加上述必要信息以便用户能够理解并向新的 URI 发出访问请求。如果这不是一个GET或者HEAD请求,那么浏览器禁止自动进行重定向,除非得到用户的确认,因为请求的条件可能因此发生变化
|
| 24 |
+
|
| 25 |
+
BAD_REQUEST: 400, //1.语义有误,当前请求无法被服务器理解。除非进行修改,否则客户端不应该重复提交这个请求 2.请求参数有误
|
| 26 |
+
UNAUTHORIZED: 401, //当前请求需要用户验证。该响应必须包含一个适用于被请求资源的 WWW-Authenticate 信息头用以询问用户信息。客户端可以重复提交一个包含恰当的 Authorization 头信息的请求。如果当前请求已经包含了 Authorization 证书,那么401响应代表着服务器验证已经拒绝了那些证书。如果401响应包含了与前一个响应相同的身份验证询问,且浏览器已经至少尝试了一次验证,那么浏览器应当向用户展示响应中包含的实体信息,因为这个实体信息中可能包含了相关诊断信息。参见RFC 2617
|
| 27 |
+
PAYMENT_REQUIRED: 402, //该状态码是为了将来可能的需求而预留的
|
| 28 |
+
FORBIDDEN: 403, //服务器已经理解请求,但是拒绝执行它。与401响应不同的是,身份验证并不能提供任何帮助,而且这个请求也不应该被重复提交。如果这不是一个HEAD请求,而且服务器希望能够讲清楚为何请求不能被执行,那么就应该在实体内描述拒绝的原因。当然服务器也可以返回一个404响应,假如它不希望让客户端获得任何信息
|
| 29 |
+
NOT_FOUND: 404, //请求失败,请求所希望得到的资源未被在服务器上发现。没有信息能够告诉用户这个状况到底是暂时的还是永久的。假如服务器知道情况的话,应当使用410状态码来告知旧资源因为某些内部的配置机制问题,已经永久的不可用,而且没有任何可以跳转的地址。404这个状态码被广泛应用于当服务器不想揭示到底为何请求被拒绝或者没有其他适合的响应可用的情况下
|
| 30 |
+
METHOD_NOT_ALLOWED: 405, //请求行中指定的请求方法不能被用于请求相应的资源。该响应必须返回一个Allow 头信息用以表示出当前资源能够接受的请求方法的列表。鉴于PUT,DELETE方法会对服务器上的资源进行写操作,因而绝大部分的网页服务器都不支持或者在默认配置下不允许上述请求方法,对于此类请求均会返回405错误
|
| 31 |
+
NO_ACCEPTABLE: 406, //请求的资源的内容特性无法满足请求头中的条件,因而无法生成响应实体。除非这是一个 HEAD 请求,否则该响应就应当返回一个包含可以让用户或者浏览器从中选择最合适的实体特性以及地址列表的实体。实体的格式由Content-Type头中定义的媒体类型决定。浏览器可以根据格式及自身能力自行作出最佳选择。但是,规范中并没有定义任何作出此类自动选择的标准
|
| 32 |
+
PROXY_AUTHENTICATION_REQUIRED: 407, //与401响应类似,只不过客户端必须在代理服务器上进行身份验证。代理服务器必须返回一个Proxy-Authenticate用以进行身份询问。客户端可以返回一个Proxy-Authorization信息头用以验证。参见RFC 2617
|
| 33 |
+
REQUEST_TIMEOUT: 408, //请求超时。客户端没有在服务器预备等待的时间内完成一个请求的发送。客户端可以随时再次提交这一请求而无需进行任何更改
|
| 34 |
+
CONFLICT: 409, //由于和被请求的资源的当前状态之间存在冲突,请求无法完成。这个代码只允许用在这样的情况下才能被使用:用户被认为能够解决冲突,并且会重新提交新的请求。该响应应当包含足够的信息以便用户发现冲突的源头。冲突通常发生于对PUT请求的处理中。例如,在采用版本检查的环境下,某次PUT提交的对特定资源���修改请求所附带的版本信息与之前的某个(第三方)请求向冲突,那么此时服务器就应该返回一个409错误,告知用户请求无法完成。此时,响应实体中很可能会包含两个冲突版本之间的差异比较,以便用户重新提交归并以后的新版本
|
| 35 |
+
GONE: 410, //被请求的资源在服务器上已经不再可用,而且没有任何已知的转发地址。这样的状况应当被认为是永久性的。如果可能,拥有链接编辑功能的客户端应当在获得用户许可后删除所有指向这个地址的引用。如果服务器不知道或者无法确定这个状况是否是永久的,那么就应该使用404状态码。除非额外说明,否则这个响应是可缓存的。410响应的目的主要是帮助网站管理员维护网站,通知用户该资源已经不再可用,并且服务器拥有者希望所有指向这个资源的远端连接也被删除。这类事件在限时、增值服务中很普遍。同样,410响应也被用于通知客户端在当前服务器站点上,原本属于某个个人的资源已经不再可用。当然,是否需要把所有永久不可用的资源标记为'410 Gone',以及是否需要保持此标记多长时间,完全取决于服务器拥有者
|
| 36 |
+
LENGTH_REQUIRED: 411, //服务器拒绝在没有定义Content-Length头的情况下接受请求。在添加了表明请求消息体长度的有效Content-Length头之后,客户端可以再次提交该请求
|
| 37 |
+
PRECONDITION_FAILED: 412, //服务器在验证在请求的头字段中给出先决条件时,没能满足其中的一个或多个。这个状态码允许客户端在获取资源时在请求的元信息(请求头字段数据)中设置先决条件,以此避免该请求方法被应用到其希望的内容以外的资源上
|
| 38 |
+
REQUEST_ENTITY_TOO_LARGE: 413, //服务器拒绝处理当前请求,因为该请求提交的实体数据大小超过了服务器愿意或者能够处理的范围。此种情况下,服务器可以关闭连接以免客户端继续发送此请求。如果这个状况是临时的,服务器应当返回一个 Retry-After 的响应头,以告知客户端可以在多少时间以后重新尝试
|
| 39 |
+
REQUEST_URI_TOO_LONG: 414, //请求的URI长度超过了服务器能够解释的长度,因此服务器拒绝对该请求提供服务。这比较少见,通常的情况包括:本应使用POST方法的表单提交变成了GET方法,导致查询字符串(Query String)过长。重定向URI “黑洞”,例如每次重定向把旧的URI作为新的URI的一部分,导致在若干次重定向后URI超长。客户端正在尝试利用某些服务器中存在的安全漏洞攻击服务器。这类服务器使用固定长度的缓冲读取或操作请求的URI,当GET后的参数超过某个数值后,可能会产生缓冲区溢出,导致任意代码被执行[1]。没有此类漏洞的服务器,应当返回414状态码
|
| 40 |
+
UNSUPPORTED_MEDIA_TYPE: 415, //对于当前请求的方法和所请求的资源,请求中提交的实体并不是服务器中所支持的格式,因此请求被拒绝
|
| 41 |
+
REQUESTED_RANGE_NOT_SATISFIABLE: 416, //如果请求中包含了Range请求头,并且Range中指定的任何数据范围都与当前资源的可用范围不重合,同时请求中又没有定义If-Range请求头,那么服务器就应当返回416状态码。假如Range使用的是字节范围,那么这种情况就是指请求指定的所有数据范围的首字节位置都超过了当前资源的长度。服务器也应当在返回416状态码的同时,包含一个Content-Range实体头,用以指明当前资源的长度。这个响应也被禁止使用multipart/byteranges作为其 Content-Type
|
| 42 |
+
EXPECTION_FAILED: 417, //在请求头Expect中指定的预期内容无法被服务器满足,或者这个服务器是一个代理服务器,它有明显的证据证明在当前路由的下一个节点上,Expect的内容无法被满足
|
| 43 |
+
TOO_MANY_CONNECTIONS: 421, //从当前客户端所在的IP地址到服务器的连接数超过了服务器许可的最大范围。通常,这里的IP地址指的是从服务器上看到的客户端地址(比如用户的网关或者代理服务器地址)。在这种情况下,连接数的计算可能涉及到不止一个终端用户
|
| 44 |
+
UNPROCESSABLE_ENTITY: 422, //请求格式正确,但是由于含有语义错误,无法响应
|
| 45 |
+
FAILED_DEPENDENCY: 424, //由于之前的某个请求发生的错误,导致当前请求失败,例如PROPPATCH
|
| 46 |
+
UNORDERED_COLLECTION: 425, //在WebDav Advanced Collections 草案中定义,但是未出现在《WebDAV 顺序集协议》(RFC 3658)中
|
| 47 |
+
UPGRADE_REQUIRED: 426, //客户端应当切换到TLS/1.0
|
| 48 |
+
RETRY_WITH: 449, //由微软扩展,代表请求应当在执行完适当的操作后进行重试
|
| 49 |
+
|
| 50 |
+
INTERNAL_SERVER_ERROR: 500, //服务器遇到了一个未曾预料的状况,导致了它无法完成对请求的处理。一般来说,这个问题都会在服务器的程序码出错时出现
|
| 51 |
+
NOT_IMPLEMENTED: 501, //服务器不支持当前请求所需要的某个功能。当服务器无法识别请求的方法,并且无法支持其对任何资源的请求
|
| 52 |
+
BAD_GATEWAY: 502, //作为网关或者代理工作的服务器尝试执行请求时,从上游服务器接收到无效的响应
|
| 53 |
+
SERVICE_UNAVAILABLE: 503, //由于临时的服务器维护或者过载,服务器当前无法处理请求。这个状况是临时的,并且将在一段时间以后恢复。如果能够预计延迟时间,那么响应中可以包含一个 Retry-After 头用以标明这个延迟时间。如果没有给出这个 Retry-After 信息,那么客户端应当以处理500响应的方式处理它。注意:503状态码的存在并不意味着服务器在过载的时候必须使用它。某些服务器只不过是希望拒绝客户端的连接
|
| 54 |
+
GATEWAY_TIMEOUT: 504, //作为网关或者代理工作的服务器尝试执行请求时,未能及时从上游服务器(URI标识出的服务器,例如HTTP、FTP、LDAP)或者辅助服务器(例如DNS)收到响应。注意:某些代理服务器在DNS查询超时时会返回400或者500错误
|
| 55 |
+
HTTP_VERSION_NOT_SUPPORTED: 505, //服务器不支持,或者拒绝支持在请求中使用的HTTP版本。这暗示着服务器不能或不愿使用与客户端相同的版本。响应中应当包含一个描述了为何版本不被支持以及服务器支持哪些协议的实体
|
| 56 |
+
VARIANT_ALSO_NEGOTIATES: 506, //服务器存在内部配置错误:被请求的协商变元资源被配置为在透明内容协商中使用自己,因此在一个协商处理中不是一个合适的重点
|
| 57 |
+
INSUFFICIENT_STORAGE: 507, //服务器无法存储完成请求所必须的内容。这个状况被认为是临时的
|
| 58 |
+
BANDWIDTH_LIMIT_EXCEEDED: 509, //服务器达到带宽限制。这不是一个官方的状态码,但是仍被广泛使用
|
| 59 |
+
NOT_EXTENDED: 510 //获取资源所需要的策略并没有没满足
|
| 60 |
+
|
| 61 |
+
};
|
src/lib/initialize.ts
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import logger from './logger.js';
|
| 2 |
+
import chat from "@/api/controllers/chat.ts";
|
| 3 |
+
import environment from "./environment.ts";
|
| 4 |
+
|
| 5 |
+
// 允许无限量的监听器
|
| 6 |
+
process.setMaxListeners(Infinity);
|
| 7 |
+
// 输出未捕获异常
|
| 8 |
+
process.on("uncaughtException", (err, origin) => {
|
| 9 |
+
logger.error(`An unhandled error occurred: ${origin}`, err);
|
| 10 |
+
});
|
| 11 |
+
// 输出未处理的Promise.reject
|
| 12 |
+
process.on("unhandledRejection", (_, promise) => {
|
| 13 |
+
promise.catch(err => logger.error("An unhandled rejection occurred:", err));
|
| 14 |
+
});
|
| 15 |
+
// 输出系统警告信息
|
| 16 |
+
process.on("warning", warning => logger.warn("System warning: ", warning));
|
| 17 |
+
// 进程退出监听
|
| 18 |
+
process.on("exit", () => {
|
| 19 |
+
logger.info("Service exit");
|
| 20 |
+
logger.footer();
|
| 21 |
+
});
|
| 22 |
+
// 进程被kill
|
| 23 |
+
process.on("SIGTERM", () => {
|
| 24 |
+
logger.warn("received kill signal");
|
| 25 |
+
process.exit(2);
|
| 26 |
+
});
|
| 27 |
+
// Ctrl-C进程退出
|
| 28 |
+
process.on("SIGINT", () => {
|
| 29 |
+
process.exit(0);
|
| 30 |
+
});
|
src/lib/interfaces/ICompletionMessage.ts
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
export default interface ICompletionMessage {
|
| 2 |
+
role: 'system' | 'assistant' | 'user' | 'function';
|
| 3 |
+
content: string;
|
| 4 |
+
}
|
src/lib/logger.ts
ADDED
|
@@ -0,0 +1,184 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import path from 'path';
|
| 2 |
+
import _util from 'util';
|
| 3 |
+
|
| 4 |
+
import 'colors';
|
| 5 |
+
import _ from 'lodash';
|
| 6 |
+
import fs from 'fs-extra';
|
| 7 |
+
import { format as dateFormat } from 'date-fns';
|
| 8 |
+
|
| 9 |
+
import config from './config.ts';
|
| 10 |
+
import util from './util.ts';
|
| 11 |
+
|
| 12 |
+
const isVercelEnv = process.env.VERCEL;
|
| 13 |
+
|
| 14 |
+
class LogWriter {
|
| 15 |
+
|
| 16 |
+
#buffers = [];
|
| 17 |
+
|
| 18 |
+
constructor() {
|
| 19 |
+
!isVercelEnv && fs.ensureDirSync(config.system.logDirPath);
|
| 20 |
+
!isVercelEnv && this.work();
|
| 21 |
+
}
|
| 22 |
+
|
| 23 |
+
push(content) {
|
| 24 |
+
const buffer = Buffer.from(content);
|
| 25 |
+
this.#buffers.push(buffer);
|
| 26 |
+
}
|
| 27 |
+
|
| 28 |
+
writeSync(buffer) {
|
| 29 |
+
!isVercelEnv && fs.appendFileSync(path.join(config.system.logDirPath, `/${util.getDateString()}.log`), buffer);
|
| 30 |
+
}
|
| 31 |
+
|
| 32 |
+
async write(buffer) {
|
| 33 |
+
!isVercelEnv && await fs.appendFile(path.join(config.system.logDirPath, `/${util.getDateString()}.log`), buffer);
|
| 34 |
+
}
|
| 35 |
+
|
| 36 |
+
flush() {
|
| 37 |
+
if(!this.#buffers.length) return;
|
| 38 |
+
!isVercelEnv && fs.appendFileSync(path.join(config.system.logDirPath, `/${util.getDateString()}.log`), Buffer.concat(this.#buffers));
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
work() {
|
| 42 |
+
if (!this.#buffers.length) return setTimeout(this.work.bind(this), config.system.logWriteInterval);
|
| 43 |
+
const buffer = Buffer.concat(this.#buffers);
|
| 44 |
+
this.#buffers = [];
|
| 45 |
+
this.write(buffer)
|
| 46 |
+
.finally(() => setTimeout(this.work.bind(this), config.system.logWriteInterval))
|
| 47 |
+
.catch(err => console.error("Log write error:", err));
|
| 48 |
+
}
|
| 49 |
+
|
| 50 |
+
}
|
| 51 |
+
|
| 52 |
+
class LogText {
|
| 53 |
+
|
| 54 |
+
/** @type {string} 日志级别 */
|
| 55 |
+
level;
|
| 56 |
+
/** @type {string} 日志文本 */
|
| 57 |
+
text;
|
| 58 |
+
/** @type {string} 日志来源 */
|
| 59 |
+
source;
|
| 60 |
+
/** @type {Date} 日志发生时间 */
|
| 61 |
+
time = new Date();
|
| 62 |
+
|
| 63 |
+
constructor(level, ...params) {
|
| 64 |
+
this.level = level;
|
| 65 |
+
this.text = _util.format.apply(null, params);
|
| 66 |
+
this.source = this.#getStackTopCodeInfo();
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
#getStackTopCodeInfo() {
|
| 70 |
+
const unknownInfo = { name: "unknown", codeLine: 0, codeColumn: 0 };
|
| 71 |
+
const stackArray = new Error().stack.split("\n");
|
| 72 |
+
const text = stackArray[4];
|
| 73 |
+
if (!text)
|
| 74 |
+
return unknownInfo;
|
| 75 |
+
const match = text.match(/at (.+) \((.+)\)/) || text.match(/at (.+)/);
|
| 76 |
+
if (!match || !_.isString(match[2] || match[1]))
|
| 77 |
+
return unknownInfo;
|
| 78 |
+
const temp = match[2] || match[1];
|
| 79 |
+
const _match = temp.match(/([a-zA-Z0-9_\-\.]+)\:(\d+)\:(\d+)$/);
|
| 80 |
+
if (!_match)
|
| 81 |
+
return unknownInfo;
|
| 82 |
+
const [, scriptPath, codeLine, codeColumn] = _match as any;
|
| 83 |
+
return {
|
| 84 |
+
name: scriptPath ? scriptPath.replace(/.js$/, "") : "unknown",
|
| 85 |
+
path: scriptPath || null,
|
| 86 |
+
codeLine: parseInt(codeLine || 0),
|
| 87 |
+
codeColumn: parseInt(codeColumn || 0)
|
| 88 |
+
};
|
| 89 |
+
}
|
| 90 |
+
|
| 91 |
+
toString() {
|
| 92 |
+
return `[${dateFormat(this.time, "yyyy-MM-dd HH:mm:ss.SSS")}][${this.level}][${this.source.name}<${this.source.codeLine},${this.source.codeColumn}>] ${this.text}`;
|
| 93 |
+
}
|
| 94 |
+
|
| 95 |
+
}
|
| 96 |
+
|
| 97 |
+
class Logger {
|
| 98 |
+
|
| 99 |
+
/** @type {Object} 系统配置 */
|
| 100 |
+
config = {};
|
| 101 |
+
/** @type {Object} 日志级别映射 */
|
| 102 |
+
static Level = {
|
| 103 |
+
Success: "success",
|
| 104 |
+
Info: "info",
|
| 105 |
+
Log: "log",
|
| 106 |
+
Debug: "debug",
|
| 107 |
+
Warning: "warning",
|
| 108 |
+
Error: "error",
|
| 109 |
+
Fatal: "fatal"
|
| 110 |
+
};
|
| 111 |
+
/** @type {Object} 日志级别文本颜色樱色 */
|
| 112 |
+
static LevelColor = {
|
| 113 |
+
[Logger.Level.Success]: "green",
|
| 114 |
+
[Logger.Level.Info]: "brightCyan",
|
| 115 |
+
[Logger.Level.Debug]: "white",
|
| 116 |
+
[Logger.Level.Warning]: "brightYellow",
|
| 117 |
+
[Logger.Level.Error]: "brightRed",
|
| 118 |
+
[Logger.Level.Fatal]: "red"
|
| 119 |
+
};
|
| 120 |
+
#writer;
|
| 121 |
+
|
| 122 |
+
constructor() {
|
| 123 |
+
this.#writer = new LogWriter();
|
| 124 |
+
}
|
| 125 |
+
|
| 126 |
+
header() {
|
| 127 |
+
this.#writer.writeSync(Buffer.from(`\n\n===================== LOG START ${dateFormat(new Date(), "yyyy-MM-dd HH:mm:ss.SSS")} =====================\n\n`));
|
| 128 |
+
}
|
| 129 |
+
|
| 130 |
+
footer() {
|
| 131 |
+
this.#writer.flush(); //将未写入文件的日志缓存写入
|
| 132 |
+
this.#writer.writeSync(Buffer.from(`\n\n===================== LOG END ${dateFormat(new Date(), "yyyy-MM-dd HH:mm:ss.SSS")} =====================\n\n`));
|
| 133 |
+
}
|
| 134 |
+
|
| 135 |
+
success(...params) {
|
| 136 |
+
const content = new LogText(Logger.Level.Success, ...params).toString();
|
| 137 |
+
console.info(content[Logger.LevelColor[Logger.Level.Success]]);
|
| 138 |
+
this.#writer.push(content + "\n");
|
| 139 |
+
}
|
| 140 |
+
|
| 141 |
+
info(...params) {
|
| 142 |
+
const content = new LogText(Logger.Level.Info, ...params).toString();
|
| 143 |
+
console.info(content[Logger.LevelColor[Logger.Level.Info]]);
|
| 144 |
+
this.#writer.push(content + "\n");
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
log(...params) {
|
| 148 |
+
const content = new LogText(Logger.Level.Log, ...params).toString();
|
| 149 |
+
console.log(content[Logger.LevelColor[Logger.Level.Log]]);
|
| 150 |
+
this.#writer.push(content + "\n");
|
| 151 |
+
}
|
| 152 |
+
|
| 153 |
+
debug(...params) {
|
| 154 |
+
if(!config.system.debug) return; //非调试模式忽略debug
|
| 155 |
+
const content = new LogText(Logger.Level.Debug, ...params).toString();
|
| 156 |
+
console.debug(content[Logger.LevelColor[Logger.Level.Debug]]);
|
| 157 |
+
this.#writer.push(content + "\n");
|
| 158 |
+
}
|
| 159 |
+
|
| 160 |
+
warn(...params) {
|
| 161 |
+
const content = new LogText(Logger.Level.Warning, ...params).toString();
|
| 162 |
+
console.warn(content[Logger.LevelColor[Logger.Level.Warning]]);
|
| 163 |
+
this.#writer.push(content + "\n");
|
| 164 |
+
}
|
| 165 |
+
|
| 166 |
+
error(...params) {
|
| 167 |
+
const content = new LogText(Logger.Level.Error, ...params).toString();
|
| 168 |
+
console.error(content[Logger.LevelColor[Logger.Level.Error]]);
|
| 169 |
+
this.#writer.push(content);
|
| 170 |
+
}
|
| 171 |
+
|
| 172 |
+
fatal(...params) {
|
| 173 |
+
const content = new LogText(Logger.Level.Fatal, ...params).toString();
|
| 174 |
+
console.error(content[Logger.LevelColor[Logger.Level.Fatal]]);
|
| 175 |
+
this.#writer.push(content);
|
| 176 |
+
}
|
| 177 |
+
|
| 178 |
+
destory() {
|
| 179 |
+
this.#writer.destory();
|
| 180 |
+
}
|
| 181 |
+
|
| 182 |
+
}
|
| 183 |
+
|
| 184 |
+
export default new Logger();
|
src/lib/request/Request.ts
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import _ from 'lodash';
|
| 2 |
+
|
| 3 |
+
import APIException from '@/lib/exceptions/APIException.ts';
|
| 4 |
+
import EX from '@/api/consts/exceptions.ts';
|
| 5 |
+
import logger from '@/lib/logger.ts';
|
| 6 |
+
import util from '@/lib/util.ts';
|
| 7 |
+
|
| 8 |
+
export interface RequestOptions {
|
| 9 |
+
time?: number;
|
| 10 |
+
}
|
| 11 |
+
|
| 12 |
+
export default class Request {
|
| 13 |
+
|
| 14 |
+
/** 请求方法 */
|
| 15 |
+
method: string;
|
| 16 |
+
/** 请求URL */
|
| 17 |
+
url: string;
|
| 18 |
+
/** 请求路径 */
|
| 19 |
+
path: string;
|
| 20 |
+
/** 请求载荷类型 */
|
| 21 |
+
type: string;
|
| 22 |
+
/** 请求headers */
|
| 23 |
+
headers: any;
|
| 24 |
+
/** 请求原始查询字符串 */
|
| 25 |
+
search: string;
|
| 26 |
+
/** 请求查询参数 */
|
| 27 |
+
query: any;
|
| 28 |
+
/** 请求URL参数 */
|
| 29 |
+
params: any;
|
| 30 |
+
/** 请求载荷 */
|
| 31 |
+
body: any;
|
| 32 |
+
/** 上传的文件 */
|
| 33 |
+
files: any[];
|
| 34 |
+
/** 客户端IP地址 */
|
| 35 |
+
remoteIP: string | null;
|
| 36 |
+
/** 请求接受时间戳(毫秒) */
|
| 37 |
+
time: number;
|
| 38 |
+
|
| 39 |
+
constructor(ctx, options: RequestOptions = {}) {
|
| 40 |
+
const { time } = options;
|
| 41 |
+
this.method = ctx.request.method;
|
| 42 |
+
this.url = ctx.request.url;
|
| 43 |
+
this.path = ctx.request.path;
|
| 44 |
+
this.type = ctx.request.type;
|
| 45 |
+
this.headers = ctx.request.headers || {};
|
| 46 |
+
this.search = ctx.request.search;
|
| 47 |
+
this.query = ctx.query || {};
|
| 48 |
+
this.params = ctx.params || {};
|
| 49 |
+
this.body = ctx.request.body || {};
|
| 50 |
+
this.files = ctx.request.files || {};
|
| 51 |
+
this.remoteIP = this.headers["X-Real-IP"] || this.headers["x-real-ip"] || this.headers["X-Forwarded-For"] || this.headers["x-forwarded-for"] || ctx.ip || null;
|
| 52 |
+
this.time = Number(_.defaultTo(time, util.timestamp()));
|
| 53 |
+
}
|
| 54 |
+
|
| 55 |
+
validate(key: string, fn?: Function) {
|
| 56 |
+
try {
|
| 57 |
+
const value = _.get(this, key);
|
| 58 |
+
if (fn) {
|
| 59 |
+
if (fn(value) === false)
|
| 60 |
+
throw `[Mismatch] -> ${fn}`;
|
| 61 |
+
}
|
| 62 |
+
else if (_.isUndefined(value))
|
| 63 |
+
throw '[Undefined]';
|
| 64 |
+
}
|
| 65 |
+
catch (err) {
|
| 66 |
+
logger.warn(`Params ${key} invalid:`, err);
|
| 67 |
+
throw new APIException(EX.API_REQUEST_PARAMS_INVALID, `Params ${key} invalid`);
|
| 68 |
+
}
|
| 69 |
+
return this;
|
| 70 |
+
}
|
| 71 |
+
|
| 72 |
+
}
|
src/lib/response/Body.ts
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import _ from 'lodash';
|
| 2 |
+
|
| 3 |
+
export interface BodyOptions {
|
| 4 |
+
code?: number;
|
| 5 |
+
message?: string;
|
| 6 |
+
data?: any;
|
| 7 |
+
statusCode?: number;
|
| 8 |
+
}
|
| 9 |
+
|
| 10 |
+
export default class Body {
|
| 11 |
+
|
| 12 |
+
/** 状态码 */
|
| 13 |
+
code: number;
|
| 14 |
+
/** 状态消息 */
|
| 15 |
+
message: string;
|
| 16 |
+
/** 载荷 */
|
| 17 |
+
data: any;
|
| 18 |
+
/** HTTP状态码 */
|
| 19 |
+
statusCode: number;
|
| 20 |
+
|
| 21 |
+
constructor(options: BodyOptions = {}) {
|
| 22 |
+
const { code, message, data, statusCode } = options;
|
| 23 |
+
this.code = Number(_.defaultTo(code, 0));
|
| 24 |
+
this.message = _.defaultTo(message, 'OK');
|
| 25 |
+
this.data = _.defaultTo(data, null);
|
| 26 |
+
this.statusCode = Number(_.defaultTo(statusCode, 200));
|
| 27 |
+
}
|
| 28 |
+
|
| 29 |
+
toObject() {
|
| 30 |
+
return {
|
| 31 |
+
code: this.code,
|
| 32 |
+
message: this.message,
|
| 33 |
+
data: this.data
|
| 34 |
+
};
|
| 35 |
+
}
|
| 36 |
+
|
| 37 |
+
static isInstance(value) {
|
| 38 |
+
return value instanceof Body;
|
| 39 |
+
}
|
| 40 |
+
|
| 41 |
+
}
|
src/lib/response/FailureBody.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import _ from 'lodash';
|
| 2 |
+
|
| 3 |
+
import Body from './Body.ts';
|
| 4 |
+
import Exception from '../exceptions/Exception.ts';
|
| 5 |
+
import APIException from '../exceptions/APIException.ts';
|
| 6 |
+
import EX from '../consts/exceptions.ts';
|
| 7 |
+
import HTTP_STATUS_CODES from '../http-status-codes.ts';
|
| 8 |
+
|
| 9 |
+
export default class FailureBody extends Body {
|
| 10 |
+
|
| 11 |
+
constructor(error: APIException | Exception | Error, _data?: any) {
|
| 12 |
+
let errcode, errmsg, data = _data, httpStatusCode = HTTP_STATUS_CODES.OK;;
|
| 13 |
+
if(_.isString(error))
|
| 14 |
+
error = new Exception(EX.SYSTEM_ERROR, error);
|
| 15 |
+
else if(error instanceof APIException || error instanceof Exception)
|
| 16 |
+
({ errcode, errmsg, data, httpStatusCode } = error);
|
| 17 |
+
else if(_.isError(error))
|
| 18 |
+
({ errcode, errmsg, data, httpStatusCode } = new Exception(EX.SYSTEM_ERROR, error.message));
|
| 19 |
+
super({
|
| 20 |
+
code: errcode || -1,
|
| 21 |
+
message: errmsg || 'Internal error',
|
| 22 |
+
data,
|
| 23 |
+
statusCode: httpStatusCode
|
| 24 |
+
});
|
| 25 |
+
}
|
| 26 |
+
|
| 27 |
+
static isInstance(value) {
|
| 28 |
+
return value instanceof FailureBody;
|
| 29 |
+
}
|
| 30 |
+
|
| 31 |
+
}
|
src/lib/response/Response.ts
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import mime from 'mime';
|
| 2 |
+
import _ from 'lodash';
|
| 3 |
+
|
| 4 |
+
import Body from './Body.ts';
|
| 5 |
+
import util from '../util.ts';
|
| 6 |
+
|
| 7 |
+
export interface ResponseOptions {
|
| 8 |
+
statusCode?: number;
|
| 9 |
+
type?: string;
|
| 10 |
+
headers?: Record<string, any>;
|
| 11 |
+
redirect?: string;
|
| 12 |
+
body?: any;
|
| 13 |
+
size?: number;
|
| 14 |
+
time?: number;
|
| 15 |
+
}
|
| 16 |
+
|
| 17 |
+
export default class Response {
|
| 18 |
+
|
| 19 |
+
/** 响应HTTP状态码 */
|
| 20 |
+
statusCode: number;
|
| 21 |
+
/** 响应内容类型 */
|
| 22 |
+
type: string;
|
| 23 |
+
/** 响应headers */
|
| 24 |
+
headers: Record<string, any>;
|
| 25 |
+
/** 重定向目标 */
|
| 26 |
+
redirect: string;
|
| 27 |
+
/** 响应载荷 */
|
| 28 |
+
body: any;
|
| 29 |
+
/** 响应载荷大小 */
|
| 30 |
+
size: number;
|
| 31 |
+
/** 响应时间戳 */
|
| 32 |
+
time: number;
|
| 33 |
+
|
| 34 |
+
constructor(body: any, options: ResponseOptions = {}) {
|
| 35 |
+
const { statusCode, type, headers, redirect, size, time } = options;
|
| 36 |
+
this.statusCode = Number(_.defaultTo(statusCode, Body.isInstance(body) ? body.statusCode : undefined))
|
| 37 |
+
this.type = type;
|
| 38 |
+
this.headers = headers;
|
| 39 |
+
this.redirect = redirect;
|
| 40 |
+
this.size = size;
|
| 41 |
+
this.time = Number(_.defaultTo(time, util.timestamp()));
|
| 42 |
+
this.body = body;
|
| 43 |
+
}
|
| 44 |
+
|
| 45 |
+
injectTo(ctx) {
|
| 46 |
+
this.redirect && ctx.redirect(this.redirect);
|
| 47 |
+
this.statusCode && (ctx.status = this.statusCode);
|
| 48 |
+
this.type && (ctx.type = mime.getType(this.type) || this.type);
|
| 49 |
+
const headers = this.headers || {};
|
| 50 |
+
if(this.size && !headers["Content-Length"] && !headers["content-length"])
|
| 51 |
+
headers["Content-Length"] = this.size;
|
| 52 |
+
ctx.set(headers);
|
| 53 |
+
if(Body.isInstance(this.body))
|
| 54 |
+
ctx.body = this.body.toObject();
|
| 55 |
+
else
|
| 56 |
+
ctx.body = this.body;
|
| 57 |
+
}
|
| 58 |
+
|
| 59 |
+
static isInstance(value) {
|
| 60 |
+
return value instanceof Response;
|
| 61 |
+
}
|
| 62 |
+
|
| 63 |
+
}
|
src/lib/response/SuccessfulBody.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import _ from 'lodash';
|
| 2 |
+
|
| 3 |
+
import Body from './Body.ts';
|
| 4 |
+
|
| 5 |
+
export default class SuccessfulBody extends Body {
|
| 6 |
+
|
| 7 |
+
constructor(data: any, message?: string) {
|
| 8 |
+
super({
|
| 9 |
+
code: 0,
|
| 10 |
+
message: _.defaultTo(message, "OK"),
|
| 11 |
+
data
|
| 12 |
+
});
|
| 13 |
+
}
|
| 14 |
+
|
| 15 |
+
static isInstance(value) {
|
| 16 |
+
return value instanceof SuccessfulBody;
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
}
|
src/lib/server.ts
ADDED
|
@@ -0,0 +1,173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import Koa from 'koa';
|
| 2 |
+
import KoaRouter from 'koa-router';
|
| 3 |
+
import koaRange from 'koa-range';
|
| 4 |
+
import koaCors from "koa2-cors";
|
| 5 |
+
import koaBody from 'koa-body';
|
| 6 |
+
import _ from 'lodash';
|
| 7 |
+
|
| 8 |
+
import Exception from './exceptions/Exception.ts';
|
| 9 |
+
import Request from './request/Request.ts';
|
| 10 |
+
import Response from './response/Response.js';
|
| 11 |
+
import FailureBody from './response/FailureBody.ts';
|
| 12 |
+
import EX from './consts/exceptions.ts';
|
| 13 |
+
import logger from './logger.ts';
|
| 14 |
+
import config from './config.ts';
|
| 15 |
+
|
| 16 |
+
class Server {
|
| 17 |
+
|
| 18 |
+
app;
|
| 19 |
+
router;
|
| 20 |
+
|
| 21 |
+
constructor() {
|
| 22 |
+
this.app = new Koa();
|
| 23 |
+
this.app.use(koaCors());
|
| 24 |
+
// 范围请求支持
|
| 25 |
+
this.app.use(koaRange);
|
| 26 |
+
this.router = new KoaRouter({ prefix: config.service.urlPrefix });
|
| 27 |
+
// 前置处理异常拦截
|
| 28 |
+
this.app.use(async (ctx: any, next: Function) => {
|
| 29 |
+
if(ctx.request.type === "application/xml" || ctx.request.type === "application/ssml+xml")
|
| 30 |
+
ctx.req.headers["content-type"] = "text/xml";
|
| 31 |
+
try { await next() }
|
| 32 |
+
catch (err) {
|
| 33 |
+
logger.error(err);
|
| 34 |
+
const failureBody = new FailureBody(err);
|
| 35 |
+
new Response(failureBody).injectTo(ctx);
|
| 36 |
+
}
|
| 37 |
+
});
|
| 38 |
+
// 载荷解析器支持
|
| 39 |
+
this.app.use(koaBody(_.clone(config.system.requestBody)));
|
| 40 |
+
this.app.on("error", (err: any) => {
|
| 41 |
+
// 忽略连接重试、中断、管道、取消错误
|
| 42 |
+
if (["ECONNRESET", "ECONNABORTED", "EPIPE", "ECANCELED"].includes(err.code)) return;
|
| 43 |
+
logger.error(err);
|
| 44 |
+
});
|
| 45 |
+
logger.success("Server initialized");
|
| 46 |
+
}
|
| 47 |
+
|
| 48 |
+
/**
|
| 49 |
+
* 附加路由
|
| 50 |
+
*
|
| 51 |
+
* @param routes 路由列表
|
| 52 |
+
*/
|
| 53 |
+
attachRoutes(routes: any[]) {
|
| 54 |
+
routes.forEach((route: any) => {
|
| 55 |
+
const prefix = route.prefix || "";
|
| 56 |
+
for (let method in route) {
|
| 57 |
+
if(method === "prefix") continue;
|
| 58 |
+
if (!_.isObject(route[method])) {
|
| 59 |
+
logger.warn(`Router ${prefix} ${method} invalid`);
|
| 60 |
+
continue;
|
| 61 |
+
}
|
| 62 |
+
for (let uri in route[method]) {
|
| 63 |
+
this.router[method](`${prefix}${uri}`, async ctx => {
|
| 64 |
+
const { request, response } = await this.#requestProcessing(ctx, route[method][uri]);
|
| 65 |
+
if(response != null && config.system.requestLog)
|
| 66 |
+
logger.info(`<- ${request.method} ${request.url} ${response.time - request.time}ms`);
|
| 67 |
+
});
|
| 68 |
+
}
|
| 69 |
+
}
|
| 70 |
+
logger.info(`Route ${config.service.urlPrefix || ""}${prefix} attached`);
|
| 71 |
+
});
|
| 72 |
+
this.app.use(this.router.routes());
|
| 73 |
+
this.app.use((ctx: any) => {
|
| 74 |
+
const request = new Request(ctx);
|
| 75 |
+
logger.debug(`-> ${ctx.request.method} ${ctx.request.url} request is not supported - ${request.remoteIP || "unknown"}`);
|
| 76 |
+
// const failureBody = new FailureBody(new Exception(EX.SYSTEM_NOT_ROUTE_MATCHING, "Request is not supported"));
|
| 77 |
+
// const response = new Response(failureBody);
|
| 78 |
+
const message = `[请求有误]: 正确请求为 POST -> /v1/chat/completions,当前请求为 ${ctx.request.method} -> ${ctx.request.url} 请纠正`;
|
| 79 |
+
logger.warn(message);
|
| 80 |
+
const failureBody = new FailureBody(new Error(message));
|
| 81 |
+
const response = new Response(failureBody);
|
| 82 |
+
response.injectTo(ctx);
|
| 83 |
+
if(config.system.requestLog)
|
| 84 |
+
logger.info(`<- ${request.method} ${request.url} ${response.time - request.time}ms`);
|
| 85 |
+
});
|
| 86 |
+
}
|
| 87 |
+
|
| 88 |
+
/**
|
| 89 |
+
* 请求处理
|
| 90 |
+
*
|
| 91 |
+
* @param ctx 上下文
|
| 92 |
+
* @param routeFn 路由方法
|
| 93 |
+
*/
|
| 94 |
+
#requestProcessing(ctx: any, routeFn: Function): Promise<any> {
|
| 95 |
+
return new Promise(resolve => {
|
| 96 |
+
const request = new Request(ctx);
|
| 97 |
+
try {
|
| 98 |
+
if(config.system.requestLog)
|
| 99 |
+
logger.info(`-> ${request.method} ${request.url}`);
|
| 100 |
+
routeFn(request)
|
| 101 |
+
.then(response => {
|
| 102 |
+
try {
|
| 103 |
+
if(!Response.isInstance(response)) {
|
| 104 |
+
const _response = new Response(response);
|
| 105 |
+
_response.injectTo(ctx);
|
| 106 |
+
return resolve({ request, response: _response });
|
| 107 |
+
}
|
| 108 |
+
response.injectTo(ctx);
|
| 109 |
+
resolve({ request, response });
|
| 110 |
+
}
|
| 111 |
+
catch(err) {
|
| 112 |
+
logger.error(err);
|
| 113 |
+
const failureBody = new FailureBody(err);
|
| 114 |
+
const response = new Response(failureBody);
|
| 115 |
+
response.injectTo(ctx);
|
| 116 |
+
resolve({ request, response });
|
| 117 |
+
}
|
| 118 |
+
})
|
| 119 |
+
.catch(err => {
|
| 120 |
+
try {
|
| 121 |
+
logger.error(err);
|
| 122 |
+
const failureBody = new FailureBody(err);
|
| 123 |
+
const response = new Response(failureBody);
|
| 124 |
+
response.injectTo(ctx);
|
| 125 |
+
resolve({ request, response });
|
| 126 |
+
}
|
| 127 |
+
catch(err) {
|
| 128 |
+
logger.error(err);
|
| 129 |
+
const failureBody = new FailureBody(err);
|
| 130 |
+
const response = new Response(failureBody);
|
| 131 |
+
response.injectTo(ctx);
|
| 132 |
+
resolve({ request, response });
|
| 133 |
+
}
|
| 134 |
+
});
|
| 135 |
+
}
|
| 136 |
+
catch(err) {
|
| 137 |
+
logger.error(err);
|
| 138 |
+
const failureBody = new FailureBody(err);
|
| 139 |
+
const response = new Response(failureBody);
|
| 140 |
+
response.injectTo(ctx);
|
| 141 |
+
resolve({ request, response });
|
| 142 |
+
}
|
| 143 |
+
});
|
| 144 |
+
}
|
| 145 |
+
|
| 146 |
+
/**
|
| 147 |
+
* 监听端口
|
| 148 |
+
*/
|
| 149 |
+
async listen() {
|
| 150 |
+
const host = config.service.host;
|
| 151 |
+
const port = config.service.port;
|
| 152 |
+
await Promise.all([
|
| 153 |
+
new Promise((resolve, reject) => {
|
| 154 |
+
if(host === "0.0.0.0" || host === "localhost" || host === "127.0.0.1")
|
| 155 |
+
return resolve(null);
|
| 156 |
+
this.app.listen(port, "localhost", err => {
|
| 157 |
+
if(err) return reject(err);
|
| 158 |
+
resolve(null);
|
| 159 |
+
});
|
| 160 |
+
}),
|
| 161 |
+
new Promise((resolve, reject) => {
|
| 162 |
+
this.app.listen(port, host, err => {
|
| 163 |
+
if(err) return reject(err);
|
| 164 |
+
resolve(null);
|
| 165 |
+
});
|
| 166 |
+
})
|
| 167 |
+
]);
|
| 168 |
+
logger.success(`Server listening on port ${port} (${host})`);
|
| 169 |
+
}
|
| 170 |
+
|
| 171 |
+
}
|
| 172 |
+
|
| 173 |
+
export default new Server();
|
src/lib/util.ts
ADDED
|
@@ -0,0 +1,307 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os from "os";
|
| 2 |
+
import path from "path";
|
| 3 |
+
import crypto from "crypto";
|
| 4 |
+
import { Readable, Writable } from "stream";
|
| 5 |
+
|
| 6 |
+
import "colors";
|
| 7 |
+
import mime from "mime";
|
| 8 |
+
import axios from "axios";
|
| 9 |
+
import fs from "fs-extra";
|
| 10 |
+
import { v1 as uuid } from "uuid";
|
| 11 |
+
import { format as dateFormat } from "date-fns";
|
| 12 |
+
import CRC32 from "crc-32";
|
| 13 |
+
import randomstring from "randomstring";
|
| 14 |
+
import _ from "lodash";
|
| 15 |
+
import { CronJob } from "cron";
|
| 16 |
+
|
| 17 |
+
import HTTP_STATUS_CODE from "./http-status-codes.ts";
|
| 18 |
+
|
| 19 |
+
const autoIdMap = new Map();
|
| 20 |
+
|
| 21 |
+
const util = {
|
| 22 |
+
is2DArrays(value: any) {
|
| 23 |
+
return (
|
| 24 |
+
_.isArray(value) &&
|
| 25 |
+
(!value[0] || (_.isArray(value[0]) && _.isArray(value[value.length - 1])))
|
| 26 |
+
);
|
| 27 |
+
},
|
| 28 |
+
|
| 29 |
+
uuid: (separator = true) => (separator ? uuid() : uuid().replace(/\-/g, "")),
|
| 30 |
+
|
| 31 |
+
autoId: (prefix = "") => {
|
| 32 |
+
let index = autoIdMap.get(prefix);
|
| 33 |
+
if (index > 999999) index = 0; //超过最大数字则重置为0
|
| 34 |
+
autoIdMap.set(prefix, (index || 0) + 1);
|
| 35 |
+
return `${prefix}${index || 1}`;
|
| 36 |
+
},
|
| 37 |
+
|
| 38 |
+
ignoreJSONParse(value: string) {
|
| 39 |
+
const result = _.attempt(() => JSON.parse(value));
|
| 40 |
+
if (_.isError(result)) return null;
|
| 41 |
+
return result;
|
| 42 |
+
},
|
| 43 |
+
|
| 44 |
+
generateRandomString(options: any): string {
|
| 45 |
+
return randomstring.generate(options);
|
| 46 |
+
},
|
| 47 |
+
|
| 48 |
+
getResponseContentType(value: any): string | null {
|
| 49 |
+
return value.headers
|
| 50 |
+
? value.headers["content-type"] || value.headers["Content-Type"]
|
| 51 |
+
: null;
|
| 52 |
+
},
|
| 53 |
+
|
| 54 |
+
mimeToExtension(value: string) {
|
| 55 |
+
let extension = mime.getExtension(value);
|
| 56 |
+
if (extension == "mpga") return "mp3";
|
| 57 |
+
return extension;
|
| 58 |
+
},
|
| 59 |
+
|
| 60 |
+
extractURLExtension(value: string) {
|
| 61 |
+
const extname = path.extname(new URL(value).pathname);
|
| 62 |
+
return extname.substring(1).toLowerCase();
|
| 63 |
+
},
|
| 64 |
+
|
| 65 |
+
createCronJob(cronPatterns: any, callback?: Function) {
|
| 66 |
+
if (!_.isFunction(callback))
|
| 67 |
+
throw new Error("callback must be an Function");
|
| 68 |
+
return new CronJob(
|
| 69 |
+
cronPatterns,
|
| 70 |
+
() => callback(),
|
| 71 |
+
null,
|
| 72 |
+
false,
|
| 73 |
+
"Asia/Shanghai"
|
| 74 |
+
);
|
| 75 |
+
},
|
| 76 |
+
|
| 77 |
+
getDateString(format = "yyyy-MM-dd", date = new Date()) {
|
| 78 |
+
return dateFormat(date, format);
|
| 79 |
+
},
|
| 80 |
+
|
| 81 |
+
getIPAddressesByIPv4(): string[] {
|
| 82 |
+
const interfaces = os.networkInterfaces();
|
| 83 |
+
const addresses = [];
|
| 84 |
+
for (let name in interfaces) {
|
| 85 |
+
const networks = interfaces[name];
|
| 86 |
+
const results = networks.filter(
|
| 87 |
+
(network) =>
|
| 88 |
+
network.family === "IPv4" &&
|
| 89 |
+
network.address !== "127.0.0.1" &&
|
| 90 |
+
!network.internal
|
| 91 |
+
);
|
| 92 |
+
if (results[0] && results[0].address) addresses.push(results[0].address);
|
| 93 |
+
}
|
| 94 |
+
return addresses;
|
| 95 |
+
},
|
| 96 |
+
|
| 97 |
+
getMACAddressesByIPv4(): string[] {
|
| 98 |
+
const interfaces = os.networkInterfaces();
|
| 99 |
+
const addresses = [];
|
| 100 |
+
for (let name in interfaces) {
|
| 101 |
+
const networks = interfaces[name];
|
| 102 |
+
const results = networks.filter(
|
| 103 |
+
(network) =>
|
| 104 |
+
network.family === "IPv4" &&
|
| 105 |
+
network.address !== "127.0.0.1" &&
|
| 106 |
+
!network.internal
|
| 107 |
+
);
|
| 108 |
+
if (results[0] && results[0].mac) addresses.push(results[0].mac);
|
| 109 |
+
}
|
| 110 |
+
return addresses;
|
| 111 |
+
},
|
| 112 |
+
|
| 113 |
+
generateSSEData(event?: string, data?: string, retry?: number) {
|
| 114 |
+
return `event: ${event || "message"}\ndata: ${(data || "")
|
| 115 |
+
.replace(/\n/g, "\\n")
|
| 116 |
+
.replace(/\s/g, "\\s")}\nretry: ${retry || 3000}\n\n`;
|
| 117 |
+
},
|
| 118 |
+
|
| 119 |
+
buildDataBASE64(type, ext, buffer) {
|
| 120 |
+
return `data:${type}/${ext.replace("jpg", "jpeg")};base64,${buffer.toString(
|
| 121 |
+
"base64"
|
| 122 |
+
)}`;
|
| 123 |
+
},
|
| 124 |
+
|
| 125 |
+
isLinux() {
|
| 126 |
+
return os.platform() !== "win32";
|
| 127 |
+
},
|
| 128 |
+
|
| 129 |
+
isIPAddress(value) {
|
| 130 |
+
return (
|
| 131 |
+
_.isString(value) &&
|
| 132 |
+
(/^((2[0-4]\d|25[0-5]|[01]?\d\d?)\.){3}(2[0-4]\d|25[0-5]|[01]?\d\d?)$/.test(
|
| 133 |
+
value
|
| 134 |
+
) ||
|
| 135 |
+
/\s*((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?\s*/.test(
|
| 136 |
+
value
|
| 137 |
+
))
|
| 138 |
+
);
|
| 139 |
+
},
|
| 140 |
+
|
| 141 |
+
isPort(value) {
|
| 142 |
+
return _.isNumber(value) && value > 0 && value < 65536;
|
| 143 |
+
},
|
| 144 |
+
|
| 145 |
+
isReadStream(value): boolean {
|
| 146 |
+
return (
|
| 147 |
+
value &&
|
| 148 |
+
(value instanceof Readable || "readable" in value || value.readable)
|
| 149 |
+
);
|
| 150 |
+
},
|
| 151 |
+
|
| 152 |
+
isWriteStream(value): boolean {
|
| 153 |
+
return (
|
| 154 |
+
value &&
|
| 155 |
+
(value instanceof Writable || "writable" in value || value.writable)
|
| 156 |
+
);
|
| 157 |
+
},
|
| 158 |
+
|
| 159 |
+
isHttpStatusCode(value) {
|
| 160 |
+
return _.isNumber(value) && Object.values(HTTP_STATUS_CODE).includes(value);
|
| 161 |
+
},
|
| 162 |
+
|
| 163 |
+
isURL(value) {
|
| 164 |
+
return !_.isUndefined(value) && /^(http|https)/.test(value);
|
| 165 |
+
},
|
| 166 |
+
|
| 167 |
+
isSrc(value) {
|
| 168 |
+
return !_.isUndefined(value) && /^\/.+\.[0-9a-zA-Z]+(\?.+)?$/.test(value);
|
| 169 |
+
},
|
| 170 |
+
|
| 171 |
+
isBASE64(value) {
|
| 172 |
+
return !_.isUndefined(value) && /^[a-zA-Z0-9\/\+]+(=?)+$/.test(value);
|
| 173 |
+
},
|
| 174 |
+
|
| 175 |
+
isBASE64Data(value) {
|
| 176 |
+
return /^data:/.test(value);
|
| 177 |
+
},
|
| 178 |
+
|
| 179 |
+
extractBASE64DataFormat(value): string | null {
|
| 180 |
+
const match = value.trim().match(/^data:(.+);base64,/);
|
| 181 |
+
if (!match) return null;
|
| 182 |
+
return match[1];
|
| 183 |
+
},
|
| 184 |
+
|
| 185 |
+
removeBASE64DataHeader(value): string {
|
| 186 |
+
return value.replace(/^data:(.+);base64,/, "");
|
| 187 |
+
},
|
| 188 |
+
|
| 189 |
+
isDataString(value): boolean {
|
| 190 |
+
return /^(base64|json):/.test(value);
|
| 191 |
+
},
|
| 192 |
+
|
| 193 |
+
isStringNumber(value) {
|
| 194 |
+
return _.isFinite(Number(value));
|
| 195 |
+
},
|
| 196 |
+
|
| 197 |
+
isUnixTimestamp(value) {
|
| 198 |
+
return /^[0-9]{10}$/.test(`${value}`);
|
| 199 |
+
},
|
| 200 |
+
|
| 201 |
+
isTimestamp(value) {
|
| 202 |
+
return /^[0-9]{13}$/.test(`${value}`);
|
| 203 |
+
},
|
| 204 |
+
|
| 205 |
+
isEmail(value) {
|
| 206 |
+
return /^([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+@([a-zA-Z0-9]+[_|\_|\.]?)*[a-zA-Z0-9]+\.[a-zA-Z]{2,3}$/.test(
|
| 207 |
+
value
|
| 208 |
+
);
|
| 209 |
+
},
|
| 210 |
+
|
| 211 |
+
isAsyncFunction(value) {
|
| 212 |
+
return Object.prototype.toString.call(value) === "[object AsyncFunction]";
|
| 213 |
+
},
|
| 214 |
+
|
| 215 |
+
async isAPNG(filePath) {
|
| 216 |
+
let head;
|
| 217 |
+
const readStream = fs.createReadStream(filePath, { start: 37, end: 40 });
|
| 218 |
+
const readPromise = new Promise((resolve, reject) => {
|
| 219 |
+
readStream.once("end", resolve);
|
| 220 |
+
readStream.once("error", reject);
|
| 221 |
+
});
|
| 222 |
+
readStream.once("data", (data) => (head = data));
|
| 223 |
+
await readPromise;
|
| 224 |
+
return head.compare(Buffer.from([0x61, 0x63, 0x54, 0x4c])) === 0;
|
| 225 |
+
},
|
| 226 |
+
|
| 227 |
+
unixTimestamp() {
|
| 228 |
+
return parseInt(`${Date.now() / 1000}`);
|
| 229 |
+
},
|
| 230 |
+
|
| 231 |
+
timestamp() {
|
| 232 |
+
return Date.now();
|
| 233 |
+
},
|
| 234 |
+
|
| 235 |
+
urlJoin(...values) {
|
| 236 |
+
let url = "";
|
| 237 |
+
for (let i = 0; i < values.length; i++)
|
| 238 |
+
url += `${i > 0 ? "/" : ""}${values[i]
|
| 239 |
+
.replace(/^\/*/, "")
|
| 240 |
+
.replace(/\/*$/, "")}`;
|
| 241 |
+
return url;
|
| 242 |
+
},
|
| 243 |
+
|
| 244 |
+
millisecondsToHmss(milliseconds) {
|
| 245 |
+
if (_.isString(milliseconds)) return milliseconds;
|
| 246 |
+
milliseconds = parseInt(milliseconds);
|
| 247 |
+
const sec = Math.floor(milliseconds / 1000);
|
| 248 |
+
const hours = Math.floor(sec / 3600);
|
| 249 |
+
const minutes = Math.floor((sec - hours * 3600) / 60);
|
| 250 |
+
const seconds = sec - hours * 3600 - minutes * 60;
|
| 251 |
+
const ms = (milliseconds % 60000) - seconds * 1000;
|
| 252 |
+
return `${hours > 9 ? hours : "0" + hours}:${
|
| 253 |
+
minutes > 9 ? minutes : "0" + minutes
|
| 254 |
+
}:${seconds > 9 ? seconds : "0" + seconds}.${ms}`;
|
| 255 |
+
},
|
| 256 |
+
|
| 257 |
+
millisecondsToTimeString(milliseconds) {
|
| 258 |
+
if (milliseconds < 1000) return `${milliseconds}ms`;
|
| 259 |
+
if (milliseconds < 60000)
|
| 260 |
+
return `${parseFloat((milliseconds / 1000).toFixed(2))}s`;
|
| 261 |
+
return `${Math.floor(milliseconds / 1000 / 60)}m${Math.floor(
|
| 262 |
+
(milliseconds / 1000) % 60
|
| 263 |
+
)}s`;
|
| 264 |
+
},
|
| 265 |
+
|
| 266 |
+
rgbToHex(r, g, b): string {
|
| 267 |
+
return ((1 << 24) + (r << 16) + (g << 8) + b).toString(16).slice(1);
|
| 268 |
+
},
|
| 269 |
+
|
| 270 |
+
hexToRgb(hex) {
|
| 271 |
+
const value = parseInt(hex.replace(/^#/, ""), 16);
|
| 272 |
+
return [(value >> 16) & 255, (value >> 8) & 255, value & 255];
|
| 273 |
+
},
|
| 274 |
+
|
| 275 |
+
md5(value) {
|
| 276 |
+
return crypto.createHash("md5").update(value).digest("hex");
|
| 277 |
+
},
|
| 278 |
+
|
| 279 |
+
crc32(value) {
|
| 280 |
+
return _.isBuffer(value) ? CRC32.buf(value) : CRC32.str(value);
|
| 281 |
+
},
|
| 282 |
+
|
| 283 |
+
arrayParse(value): any[] {
|
| 284 |
+
return _.isArray(value) ? value : [value];
|
| 285 |
+
},
|
| 286 |
+
|
| 287 |
+
booleanParse(value) {
|
| 288 |
+
return value === "true" || value === true ? true : false;
|
| 289 |
+
},
|
| 290 |
+
|
| 291 |
+
encodeBASE64(value) {
|
| 292 |
+
return Buffer.from(value).toString("base64");
|
| 293 |
+
},
|
| 294 |
+
|
| 295 |
+
decodeBASE64(value) {
|
| 296 |
+
return Buffer.from(value, "base64").toString();
|
| 297 |
+
},
|
| 298 |
+
|
| 299 |
+
async fetchFileBASE64(url: string) {
|
| 300 |
+
const result = await axios.get(url, {
|
| 301 |
+
responseType: "arraybuffer",
|
| 302 |
+
});
|
| 303 |
+
return result.data.toString("base64");
|
| 304 |
+
},
|
| 305 |
+
};
|
| 306 |
+
|
| 307 |
+
export default util;
|
src/workers/challengeWorker.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import crypto from 'crypto';
|
| 2 |
+
import { parentPort } from 'worker_threads';
|
| 3 |
+
|
| 4 |
+
parentPort?.on('message', (data) => {
|
| 5 |
+
try {
|
| 6 |
+
const { algorithm, challenge, salt, difficulty, expire_at, signature } = data;
|
| 7 |
+
let answer = 0;
|
| 8 |
+
let i = difficulty - 1;
|
| 9 |
+
|
| 10 |
+
for (let r = 0; r <= i; r++) {
|
| 11 |
+
const str = "".concat(salt, "_").concat(expire_at, "_").concat(r.toString());
|
| 12 |
+
const hash = crypto.createHash('sha256').update(str).digest('hex');
|
| 13 |
+
if (hash === challenge) {
|
| 14 |
+
answer = r;
|
| 15 |
+
break;
|
| 16 |
+
}
|
| 17 |
+
}
|
| 18 |
+
|
| 19 |
+
if(answer === 0) throw new Error('No solution found');
|
| 20 |
+
|
| 21 |
+
parentPort?.postMessage({
|
| 22 |
+
algorithm,
|
| 23 |
+
challenge,
|
| 24 |
+
salt,
|
| 25 |
+
answer,
|
| 26 |
+
signature
|
| 27 |
+
});
|
| 28 |
+
} catch (error) {
|
| 29 |
+
parentPort?.postMessage({ error: error.message });
|
| 30 |
+
}
|
| 31 |
+
});
|