Initial commit

This commit is contained in:
2026-07-23 08:58:13 +08:00
commit 6fc18cf062
411 changed files with 2549 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
(function () {
"use strict";
var NativeXHR = window.XMLHttpRequest;
function apiPath(url) {
var match = String(url || "").match(/\/index\/[^?#]*/);
return match ? match[0] : "";
}
function BridgeXHR() {
this._xhr = new NativeXHR();
this._isGameApi = false;
}
BridgeXHR.prototype.open = function (method, url) {
var path = apiPath(url);
this._isGameApi = path.indexOf("/index/") === 0;
if (this._isGameApi) {
var args = Array.prototype.slice.call(arguments);
args[0] = "POST";
args[1] = "/api/game.php?path=" + encodeURIComponent(path);
return this._xhr.open.apply(this._xhr, args);
}
return this._xhr.open.apply(this._xhr, arguments);
};
["send", "abort", "setRequestHeader", "getResponseHeader", "getAllResponseHeaders", "addEventListener", "removeEventListener", "overrideMimeType"].forEach(function (name) {
BridgeXHR.prototype[name] = function () {
return this._xhr[name].apply(this._xhr, arguments);
};
});
["readyState", "response", "responseText", "responseType", "responseURL", "responseXML", "status", "statusText", "timeout", "upload", "withCredentials", "onreadystatechange", "onload", "onerror", "ontimeout", "onabort", "onprogress", "onloadend", "onloadstart"].forEach(function (name) {
Object.defineProperty(BridgeXHR.prototype, name, {
get: function () { return this._xhr[name]; },
set: function (value) { this._xhr[name] = value; }
});
});
window.XMLHttpRequest = BridgeXHR;
})();