mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00

* Milvus (#1644) * feat: support regx * 4.8.3 test and fix (#1648) * perf: version tip * feat: sandbox support log * fix: debug component render * fix: share page header * fix: input guide auth * fix: iso viewport * remove file * fix: route url * feat: add debug timout * perf: reference select support trigger * perf: session code * perf: theme * perf: load milvus
105 lines
2.3 KiB
TypeScript
105 lines
2.3 KiB
TypeScript
import appErr from './code/app';
|
|
import chatErr from './code/chat';
|
|
import datasetErr from './code/dataset';
|
|
import openapiErr from './code/openapi';
|
|
import pluginErr from './code/plugin';
|
|
import outLinkErr from './code/outLink';
|
|
import teamErr from './code/team';
|
|
import userErr from './code/user';
|
|
import commonErr from './code/common';
|
|
import SystemErrEnum from './code/system';
|
|
|
|
export const ERROR_CODE: { [key: number]: string } = {
|
|
400: '请求失败',
|
|
401: '无权访问',
|
|
403: '紧张访问',
|
|
404: '请求不存在',
|
|
405: '请求方法错误',
|
|
406: '请求的格式错误',
|
|
410: '资源已删除',
|
|
422: '验证错误',
|
|
500: '服务器发生错误',
|
|
502: '网关错误',
|
|
503: '服务器暂时过载或维护',
|
|
504: '网关超时'
|
|
};
|
|
|
|
export const TOKEN_ERROR_CODE: Record<number, string> = {
|
|
403: '登录状态无效,请重新登录'
|
|
};
|
|
|
|
export const proxyError: Record<string, boolean> = {
|
|
ECONNABORTED: true,
|
|
ECONNRESET: true
|
|
};
|
|
|
|
export enum ERROR_ENUM {
|
|
unAuthorization = 'unAuthorization',
|
|
insufficientQuota = 'insufficientQuota',
|
|
unAuthModel = 'unAuthModel',
|
|
unAuthApiKey = 'unAuthApiKey',
|
|
unAuthFile = 'unAuthFile'
|
|
}
|
|
|
|
export type ErrType<T> = Record<
|
|
string,
|
|
{
|
|
code: number;
|
|
statusText: T;
|
|
message: string;
|
|
data: null;
|
|
}
|
|
>;
|
|
|
|
export const ERROR_RESPONSE: Record<
|
|
any,
|
|
{
|
|
code: number;
|
|
statusText: string;
|
|
message: string;
|
|
data?: any;
|
|
}
|
|
> = {
|
|
[ERROR_ENUM.unAuthorization]: {
|
|
code: 403,
|
|
statusText: ERROR_ENUM.unAuthorization,
|
|
message: '凭证错误',
|
|
data: null
|
|
},
|
|
[ERROR_ENUM.insufficientQuota]: {
|
|
code: 510,
|
|
statusText: ERROR_ENUM.insufficientQuota,
|
|
message: '账号余额不足',
|
|
data: null
|
|
},
|
|
[ERROR_ENUM.unAuthModel]: {
|
|
code: 511,
|
|
statusText: ERROR_ENUM.unAuthModel,
|
|
message: '无权操作该模型',
|
|
data: null
|
|
},
|
|
|
|
[ERROR_ENUM.unAuthFile]: {
|
|
code: 513,
|
|
statusText: ERROR_ENUM.unAuthFile,
|
|
message: '无权阅读该文件',
|
|
data: null
|
|
},
|
|
[ERROR_ENUM.unAuthApiKey]: {
|
|
code: 514,
|
|
statusText: ERROR_ENUM.unAuthApiKey,
|
|
message: 'Api Key 不合法',
|
|
data: null
|
|
},
|
|
...appErr,
|
|
...chatErr,
|
|
...datasetErr,
|
|
...openapiErr,
|
|
...outLinkErr,
|
|
...teamErr,
|
|
...userErr,
|
|
...pluginErr,
|
|
...commonErr,
|
|
...SystemErrEnum
|
|
};
|