mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2026-04-01 17:53:17 +08:00
chore: 日志输出增加订阅的来源 User-Agent
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
export function getPlatformFromHeaders(headers) {
|
||||
export function getUserAgentFromHeaders(headers) {
|
||||
const keys = Object.keys(headers);
|
||||
let UA = '';
|
||||
let ua = '';
|
||||
@@ -9,6 +9,9 @@ export function getPlatformFromHeaders(headers) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return { UA, ua };
|
||||
}
|
||||
export function getPlatformFromUserAgent({ ua, UA }) {
|
||||
if (UA.indexOf('Quantumult%20X') !== -1) {
|
||||
return 'QX';
|
||||
} else if (UA.indexOf('Surfboard') !== -1) {
|
||||
@@ -38,3 +41,7 @@ export function getPlatformFromHeaders(headers) {
|
||||
return 'JSON';
|
||||
}
|
||||
}
|
||||
export function getPlatformFromHeaders(headers) {
|
||||
const { UA, ua } = getUserAgentFromHeaders(headers);
|
||||
return getPlatformFromUserAgent({ ua, UA });
|
||||
}
|
||||
Reference in New Issue
Block a user