openvk/Web/static/js/al_api.js

56 lines
1.7 KiB
JavaScript
Raw Normal View History

2020-06-07 19:04:43 +03:00
window.API = new Proxy(Object.create(null), {
get(apiObj, name, recv) {
if(name === "Types")
return apiObj.Types;
return new Proxy(new window.String(name), {
get(classSymbol, method, recv) {
return ((...args) => {
return new Promise((resolv, rej) => {
let xhr = new XMLHttpRequest();
xhr.open("POST", "/rpc", true);
xhr.responseType = "arraybuffer";
xhr.onload = e => {
let resp = msgpack.decode(new Uint8Array(e.target.response));
if(typeof resp.error !== "undefined")
rej(resp.error);
else
resolv(resp.result);
};
xhr.send(msgpack.encode({
"brpc": 1,
"method": `${classSymbol.toString()}.${method}`,
"params": args
}));
});
})
}
});
}
});
window.API.Types = {};
window.API.Types.Message = (class Message {
2024-11-03 21:28:32 +03:00
});
window.OVKAPI = new class {
async call(method, params) {
if(!method) {
return
}
const url = `/method/${method}?auth_mechanism=roaming&${new URLSearchParams(params).toString()}&v=5.200`
2024-11-03 21:28:32 +03:00
const res = await fetch(url)
const json_response = await res.json()
if(json_response.response) {
return json_response.response
} else {
throw new Error(json_response.error_msg)
2024-11-03 21:28:32 +03:00
}
}
}