mirror of
https://git.mirrors.martin98.com/https://github.com/sub-store-org/Sub-Store.git
synced 2026-04-07 10:23:24 +08:00
feat: 域名解析支持自定义 DoH(需新版前端)
This commit is contained in:
@@ -46,52 +46,52 @@ function getPolicyDescriptor(str) {
|
||||
};
|
||||
}
|
||||
|
||||
const utf8ArrayToStr =
|
||||
typeof TextDecoder !== 'undefined'
|
||||
? (v) => new TextDecoder().decode(new Uint8Array(v))
|
||||
: (function () {
|
||||
var charCache = new Array(128); // Preallocate the cache for the common single byte chars
|
||||
var charFromCodePt = String.fromCodePoint || String.fromCharCode;
|
||||
var result = [];
|
||||
// const utf8ArrayToStr =
|
||||
// typeof TextDecoder !== 'undefined'
|
||||
// ? (v) => new TextDecoder().decode(new Uint8Array(v))
|
||||
// : (function () {
|
||||
// var charCache = new Array(128); // Preallocate the cache for the common single byte chars
|
||||
// var charFromCodePt = String.fromCodePoint || String.fromCharCode;
|
||||
// var result = [];
|
||||
|
||||
return function (array) {
|
||||
var codePt, byte1;
|
||||
var buffLen = array.length;
|
||||
// return function (array) {
|
||||
// var codePt, byte1;
|
||||
// var buffLen = array.length;
|
||||
|
||||
result.length = 0;
|
||||
// result.length = 0;
|
||||
|
||||
for (var i = 0; i < buffLen; ) {
|
||||
byte1 = array[i++];
|
||||
// for (var i = 0; i < buffLen; ) {
|
||||
// byte1 = array[i++];
|
||||
|
||||
if (byte1 <= 0x7f) {
|
||||
codePt = byte1;
|
||||
} else if (byte1 <= 0xdf) {
|
||||
codePt = ((byte1 & 0x1f) << 6) | (array[i++] & 0x3f);
|
||||
} else if (byte1 <= 0xef) {
|
||||
codePt =
|
||||
((byte1 & 0x0f) << 12) |
|
||||
((array[i++] & 0x3f) << 6) |
|
||||
(array[i++] & 0x3f);
|
||||
} else if (String.fromCodePoint) {
|
||||
codePt =
|
||||
((byte1 & 0x07) << 18) |
|
||||
((array[i++] & 0x3f) << 12) |
|
||||
((array[i++] & 0x3f) << 6) |
|
||||
(array[i++] & 0x3f);
|
||||
} else {
|
||||
codePt = 63; // Cannot convert four byte code points, so use "?" instead
|
||||
i += 3;
|
||||
}
|
||||
// if (byte1 <= 0x7f) {
|
||||
// codePt = byte1;
|
||||
// } else if (byte1 <= 0xdf) {
|
||||
// codePt = ((byte1 & 0x1f) << 6) | (array[i++] & 0x3f);
|
||||
// } else if (byte1 <= 0xef) {
|
||||
// codePt =
|
||||
// ((byte1 & 0x0f) << 12) |
|
||||
// ((array[i++] & 0x3f) << 6) |
|
||||
// (array[i++] & 0x3f);
|
||||
// } else if (String.fromCodePoint) {
|
||||
// codePt =
|
||||
// ((byte1 & 0x07) << 18) |
|
||||
// ((array[i++] & 0x3f) << 12) |
|
||||
// ((array[i++] & 0x3f) << 6) |
|
||||
// (array[i++] & 0x3f);
|
||||
// } else {
|
||||
// codePt = 63; // Cannot convert four byte code points, so use "?" instead
|
||||
// i += 3;
|
||||
// }
|
||||
|
||||
result.push(
|
||||
charCache[codePt] ||
|
||||
(charCache[codePt] = charFromCodePt(codePt)),
|
||||
);
|
||||
}
|
||||
// result.push(
|
||||
// charCache[codePt] ||
|
||||
// (charCache[codePt] = charFromCodePt(codePt)),
|
||||
// );
|
||||
// }
|
||||
|
||||
return result.join('');
|
||||
};
|
||||
})();
|
||||
// return result.join('');
|
||||
// };
|
||||
// })();
|
||||
|
||||
export {
|
||||
isIPv4,
|
||||
@@ -101,6 +101,6 @@ export {
|
||||
getIfNotBlank,
|
||||
isPresent,
|
||||
getIfPresent,
|
||||
utf8ArrayToStr,
|
||||
// utf8ArrayToStr,
|
||||
getPolicyDescriptor,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user