rc-plugin/constants/constant.js
zhiyu1998 4f7d31c124 🎈 pref: V1.5.8 哔哩哔哩简介加入限制优化
应群友反应哔哩哔哩的简介过长会导致刷屏,所以限制了长度可以在锅巴或者tools.yaml进行调整
2024-03-16 14:58:30 +08:00

80 lines
2.4 KiB
JavaScript

/**
* 用于百度翻译的常量控制
*
* @type {{英: string, 日: string, 文: string, 中: string}}
*/
export const transMap = { : "zh", : "jp", : "wyw", : "en", : "ru", : "kr" };
/**
* 用于腾讯交互式翻译的常量控制
*
* @type {{英: string, 俄: string, 日: string, 韩: string, 中: string}}
*/
export const tencentTransMap = { : "zh", : "ja", : "ko", : "en", : "ru" };
/**
* 用于腾讯交互式翻译的常量控制
*
* @type {{英: string, 俄: string, 日: string, 韩: string, 中: string}}
*/
export const googleTransMap = { : "zh-CN", : "jp", : "ko", : "en", : "ru" };
/**
* 以下为抖音/TikTok类型代码
*
* @type {{"0": string, "55": string, "2": string, "68": string, "58": string, "4": string, "61": string, "51": string, "150": string}}
*/
export const douyinTypeMap = {
2: "image",
4: "video",
68: "image",
0: "video",
51: "video",
55: "video",
58: "video",
61: "video",
150: "image",
};
export const TEN_THOUSAND = 10000;
export const CAT_LIMIT = 10;
/**
* 有水印的头请求
* @type {{cookie: string, "User-Agent": string, accept: string}}
*/
export const XHS_WATERMARK_HEADER = {
'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
'cookie': '',
'User-Agent':
"Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1 Edg/110.0.0.0",
}
/**
* 无水印的头请求
* @type {{cookie: string, "User-Agent": string, accept: string}}
*/
export const XHS_NO_WATERMARK_HEADER = {
'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9 ',
'cookie': '',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 UBrowser/6.2.4098.3 Safari/537.36',
}
/**
* 分割线
* @type {string}
*/
export const DIVIDING_LINE = "\n------------------{}------------------"
/**
* 保存判断机子是否是海外服务器的key
* @type {string}
*/
export const REDIS_YUNZAI_ISOVERSEA = "Yz:rconsole:tools:oversea";
export const TWITTER_BEARER_TOKEN = "";
/**
* 哔哩哔哩简介默认长度限制
* @type {number}
*/
export const BILI_DEFAULT_INTRO_LEN_LIMIT = 50;