mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-12-27 03:11:21 +08:00
refactor: qqmusic card & requests
This commit is contained in:
parent
3b5902b033
commit
61d6bcec4b
@ -1,7 +1,9 @@
|
||||
import https from 'node:https';
|
||||
import http from 'node:http';
|
||||
import fs from 'node:fs';
|
||||
import fs, { readFileSync } from 'node:fs';
|
||||
import { NTQQUserApi } from '@/core';
|
||||
import path from 'node:path';
|
||||
import { request } from 'node:http';
|
||||
export class RequestUtil {
|
||||
// 适用于获取服务器下发cookies时获取,仅GET
|
||||
static async HttpsGetCookies(url: string): Promise<{ [key: string]: string }> {
|
||||
@ -108,50 +110,83 @@ export class RequestUtil {
|
||||
static async HttpGetText(url: string, method: string = 'GET', data?: any, headers: { [key: string]: string } = {}) {
|
||||
return this.HttpGetJson<string>(url, method, data, headers, false, false);
|
||||
}
|
||||
static async HttpUploadFileForOpenPlatform(filePath: string) {
|
||||
const cookies = Object.entries(await NTQQUserApi.getCookies('connect.qq.com')).map(([key, value]) => `${key}=${value}`).join('; ');
|
||||
return new Promise((resolve, reject) => {
|
||||
var options = {
|
||||
'method': 'POST',
|
||||
'hostname': 'cgi.connect.qq.com',
|
||||
'path': '/qqconnectopen/upload_share_image',
|
||||
'headers': {
|
||||
'Referer': 'https://cgi.connect.qq.com',
|
||||
'Cookie': cookies,
|
||||
'Accept': '*/*',
|
||||
'Host': 'cgi.connect.qq.com',
|
||||
'Connection': 'keep-alive',
|
||||
'Content-Type': 'multipart/form-data; boundary=--------------------------800945582706338065206240'
|
||||
},
|
||||
'maxRedirects': 20
|
||||
};
|
||||
let body;
|
||||
let req = https.request(options, function (res) {
|
||||
let chunks: any = [];
|
||||
|
||||
res.on("data", function (chunk) {
|
||||
chunks.push(chunk);
|
||||
static async createFormData(boundary: string, filePath: string): Promise<Buffer> {
|
||||
let type = 'image/png';
|
||||
if (filePath.endsWith('.jpg')) {
|
||||
type = 'image/jpeg';
|
||||
}
|
||||
const formDataParts = [
|
||||
`------${boundary}\r\n`,
|
||||
`Content-Disposition: form-data; name="share_image"; filename="${filePath}"\r\n`,
|
||||
`Content-Type: ` + type + `\r\n\r\n`
|
||||
];
|
||||
|
||||
const fileContent = readFileSync(filePath);
|
||||
const footer = `\r\n------${boundary}--`;
|
||||
return Buffer.concat([
|
||||
Buffer.from(formDataParts.join(''), 'utf8'),
|
||||
fileContent,
|
||||
Buffer.from(footer, 'utf8')
|
||||
]);
|
||||
}
|
||||
|
||||
static async uploadImageForOpenPlatform(filePath: string): Promise<string> {
|
||||
return new Promise(async (resolve, reject) => {
|
||||
type retType = { retcode: number, result?: { url: string } };
|
||||
try {
|
||||
const cookies = Object.entries(await NTQQUserApi.getCookies('connect.qq.com')).map(([key, value]) => `${key}=${value}`).join('; ');
|
||||
const options = {
|
||||
hostname: 'cgi.connect.qq.com',
|
||||
port: 443,
|
||||
path: '/qqconnectopen/upload_share_image',
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Referer': 'https://cgi.connect.qq.com',
|
||||
'Cookie': cookies,
|
||||
'Accept': '*/*',
|
||||
'Connection': 'keep-alive',
|
||||
'Content-Type': 'multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW'
|
||||
}
|
||||
};
|
||||
const req = https.request(options, async (res) => {
|
||||
let responseBody = '';
|
||||
|
||||
res.on('data', (chunk: string | Buffer) => {
|
||||
responseBody += chunk.toString();
|
||||
});
|
||||
|
||||
res.on('end', () => {
|
||||
|
||||
try {
|
||||
if (res.statusCode && res.statusCode >= 200 && res.statusCode < 300) {
|
||||
const responseJson = JSON.parse(responseBody) as retType;
|
||||
resolve(responseJson.result?.url!);
|
||||
} else {
|
||||
reject(new Error(`Unexpected status code: ${res.statusCode}`));
|
||||
}
|
||||
} catch (parseError) {
|
||||
reject(parseError);
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
res.on("end", function () {
|
||||
body = Buffer.concat(chunks);
|
||||
console.log(body.toString());
|
||||
req.on('error', (error) => {
|
||||
console.error('Error during upload:', error);
|
||||
});
|
||||
|
||||
res.on("error", function (error) {
|
||||
console.error(error);
|
||||
});
|
||||
});
|
||||
|
||||
var postData = "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\nContent-Disposition: form-data; name=\"share_image\"; filename=\"C:/1.png\"\r\nContent-Type: \"{Insert_File_Content_Type}\"\r\n\r\n" + fs.readFileSync(filePath) + "\r\n------WebKitFormBoundary7MA4YWxkTrZu0gW--";
|
||||
req.setHeader('content-type', 'multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW');
|
||||
req.write(postData);
|
||||
req.end();
|
||||
if (body) {
|
||||
resolve(JSON.parse(body));
|
||||
} else {
|
||||
reject();
|
||||
const body = await RequestUtil.createFormData('WebKitFormBoundary7MA4YWxkTrZu0gW', filePath);
|
||||
// req.setHeader('Content-Length', Buffer.byteLength(body));
|
||||
// console.log(`Prepared data size: ${Buffer.byteLength(body)} bytes`);
|
||||
req.write(body);
|
||||
req.end();
|
||||
return;
|
||||
} catch (error) {
|
||||
reject(error);
|
||||
}
|
||||
return undefined;
|
||||
});
|
||||
}
|
||||
}
|
||||
2
src/core
2
src/core
@ -1 +1 @@
|
||||
Subproject commit b0f879750f2c7245a6f97686c9cf1bac87a92bbb
|
||||
Subproject commit cfc81f2218bf5959e9bd39821c6a13c641b99d4b
|
||||
@ -1 +1 @@
|
||||
var _0x567a0a=_0x3979;function _0x3afd(){var _0x4d50dd=['4456172OLDoVC','1903653EbpyeM','onMSFStatusChange','12853144buOfwL','onMSFSsoError','55295Xuqkgq','576eVbVww','2011670VJBMZW','3751220zcsTUS','147909KEwkes'];_0x3afd=function(){return _0x4d50dd;};return _0x3afd();}(function(_0x8f4518,_0xcab45d){var _0x5ded54=_0x3979,_0x3348d3=_0x8f4518();while(!![]){try{var _0x29bb76=-parseInt(_0x5ded54(0x18e))/0x1+-parseInt(_0x5ded54(0x18c))/0x2+-parseInt(_0x5ded54(0x190))/0x3+-parseInt(_0x5ded54(0x18d))/0x4+parseInt(_0x5ded54(0x194))/0x5*(parseInt(_0x5ded54(0x18b))/0x6)+parseInt(_0x5ded54(0x18f))/0x7+parseInt(_0x5ded54(0x192))/0x8;if(_0x29bb76===_0xcab45d)break;else _0x3348d3['push'](_0x3348d3['shift']());}catch(_0x38dfa8){_0x3348d3['push'](_0x3348d3['shift']());}}}(_0x3afd,0x8d4f3));function _0x3979(_0x46cdff,_0x27dd47){var _0x3afdb7=_0x3afd();return _0x3979=function(_0x39796b,_0x2ae49c){_0x39796b=_0x39796b-0x18b;var _0xc20c10=_0x3afdb7[_0x39796b];return _0xc20c10;},_0x3979(_0x46cdff,_0x27dd47);}export class DependsAdapter{[_0x567a0a(0x191)](_0x443ba7,_0x4d0256){}[_0x567a0a(0x193)](_0x15c3aa){}['getGroupCode'](_0x21023e){}}
|
||||
function _0xb27b(){var _0x20fc99=['8306CSkzFj','20270MmuWfE','onMSFSsoError','5293449LBmxuZ','219LfUryU','386653EuHgWi','getGroupCode','6YEngcc','1503bAfYrf','6690984cXWdjJ','2867504wSYXIK','2045tXYwEy','44wvdOWH','4812gbmYRf'];_0xb27b=function(){return _0x20fc99;};return _0xb27b();}var _0x413913=_0x1672;function _0x1672(_0x4e56f5,_0x5da5ec){var _0xb27b4a=_0xb27b();return _0x1672=function(_0x167246,_0x49050b){_0x167246=_0x167246-0x192;var _0xa0e816=_0xb27b4a[_0x167246];return _0xa0e816;},_0x1672(_0x4e56f5,_0x5da5ec);}(function(_0xe8234e,_0xc9225){var _0x18ea05=_0x1672,_0x4cb0b8=_0xe8234e();while(!![]){try{var _0x1ceaf4=parseInt(_0x18ea05(0x19f))/0x1+parseInt(_0x18ea05(0x19a))/0x2*(parseInt(_0x18ea05(0x19e))/0x3)+parseInt(_0x18ea05(0x199))/0x4*(parseInt(_0x18ea05(0x197))/0x5)+parseInt(_0x18ea05(0x193))/0x6*(parseInt(_0x18ea05(0x19d))/0x7)+parseInt(_0x18ea05(0x196))/0x8+-parseInt(_0x18ea05(0x194))/0x9*(-parseInt(_0x18ea05(0x19b))/0xa)+-parseInt(_0x18ea05(0x198))/0xb*(parseInt(_0x18ea05(0x195))/0xc);if(_0x1ceaf4===_0xc9225)break;else _0x4cb0b8['push'](_0x4cb0b8['shift']());}catch(_0x3f8e9b){_0x4cb0b8['push'](_0x4cb0b8['shift']());}}}(_0xb27b,0x62cc3));export class DependsAdapter{['onMSFStatusChange'](_0x318565,_0x4635ec){}[_0x413913(0x19c)](_0x4db510){}[_0x413913(0x192)](_0xa9bfaa){}}
|
||||
@ -1 +1 @@
|
||||
var _0x4fb5e8=_0x4378;(function(_0x2936be,_0x31c986){var _0xfe4bc0=_0x4378,_0x4ae0fe=_0x2936be();while(!![]){try{var _0x2e6bca=-parseInt(_0xfe4bc0(0x1e9))/0x1+parseInt(_0xfe4bc0(0x1e2))/0x2*(-parseInt(_0xfe4bc0(0x1e0))/0x3)+parseInt(_0xfe4bc0(0x1df))/0x4+-parseInt(_0xfe4bc0(0x1e5))/0x5+parseInt(_0xfe4bc0(0x1e6))/0x6+parseInt(_0xfe4bc0(0x1e1))/0x7*(-parseInt(_0xfe4bc0(0x1e3))/0x8)+parseInt(_0xfe4bc0(0x1e8))/0x9;if(_0x2e6bca===_0x31c986)break;else _0x4ae0fe['push'](_0x4ae0fe['shift']());}catch(_0x30dda8){_0x4ae0fe['push'](_0x4ae0fe['shift']());}}}(_0x138f,0xe8c0e));function _0x138f(){var _0x3f0894=['18640620SUmYKp','481814GNlwsW','5394628eVJATc','3DnWpmb','700qfHmQt','2550578kEfjAs','140224VSxkHh','dispatchCallWithJson','3661140cEuFzf','10653912OLMOzc','dispatchRequest'];_0x138f=function(){return _0x3f0894;};return _0x138f();}function _0x4378(_0xf1157,_0x446a3f){var _0x138f73=_0x138f();return _0x4378=function(_0x437865,_0x571faf){_0x437865=_0x437865-0x1df;var _0x5868c3=_0x138f73[_0x437865];return _0x5868c3;},_0x4378(_0xf1157,_0x446a3f);}export class DispatcherAdapter{[_0x4fb5e8(0x1e7)](_0xbc498a){}['dispatchCall'](_0x194824){}[_0x4fb5e8(0x1e4)](_0x25370c){}}
|
||||
function _0x525f(_0x424404,_0x545114){var _0x19438f=_0x1943();return _0x525f=function(_0x525f6a,_0x45a530){_0x525f6a=_0x525f6a-0x108;var _0x2bb24b=_0x19438f[_0x525f6a];return _0x2bb24b;},_0x525f(_0x424404,_0x545114);}var _0x51c01d=_0x525f;function _0x1943(){var _0x7832d1=['133zSKMUR','dispatchCallWithJson','578024rhTQKf','7917095HSvYOM','4018026FZTXSY','164jlikqi','2012778XDqdBm','1178573kAkSvV','2211VrfQwT','30318255YPMURi','dispatchCall'];_0x1943=function(){return _0x7832d1;};return _0x1943();}(function(_0x1e5f8b,_0x275482){var _0x2e034f=_0x525f,_0x2837a8=_0x1e5f8b();while(!![]){try{var _0xc00d7f=-parseInt(_0x2e034f(0x111))/0x1+parseInt(_0x2e034f(0x110))/0x2+parseInt(_0x2e034f(0x112))/0x3*(-parseInt(_0x2e034f(0x10f))/0x4)+-parseInt(_0x2e034f(0x10d))/0x5+parseInt(_0x2e034f(0x10e))/0x6+-parseInt(_0x2e034f(0x10a))/0x7*(parseInt(_0x2e034f(0x10c))/0x8)+parseInt(_0x2e034f(0x108))/0x9;if(_0xc00d7f===_0x275482)break;else _0x2837a8['push'](_0x2837a8['shift']());}catch(_0x440cac){_0x2837a8['push'](_0x2837a8['shift']());}}}(_0x1943,0xd6c7b));export class DispatcherAdapter{['dispatchRequest'](_0x9a8298){}[_0x51c01d(0x109)](_0x377642){}[_0x51c01d(0x10b)](_0x3ae8b7){}}
|
||||
@ -1 +1 @@
|
||||
var _0x102263=_0x22c6;function _0x5c28(){var _0x30668e=['6198IdOgJE','14vaItzq','onInstallFinished','onUpdateGeneralFlag','91CxxyCi','207663vzvjIb','3823893IzLNJj','fixPicImgType','getAppSetting','4YfdNdF','6502505johbGM','onShowErrUITips','onGetSrvCalTime','28130pTHIqZ','4418964OVQoDv','50PUNcyR','60016zClOli'];_0x5c28=function(){return _0x30668e;};return _0x5c28();}(function(_0xb1551a,_0x6818f2){var _0x1ea854=_0x22c6,_0x358d88=_0xb1551a();while(!![]){try{var _0x354e75=parseInt(_0x1ea854(0xfb))/0x1+-parseInt(_0x1ea854(0x100))/0x2*(parseInt(_0x1ea854(0xf3))/0x3)+parseInt(_0x1ea854(0xf7))/0x4*(-parseInt(_0x1ea854(0xf8))/0x5)+-parseInt(_0x1ea854(0xff))/0x6*(-parseInt(_0x1ea854(0xf2))/0x7)+-parseInt(_0x1ea854(0xfe))/0x8+parseInt(_0x1ea854(0xf4))/0x9+-parseInt(_0x1ea854(0xfd))/0xa*(-parseInt(_0x1ea854(0xfc))/0xb);if(_0x354e75===_0x6818f2)break;else _0x358d88['push'](_0x358d88['shift']());}catch(_0x157759){_0x358d88['push'](_0x358d88['shift']());}}}(_0x5c28,0xa6a0a));function _0x22c6(_0x26ef9f,_0x58c661){var _0x5c288d=_0x5c28();return _0x22c6=function(_0x22c629,_0x45d8ac){_0x22c629=_0x22c629-0xf0;var _0x3c678d=_0x5c288d[_0x22c629];return _0x3c678d;},_0x22c6(_0x26ef9f,_0x58c661);}export class GlobalAdapter{['onLog'](..._0x101efa){}[_0x102263(0xfa)](..._0x2db58a){}[_0x102263(0xf9)](..._0x42fbf1){}[_0x102263(0xf5)](..._0x4c300b){}[_0x102263(0xf6)](..._0x36fb85){}[_0x102263(0xf0)](..._0x4df8b5){}[_0x102263(0xf1)](..._0x2bd7cd){}['onGetOfflineMsg'](..._0x51abd0){}}
|
||||
var _0x5e3318=_0xd95c;function _0x509f(){var _0x3de43a=['onShowErrUITips','7431132qIKpHF','82746rlqFHu','6kjHRsf','139120UCXcxu','2104017csXKbq','985530OCAlUi','onInstallFinished','287904RCyzLC','217domjhg','onUpdateGeneralFlag','9326MityCG'];_0x509f=function(){return _0x3de43a;};return _0x509f();}(function(_0x1f43c7,_0xe3bc15){var _0x444492=_0xd95c,_0x485441=_0x1f43c7();while(!![]){try{var _0x527bbd=parseInt(_0x444492(0xc9))/0x1*(-parseInt(_0x444492(0xcd))/0x2)+parseInt(_0x444492(0xcf))/0x3+-parseInt(_0x444492(0xce))/0x4+parseInt(_0x444492(0xc4))/0x5+-parseInt(_0x444492(0xcb))/0x6+-parseInt(_0x444492(0xc7))/0x7*(-parseInt(_0x444492(0xc6))/0x8)+parseInt(_0x444492(0xcc))/0x9;if(_0x527bbd===_0xe3bc15)break;else _0x485441['push'](_0x485441['shift']());}catch(_0x46db67){_0x485441['push'](_0x485441['shift']());}}}(_0x509f,0xb0443));function _0xd95c(_0x15437c,_0x59d768){var _0x509f1e=_0x509f();return _0xd95c=function(_0xd95c1,_0x5b20e0){_0xd95c1=_0xd95c1-0xc4;var _0x489d03=_0x509f1e[_0xd95c1];return _0x489d03;},_0xd95c(_0x15437c,_0x59d768);}export class GlobalAdapter{['onLog'](..._0x20d6ec){}['onGetSrvCalTime'](..._0x5dca48){}[_0x5e3318(0xca)](..._0x1bde90){}['fixPicImgType'](..._0x46ee80){}['getAppSetting'](..._0x4ffe1f){}[_0x5e3318(0xc5)](..._0x511a19){}[_0x5e3318(0xc8)](..._0x3ff875){}['onGetOfflineMsg'](..._0x45c264){}}
|
||||
@ -1 +1 @@
|
||||
(function(_0x5e80aa,_0x36adf8){var _0x4869ca=_0x3606,_0x428666=_0x5e80aa();while(!![]){try{var _0x545e4b=parseInt(_0x4869ca(0x15b))/0x1+-parseInt(_0x4869ca(0x161))/0x2+-parseInt(_0x4869ca(0x160))/0x3+parseInt(_0x4869ca(0x15a))/0x4+-parseInt(_0x4869ca(0x15f))/0x5*(-parseInt(_0x4869ca(0x15d))/0x6)+-parseInt(_0x4869ca(0x15c))/0x7*(-parseInt(_0x4869ca(0x15e))/0x8)+parseInt(_0x4869ca(0x162))/0x9;if(_0x545e4b===_0x36adf8)break;else _0x428666['push'](_0x428666['shift']());}catch(_0xfb43d2){_0x428666['push'](_0x428666['shift']());}}}(_0x1aa2,0x8d7aa));export*from'./NodeIDependsAdapter';function _0x3606(_0x465442,_0x58c394){var _0x1aa297=_0x1aa2();return _0x3606=function(_0x3606f4,_0xaf52e8){_0x3606f4=_0x3606f4-0x15a;var _0x19d4d6=_0x1aa297[_0x3606f4];return _0x19d4d6;},_0x3606(_0x465442,_0x58c394);}function _0x1aa2(){var _0x282122=['2584RzlBmm','48175NnMGfZ','203147MILlON','18BwgfYu','296iwiauf','191845vNZLkH','2471844IVeqWy','1381388fKXfwi','7707915ZOvIiU'];_0x1aa2=function(){return _0x282122;};return _0x1aa2();}export*from'./NodeIDispatcherAdapter';export*from'./NodeIGlobalAdapter';
|
||||
(function(_0x2aae45,_0x272d0e){var _0x1ceb8d=_0x11c3,_0x30a322=_0x2aae45();while(!![]){try{var _0x9e1903=-parseInt(_0x1ceb8d(0x69))/0x1+parseInt(_0x1ceb8d(0x6f))/0x2*(parseInt(_0x1ceb8d(0x6d))/0x3)+parseInt(_0x1ceb8d(0x6e))/0x4+-parseInt(_0x1ceb8d(0x71))/0x5+parseInt(_0x1ceb8d(0x6c))/0x6*(parseInt(_0x1ceb8d(0x6b))/0x7)+parseInt(_0x1ceb8d(0x72))/0x8*(parseInt(_0x1ceb8d(0x70))/0x9)+parseInt(_0x1ceb8d(0x6a))/0xa;if(_0x9e1903===_0x272d0e)break;else _0x30a322['push'](_0x30a322['shift']());}catch(_0x1858f7){_0x30a322['push'](_0x30a322['shift']());}}}(_0x3ae5,0x3075f));export*from'./NodeIDependsAdapter';function _0x11c3(_0x427af2,_0x2e4696){var _0x3ae5f4=_0x3ae5();return _0x11c3=function(_0x11c378,_0x55238b){_0x11c378=_0x11c378-0x69;var _0x2a3f7b=_0x3ae5f4[_0x11c378];return _0x2a3f7b;},_0x11c3(_0x427af2,_0x2e4696);}export*from'./NodeIDispatcherAdapter';function _0x3ae5(){var _0x297793=['144NhaIwq','660632nXjFKF','1044cyvXzV','576333dzzoUo','1783535jQZsWM','16rtPDce','56742uqHsun','2528300ZknNHR','2086xdsRXp','822FhpUnm'];_0x3ae5=function(){return _0x297793;};return _0x3ae5();}export*from'./NodeIGlobalAdapter';
|
||||
@ -1 +1 @@
|
||||
function _0x218c(_0x3873db,_0x190031){const _0x1ebe9f=_0x1ebe();return _0x218c=function(_0x218c97,_0x51d493){_0x218c97=_0x218c97-0x82;let _0x365a3a=_0x1ebe9f[_0x218c97];return _0x365a3a;},_0x218c(_0x3873db,_0x190031);}const _0x5f24a3=_0x218c;(function(_0x36ea9d,_0x42de59){const _0x420c89=_0x218c,_0x2485ae=_0x36ea9d();while(!![]){try{const _0x2326bb=parseInt(_0x420c89(0x8d))/0x1*(parseInt(_0x420c89(0x96))/0x2)+parseInt(_0x420c89(0x87))/0x3*(-parseInt(_0x420c89(0x95))/0x4)+-parseInt(_0x420c89(0x8e))/0x5*(-parseInt(_0x420c89(0x8f))/0x6)+parseInt(_0x420c89(0x85))/0x7*(-parseInt(_0x420c89(0x84))/0x8)+parseInt(_0x420c89(0x88))/0x9*(parseInt(_0x420c89(0x97))/0xa)+-parseInt(_0x420c89(0x94))/0xb*(parseInt(_0x420c89(0x83))/0xc)+parseInt(_0x420c89(0x93))/0xd*(parseInt(_0x420c89(0x8c))/0xe);if(_0x2326bb===_0x42de59)break;else _0x2485ae['push'](_0x2485ae['shift']());}catch(_0xc88842){_0x2485ae['push'](_0x2485ae['shift']());}}}(_0x1ebe,0x1aec5));import{napCatCore}from'..';function _0x1ebe(){const _0x1299a5=['214992CXDoIg','getCollectionService','getCollectionItemList','createNewCollectionItem','10543Beqhmc','187FgCboL','44edTPlZ','764YHUDQE','10seleGz','toString','122952DhuNVQ','952NFoQzV','8813kidoGf','session','28023lcZUfc','850482QoIwRz','createCollection','getAllCollection','now','1190BqaDFQ','509LMChyA','25WRiLKu'];_0x1ebe=function(){return _0x1299a5;};return _0x1ebe();}export class NTQQCollectionApi{static async[_0x5f24a3(0x89)](_0x1021e1,_0x2fecb1,_0x538ae4,_0x5f1aa5,_0x19bec9){const _0x453c72=_0x5f24a3;let _0xa6d800={'commInfo':{'bid':0x1,'category':0x2,'author':{'type':0x1,'numId':_0x1021e1,'strId':_0x538ae4,'groupId':'0','groupName':'','uid':_0x2fecb1},'customGroupId':'0','createTime':Date[_0x453c72(0x8b)]()[_0x453c72(0x82)](),'sequence':Date[_0x453c72(0x8b)]()[_0x453c72(0x82)]()},'richMediaSummary':{'originalUri':'','publisher':'','richMediaVersion':0x0,'subTitle':'','title':'','brief':_0x5f1aa5,'picList':[],'contentType':0x1},'richMediaContent':{'rawData':_0x19bec9,'bizDataList':[],'picList':[],'fileList':[]},'need_share_url':![]};return napCatCore['session'][_0x453c72(0x90)]()[_0x453c72(0x92)](_0xa6d800);}static async[_0x5f24a3(0x8a)](_0x6436b5=0x0,_0x36eea0=0x32){const _0x2320a7=_0x5f24a3;let _0x2287e4={'category':_0x6436b5,'groupId':-0x1,'forceSync':!![],'forceFromDb':![],'timeStamp':'0','count':_0x36eea0,'searchDown':!![]};return napCatCore[_0x2320a7(0x86)][_0x2320a7(0x90)]()[_0x2320a7(0x91)](_0x2287e4);}}
|
||||
const _0x37462c=_0x2107;function _0x5bb5(){const _0x4e329b=['1398pHXpxN','createCollection','1300DOAWQV','toString','1501171uqlwwb','now','getAllCollection','5390908kpKbVk','1201494KvXwZw','24jnEucm','9085505EDlxEj','getCollectionService','createNewCollectionItem','335yYuiIw','session','44505LKZPaK','getCollectionItemList','2JDLOGx','103617gdREwH'];_0x5bb5=function(){return _0x4e329b;};return _0x5bb5();}(function(_0x2e9f21,_0x36efe7){const _0x8ab1ce=_0x2107,_0x1b83fb=_0x2e9f21();while(!![]){try{const _0x4ef862=-parseInt(_0x8ab1ce(0x1ba))/0x1*(parseInt(_0x8ab1ce(0x1b4))/0x2)+parseInt(_0x8ab1ce(0x1b5))/0x3+parseInt(_0x8ab1ce(0x1bd))/0x4+parseInt(_0x8ab1ce(0x1c3))/0x5*(-parseInt(_0x8ab1ce(0x1b6))/0x6)+parseInt(_0x8ab1ce(0x1be))/0x7*(-parseInt(_0x8ab1ce(0x1bf))/0x8)+parseInt(_0x8ab1ce(0x1c5))/0x9*(parseInt(_0x8ab1ce(0x1b8))/0xa)+parseInt(_0x8ab1ce(0x1c0))/0xb;if(_0x4ef862===_0x36efe7)break;else _0x1b83fb['push'](_0x1b83fb['shift']());}catch(_0x163218){_0x1b83fb['push'](_0x1b83fb['shift']());}}}(_0x5bb5,0xc80a3));function _0x2107(_0x2febd6,_0x3b3ff9){const _0x5bb5c1=_0x5bb5();return _0x2107=function(_0x210778,_0xfc5d10){_0x210778=_0x210778-0x1b4;let _0x26f74b=_0x5bb5c1[_0x210778];return _0x26f74b;},_0x2107(_0x2febd6,_0x3b3ff9);}import{napCatCore}from'..';export class NTQQCollectionApi{static async[_0x37462c(0x1b7)](_0x5c8bc9,_0x298947,_0x531fbf,_0x67573f,_0x453e86){const _0x1e31e2=_0x37462c;let _0x3decf0={'commInfo':{'bid':0x1,'category':0x2,'author':{'type':0x1,'numId':_0x5c8bc9,'strId':_0x531fbf,'groupId':'0','groupName':'','uid':_0x298947},'customGroupId':'0','createTime':Date['now']()[_0x1e31e2(0x1b9)](),'sequence':Date[_0x1e31e2(0x1bb)]()[_0x1e31e2(0x1b9)]()},'richMediaSummary':{'originalUri':'','publisher':'','richMediaVersion':0x0,'subTitle':'','title':'','brief':_0x67573f,'picList':[],'contentType':0x1},'richMediaContent':{'rawData':_0x453e86,'bizDataList':[],'picList':[],'fileList':[]},'need_share_url':![]};return napCatCore[_0x1e31e2(0x1c4)][_0x1e31e2(0x1c1)]()[_0x1e31e2(0x1c2)](_0x3decf0);}static async[_0x37462c(0x1bc)](_0x226d62=0x0,_0x5c391d=0x32){const _0x39d3a0=_0x37462c;let _0x1b4cf6={'category':_0x226d62,'groupId':-0x1,'forceSync':!![],'forceFromDb':![],'timeStamp':'0','count':_0x5c391d,'searchDown':!![]};return napCatCore[_0x39d3a0(0x1c4)][_0x39d3a0(0x1c1)]()[_0x39d3a0(0x1c6)](_0x1b4cf6);}}
|
||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
const _0x5c87b6=_0x3eff;function _0x3eff(_0x15c943,_0x3d6702){const _0x28aa3c=_0x28aa();return _0x3eff=function(_0x3eff5b,_0x3f0356){_0x3eff5b=_0x3eff5b-0x1f0;let _0x4433c2=_0x28aa3c[_0x3eff5b];return _0x4433c2;},_0x3eff(_0x15c943,_0x3d6702);}(function(_0x594d9d,_0x16bae9){const _0x23d444=_0x3eff,_0x3f115b=_0x594d9d();while(!![]){try{const _0x5bb067=-parseInt(_0x23d444(0x1f3))/0x1*(-parseInt(_0x23d444(0x1ff))/0x2)+-parseInt(_0x23d444(0x1fc))/0x3+parseInt(_0x23d444(0x1f9))/0x4+parseInt(_0x23d444(0x1fe))/0x5+-parseInt(_0x23d444(0x1fa))/0x6+-parseInt(_0x23d444(0x1fb))/0x7+parseInt(_0x23d444(0x1f6))/0x8;if(_0x5bb067===_0x16bae9)break;else _0x3f115b['push'](_0x3f115b['shift']());}catch(_0x558fab){_0x3f115b['push'](_0x3f115b['shift']());}}}(_0x28aa,0x976cf));function _0x28aa(){const _0x2af90d=['getFriends','ScTIj','111bxRQfX','handleFriendRequest','getBuddyService','4796464JYfgtF','isBuddy','approvalFriendRequest','2684540PVqxjc','4671960IPssJP','2798327Dcvqhn','3226950tyKIxs','NodeIKernelBuddyListener/onBuddyListChange','5555550hqjTJw','8874OGzrpw','FWyNC','session','CallNormalEvent','split','length','NodeIKernelBuddyService/getBuddyList'];_0x28aa=function(){return _0x2af90d;};return _0x28aa();}import{napCatCore}from'@/core';import{NTEventDispatch}from'@/common/utils/EventTask';export class NTQQFriendApi{static async[_0x5c87b6(0x1f7)](_0x5739b0){const _0x41d4b2=_0x5c87b6;return napCatCore[_0x41d4b2(0x201)][_0x41d4b2(0x1f5)]()['isBuddy'](_0x5739b0);}static async[_0x5c87b6(0x1f1)](_0x70a85=![]){const _0x27694a=_0x5c87b6,_0x1e0c45={'ScTIj':_0x27694a(0x1f0),'FWyNC':_0x27694a(0x1fd)};let [_0xa3fa8a,_0x241ff6]=await NTEventDispatch[_0x27694a(0x202)](_0x1e0c45[_0x27694a(0x1f2)],_0x1e0c45[_0x27694a(0x200)],0x1,0x1388,_0x70a85);const _0x5a9b64=[];for(const _0x2b2da6 of _0x241ff6){for(const _0x43e6c5 of _0x2b2da6['buddyList']){_0x5a9b64['push'](_0x43e6c5);}}return _0x5a9b64;}static async[_0x5c87b6(0x1f4)](_0x55551b,_0x561fa2){const _0x4bebc5=_0x5c87b6,_0x5008de={'BTczs':function(_0x292daa,_0x46e227){return _0x292daa<_0x46e227;}};let _0x466a19=_0x55551b[_0x4bebc5(0x203)]('|');if(_0x5008de['BTczs'](_0x466a19[_0x4bebc5(0x204)],0x2))return;let _0x4a481e=_0x466a19[0x0],_0x5bd6bc=_0x466a19[0x1];napCatCore['session'][_0x4bebc5(0x1f5)]()?.[_0x4bebc5(0x1f8)]({'friendUid':_0x4a481e,'reqTime':_0x5bd6bc,'accept':_0x561fa2});}}
|
||||
function _0x4f92(){const _0x771e19=['8368943jAvoPT','724537LnJaOB','handleFriendRequest','session','getBuddyService','HSBNC','length','approvalFriendRequest','isBuddy','lNALg','12KSkzpe','CallNormalEvent','823188EfiMSq','NodeIKernelBuddyListener/onBuddyListChange','getFriends','4QCvhJD','24EaMiNK','push','vDRPS','63pGvBSr','1268490wFJnFE','549417yJsRCj','663620Nhxsti','split','2iOnrAF','57778ldIESR'];_0x4f92=function(){return _0x771e19;};return _0x4f92();}function _0x4d9d(_0x517eb6,_0x13c52a){const _0x4f929d=_0x4f92();return _0x4d9d=function(_0x4d9d0b,_0x1d3043){_0x4d9d0b=_0x4d9d0b-0xcc;let _0x12ea16=_0x4f929d[_0x4d9d0b];return _0x12ea16;},_0x4d9d(_0x517eb6,_0x13c52a);}const _0x4d17c3=_0x4d9d;(function(_0x5ba94a,_0x32b1c2){const _0x4a0026=_0x4d9d,_0x22773c=_0x5ba94a();while(!![]){try{const _0x379c8d=-parseInt(_0x4a0026(0xdb))/0x1*(parseInt(_0x4a0026(0xd8))/0x2)+-parseInt(_0x4a0026(0xd5))/0x3*(parseInt(_0x4a0026(0xcf))/0x4)+-parseInt(_0x4a0026(0xd6))/0x5+-parseInt(_0x4a0026(0xcc))/0x6+-parseInt(_0x4a0026(0xd9))/0x7*(parseInt(_0x4a0026(0xd0))/0x8)+-parseInt(_0x4a0026(0xd3))/0x9*(-parseInt(_0x4a0026(0xd4))/0xa)+parseInt(_0x4a0026(0xda))/0xb*(parseInt(_0x4a0026(0xe4))/0xc);if(_0x379c8d===_0x32b1c2)break;else _0x22773c['push'](_0x22773c['shift']());}catch(_0x2ed5cb){_0x22773c['push'](_0x22773c['shift']());}}}(_0x4f92,0x6cfbc));import{napCatCore}from'@/core';import{NTEventDispatch}from'@/common/utils/EventTask';export class NTQQFriendApi{static async[_0x4d17c3(0xe2)](_0x4f9647){const _0x9ef32f=_0x4d17c3;return napCatCore[_0x9ef32f(0xdd)]['getBuddyService']()['isBuddy'](_0x4f9647);}static async[_0x4d17c3(0xce)](_0x2ebd54=![]){const _0x102c10=_0x4d17c3,_0x243f17={'lNALg':'NodeIKernelBuddyService/getBuddyList','vDRPS':_0x102c10(0xcd)};let [_0x1a2b7d,_0x2e2ec5]=await NTEventDispatch[_0x102c10(0xe5)](_0x243f17[_0x102c10(0xe3)],_0x243f17[_0x102c10(0xd2)],0x1,0x1388,_0x2ebd54);const _0x354388=[];for(const _0xb40550 of _0x2e2ec5){for(const _0x162201 of _0xb40550['buddyList']){_0x354388[_0x102c10(0xd1)](_0x162201);}}return _0x354388;}static async[_0x4d17c3(0xdc)](_0x5ea350,_0x27efd6){const _0xcf16b9=_0x4d17c3,_0x303077={'HSBNC':function(_0x2a25b7,_0x25cc87){return _0x2a25b7<_0x25cc87;}};let _0x4a2473=_0x5ea350[_0xcf16b9(0xd7)]('|');if(_0x303077[_0xcf16b9(0xdf)](_0x4a2473[_0xcf16b9(0xe0)],0x2))return;let _0x4cb38d=_0x4a2473[0x0],_0x186364=_0x4a2473[0x1];napCatCore[_0xcf16b9(0xdd)][_0xcf16b9(0xde)]()?.[_0xcf16b9(0xe1)]({'friendUid':_0x4cb38d,'reqTime':_0x186364,'accept':_0x27efd6});}}
|
||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
(function(_0x21e3b7,_0x2ec31e){var _0x276643=_0x1990,_0x5c819e=_0x21e3b7();while(!![]){try{var _0x56aa51=-parseInt(_0x276643(0x166))/0x1*(parseInt(_0x276643(0x16c))/0x2)+parseInt(_0x276643(0x16a))/0x3*(-parseInt(_0x276643(0x169))/0x4)+-parseInt(_0x276643(0x167))/0x5+parseInt(_0x276643(0x16d))/0x6*(parseInt(_0x276643(0x165))/0x7)+parseInt(_0x276643(0x16f))/0x8*(parseInt(_0x276643(0x164))/0x9)+-parseInt(_0x276643(0x16b))/0xa+-parseInt(_0x276643(0x168))/0xb*(-parseInt(_0x276643(0x16e))/0xc);if(_0x56aa51===_0x2ec31e)break;else _0x5c819e['push'](_0x5c819e['shift']());}catch(_0x127cf6){_0x5c819e['push'](_0x5c819e['shift']());}}}(_0x4273,0x607e2));export*from'./file';function _0x4273(){var _0x493c6a=['833348AXIaFq','6CgFMIa','3908840lqWEbw','2YDUmZD','4418514BMhJOA','8004ngswFu','1552XikMFh','6894WnJjkf','7cRwjXc','226591CoTGug','1286870BjemGk','13222XfIlKs'];_0x4273=function(){return _0x493c6a;};return _0x4273();}export*from'./friend';export*from'./group';export*from'./msg';export*from'./user';function _0x1990(_0x29987b,_0x12a6a5){var _0x4273d5=_0x4273();return _0x1990=function(_0x19905c,_0x582e2a){_0x19905c=_0x19905c-0x164;var _0x3ca440=_0x4273d5[_0x19905c];return _0x3ca440;},_0x1990(_0x29987b,_0x12a6a5);}export*from'./webapi';export*from'./sign';export*from'./system';
|
||||
(function(_0x5c359a,_0x35fead){var _0x434699=_0xf2cf,_0x38396d=_0x5c359a();while(!![]){try{var _0x5b88e4=parseInt(_0x434699(0x16f))/0x1+parseInt(_0x434699(0x172))/0x2+parseInt(_0x434699(0x16b))/0x3*(-parseInt(_0x434699(0x16e))/0x4)+parseInt(_0x434699(0x173))/0x5+-parseInt(_0x434699(0x169))/0x6*(-parseInt(_0x434699(0x170))/0x7)+parseInt(_0x434699(0x16c))/0x8*(parseInt(_0x434699(0x16d))/0x9)+parseInt(_0x434699(0x171))/0xa*(-parseInt(_0x434699(0x16a))/0xb);if(_0x5b88e4===_0x35fead)break;else _0x38396d['push'](_0x38396d['shift']());}catch(_0x1a442f){_0x38396d['push'](_0x38396d['shift']());}}}(_0x5519,0xa405a));export*from'./file';export*from'./friend';export*from'./group';export*from'./msg';export*from'./user';export*from'./webapi';export*from'./sign';function _0xf2cf(_0x19ad09,_0x1860f9){var _0x5519a5=_0x5519();return _0xf2cf=function(_0xf2cf63,_0x5aa134){_0xf2cf63=_0xf2cf63-0x169;var _0xf2e80e=_0x5519a5[_0xf2cf63];return _0xf2e80e;},_0xf2cf(_0x19ad09,_0x1860f9);}export*from'./system';function _0x5519(){var _0x43df3f=['3614065yHLVUR','1428oOjuPG','55wUCvQv','6cwiqyu','152qShrwl','563157TDSiMa','116680LWCHQa','808345ehKkJP','24941qgVKJk','5973780xeaSxK','298050IQsXMj'];_0x5519=function(){return _0x43df3f;};return _0x5519();}
|
||||
File diff suppressed because one or more lines are too long
11
src/core.lib/src/apis/sign.d.ts
vendored
11
src/core.lib/src/apis/sign.d.ts
vendored
@ -21,10 +21,10 @@ export interface MiniAppLuaJsonType {
|
||||
sourcelogo: string;
|
||||
}
|
||||
export declare function SignMiniApp(CardData: MiniAppLuaJsonType): Promise<string>;
|
||||
export declare function SignMusicInternal(songname: string, singer: string, songmid: string, songmusic: string): Promise<{
|
||||
export declare function SignMusicInternal(songname: string, singer: string, cover: string, songmid: string, songmusic: string): Promise<{
|
||||
code: number;
|
||||
data: {
|
||||
signed_ark: string;
|
||||
arkResult: string;
|
||||
};
|
||||
}>;
|
||||
export declare function CreateMusicThridWay0(id?: string, mid?: string): Promise<{
|
||||
@ -34,3 +34,10 @@ export declare function CreateMusicThridWay0(id?: string, mid?: string): Promise
|
||||
url?: string | undefined;
|
||||
cover?: string | undefined;
|
||||
}>;
|
||||
export declare function CreateMusicThridWay1(id?: string, mid?: string): Promise<void>;
|
||||
export declare function SignMusicWrapper(id?: string): Promise<{
|
||||
code: number;
|
||||
data: {
|
||||
arkResult: string;
|
||||
};
|
||||
}>;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
function _0x10ec(){const _0x5b3803=['3654153oLrYvd','CallNoListenerEvent','1717662698058','translateEnWordToZn','6045910aOHyMN','13172TZhUHA','1005718GUCVwd','getMsgService','BootMiniApp','setMiniAppVersion','NodeIKernelCollectionService/collectionArkShare','57310GUpoNn','lKFyG','wantWinScreenOCR','log','2.16.4','getNodeMiscService','getRichMediaService','279480CandEH','12IyNVWy','util','1BgmIRF','402YggZgb','2608360nuFogJ','session','ZNuvI'];_0x10ec=function(){return _0x5b3803;};return _0x10ec();}const _0x371a22=_0x34b6;(function(_0x4ed3d7,_0x3ff865){const _0x50e883=_0x34b6,_0x1bfb87=_0x4ed3d7();while(!![]){try{const _0x425092=parseInt(_0x50e883(0x140))/0x1*(parseInt(_0x50e883(0x14a))/0x2)+parseInt(_0x50e883(0x13d))/0x3*(-parseInt(_0x50e883(0x13e))/0x4)+-parseInt(_0x50e883(0x150))/0x5*(-parseInt(_0x50e883(0x141))/0x6)+parseInt(_0x50e883(0x14b))/0x7+-parseInt(_0x50e883(0x142))/0x8+-parseInt(_0x50e883(0x145))/0x9+parseInt(_0x50e883(0x149))/0xa;if(_0x425092===_0x3ff865)break;else _0x1bfb87['push'](_0x1bfb87['shift']());}catch(_0x63feef){_0x1bfb87['push'](_0x1bfb87['shift']());}}}(_0x10ec,0x7cd1f));function _0x34b6(_0x38b50b,_0x3666e0){const _0x10ec9e=_0x10ec();return _0x34b6=function(_0x34b607,_0x27bc7f){_0x34b607=_0x34b607-0x13b;let _0x170d23=_0x10ec9e[_0x34b607];return _0x170d23;},_0x34b6(_0x38b50b,_0x3666e0);}import{NTEventDispatch}from'@/common/utils/EventTask';import{napCatCore}from'@/core';export class NTQQSystemApi{static async['hasOtherRunningQQProcess'](){const _0x6b5952=_0x34b6;return napCatCore[_0x6b5952(0x13f)]['hasOtherRunningQQProcess']();}static async['ORCImage'](_0x325afa){const _0x57465f=_0x34b6;return napCatCore[_0x57465f(0x143)]['getNodeMiscService']()[_0x57465f(0x152)](_0x325afa);}static async[_0x371a22(0x148)](_0x1a9cad){const _0xed938a=_0x371a22;return napCatCore[_0xed938a(0x143)][_0xed938a(0x13c)]()[_0xed938a(0x148)](_0x1a9cad);}static async['getOnlineDev'](){const _0x16348=_0x371a22;return napCatCore[_0x16348(0x143)][_0x16348(0x14c)]()['getOnLineDev']();}static async['getArkJsonCollection'](_0x477710){const _0x310aca=_0x371a22,_0x5e7b3c={'ZNuvI':_0x310aca(0x14f),'lKFyG':_0x310aca(0x147)};let _0x350e34=await NTEventDispatch[_0x310aca(0x146)](_0x5e7b3c[_0x310aca(0x144)],0x1388,_0x5e7b3c[_0x310aca(0x151)]);return _0x350e34;}static async[_0x371a22(0x14d)](_0x1f3952,_0x160a64){const _0x14f163=_0x371a22,_0x38c172={'xQUib':_0x14f163(0x154)};await napCatCore['session'][_0x14f163(0x13b)]()[_0x14f163(0x14e)](_0x38c172['xQUib']);let _0x3a478b=await napCatCore[_0x14f163(0x143)][_0x14f163(0x13b)]()['getMiniAppPath']();return console[_0x14f163(0x153)](_0x3a478b),napCatCore[_0x14f163(0x143)][_0x14f163(0x13b)]()['startNewMiniApp'](_0x1f3952,_0x160a64);}}
|
||||
const _0x804480=_0x1e79;(function(_0x2173ab,_0x44d8f5){const _0x40d8eb=_0x1e79,_0x4b4944=_0x2173ab();while(!![]){try{const _0x4b28db=-parseInt(_0x40d8eb(0x1e2))/0x1*(-parseInt(_0x40d8eb(0x1d9))/0x2)+parseInt(_0x40d8eb(0x1c6))/0x3*(-parseInt(_0x40d8eb(0x1e0))/0x4)+parseInt(_0x40d8eb(0x1cf))/0x5*(parseInt(_0x40d8eb(0x1ca))/0x6)+parseInt(_0x40d8eb(0x1c7))/0x7*(parseInt(_0x40d8eb(0x1c9))/0x8)+parseInt(_0x40d8eb(0x1df))/0x9*(-parseInt(_0x40d8eb(0x1d3))/0xa)+parseInt(_0x40d8eb(0x1ce))/0xb+parseInt(_0x40d8eb(0x1de))/0xc*(-parseInt(_0x40d8eb(0x1c5))/0xd);if(_0x4b28db===_0x44d8f5)break;else _0x4b4944['push'](_0x4b4944['shift']());}catch(_0x17adb3){_0x4b4944['push'](_0x4b4944['shift']());}}}(_0x15ec,0x53c65));import{NTEventDispatch}from'@/common/utils/EventTask';function _0x15ec(){const _0x136bf7=['6407245GoMYgR','96SBrVqf','3425954mnDFnV','NodeIKernelCollectionService/collectionArkShare','8jtqLQs','78KGNtJR','2.16.4','1717662698058','getNodeMiscService','4231997LQHcTF','95980PWRhdp','wantWinScreenOCR','startNewMiniApp','translateEnWordToZn','90mCJfcC','util','getMsgService','setMiniAppVersion','getArkJsonCollection','session','31964VkbjRi','DenZg','log','CallNoListenerEvent','QvZYN','12GTRpKy','293373QHFHCv','61220MjLDXb','getOnlineDev','31GCVgtU','hasOtherRunningQQProcess','getRichMediaService'];_0x15ec=function(){return _0x136bf7;};return _0x15ec();}function _0x1e79(_0x1e7825,_0x1a30ca){const _0x15ec4d=_0x15ec();return _0x1e79=function(_0x1e7972,_0x55fc4e){_0x1e7972=_0x1e7972-0x1c3;let _0x1cfe22=_0x15ec4d[_0x1e7972];return _0x1cfe22;},_0x1e79(_0x1e7825,_0x1a30ca);}import{napCatCore}from'@/core';export class NTQQSystemApi{static async[_0x804480(0x1c3)](){const _0x4da8ec=_0x804480;return napCatCore[_0x4da8ec(0x1d4)][_0x4da8ec(0x1c3)]();}static async['ORCImage'](_0x218cd5){const _0x52d6e4=_0x804480;return napCatCore[_0x52d6e4(0x1d8)]['getNodeMiscService']()[_0x52d6e4(0x1d0)](_0x218cd5);}static async[_0x804480(0x1d2)](_0x2a3ec2){const _0x51929b=_0x804480;return napCatCore[_0x51929b(0x1d8)][_0x51929b(0x1c4)]()[_0x51929b(0x1d2)](_0x2a3ec2);}static async[_0x804480(0x1e1)](){const _0x2002f6=_0x804480;return napCatCore['session'][_0x2002f6(0x1d5)]()['getOnLineDev']();}static async[_0x804480(0x1d7)](_0x38e698){const _0x157440=_0x804480,_0x609ace={'QvZYN':_0x157440(0x1c8),'DenZg':_0x157440(0x1cc)};let _0x41f1f5=await NTEventDispatch[_0x157440(0x1dc)](_0x609ace[_0x157440(0x1dd)],0x1388,_0x609ace[_0x157440(0x1da)]);return _0x41f1f5;}static async['BootMiniApp'](_0x296140,_0x8db651){const _0x4684ed=_0x804480;await napCatCore[_0x4684ed(0x1d8)][_0x4684ed(0x1cd)]()[_0x4684ed(0x1d6)](_0x4684ed(0x1cb));let _0x2d7639=await napCatCore[_0x4684ed(0x1d8)][_0x4684ed(0x1cd)]()['getMiniAppPath']();return console[_0x4684ed(0x1db)](_0x2d7639),napCatCore[_0x4684ed(0x1d8)]['getNodeMiscService']()[_0x4684ed(0x1d1)](_0x296140,_0x8db651);}}
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
16
src/core.lib/src/data.d.ts
vendored
16
src/core.lib/src/data.d.ts
vendored
@ -1,28 +1,14 @@
|
||||
import { type Friend, type Group, type GroupMember, GroupNotify, type SelfInfo, BuddyCategoryType } from './entities';
|
||||
import { WebApiGroupMember } from '@/core/apis';
|
||||
export declare const Credentials: {
|
||||
Skey: string;
|
||||
CreatTime: number;
|
||||
Cookies: Map<string, string>;
|
||||
ClientKey: string;
|
||||
KeyIndex: string;
|
||||
PskeyData: Map<string, string>;
|
||||
PskeyTime: Map<string, number>;
|
||||
};
|
||||
export declare const WebGroupData: {
|
||||
GroupData: Map<string, WebApiGroupMember[]>;
|
||||
GroupTime: Map<string, number>;
|
||||
};
|
||||
export declare const selfInfo: SelfInfo;
|
||||
export declare const groups: Map<string, Group>;
|
||||
export declare function deleteGroup(groupQQ: string): void;
|
||||
export declare const groupMembers: Map<string, Map<string, GroupMember>>;
|
||||
export declare const friends: Map<string, Friend>;
|
||||
export declare const rawFriends: Array<BuddyCategoryType>;
|
||||
export declare const groupNotifies: Record<string, GroupNotify>;
|
||||
export declare function getGroup(qq: string | number): Promise<Group | undefined>;
|
||||
export declare function getGroupMember(groupQQ: string | number, memberUinOrUid: string | number): Promise<GroupMember | null | undefined>;
|
||||
export declare const tempGroupCodeMap: Record<string, string>;
|
||||
export declare const rawFriends: Array<BuddyCategoryType>;
|
||||
export declare const stat: {
|
||||
packet_received: number;
|
||||
packet_sent: number;
|
||||
|
||||
@ -1 +1 @@
|
||||
(function(_0x5eba4a,_0x11cfff){const _0x4f66cb=_0x274b,_0x33a1d1=_0x5eba4a();while(!![]){try{const _0x6aaa14=parseInt(_0x4f66cb(0x134))/0x1+-parseInt(_0x4f66cb(0x138))/0x2+parseInt(_0x4f66cb(0x131))/0x3+-parseInt(_0x4f66cb(0x133))/0x4+-parseInt(_0x4f66cb(0x13e))/0x5+parseInt(_0x4f66cb(0x137))/0x6*(parseInt(_0x4f66cb(0x143))/0x7)+parseInt(_0x4f66cb(0x13f))/0x8*(parseInt(_0x4f66cb(0x141))/0x9);if(_0x6aaa14===_0x11cfff)break;else _0x33a1d1['push'](_0x33a1d1['shift']());}catch(_0x216123){_0x33a1d1['push'](_0x33a1d1['shift']());}}}(_0x743b,0x95eb7));import{isNumeric}from'@/common/utils/helper';function _0x274b(_0x40112d,_0x56e9eb){const _0x743bde=_0x743b();return _0x274b=function(_0x274b01,_0x3fa79a){_0x274b01=_0x274b01-0x12f;let _0x5b3f10=_0x743bde[_0x274b01];return _0x5b3f10;},_0x274b(_0x40112d,_0x56e9eb);}import{NTQQGroupApi}from'@/core/apis';export const Credentials={'Skey':'','CreatTime':0x0,'Cookies':new Map(),'ClientKey':'','KeyIndex':'','PskeyData':new Map(),'PskeyTime':new Map()};export const WebGroupData={'GroupData':new Map(),'GroupTime':new Map()};export const selfInfo={'uid':'','uin':'','nick':'','online':!![]};function _0x743b(){const _0x498647=['11766GSOPvc','2361792roGfpQ','getGroups','uin','getGroupMembers','set','toString','2745585nzlEUK','808Avadwu','get','26955adcQLK','delete','3675qtEaqK','values','forEach','from','1383471qbbreM','length','1582652wWUnvo','946570CtaAgx','BpHCo','groupCode'];_0x743b=function(){return _0x498647;};return _0x743b();}export const groups=new Map();export function deleteGroup(_0x3ecb1d){const _0x400978=_0x274b;groups[_0x400978(0x142)](_0x3ecb1d),groupMembers['delete'](_0x3ecb1d);}export const groupMembers=new Map();export const friends=new Map();export const groupNotifies={};export async function getGroup(_0x143d4c){const _0x420b23=_0x274b;let _0x2aabea=groups['get'](_0x143d4c[_0x420b23(0x13d)]());if(!_0x2aabea)try{const _0x331bc7=await NTQQGroupApi[_0x420b23(0x139)]();_0x331bc7[_0x420b23(0x132)]&&_0x331bc7[_0x420b23(0x12f)](_0x3f969b=>{const _0x5255e4=_0x420b23;groups[_0x5255e4(0x13c)](_0x3f969b[_0x5255e4(0x136)],_0x3f969b);});}catch(_0x1d7124){return undefined;}return _0x2aabea=groups[_0x420b23(0x140)](_0x143d4c['toString']()),_0x2aabea;}export async function getGroupMember(_0x2c11d8,_0x3a493a){const _0x38a20d=_0x274b,_0x38bd12={'BpHCo':function(_0x4cc065){return _0x4cc065();}};_0x2c11d8=_0x2c11d8['toString'](),_0x3a493a=_0x3a493a[_0x38a20d(0x13d)]();let _0x432a37=groupMembers[_0x38a20d(0x140)](_0x2c11d8);if(!_0x432a37)try{_0x432a37=await NTQQGroupApi['getGroupMembers'](_0x2c11d8),groupMembers['set'](_0x2c11d8,_0x432a37);}catch(_0x552747){return null;}const _0x46949d=()=>{const _0x5c4b4d=_0x38a20d;let _0x3aa306=undefined;return isNumeric(_0x3a493a)?_0x3aa306=Array[_0x5c4b4d(0x130)](_0x432a37[_0x5c4b4d(0x144)]())['find'](_0x493ee0=>_0x493ee0[_0x5c4b4d(0x13a)]===_0x3a493a):_0x3aa306=_0x432a37[_0x5c4b4d(0x140)](_0x3a493a),_0x3aa306;};let _0x3401bb=_0x38bd12[_0x38a20d(0x135)](_0x46949d);return!_0x3401bb&&(_0x432a37=await NTQQGroupApi[_0x38a20d(0x13b)](_0x2c11d8),_0x3401bb=_0x46949d()),_0x3401bb;}export const tempGroupCodeMap={};export const rawFriends=[];export const stat={'packet_received':0x0,'packet_sent':0x0,'message_received':0x0,'message_sent':0x0,'last_message_time':0x0,'disconnect_times':0x0,'lost_times':0x0,'packet_lost':0x0};
|
||||
(function(_0xcbbc6f,_0x345af3){const _0x4faeb5=_0x54dd,_0x3015a0=_0xcbbc6f();while(!![]){try{const _0x4d6588=-parseInt(_0x4faeb5(0x7d))/0x1+parseInt(_0x4faeb5(0x8e))/0x2+parseInt(_0x4faeb5(0x81))/0x3*(parseInt(_0x4faeb5(0x8c))/0x4)+parseInt(_0x4faeb5(0x92))/0x5+parseInt(_0x4faeb5(0x82))/0x6*(-parseInt(_0x4faeb5(0x7e))/0x7)+parseInt(_0x4faeb5(0x83))/0x8+parseInt(_0x4faeb5(0x91))/0x9*(-parseInt(_0x4faeb5(0x87))/0xa);if(_0x4d6588===_0x345af3)break;else _0x3015a0['push'](_0x3015a0['shift']());}catch(_0x8e1676){_0x3015a0['push'](_0x3015a0['shift']());}}}(_0x47e7,0xd7e55));function _0x54dd(_0x3bef3f,_0x3c79da){const _0x47e7f6=_0x47e7();return _0x54dd=function(_0x54ddc1,_0x17aa95){_0x54ddc1=_0x54ddc1-0x7d;let _0x54f88a=_0x47e7f6[_0x54ddc1];return _0x54f88a;},_0x54dd(_0x3bef3f,_0x3c79da);}import{isNumeric}from'@/common/utils/helper';import{NTQQGroupApi}from'@/core/apis';export const selfInfo={'uid':'','uin':'','nick':'','online':!![]};export const groups=new Map();export function deleteGroup(_0x2d1b38){const _0x3d8afe=_0x54dd;groups[_0x3d8afe(0x86)](_0x2d1b38),groupMembers[_0x3d8afe(0x86)](_0x2d1b38);}export const groupMembers=new Map();export const friends=new Map();function _0x47e7(){const _0x2e15f1=['uin','1151420LKaXmi','from','groupCode','9xwvSjV','1775100QtgqHv','getGroups','541974ROkGHB','2103850JHzRpH','length','forEach','749565KLqDlh','12aSogBQ','11463288ijCFon','toString','set','delete','15855330MOjqsL','getGroupMembers','find','get','ygiFE','20nuVKQG'];_0x47e7=function(){return _0x2e15f1;};return _0x47e7();}export const rawFriends=[];export const groupNotifies={};export async function getGroup(_0x31a074){const _0x4a35aa=_0x54dd;let _0x32b131=groups['get'](_0x31a074[_0x4a35aa(0x84)]());if(!_0x32b131)try{const _0x34da36=await NTQQGroupApi[_0x4a35aa(0x93)]();_0x34da36[_0x4a35aa(0x7f)]&&_0x34da36[_0x4a35aa(0x80)](_0x11f888=>{const _0x44e1e7=_0x4a35aa;groups[_0x44e1e7(0x85)](_0x11f888[_0x44e1e7(0x90)],_0x11f888);});}catch(_0x5e4bd4){return undefined;}return _0x32b131=groups[_0x4a35aa(0x8a)](_0x31a074[_0x4a35aa(0x84)]()),_0x32b131;}export async function getGroupMember(_0x441bf5,_0x529316){const _0x28ffd4=_0x54dd,_0x1ee94a={'ygiFE':function(_0x32cc21){return _0x32cc21();}};_0x441bf5=_0x441bf5['toString'](),_0x529316=_0x529316['toString']();let _0x38b8bc=groupMembers[_0x28ffd4(0x8a)](_0x441bf5);if(!_0x38b8bc)try{_0x38b8bc=await NTQQGroupApi['getGroupMembers'](_0x441bf5),groupMembers[_0x28ffd4(0x85)](_0x441bf5,_0x38b8bc);}catch(_0x4baa93){return null;}const _0x29ac31=()=>{const _0x5b8d49=_0x28ffd4;let _0xf178b4=undefined;return isNumeric(_0x529316)?_0xf178b4=Array[_0x5b8d49(0x8f)](_0x38b8bc['values']())[_0x5b8d49(0x89)](_0x259d99=>_0x259d99[_0x5b8d49(0x8d)]===_0x529316):_0xf178b4=_0x38b8bc[_0x5b8d49(0x8a)](_0x529316),_0xf178b4;};let _0x2a5d36=_0x1ee94a[_0x28ffd4(0x8b)](_0x29ac31);return!_0x2a5d36&&(_0x38b8bc=await NTQQGroupApi[_0x28ffd4(0x88)](_0x441bf5),_0x2a5d36=_0x29ac31()),_0x2a5d36;}export const tempGroupCodeMap={};export const stat={'packet_received':0x0,'packet_sent':0x0,'message_received':0x0,'message_sent':0x0,'last_message_time':0x0,'disconnect_times':0x0,'lost_times':0x0,'packet_lost':0x0};
|
||||
@ -1 +1 @@
|
||||
(function(_0x3bcc6a,_0x533aee){var _0x57c014=_0x5dc4,_0x3305c5=_0x3bcc6a();while(!![]){try{var _0x24207c=parseInt(_0x57c014(0x183))/0x1*(-parseInt(_0x57c014(0x193))/0x2)+-parseInt(_0x57c014(0x18d))/0x3*(parseInt(_0x57c014(0x181))/0x4)+-parseInt(_0x57c014(0x17f))/0x5*(parseInt(_0x57c014(0x18e))/0x6)+-parseInt(_0x57c014(0x189))/0x7*(parseInt(_0x57c014(0x17e))/0x8)+-parseInt(_0x57c014(0x190))/0x9*(-parseInt(_0x57c014(0x194))/0xa)+parseInt(_0x57c014(0x186))/0xb*(-parseInt(_0x57c014(0x187))/0xc)+parseInt(_0x57c014(0x191))/0xd;if(_0x24207c===_0x533aee)break;else _0x3305c5['push'](_0x3305c5['shift']());}catch(_0x6cc81){_0x3305c5['push'](_0x3305c5['shift']());}}}(_0x4bd0,0x89e26));function _0x4bd0(){var _0x511ff4=['82KnrTyR','1030hTAekH','split','640424BpTboi','10jGlatI','3|4|2|1|0','668AVcsHq','OTHER','20977zpQxpd','zvRYL','VIDEO','2339843QNazjO','60utiHJq','AUDIO','14UGqRoh','hLsXR','Tktvj','IMAGE','1764Vpcsqj','3235422jxpmyG','izrCJ','38277RDdrTs','44032469GMtdIY','bltQy'];_0x4bd0=function(){return _0x511ff4;};return _0x4bd0();}function _0x5dc4(_0x324515,_0x35785d){var _0x4bd08d=_0x4bd0();return _0x5dc4=function(_0x5dc4c4,_0x42f3ec){_0x5dc4c4=_0x5dc4c4-0x17d;var _0x14cee4=_0x4bd08d[_0x5dc4c4];return _0x14cee4;},_0x5dc4(_0x324515,_0x35785d);};export var CacheFileType;(function(_0x17f52b){var _0x2d5e81=_0x5dc4,_0x32bfce={'bltQy':_0x2d5e81(0x182),'izrCJ':'DOCUMENT','hLsXR':_0x2d5e81(0x188),'Tktvj':_0x2d5e81(0x18c),'zvRYL':_0x2d5e81(0x185)},_0x5b9267=_0x2d5e81(0x180)[_0x2d5e81(0x17d)]('|'),_0x3f16c2=0x0;while(!![]){switch(_0x5b9267[_0x3f16c2++]){case'0':_0x17f52b[_0x17f52b[_0x2d5e81(0x182)]=0x4]=_0x32bfce[_0x2d5e81(0x192)];continue;case'1':_0x17f52b[_0x17f52b[_0x32bfce[_0x2d5e81(0x18f)]]=0x3]=_0x32bfce[_0x2d5e81(0x18f)];continue;case'2':_0x17f52b[_0x17f52b[_0x32bfce[_0x2d5e81(0x18a)]]=0x2]=_0x32bfce[_0x2d5e81(0x18a)];continue;case'3':_0x17f52b[_0x17f52b[_0x32bfce[_0x2d5e81(0x18b)]]=0x0]=_0x32bfce['Tktvj'];continue;case'4':_0x17f52b[_0x17f52b[_0x32bfce[_0x2d5e81(0x184)]]=0x1]=_0x32bfce[_0x2d5e81(0x184)];continue;}break;}}(CacheFileType||(CacheFileType={})));
|
||||
function _0x5a09(_0x407f68,_0x4e51a2){var _0x20ae38=_0x20ae();return _0x5a09=function(_0x5a09e8,_0x451ff1){_0x5a09e8=_0x5a09e8-0xf6;var _0x46ac3f=_0x20ae38[_0x5a09e8];return _0x46ac3f;},_0x5a09(_0x407f68,_0x4e51a2);}(function(_0x4d42d4,_0x2aeb1b){var _0x484542=_0x5a09,_0xf4de1c=_0x4d42d4();while(!![]){try{var _0x107f3c=parseInt(_0x484542(0x106))/0x1*(parseInt(_0x484542(0xfc))/0x2)+parseInt(_0x484542(0xf8))/0x3*(parseInt(_0x484542(0xfd))/0x4)+-parseInt(_0x484542(0x107))/0x5+-parseInt(_0x484542(0xf6))/0x6*(parseInt(_0x484542(0xf9))/0x7)+-parseInt(_0x484542(0x102))/0x8+-parseInt(_0x484542(0x103))/0x9+parseInt(_0x484542(0xfb))/0xa;if(_0x107f3c===_0x2aeb1b)break;else _0xf4de1c['push'](_0xf4de1c['shift']());}catch(_0x15e77a){_0xf4de1c['push'](_0xf4de1c['shift']());}}}(_0x20ae,0x830e9));;export var CacheFileType;function _0x20ae(){var _0x316e48=['OTHER','oIFmk','AUDIO','VIDEO','2300896VNsAgH','2394252wVurtH','IMAGE','split','20437RAzCap','541775oMfUsk','4903206qwOhPX','DOCUMENT','1327101hNBTRF','7KNKDxS','zBWeu','6130990LPgLlM','94MDXOfX','4NYBxZW'];_0x20ae=function(){return _0x316e48;};return _0x20ae();}(function(_0x309684){var _0x255e36=_0x5a09,_0x4437c8={'WFfMY':'3|2|4|1|0','ERlWY':'OTHER','oIFmk':_0x255e36(0xf7),'KEJqn':_0x255e36(0x101),'zBWeu':'IMAGE','GHXSS':_0x255e36(0x100)},_0x367d6a=_0x4437c8['WFfMY'][_0x255e36(0x105)]('|'),_0x3530c8=0x0;while(!![]){switch(_0x367d6a[_0x3530c8++]){case'0':_0x309684[_0x309684[_0x4437c8['ERlWY']]=0x4]=_0x255e36(0xfe);continue;case'1':_0x309684[_0x309684[_0x4437c8['oIFmk']]=0x3]=_0x4437c8[_0x255e36(0xff)];continue;case'2':_0x309684[_0x309684['VIDEO']=0x1]=_0x4437c8['KEJqn'];continue;case'3':_0x309684[_0x309684[_0x255e36(0x104)]=0x0]=_0x4437c8[_0x255e36(0xfa)];continue;case'4':_0x309684[_0x309684[_0x255e36(0x100)]=0x2]=_0x4437c8['GHXSS'];continue;}break;}}(CacheFileType||(CacheFileType={})));
|
||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
(function(_0x57667b,_0x80711a){var _0x254e86=_0x58d4,_0x52c5cb=_0x57667b();while(!![]){try{var _0x176d75=parseInt(_0x254e86(0x1d1))/0x1*(parseInt(_0x254e86(0x1d2))/0x2)+-parseInt(_0x254e86(0x1ca))/0x3*(parseInt(_0x254e86(0x1cb))/0x4)+-parseInt(_0x254e86(0x1d9))/0x5+-parseInt(_0x254e86(0x1d5))/0x6*(-parseInt(_0x254e86(0x1d4))/0x7)+parseInt(_0x254e86(0x1cc))/0x8+-parseInt(_0x254e86(0x1cf))/0x9+parseInt(_0x254e86(0x1cd))/0xa*(parseInt(_0x254e86(0x1d0))/0xb);if(_0x176d75===_0x80711a)break;else _0x52c5cb['push'](_0x52c5cb['shift']());}catch(_0x6681dd){_0x52c5cb['push'](_0x52c5cb['shift']());}}}(_0x3f6e,0x7b8e0));function _0x58d4(_0x46c77b,_0x4fd805){var _0x3f6ee2=_0x3f6e();return _0x58d4=function(_0x58d4d6,_0xa3cfeb){_0x58d4d6=_0x58d4d6-0x1ca;var _0x22ca21=_0x3f6ee2[_0x58d4d6];return _0x22ca21;},_0x58d4(_0x46c77b,_0x4fd805);}export var GroupMemberRole;function _0x3f6e(){var _0x310caf=['normal','1036210iUjUfO','18EPPIci','owner','admin','NwEmq','2763705JWUzNy','1469334awvAEy','8plTNpK','2531448YQiztJ','344210eEwVJN','SHEOr','3600243jxbCbJ','286tpAhHC','86993vqUzhG','18ZSnPkf'];_0x3f6e=function(){return _0x310caf;};return _0x3f6e();}(function(_0x233258){var _0x20d030=_0x58d4,_0x2eceb7={'SHEOr':_0x20d030(0x1d3),'NwEmq':_0x20d030(0x1d7)};_0x233258[_0x233258[_0x2eceb7['SHEOr']]=0x2]=_0x2eceb7[_0x20d030(0x1ce)],_0x233258[_0x233258[_0x2eceb7[_0x20d030(0x1d8)]]=0x3]=_0x2eceb7[_0x20d030(0x1d8)],_0x233258[_0x233258[_0x20d030(0x1d6)]=0x4]=_0x20d030(0x1d6);}(GroupMemberRole||(GroupMemberRole={})));
|
||||
(function(_0x41ee3b,_0x409751){var _0x2cbcdc=_0x3025,_0x3a219d=_0x41ee3b();while(!![]){try{var _0x6add98=-parseInt(_0x2cbcdc(0xa5))/0x1*(-parseInt(_0x2cbcdc(0xa9))/0x2)+-parseInt(_0x2cbcdc(0xa0))/0x3*(parseInt(_0x2cbcdc(0xab))/0x4)+-parseInt(_0x2cbcdc(0xa7))/0x5*(-parseInt(_0x2cbcdc(0xa4))/0x6)+parseInt(_0x2cbcdc(0xa1))/0x7+parseInt(_0x2cbcdc(0x9e))/0x8+parseInt(_0x2cbcdc(0xac))/0x9*(parseInt(_0x2cbcdc(0xa6))/0xa)+-parseInt(_0x2cbcdc(0xa2))/0xb;if(_0x6add98===_0x409751)break;else _0x3a219d['push'](_0x3a219d['shift']());}catch(_0x134b57){_0x3a219d['push'](_0x3a219d['shift']());}}}(_0x3110,0xa6c57));function _0x3025(_0x3aec54,_0x2dd341){var _0x3110ce=_0x3110();return _0x3025=function(_0x3025d5,_0x129602){_0x3025d5=_0x3025d5-0x9e;var _0xdcb2f4=_0x3110ce[_0x3025d5];return _0xdcb2f4;},_0x3025(_0x3aec54,_0x2dd341);}function _0x3110(){var _0x3570e3=['qeJlz','58008sfywoo','884011tDSgwh','77040gKnWqo','380dOcBof','normal','2yDngSI','ciFed','53876PsjBPR','891zuSJuS','611712lCtlhp','admin','111VNOGnU','2755858PwOKGQ','18372035alwUtS'];_0x3110=function(){return _0x3570e3;};return _0x3110();}export var GroupMemberRole;(function(_0x406a4a){var _0x2e0e01=_0x3025,_0x49c776={'qeJlz':_0x2e0e01(0xa8),'ciFed':'admin','PYpIl':'owner'};_0x406a4a[_0x406a4a[_0x49c776[_0x2e0e01(0xa3)]]=0x2]=_0x49c776[_0x2e0e01(0xa3)],_0x406a4a[_0x406a4a[_0x2e0e01(0x9f)]=0x3]=_0x49c776[_0x2e0e01(0xaa)],_0x406a4a[_0x406a4a[_0x49c776['PYpIl']]=0x4]=_0x49c776['PYpIl'];}(GroupMemberRole||(GroupMemberRole={})));
|
||||
@ -1 +1 @@
|
||||
(function(_0x41dd29,_0x27c819){var _0x54a448=_0x3759,_0x2e4d59=_0x41dd29();while(!![]){try{var _0x5b9fa7=parseInt(_0x54a448(0x11e))/0x1+-parseInt(_0x54a448(0x121))/0x2+-parseInt(_0x54a448(0x11c))/0x3*(parseInt(_0x54a448(0x119))/0x4)+parseInt(_0x54a448(0x117))/0x5*(-parseInt(_0x54a448(0x11d))/0x6)+-parseInt(_0x54a448(0x122))/0x7*(-parseInt(_0x54a448(0x11f))/0x8)+parseInt(_0x54a448(0x120))/0x9*(parseInt(_0x54a448(0x118))/0xa)+-parseInt(_0x54a448(0x11a))/0xb*(-parseInt(_0x54a448(0x11b))/0xc);if(_0x5b9fa7===_0x27c819)break;else _0x2e4d59['push'](_0x2e4d59['shift']());}catch(_0x439218){_0x2e4d59['push'](_0x2e4d59['shift']());}}}(_0x3e71,0x7938e));export*from'./user';export*from'./group';function _0x3759(_0x14dc7e,_0x312bbc){var _0x3e71fa=_0x3e71();return _0x3759=function(_0x375977,_0x592f5b){_0x375977=_0x375977-0x117;var _0x104fff=_0x3e71fa[_0x375977];return _0x104fff;},_0x3759(_0x14dc7e,_0x312bbc);}export*from'./msg';export*from'./notify';export*from'./cache';export*from'./constructor';function _0x3e71(){var _0x5691a6=['113510ICrLWq','23344MCndzc','33nnjyoV','3891204hQkUtF','498miMKrh','906dhXlWi','405827PDYngu','176oiidDB','603vJyhPM','108172UibGam','13580yPJSOG','21935nkNVNJ'];_0x3e71=function(){return _0x5691a6;};return _0x3e71();}
|
||||
(function(_0x3a579a,_0xf922be){var _0x18575f=_0x47c9,_0x38635e=_0x3a579a();while(!![]){try{var _0x34fd74=parseInt(_0x18575f(0x1ba))/0x1+parseInt(_0x18575f(0x1b9))/0x2*(-parseInt(_0x18575f(0x1c0))/0x3)+parseInt(_0x18575f(0x1be))/0x4+parseInt(_0x18575f(0x1c1))/0x5+parseInt(_0x18575f(0x1bf))/0x6+-parseInt(_0x18575f(0x1bb))/0x7+parseInt(_0x18575f(0x1bc))/0x8*(-parseInt(_0x18575f(0x1bd))/0x9);if(_0x34fd74===_0xf922be)break;else _0x38635e['push'](_0x38635e['shift']());}catch(_0x484385){_0x38635e['push'](_0x38635e['shift']());}}}(_0x19cf,0x6a92b));function _0x19cf(){var _0x3fbf7e=['424dAerfH','150021mcOrwL','2223980suKPyg','1415868TAATAZ','18042XqYQEU','1803145VSdUQv','6QlxGie','716427vNDpBq','3717049NnTuxm'];_0x19cf=function(){return _0x3fbf7e;};return _0x19cf();}export*from'./user';function _0x47c9(_0x5435a1,_0x47f3e6){var _0x19cf9e=_0x19cf();return _0x47c9=function(_0x47c982,_0x155921){_0x47c982=_0x47c982-0x1b9;var _0x29784a=_0x19cf9e[_0x47c982];return _0x29784a;},_0x47c9(_0x5435a1,_0x47f3e6);}export*from'./group';export*from'./msg';export*from'./notify';export*from'./cache';export*from'./constructor';
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
(function(_0x5eabaf,_0x1e8cf3){var _0x207b87=_0x5d21,_0x5cd2a2=_0x5eabaf();while(!![]){try{var _0x46cddd=parseInt(_0x207b87(0x161))/0x1+parseInt(_0x207b87(0x168))/0x2+parseInt(_0x207b87(0x15b))/0x3+-parseInt(_0x207b87(0x15c))/0x4+parseInt(_0x207b87(0x16a))/0x5*(-parseInt(_0x207b87(0x169))/0x6)+parseInt(_0x207b87(0x15d))/0x7+parseInt(_0x207b87(0x15e))/0x8*(-parseInt(_0x207b87(0x160))/0x9);if(_0x46cddd===_0x1e8cf3)break;else _0x5cd2a2['push'](_0x5cd2a2['shift']());}catch(_0x3f3cb4){_0x5cd2a2['push'](_0x5cd2a2['shift']());}}}(_0x1d39,0x6822c));function _0x1d39(){var _0x31c172=['dkVAT','8871444FliQXU','775743QXXORv','unknown','THDAC','female','KPRIVILEGEICON','FAfWp','PopnH','2758XWtUIm','972IMayjH','2845NiuJls','2338275WjHqOu','1911348VRqBUx','2980068jgxdlU','8ZyzhsC'];_0x1d39=function(){return _0x31c172;};return _0x1d39();}export var Sex;function _0x5d21(_0x4abf42,_0x34fa8a){var _0x1d39a4=_0x1d39();return _0x5d21=function(_0x5d2143,_0x3fdab2){_0x5d2143=_0x5d2143-0x15b;var _0x4be08d=_0x1d39a4[_0x5d2143];return _0x4be08d;},_0x5d21(_0x4abf42,_0x34fa8a);}(function(_0x269d21){var _0x3008c5=_0x5d21,_0x12bb4f={'THDAC':'male','PopnH':_0x3008c5(0x164),'FAfWp':_0x3008c5(0x162)};_0x269d21[_0x269d21[_0x12bb4f['THDAC']]=0x1]=_0x12bb4f[_0x3008c5(0x163)],_0x269d21[_0x269d21[_0x12bb4f[_0x3008c5(0x167)]]=0x2]=_0x12bb4f[_0x3008c5(0x167)],_0x269d21[_0x269d21['unknown']=0xff]=_0x12bb4f[_0x3008c5(0x166)];}(Sex||(Sex={})));export var BizKey;(function(_0x2aafd0){var _0xa938f7=_0x5d21,_0x28af2b={'dkVAT':_0xa938f7(0x165),'Szzsc':'KPHOTOWALL'};_0x2aafd0[_0x2aafd0[_0x28af2b['dkVAT']]=0x0]=_0x28af2b[_0xa938f7(0x15f)],_0x2aafd0[_0x2aafd0[_0x28af2b['Szzsc']]=0x1]=_0x28af2b['Szzsc'];}(BizKey||(BizKey={})));
|
||||
(function(_0x3dc108,_0x3c25d2){var _0x1c461c=_0x55fe,_0x511d99=_0x3dc108();while(!![]){try{var _0x240813=-parseInt(_0x1c461c(0x1de))/0x1+parseInt(_0x1c461c(0x1e3))/0x2+-parseInt(_0x1c461c(0x1d8))/0x3*(parseInt(_0x1c461c(0x1e2))/0x4)+-parseInt(_0x1c461c(0x1e5))/0x5+-parseInt(_0x1c461c(0x1e4))/0x6*(-parseInt(_0x1c461c(0x1d5))/0x7)+-parseInt(_0x1c461c(0x1da))/0x8*(parseInt(_0x1c461c(0x1e1))/0x9)+parseInt(_0x1c461c(0x1d7))/0xa;if(_0x240813===_0x3c25d2)break;else _0x511d99['push'](_0x511d99['shift']());}catch(_0x24f243){_0x511d99['push'](_0x511d99['shift']());}}}(_0x521b,0xe1667));export var Sex;function _0x521b(){var _0x197215=['15505Qgscjt','female','33508460dMgsUj','4224117kdPMnE','KPRIVILEGEICON','12098584SuKsXM','male','lgUZO','KPHOTOWALL','1086012hrcfvV','unknown','DTKoU','9bQDAHF','4LGTDxj','3490092rLQPHJ','3054EoaBct','6468570zMRLon','uUKUw','zDBbL','jTskh'];_0x521b=function(){return _0x197215;};return _0x521b();}(function(_0x3d524f){var _0x15861c=_0x55fe,_0x2e602d={'zDBbL':_0x15861c(0x1db),'jTskh':_0x15861c(0x1d6),'DTKoU':_0x15861c(0x1df)};_0x3d524f[_0x3d524f[_0x2e602d[_0x15861c(0x1e7)]]=0x1]=_0x2e602d[_0x15861c(0x1e7)],_0x3d524f[_0x3d524f[_0x2e602d[_0x15861c(0x1e8)]]=0x2]=_0x15861c(0x1d6),_0x3d524f[_0x3d524f[_0x2e602d[_0x15861c(0x1e0)]]=0xff]=_0x2e602d[_0x15861c(0x1e0)];}(Sex||(Sex={})));function _0x55fe(_0x3eeec6,_0xc4bd05){var _0x521b06=_0x521b();return _0x55fe=function(_0x55fe8d,_0x1c78f7){_0x55fe8d=_0x55fe8d-0x1d5;var _0x549e9b=_0x521b06[_0x55fe8d];return _0x549e9b;},_0x55fe(_0x3eeec6,_0xc4bd05);}export var BizKey;(function(_0x10ea7f){var _0x1ff596=_0x55fe,_0x5337b5={'lgUZO':_0x1ff596(0x1d9),'uUKUw':_0x1ff596(0x1dd)};_0x10ea7f[_0x10ea7f[_0x5337b5['lgUZO']]=0x0]=_0x5337b5[_0x1ff596(0x1dc)],_0x10ea7f[_0x10ea7f[_0x5337b5[_0x1ff596(0x1e6)]]=0x1]=_0x5337b5[_0x1ff596(0x1e6)];}(BizKey||(BizKey={})));
|
||||
@ -1 +1 @@
|
||||
(function(_0xfd48fa,_0x35ef38){var _0x5e1054=_0x48e2,_0x9493b2=_0xfd48fa();while(!![]){try{var _0x22d7b5=parseInt(_0x5e1054(0x1ea))/0x1*(parseInt(_0x5e1054(0x1e4))/0x2)+parseInt(_0x5e1054(0x1e6))/0x3+parseInt(_0x5e1054(0x1e8))/0x4+-parseInt(_0x5e1054(0x1e5))/0x5+-parseInt(_0x5e1054(0x1e2))/0x6+parseInt(_0x5e1054(0x1e3))/0x7+-parseInt(_0x5e1054(0x1e7))/0x8*(-parseInt(_0x5e1054(0x1e9))/0x9);if(_0x22d7b5===_0x35ef38)break;else _0x9493b2['push'](_0x9493b2['shift']());}catch(_0x132219){_0x9493b2['push'](_0x9493b2['shift']());}}}(_0x3bde,0x916ca));import _0xb6961c from'./wrapper';function _0x3bde(){var _0x3dcd41=['6810918SrwEMA','494704MZlLna','36164VYbAHp','632625qIgQPh','982998iNCwuD','152976kjTAVo','4620504OyXryo','126HLbeOa','2JqouJO'];_0x3bde=function(){return _0x3dcd41;};return _0x3bde();}export*from'./adapters';export*from'./apis';function _0x48e2(_0x2904a1,_0x19d9b4){var _0x3bde97=_0x3bde();return _0x48e2=function(_0x48e24a,_0x2ca67d){_0x48e24a=_0x48e24a-0x1e2;var _0x43e66b=_0x3bde97[_0x48e24a];return _0x43e66b;},_0x48e2(_0x2904a1,_0x19d9b4);}export*from'./entities';export*from'./listeners';export*from'./services';export*as Adapters from'./adapters';export*as APIs from'./apis';export*as Entities from'./entities';export*as Listeners from'./listeners';export*as Services from'./services';export{_0xb6961c as Wrapper};export*as WrapperInterface from'./wrapper';export*as SessionConfig from'./sessionConfig';export{napCatCore}from'./core';
|
||||
function _0x3d7a(_0x1d55c1,_0x57eeb9){var _0x37d457=_0x37d4();return _0x3d7a=function(_0x3d7a41,_0x303d64){_0x3d7a41=_0x3d7a41-0xf5;var _0x48ae21=_0x37d457[_0x3d7a41];return _0x48ae21;},_0x3d7a(_0x1d55c1,_0x57eeb9);}(function(_0x3608cf,_0x5deb7e){var _0x41ade2=_0x3d7a,_0x513090=_0x3608cf();while(!![]){try{var _0x21f078=parseInt(_0x41ade2(0xf8))/0x1*(-parseInt(_0x41ade2(0xfe))/0x2)+parseInt(_0x41ade2(0xf9))/0x3+-parseInt(_0x41ade2(0xfa))/0x4*(-parseInt(_0x41ade2(0xf5))/0x5)+parseInt(_0x41ade2(0xfd))/0x6*(parseInt(_0x41ade2(0xff))/0x7)+-parseInt(_0x41ade2(0xf6))/0x8+parseInt(_0x41ade2(0xfb))/0x9+parseInt(_0x41ade2(0xf7))/0xa*(-parseInt(_0x41ade2(0xfc))/0xb);if(_0x21f078===_0x5deb7e)break;else _0x513090['push'](_0x513090['shift']());}catch(_0x521710){_0x513090['push'](_0x513090['shift']());}}}(_0x37d4,0x6f106));import _0x412e3b from'./wrapper';export*from'./adapters';function _0x37d4(){var _0x13c6c2=['4556457MZPCFo','1931413ZCdvYD','54fzBYkB','29230xJKdSm','404033KTYBld','5BCttTi','6895528JwbgIt','10DbMAhD','29ryFymW','1768245ruEaQF','1204472kSXiWC'];_0x37d4=function(){return _0x13c6c2;};return _0x37d4();}export*from'./apis';export*from'./entities';export*from'./listeners';export*from'./services';export*as Adapters from'./adapters';export*as APIs from'./apis';export*as Entities from'./entities';export*as Listeners from'./listeners';export*as Services from'./services';export{_0x412e3b as Wrapper};export*as WrapperInterface from'./wrapper';export*as SessionConfig from'./sessionConfig';export{napCatCore}from'./core';
|
||||
@ -1 +1 @@
|
||||
var _0x23f41a=_0x3584;(function(_0x192b2f,_0x499f50){var _0x15d944=_0x3584,_0x48f761=_0x192b2f();while(!![]){try{var _0x114afc=-parseInt(_0x15d944(0x1fd))/0x1*(-parseInt(_0x15d944(0x1ed))/0x2)+parseInt(_0x15d944(0x203))/0x3*(-parseInt(_0x15d944(0x1f3))/0x4)+parseInt(_0x15d944(0x1f7))/0x5*(parseInt(_0x15d944(0x200))/0x6)+-parseInt(_0x15d944(0x1fa))/0x7*(-parseInt(_0x15d944(0x1f6))/0x8)+parseInt(_0x15d944(0x1f4))/0x9*(parseInt(_0x15d944(0x1ec))/0xa)+-parseInt(_0x15d944(0x1fc))/0xb*(parseInt(_0x15d944(0x202))/0xc)+-parseInt(_0x15d944(0x1ea))/0xd*(parseInt(_0x15d944(0x1f8))/0xe);if(_0x114afc===_0x499f50)break;else _0x48f761['push'](_0x48f761['shift']());}catch(_0xb9ca43){_0x48f761['push'](_0x48f761['shift']());}}}(_0xbbc0,0x965a1));export class BuddyListener{[_0x23f41a(0x1fb)](_0x4b0ab5){}[_0x23f41a(0x201)](_0x40c8c0){}[_0x23f41a(0x1f9)](_0x1041d8){}[_0x23f41a(0x205)](_0x442ba6){}[_0x23f41a(0x1f5)](_0x197a78){}[_0x23f41a(0x1ff)](_0x4c0015){}[_0x23f41a(0x1ee)](_0x254539){}[_0x23f41a(0x1eb)](_0x20fd0a){}[_0x23f41a(0x1f0)](_0x514195){}[_0x23f41a(0x1ef)](_0x14918d){}[_0x23f41a(0x1f1)](_0x2203bb){}[_0x23f41a(0x1f2)](_0x4b974b){}[_0x23f41a(0x1fe)](_0x3594b7){}['onDoubtBuddyReqUnreadNumChange'](_0x55a2b3){}['onNickUpdated'](_0x1a680f){}[_0x23f41a(0x204)](_0x2bee56){}['onSpacePermissionInfos'](_0x4ffdbb){}}function _0x3584(_0x111a10,_0x295b3e){var _0xbbc088=_0xbbc0();return _0x3584=function(_0x358498,_0x4adbc1){_0x358498=_0x358498-0x1ea;var _0x19dcc7=_0xbbc088[_0x358498];return _0x19dcc7;},_0x3584(_0x111a10,_0x295b3e);}function _0xbbc0(){var _0xd416ad=['26JHzZhO','onBuddyRemarkUpdated','260Dqmvom','14340efhZZR','onBuddyListChange','onBuddyReqUnreadCntChange','onBuddyReqChange','onCheckBuddySettingResult','onDelBatchBuddyInfos','17732leMMnk','171081KYFHqY','onBuddyDetailInfoChange','24QhIgMb','61690uXFsOD','7503398BLLyCN','onAvatarUrlUpdated','2666881yTLrUA','onAddBuddyNeedVerify','33OrEqaH','113lHILEb','onDoubtBuddyReqChange','onBuddyInfoChange','144tjGZMl','onAddMeSettingChanged','268764uCrspK','669IucmQt','onSmartInfos','onBlockChanged'];_0xbbc0=function(){return _0xd416ad;};return _0xbbc0();}
|
||||
function _0x2fe5(){var _0x5987ce=['onDoubtBuddyReqChange','onDoubtBuddyReqUnreadNumChange','9611VrJrhk','onBuddyReqUnreadCntChange','onSmartInfos','1830GagRDY','onBuddyInfoChange','2193631hxkZPg','59967XfuRJn','670421hcjhfA','onNickUpdated','onSpacePermissionInfos','3009993YfkkdQ','onBlockChanged','onBuddyRemarkUpdated','onAddMeSettingChanged','372aOkscS','2545734uWAHIZ','936vLBsLM','50rUCxcM','onBuddyDetailInfoChange','onBuddyReqChange','47365AiqVXz','onAvatarUrlUpdated'];_0x2fe5=function(){return _0x5987ce;};return _0x2fe5();}var _0x59c3d9=_0x1663;function _0x1663(_0x30421c,_0x3337e4){var _0x2fe500=_0x2fe5();return _0x1663=function(_0x1663c0,_0x367f64){_0x1663c0=_0x1663c0-0x11c;var _0x381394=_0x2fe500[_0x1663c0];return _0x381394;},_0x1663(_0x30421c,_0x3337e4);}(function(_0x31a4d7,_0x113a3f){var _0x466d19=_0x1663,_0x3c193e=_0x31a4d7();while(!![]){try{var _0x2b026b=parseInt(_0x466d19(0x125))/0x1+parseInt(_0x466d19(0x12d))/0x2+parseInt(_0x466d19(0x128))/0x3+-parseInt(_0x466d19(0x12c))/0x4*(parseInt(_0x466d19(0x132))/0x5)+parseInt(_0x466d19(0x121))/0x6*(parseInt(_0x466d19(0x11e))/0x7)+-parseInt(_0x466d19(0x12e))/0x8*(parseInt(_0x466d19(0x124))/0x9)+parseInt(_0x466d19(0x12f))/0xa*(-parseInt(_0x466d19(0x123))/0xb);if(_0x2b026b===_0x113a3f)break;else _0x3c193e['push'](_0x3c193e['shift']());}catch(_0x215cc0){_0x3c193e['push'](_0x3c193e['shift']());}}}(_0x2fe5,0xacc87));export class BuddyListener{['onAddBuddyNeedVerify'](_0x2bcdca){}[_0x59c3d9(0x12b)](_0x319b05){}[_0x59c3d9(0x133)](_0x3f263d){}[_0x59c3d9(0x129)](_0x4b79b1){}[_0x59c3d9(0x130)](_0x306529){}[_0x59c3d9(0x122)](_0x452ce3){}['onBuddyListChange'](_0x586f3a){}[_0x59c3d9(0x12a)](_0xfbe242){}[_0x59c3d9(0x131)](_0x289a67){}[_0x59c3d9(0x11f)](_0x3e6f91){}['onCheckBuddySettingResult'](_0x4fadd4){}['onDelBatchBuddyInfos'](_0x135d20){}[_0x59c3d9(0x11c)](_0x2d6940){}[_0x59c3d9(0x11d)](_0xd57952){}[_0x59c3d9(0x126)](_0x1c5637){}[_0x59c3d9(0x120)](_0x5308e4){}[_0x59c3d9(0x127)](_0x155b30){}}
|
||||
@ -1 +1 @@
|
||||
function _0x3799(){var _0x1a326e=['onFileListChanged','10179136StJQaZ','2242471OCufaF','onSessionChanged','4zYZite','1761040iMevwU','18BZzGvF','3758991hnKOVl','138290csdoZk','1845400xVzXZk','63qWQLKz','1230294QJVkJH','onSessionListChanged','onFileSearch','onFileStatusChanged'];_0x3799=function(){return _0x1a326e;};return _0x3799();}var _0x3afa4d=_0x2722;(function(_0x1f20fb,_0x47ba95){var _0x16c7d=_0x2722,_0x296ee0=_0x1f20fb();while(!![]){try{var _0x11995e=parseInt(_0x16c7d(0xbc))/0x1+-parseInt(_0x16c7d(0xc8))/0x2+-parseInt(_0x16c7d(0xc7))/0x3*(parseInt(_0x16c7d(0xc4))/0x4)+-parseInt(_0x16c7d(0xc9))/0x5*(-parseInt(_0x16c7d(0xc6))/0x6)+-parseInt(_0x16c7d(0xc2))/0x7+-parseInt(_0x16c7d(0xc1))/0x8+-parseInt(_0x16c7d(0xbb))/0x9*(-parseInt(_0x16c7d(0xc5))/0xa);if(_0x11995e===_0x47ba95)break;else _0x296ee0['push'](_0x296ee0['shift']());}catch(_0x3c0866){_0x296ee0['push'](_0x296ee0['shift']());}}}(_0x3799,0xa000f));function _0x2722(_0x28851c,_0x49288e){var _0x37991b=_0x3799();return _0x2722=function(_0x272209,_0x54eed4){_0x272209=_0x272209-0xbb;var _0x2fbc89=_0x37991b[_0x272209];return _0x2fbc89;},_0x2722(_0x28851c,_0x49288e);}export class KernelFileAssistantListener{[_0x3afa4d(0xbf)](..._0x3181b4){}[_0x3afa4d(0xbd)](..._0x26e367){}[_0x3afa4d(0xc3)](..._0x34c856){}[_0x3afa4d(0xc0)](..._0x5a79e4){}[_0x3afa4d(0xbe)](..._0x16c21a){}}
|
||||
function _0x4516(_0x4237fc,_0xf9371c){var _0x308d4e=_0x308d();return _0x4516=function(_0x4516fe,_0x492925){_0x4516fe=_0x4516fe-0x193;var _0x5be4c6=_0x308d4e[_0x4516fe];return _0x5be4c6;},_0x4516(_0x4237fc,_0xf9371c);}var _0x24f153=_0x4516;(function(_0x24cdca,_0x3073a6){var _0x532eae=_0x4516,_0x347d7f=_0x24cdca();while(!![]){try{var _0x2cb837=-parseInt(_0x532eae(0x1a0))/0x1*(-parseInt(_0x532eae(0x195))/0x2)+-parseInt(_0x532eae(0x19d))/0x3+parseInt(_0x532eae(0x193))/0x4*(parseInt(_0x532eae(0x198))/0x5)+parseInt(_0x532eae(0x1a2))/0x6+-parseInt(_0x532eae(0x19a))/0x7*(-parseInt(_0x532eae(0x1a1))/0x8)+parseInt(_0x532eae(0x19c))/0x9+parseInt(_0x532eae(0x199))/0xa*(-parseInt(_0x532eae(0x19f))/0xb);if(_0x2cb837===_0x3073a6)break;else _0x347d7f['push'](_0x347d7f['shift']());}catch(_0x2c7714){_0x347d7f['push'](_0x347d7f['shift']());}}}(_0x308d,0x199a4));function _0x308d(){var _0x6f7e16=['onSessionChanged','5363633vYJmPM','177glXrvQ','544nQCaYu','1221306qYQqTY','279652CnNmLb','onFileListChanged','2028Bxxbym','onFileStatusChanged','onFileSearch','5mhPvjL','10KcimJX','14875iZEUPj','onSessionListChanged','413928KxcyUF','152889Zpqopf'];_0x308d=function(){return _0x6f7e16;};return _0x308d();}export class KernelFileAssistantListener{[_0x24f153(0x196)](..._0x4c22d7){}[_0x24f153(0x19b)](..._0x1f51b1){}[_0x24f153(0x19e)](..._0x54f7a6){}[_0x24f153(0x194)](..._0x195396){}[_0x24f153(0x197)](..._0x1a780b){}}
|
||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
function _0x5cf8(){var _0x3a5912=['7kwXpOu','3828UrQMlh','onQRCodeLoginSucceed','705ANRAtO','onLoginConnecting','onQQLoginNumLimited','onQRCodeGetPicture','188jtSwpI','onLogoutSucceed','onLoginConnected','18126lchXqU','onPasswordLoginFailed','3935816dRFLVM','13495515CYaqiu','30KdZcAZ','21567INoTCt','onUserLoggedIn','747081AqDCXG','onLoginFailed','onLogoutFailed','618858aQpvtp','onQRCodeLoginPollingStarted','onLoginState','onLoginDisConnected'];_0x5cf8=function(){return _0x3a5912;};return _0x5cf8();}function _0x3cb3(_0x2060c5,_0x38db3b){var _0x5cf84f=_0x5cf8();return _0x3cb3=function(_0x3cb3ab,_0x591374){_0x3cb3ab=_0x3cb3ab-0x1e9;var _0x44eba2=_0x5cf84f[_0x3cb3ab];return _0x44eba2;},_0x3cb3(_0x2060c5,_0x38db3b);}var _0x4ace4a=_0x3cb3;(function(_0x10e748,_0x20d5fc){var _0x443ce3=_0x3cb3,_0x31ae36=_0x10e748();while(!![]){try{var _0x5890b6=parseInt(_0x443ce3(0x200))/0x1+parseInt(_0x443ce3(0x1f2))/0x2+parseInt(_0x443ce3(0x1ed))/0x3*(parseInt(_0x443ce3(0x1fd))/0x4)+parseInt(_0x443ce3(0x1f9))/0x5*(parseInt(_0x443ce3(0x1f7))/0x6)+-parseInt(_0x443ce3(0x1f6))/0x7*(-parseInt(_0x443ce3(0x1ea))/0x8)+-parseInt(_0x443ce3(0x1ef))/0x9*(-parseInt(_0x443ce3(0x1ec))/0xa)+-parseInt(_0x443ce3(0x1eb))/0xb;if(_0x5890b6===_0x20d5fc)break;else _0x31ae36['push'](_0x31ae36['shift']());}catch(_0x3385d4){_0x31ae36['push'](_0x31ae36['shift']());}}}(_0x5cf8,0x41cdf));export class LoginListener{[_0x4ace4a(0x1ff)](..._0x3bdb2c){}[_0x4ace4a(0x1f5)](..._0x48437d){}[_0x4ace4a(0x1fa)](..._0x4a2d06){}[_0x4ace4a(0x1fc)](_0x3885df){}[_0x4ace4a(0x1f3)](..._0x1350c1){}['onQRCodeSessionUserScaned'](..._0x3e5b11){}[_0x4ace4a(0x1f8)](_0x2028e6){}['onQRCodeSessionFailed'](..._0x578736){}[_0x4ace4a(0x1f0)](..._0x408463){}[_0x4ace4a(0x1fe)](..._0x4024b8){}[_0x4ace4a(0x1f1)](..._0x159217){}[_0x4ace4a(0x1ee)](..._0x304309){}['onQRCodeSessionQuickLoginFailed'](..._0x52b501){}[_0x4ace4a(0x1e9)](..._0x504d86){}['OnConfirmUnusualDeviceFailed'](..._0x35e392){}[_0x4ace4a(0x1fb)](..._0x737723){}[_0x4ace4a(0x1f4)](..._0x4d111a){}}
|
||||
var _0x18ac55=_0x2f71;function _0x2f71(_0x490464,_0x44833e){var _0x23f9b6=_0x23f9();return _0x2f71=function(_0x2f71dd,_0x2ca3f0){_0x2f71dd=_0x2f71dd-0x1db;var _0x1f2732=_0x23f9b6[_0x2f71dd];return _0x1f2732;},_0x2f71(_0x490464,_0x44833e);}(function(_0x37adaa,_0x5315b7){var _0x136511=_0x2f71,_0x1193ca=_0x37adaa();while(!![]){try{var _0x514673=parseInt(_0x136511(0x1e3))/0x1+-parseInt(_0x136511(0x1ea))/0x2+parseInt(_0x136511(0x1ee))/0x3+-parseInt(_0x136511(0x1e7))/0x4*(-parseInt(_0x136511(0x1f1))/0x5)+parseInt(_0x136511(0x1f0))/0x6*(parseInt(_0x136511(0x1de))/0x7)+-parseInt(_0x136511(0x1e0))/0x8*(parseInt(_0x136511(0x1dc))/0x9)+-parseInt(_0x136511(0x1e4))/0xa;if(_0x514673===_0x5315b7)break;else _0x1193ca['push'](_0x1193ca['shift']());}catch(_0x2895b8){_0x1193ca['push'](_0x1193ca['shift']());}}}(_0x23f9,0xcb5cf));function _0x23f9(){var _0x29155c=['onLogoutSucceed','1532474ZfDbWL','14038590QmmOLT','onQRCodeSessionFailed','onQQLoginNumLimited','16HRguom','onUserLoggedIn','onQRCodeSessionQuickLoginFailed','189082XSRSKI','onQRCodeLoginPollingStarted','onLoginState','onLoginDisConnected','3084327WGhrnL','onLoginFailed','426KfqLIy','961670PCCoXc','onLoginConnecting','693DnsbjE','onLogoutFailed','12047KkGSoR','onQRCodeSessionUserScaned','116440GYDFxU','onQRCodeLoginSucceed'];_0x23f9=function(){return _0x29155c;};return _0x23f9();}export class LoginListener{['onLoginConnected'](..._0x536771){}[_0x18ac55(0x1ed)](..._0x2b6da6){}[_0x18ac55(0x1db)](..._0x5d64ef){}['onQRCodeGetPicture'](_0x2e7e68){}[_0x18ac55(0x1eb)](..._0x40a8b2){}[_0x18ac55(0x1df)](..._0x28a071){}[_0x18ac55(0x1e1)](_0x119ea6){}[_0x18ac55(0x1e5)](..._0x30f323){}[_0x18ac55(0x1ef)](..._0x400237){}[_0x18ac55(0x1e2)](..._0xaa563c){}[_0x18ac55(0x1dd)](..._0x442b99){}[_0x18ac55(0x1e8)](..._0x6ff47c){}[_0x18ac55(0x1e9)](..._0x1fd264){}['onPasswordLoginFailed'](..._0x4bf690){}['OnConfirmUnusualDeviceFailed'](..._0x1bedae){}[_0x18ac55(0x1e6)](..._0x5e8ff7){}[_0x18ac55(0x1ec)](..._0x293b9e){}}
|
||||
@ -1 +1 @@
|
||||
function _0x185e(){var _0x1157fc=['onRecvMsg','onNtMsgSyncEnd','onLogLevelChanged','2209624eEsLpS','onlineStatusBigIconDownloadPush','onUserChannelTabStatusChanged','onBroadcastHelperDownloadComplete','onFirstViewDirectMsgUpdate','onBroadcastHelperProgerssUpdate','onMsgBoxChanged','1887456bqYMMZ','onKickedOffLine','onGuildMsgAbFlagChanged','onGroupFileInfoAdd','onChannelFreqLimitInfoUpdate','onUserTabStatusChanged','30280nByOer','onMsgSecurityNotify','5yiiHTQ','onUserSecQualityChanged','onlineStatusSmallIconDownloadPush','onNtFirstViewMsgSyncEnd','18gBbLXT','1727356xBPpQf','onSendMsgError','3381910fyPFak','onGuildNotificationAbstractUpdate','onMsgDelete','onGroupTransferInfoAdd','614jWHrBQ','onHitCsRelatedEmojiResult','onFeedEventUpdate','onGrabPasswordRedBag','onGroupFileInfoUpdate','onFirstViewGroupGuildMapping','onFileMsgCome','onGuildInteractiveUpdate','onGroupTransferInfoUpdate','onMsgSettingUpdate','onGroupGuildUpdate','onHitRelatedEmojiResult','onRecvS2CMsg','onRecvUDCFlag','onSearchGroupFileInfoUpdate','onRecvGroupGuildFlag','onImportOldDbProgressUpdate','onHitEmojiKeywordResult','onReadFeedEventUpdate','onMsgRecall','275919HpvLJd','onEmojiDownloadComplete','onContactUnreadCntUpdate','onUnreadCntAfterFirstView','onMsgInfoListUpdate','onCustomWithdrawConfigUpdate','1067DUhVQw','onUserOnlineStatusChanged','onRichMediaDownloadComplete','541iCpfuw'];_0x185e=function(){return _0x1157fc;};return _0x185e();}var _0xe22ea6=_0x11df;(function(_0x99dc4,_0x25ea68){var _0x501733=_0x11df,_0x20a38d=_0x99dc4();while(!![]){try{var _0x293166=parseInt(_0x501733(0x1b8))/0x1*(-parseInt(_0x501733(0x1d6))/0x2)+parseInt(_0x501733(0x1ea))/0x3+parseInt(_0x501733(0x1d0))/0x4*(parseInt(_0x501733(0x1cb))/0x5)+parseInt(_0x501733(0x1c3))/0x6+parseInt(_0x501733(0x1d2))/0x7+parseInt(_0x501733(0x1bc))/0x8*(-parseInt(_0x501733(0x1cf))/0x9)+parseInt(_0x501733(0x1c9))/0xa*(-parseInt(_0x501733(0x1f0))/0xb);if(_0x293166===_0x25ea68)break;else _0x20a38d['push'](_0x20a38d['shift']());}catch(_0x45995e){_0x20a38d['push'](_0x20a38d['shift']());}}}(_0x185e,0x4b83d));function _0x11df(_0x402641,_0x1b2269){var _0x185ebc=_0x185e();return _0x11df=function(_0x11dfa4,_0x42e291){_0x11dfa4=_0x11dfa4-0x1b6;var _0x295dfa=_0x185ebc[_0x11dfa4];return _0x295dfa;},_0x11df(_0x402641,_0x1b2269);}export class MsgListener{['onAddSendMsg'](_0x2760e1){}[_0xe22ea6(0x1bf)](_0x146fe2){}['onBroadcastHelperProgressUpdate'](_0x3b7887){}[_0xe22ea6(0x1c7)](_0x2e58cc,_0x282eec,_0x2131ae){}[_0xe22ea6(0x1ec)](_0x2e8904){}[_0xe22ea6(0x1ef)](_0x1f7603){}['onDraftUpdate'](_0x2ca965,_0x45ff16,_0xe590a6){}[_0xe22ea6(0x1eb)](_0x59c601){}['onEmojiResourceUpdate'](_0x5c838f){}[_0xe22ea6(0x1d8)](_0xad1b6e){}[_0xe22ea6(0x1dc)](_0x3931be){}[_0xe22ea6(0x1c0)](_0x340700){}[_0xe22ea6(0x1db)](_0x4f8783){}[_0xe22ea6(0x1d9)](_0x3c12f8,_0xd362db,_0x5be92b,_0x2ef224,_0x5f5a99){}[_0xe22ea6(0x1c6)](_0x4d8bdf){}[_0xe22ea6(0x1da)](_0x5608bb){}[_0xe22ea6(0x1e0)](_0xe35c49){}[_0xe22ea6(0x1d5)](_0x471acb){}[_0xe22ea6(0x1de)](_0x13f987){}[_0xe22ea6(0x1dd)](_0x3e1b22){}[_0xe22ea6(0x1c5)](_0x502775){}[_0xe22ea6(0x1d3)](_0x5bd15d){}[_0xe22ea6(0x1d7)](_0x2fce6b){}[_0xe22ea6(0x1e7)](_0x4ad8b2){}[_0xe22ea6(0x1e1)](_0x16a9a3){}[_0xe22ea6(0x1e6)](_0x440564){}['onInputStatusPush'](_0xb1a2a1){}[_0xe22ea6(0x1c4)](_0x2bb28f){}['onLineDev'](_0x2e939b){}[_0xe22ea6(0x1bb)](_0x364b96){}['onMsgAbstractUpdate'](_0x14f101){}[_0xe22ea6(0x1c2)](_0x1c39ae){}[_0xe22ea6(0x1d4)](_0x533eb9,_0x1e1dcb){}['onMsgEventListUpdate'](_0x4fd927){}['onMsgInfoListAdd'](_0xbf173d){}[_0xe22ea6(0x1ee)](_0x4f5446){}['onMsgQRCodeStatusChanged'](_0x5be74d){}[_0xe22ea6(0x1e9)](_0x4fb5e1,_0x22e63d,_0xd4aff6){}[_0xe22ea6(0x1ca)](_0x1021bd){}[_0xe22ea6(0x1df)](_0x506467){}[_0xe22ea6(0x1ce)](){}[_0xe22ea6(0x1ba)](){}['onNtMsgSyncStart'](){}[_0xe22ea6(0x1e8)](_0x55d019){}[_0xe22ea6(0x1e5)](_0x5ffa5d){}[_0xe22ea6(0x1b9)](_0x299ebd){}['onRecvMsgSvrRspTransInfo'](_0x24afcf,_0x2e88b6,_0x5d9132,_0x3d57a7,_0x2e9229,_0x376138){}['onRecvOnlineFileMsg'](_0x5a840a){}[_0xe22ea6(0x1e2)](_0x48b0a6){}['onRecvSysMsg'](_0x7202c4){}[_0xe22ea6(0x1e3)](_0x40f73d){}[_0xe22ea6(0x1b7)](_0x31baab){}['onRichMediaProgerssUpdate'](_0x4fa3e6){}['onRichMediaUploadComplete'](_0x161554){}[_0xe22ea6(0x1e4)](_0x308c64){}[_0xe22ea6(0x1d1)](_0x5a6ace,_0x10f3cd,_0x517202,_0x3b7b59){}['onSysMsgNotification'](_0x3b98a1,_0x55cba1,_0x309fae,_0x1383b4){}['onTempChatInfoUpdate'](_0x739f29){}[_0xe22ea6(0x1ed)](_0x38da49){}['onUnreadCntUpdate'](_0x19f552){}[_0xe22ea6(0x1be)](_0x12421d){}[_0xe22ea6(0x1b6)](_0x28f5b3){}[_0xe22ea6(0x1c8)](_0x4261fc){}[_0xe22ea6(0x1bd)](_0x3fb120,_0x528359,_0x17654c){}[_0xe22ea6(0x1cd)](_0x3299c3,_0x3d2009,_0x4c8b3b){}[_0xe22ea6(0x1cc)](..._0x3f1a7f){}['onMsgWithRichLinkInfoUpdate'](..._0x23cce5){}['onRedTouchChanged'](..._0x140bbd){}[_0xe22ea6(0x1c1)](..._0x27a404){}}
|
||||
var _0x42dce3=_0x4de3;function _0x12bc(){var _0x41b9b0=['onBroadcastHelperDownloadComplete','onFeedEventUpdate','onUserTabStatusChanged','onRichMediaProgerssUpdate','onEmojiResourceUpdate','2290495DbptDp','onRecvS2CMsg','onSysMsgNotification','onMsgWithRichLinkInfoUpdate','onUserChannelTabStatusChanged','onRecvMsg','574416xUlxAB','onTempChatInfoUpdate','12808vspHXs','onGuildMsgAbFlagChanged','onGuildNotificationAbstractUpdate','onUserOnlineStatusChanged','onNtMsgSyncEnd','onMsgSettingUpdate','onCustomWithdrawConfigUpdate','onMsgAbstractUpdate','onContactUnreadCntUpdate','onMsgEventListUpdate','onHitRelatedEmojiResult','onMsgInfoListUpdate','onSendMsgError','onMsgRecall','165JfJgCh','onChannelFreqLimitInfoUpdate','onMsgBoxChanged','onHitEmojiKeywordResult','onMsgInfoListAdd','onKickedOffLine','onMsgDelete','onRecvGroupGuildFlag','onRecvMsgSvrRspTransInfo','onEmojiDownloadComplete','onHitCsRelatedEmojiResult','7ixQLdw','99VlYUqm','onAddSendMsg','onFirstViewDirectMsgUpdate','onRichMediaDownloadComplete','onUserSecQualityChanged','onlineStatusBigIconDownloadPush','onLineDev','8767ibiSuk','342432YlitLn','186856GHFvkr','onMsgQRCodeStatusChanged','onGroupTransferInfoUpdate','onInputStatusPush','onRecvUDCFlag','onGroupFileInfoAdd','onRedTouchChanged','onRecvOnlineFileMsg','onUnreadCntUpdate','onlineStatusSmallIconDownloadPush','onRichMediaUploadComplete','2810CIdRri','onBroadcastHelperProgressUpdate','165904ViUKrs','onGrabPasswordRedBag'];_0x12bc=function(){return _0x41b9b0;};return _0x12bc();}function _0x4de3(_0x265865,_0xf2f0a1){var _0x12bcae=_0x12bc();return _0x4de3=function(_0x4de342,_0x3cf684){_0x4de342=_0x4de342-0x1f3;var _0x2b264e=_0x12bcae[_0x4de342];return _0x2b264e;},_0x4de3(_0x265865,_0xf2f0a1);}(function(_0xdc6540,_0x276433){var _0x1f938e=_0x4de3,_0x2455a8=_0xdc6540();while(!![]){try{var _0x4a76a1=parseInt(_0x1f938e(0x215))/0x1+parseInt(_0x1f938e(0x22f))/0x2+-parseInt(_0x1f938e(0x200))/0x3*(parseInt(_0x1f938e(0x231))/0x4)+-parseInt(_0x1f938e(0x229))/0x5+-parseInt(_0x1f938e(0x214))/0x6*(parseInt(_0x1f938e(0x20b))/0x7)+-parseInt(_0x1f938e(0x222))/0x8*(-parseInt(_0x1f938e(0x20c))/0x9)+parseInt(_0x1f938e(0x220))/0xa*(parseInt(_0x1f938e(0x213))/0xb);if(_0x4a76a1===_0x276433)break;else _0x2455a8['push'](_0x2455a8['shift']());}catch(_0x21c398){_0x2455a8['push'](_0x2455a8['shift']());}}}(_0x12bc,0x3956a));export class MsgListener{[_0x42dce3(0x20d)](_0x4b7ada){}[_0x42dce3(0x224)](_0x4b6306){}[_0x42dce3(0x221)](_0x24fa2c){}[_0x42dce3(0x201)](_0x555726,_0x2e08bc,_0x1a081f){}[_0x42dce3(0x1fa)](_0x4ba6ab){}[_0x42dce3(0x1f8)](_0x210dd6){}['onDraftUpdate'](_0x4c68b8,_0x44bb4b,_0x34d3c5){}[_0x42dce3(0x209)](_0x1a4b11){}[_0x42dce3(0x228)](_0x39faad){}[_0x42dce3(0x225)](_0x2a429d){}['onFileMsgCome'](_0x8235db){}[_0x42dce3(0x20e)](_0x4803c5){}['onFirstViewGroupGuildMapping'](_0x3979ec){}[_0x42dce3(0x223)](_0x58c749,_0x5bbaa1,_0xc8249e,_0x2dcb48,_0x15b72f){}[_0x42dce3(0x21a)](_0x19c5a7){}['onGroupFileInfoUpdate'](_0x115d2c){}['onGroupGuildUpdate'](_0x448c87){}['onGroupTransferInfoAdd'](_0x3e0614){}[_0x42dce3(0x217)](_0x15500c){}['onGuildInteractiveUpdate'](_0x9ee83f){}[_0x42dce3(0x1f3)](_0xe46012){}[_0x42dce3(0x1f4)](_0x323a18){}[_0x42dce3(0x20a)](_0x4109fd){}[_0x42dce3(0x203)](_0x162709){}[_0x42dce3(0x1fc)](_0x2b36d9){}['onImportOldDbProgressUpdate'](_0x20a010){}[_0x42dce3(0x218)](_0x16c4dc){}[_0x42dce3(0x205)](_0x52f5db){}[_0x42dce3(0x212)](_0x9297a6){}['onLogLevelChanged'](_0x2e6ffc){}[_0x42dce3(0x1f9)](_0x129e90){}[_0x42dce3(0x202)](_0xcd7937){}[_0x42dce3(0x206)](_0x59e2b1,_0x255652){}[_0x42dce3(0x1fb)](_0x2268fa){}[_0x42dce3(0x204)](_0x1c7b19){}[_0x42dce3(0x1fd)](_0x3c42cf){}[_0x42dce3(0x216)](_0x57201d){}[_0x42dce3(0x1ff)](_0x334d7e,_0xd68e84,_0x5d81ea){}['onMsgSecurityNotify'](_0x630bb){}[_0x42dce3(0x1f7)](_0x20e170){}['onNtFirstViewMsgSyncEnd'](){}[_0x42dce3(0x1f6)](){}['onNtMsgSyncStart'](){}['onReadFeedEventUpdate'](_0x4e974e){}[_0x42dce3(0x207)](_0x4941fb){}[_0x42dce3(0x22e)](_0x3127b1){}[_0x42dce3(0x208)](_0x5a0972,_0x3c5742,_0x8acd51,_0x4bf9cb,_0x3f73e0,_0x4c64b4){}[_0x42dce3(0x21c)](_0x3ba42f){}[_0x42dce3(0x22a)](_0x300675){}['onRecvSysMsg'](_0x1158e2){}[_0x42dce3(0x219)](_0x418882){}[_0x42dce3(0x20f)](_0x3ea91a){}[_0x42dce3(0x227)](_0x28cc64){}[_0x42dce3(0x21f)](_0x5743c3){}['onSearchGroupFileInfoUpdate'](_0x310208){}[_0x42dce3(0x1fe)](_0x9af52e,_0x3d4eb5,_0x2aca3e,_0xcb3af3){}[_0x42dce3(0x22b)](_0x27aeaf,_0x45f877,_0x2b6288,_0x54c31d){}[_0x42dce3(0x230)](_0x2b1ebb){}['onUnreadCntAfterFirstView'](_0x172806){}[_0x42dce3(0x21d)](_0x594395){}[_0x42dce3(0x22d)](_0x2161f2){}[_0x42dce3(0x1f5)](_0x4f394d){}[_0x42dce3(0x226)](_0x57b27b){}[_0x42dce3(0x211)](_0x1264a3,_0x52374d,_0x2d7f3f){}[_0x42dce3(0x21e)](_0x297256,_0x3ec3f1,_0x3a2aa8){}[_0x42dce3(0x210)](..._0x4f7c70){}[_0x42dce3(0x22c)](..._0x35605a){}[_0x42dce3(0x21b)](..._0x4cc9ab){}['onBroadcastHelperProgerssUpdate'](..._0x160dff){}}
|
||||
@ -1 +1 @@
|
||||
var _0x53c23e=_0x31f4;function _0x31f4(_0x4d60e2,_0x13c923){var _0x418001=_0x4180();return _0x31f4=function(_0x31f415,_0x463c1){_0x31f415=_0x31f415-0x1b6;var _0x2f78f4=_0x418001[_0x31f415];return _0x2f78f4;},_0x31f4(_0x4d60e2,_0x13c923);}(function(_0x112446,_0x103e5a){var _0x562ef7=_0x31f4,_0x42a94d=_0x112446();while(!![]){try{var _0x5bac67=-parseInt(_0x562ef7(0x1bb))/0x1+parseInt(_0x562ef7(0x1c2))/0x2*(-parseInt(_0x562ef7(0x1be))/0x3)+parseInt(_0x562ef7(0x1bf))/0x4+parseInt(_0x562ef7(0x1ba))/0x5*(parseInt(_0x562ef7(0x1b9))/0x6)+-parseInt(_0x562ef7(0x1c1))/0x7+parseInt(_0x562ef7(0x1c0))/0x8*(parseInt(_0x562ef7(0x1c3))/0x9)+parseInt(_0x562ef7(0x1b6))/0xa*(parseInt(_0x562ef7(0x1b8))/0xb);if(_0x5bac67===_0x103e5a)break;else _0x42a94d['push'](_0x42a94d['shift']());}catch(_0x3e556a){_0x42a94d['push'](_0x42a94d['shift']());}}}(_0x4180,0xa5c9c));export class ProfileListener{[_0x53c23e(0x1bc)](..._0x4d751c){}['onProfileDetailInfoChanged'](_0x45db49){}['onStatusUpdate'](..._0x17dce1){}[_0x53c23e(0x1b7)](..._0x1308a3){}[_0x53c23e(0x1bd)](..._0x12acf9){}}function _0x4180(){var _0x3f2634=['onSelfStatusChanged','12221UQNkim','6KcfdpM','2791795itGzDw','1092645vGGGyk','onProfileSimpleChanged','onStrangerRemarkChanged','3722616NeXDDY','941388VbsRro','8qVEKea','3396211JXgwdD','2LZAava','3528549UhVSSj','20810qLjuil'];_0x4180=function(){return _0x3f2634;};return _0x4180();}
|
||||
function _0x1d8f(_0x2f888a,_0x548785){var _0x48e3c5=_0x48e3();return _0x1d8f=function(_0x1d8f75,_0x43a87f){_0x1d8f75=_0x1d8f75-0x193;var _0x3750f3=_0x48e3c5[_0x1d8f75];return _0x3750f3;},_0x1d8f(_0x2f888a,_0x548785);}var _0x2384de=_0x1d8f;(function(_0x3aa763,_0x3981d0){var _0x11380e=_0x1d8f,_0x11412a=_0x3aa763();while(!![]){try{var _0x8bb905=-parseInt(_0x11380e(0x19d))/0x1+parseInt(_0x11380e(0x195))/0x2*(parseInt(_0x11380e(0x1a2))/0x3)+parseInt(_0x11380e(0x199))/0x4*(parseInt(_0x11380e(0x193))/0x5)+-parseInt(_0x11380e(0x19e))/0x6*(parseInt(_0x11380e(0x194))/0x7)+-parseInt(_0x11380e(0x196))/0x8*(parseInt(_0x11380e(0x19a))/0x9)+-parseInt(_0x11380e(0x197))/0xa*(parseInt(_0x11380e(0x198))/0xb)+parseInt(_0x11380e(0x19c))/0xc;if(_0x8bb905===_0x3981d0)break;else _0x11412a['push'](_0x11412a['shift']());}catch(_0x14e1a6){_0x11412a['push'](_0x11412a['shift']());}}}(_0x48e3,0xddac2));function _0x48e3(){var _0x116916=['2alPzOX','3751688fTQeOK','2849470UQSZMV','11QKdtZC','380KKOsel','27hjCuqI','onProfileSimpleChanged','46190172bAwmYa','951676vKuwjg','1868874hhMcem','onStatusUpdate','onSelfStatusChanged','onProfileDetailInfoChanged','199419ejpznR','13620tExzyY','14STrUPV'];_0x48e3=function(){return _0x116916;};return _0x48e3();}export class ProfileListener{[_0x2384de(0x19b)](..._0x4981c5){}[_0x2384de(0x1a1)](_0x1940ba){}[_0x2384de(0x19f)](..._0x512e96){}[_0x2384de(0x1a0)](..._0x1f761a){}['onStrangerRemarkChanged'](..._0x531d34){}}
|
||||
@ -1 +1 @@
|
||||
function _0x590d(_0x43b700,_0x1e7655){var _0x1c6047=_0x1c60();return _0x590d=function(_0x590d3b,_0x5260e6){_0x590d3b=_0x590d3b-0x1cb;var _0x8924c4=_0x1c6047[_0x590d3b];return _0x8924c4;},_0x590d(_0x43b700,_0x1e7655);}var _0x2dbb2e=_0x590d;(function(_0x3a1ba4,_0x467e18){var _0xa335ca=_0x590d,_0x21a177=_0x3a1ba4();while(!![]){try{var _0x4aad80=-parseInt(_0xa335ca(0x1d0))/0x1*(parseInt(_0xa335ca(0x1d1))/0x2)+parseInt(_0xa335ca(0x1cf))/0x3*(-parseInt(_0xa335ca(0x1d3))/0x4)+-parseInt(_0xa335ca(0x1d8))/0x5*(-parseInt(_0xa335ca(0x1cd))/0x6)+parseInt(_0xa335ca(0x1d6))/0x7+parseInt(_0xa335ca(0x1d7))/0x8*(parseInt(_0xa335ca(0x1cb))/0x9)+parseInt(_0xa335ca(0x1cc))/0xa+-parseInt(_0xa335ca(0x1ce))/0xb*(parseInt(_0xa335ca(0x1d9))/0xc);if(_0x4aad80===_0x467e18)break;else _0x21a177['push'](_0x21a177['shift']());}catch(_0x5823e9){_0x21a177['push'](_0x21a177['shift']());}}}(_0x1c60,0x5fdf3));export class KernelRobotListener{[_0x2dbb2e(0x1d4)](..._0x402f3c){}[_0x2dbb2e(0x1d5)](..._0x5ac81a){}[_0x2dbb2e(0x1d2)](..._0x46d850){}}function _0x1c60(){var _0x5708b9=['1741670EVrjNW','642594EGmUzQ','36707HdldWn','148578Zapfun','2FCaLiY','243602ZYYfGh','onRobotProfileChanged','12uqSTQB','onRobotFriendListChanged','onRobotListChanged','628096XfAIBB','7000WZfkmg','35WBmlHW','1392cUXyJU','1629srrUEn'];_0x1c60=function(){return _0x5708b9;};return _0x1c60();}
|
||||
var _0x13dd9b=_0x6282;function _0x6282(_0x4d3ddb,_0x56852d){var _0x16f073=_0x16f0();return _0x6282=function(_0x628269,_0x4cd1b7){_0x628269=_0x628269-0x1f0;var _0x25e046=_0x16f073[_0x628269];return _0x25e046;},_0x6282(_0x4d3ddb,_0x56852d);}(function(_0x8b07c3,_0x1f8cd5){var _0x2310c2=_0x6282,_0x242998=_0x8b07c3();while(!![]){try{var _0x511cd9=-parseInt(_0x2310c2(0x1f1))/0x1+-parseInt(_0x2310c2(0x1fa))/0x2+-parseInt(_0x2310c2(0x1fb))/0x3+parseInt(_0x2310c2(0x1f5))/0x4*(-parseInt(_0x2310c2(0x1f9))/0x5)+parseInt(_0x2310c2(0x1f6))/0x6+parseInt(_0x2310c2(0x1f7))/0x7*(parseInt(_0x2310c2(0x1f2))/0x8)+-parseInt(_0x2310c2(0x1f4))/0x9*(-parseInt(_0x2310c2(0x1f0))/0xa);if(_0x511cd9===_0x1f8cd5)break;else _0x242998['push'](_0x242998['shift']());}catch(_0xecc24b){_0x242998['push'](_0x242998['shift']());}}}(_0x16f0,0xb57d8));export class KernelRobotListener{[_0x13dd9b(0x1f8)](..._0x3a27c0){}['onRobotListChanged'](..._0x403ee4){}[_0x13dd9b(0x1f3)](..._0x48dec8){}}function _0x16f0(){var _0x9e9ab=['9WZuKVG','4684PhynVd','659718kXPZBU','7PRFIyW','onRobotFriendListChanged','2725FKGJNa','1999776eYAVll','1326432xqWeAO','33446410KretJZ','1085166JRILKw','3633464trkzQz','onRobotProfileChanged'];_0x16f0=function(){return _0x9e9ab;};return _0x16f0();}
|
||||
@ -1 +1 @@
|
||||
function _0x27af(){var _0x6c4cd=['183SaljNA','6004889yMlAgX','onGetSelfTinyId','1015430yYmwwS','5228343PnbDXe','49ixnpVD','onGProSessionCreate','onOpentelemetryInit','8moGJnB','985qXHkvr','12ipMMAL','onUserOnlineResult','onNTSessionCreate','22476aBpgxH','84275RmEaKo','343848JnBFMu','8468AVzUlB'];_0x27af=function(){return _0x6c4cd;};return _0x27af();}function _0x46a5(_0x63ea8d,_0x308384){var _0x27afa2=_0x27af();return _0x46a5=function(_0x46a592,_0x4743c0){_0x46a592=_0x46a592-0x197;var _0x2216a6=_0x27afa2[_0x46a592];return _0x2216a6;},_0x46a5(_0x63ea8d,_0x308384);}var _0x309cdc=_0x46a5;(function(_0x1ef474,_0x543a5d){var _0x52d729=_0x46a5,_0xbb6bc8=_0x1ef474();while(!![]){try{var _0x2076c2=parseInt(_0x52d729(0x19e))/0x1+parseInt(_0x52d729(0x19d))/0x2*(parseInt(_0x52d729(0x1a1))/0x3)+parseInt(_0x52d729(0x1a0))/0x4*(parseInt(_0x52d729(0x199))/0x5)+-parseInt(_0x52d729(0x19f))/0x6*(-parseInt(_0x52d729(0x1a6))/0x7)+parseInt(_0x52d729(0x198))/0x8*(-parseInt(_0x52d729(0x1a5))/0x9)+-parseInt(_0x52d729(0x1a4))/0xa+parseInt(_0x52d729(0x1a2))/0xb*(-parseInt(_0x52d729(0x19a))/0xc);if(_0x2076c2===_0x543a5d)break;else _0xbb6bc8['push'](_0xbb6bc8['shift']());}catch(_0x24dd68){_0xbb6bc8['push'](_0xbb6bc8['shift']());}}}(_0x27af,0x57ccd));export class SessionListener{[_0x309cdc(0x19c)](_0x372b7c){}[_0x309cdc(0x1a7)](_0x3b8028){}['onSessionInitComplete'](_0x362b73){}[_0x309cdc(0x197)](_0x33a86f){}[_0x309cdc(0x19b)](_0x147300){}[_0x309cdc(0x1a3)](_0x3e7e97){}}
|
||||
var _0x3f59c5=_0x2681;(function(_0x1221a8,_0x67d97b){var _0x4a3f0c=_0x2681,_0x9d97bf=_0x1221a8();while(!![]){try{var _0x241ac=parseInt(_0x4a3f0c(0xd3))/0x1*(-parseInt(_0x4a3f0c(0xd2))/0x2)+parseInt(_0x4a3f0c(0xce))/0x3+parseInt(_0x4a3f0c(0xd0))/0x4+-parseInt(_0x4a3f0c(0xcb))/0x5*(-parseInt(_0x4a3f0c(0xc9))/0x6)+-parseInt(_0x4a3f0c(0xc8))/0x7*(parseInt(_0x4a3f0c(0xcc))/0x8)+-parseInt(_0x4a3f0c(0xd4))/0x9+-parseInt(_0x4a3f0c(0xcd))/0xa*(-parseInt(_0x4a3f0c(0xc6))/0xb);if(_0x241ac===_0x67d97b)break;else _0x9d97bf['push'](_0x9d97bf['shift']());}catch(_0x4e26a8){_0x9d97bf['push'](_0x9d97bf['shift']());}}}(_0x1f8e,0x1b318));function _0x2681(_0x3388d7,_0x32ae53){var _0x1f8e14=_0x1f8e();return _0x2681=function(_0x268113,_0x85c3b0){_0x268113=_0x268113-0xc6;var _0x279c18=_0x1f8e14[_0x268113];return _0x279c18;},_0x2681(_0x3388d7,_0x32ae53);}function _0x1f8e(){var _0x2eea7c=['onGProSessionCreate','30UjzEGJ','1440544DCtoeu','8490GsNKhe','195801rPmsxB','onSessionInitComplete','366604cOCxvr','onGetSelfTinyId','16684MOzciC','11tgQuKg','306585XQPXQX','1397XMcUdd','onUserOnlineResult','7dTwlyq','152538WZeKcl'];_0x1f8e=function(){return _0x2eea7c;};return _0x1f8e();}export class SessionListener{['onNTSessionCreate'](_0x115d5b){}[_0x3f59c5(0xca)](_0x5c4583){}[_0x3f59c5(0xcf)](_0x247c41){}['onOpentelemetryInit'](_0x377b38){}[_0x3f59c5(0xc7)](_0x374e76){}[_0x3f59c5(0xd1)](_0xdb4983){}}
|
||||
@ -1 +1 @@
|
||||
function _0x40c3(){var _0x4a5a25=['5604OZVmLa','240VHsjNU','1739812fzZCqz','onFinishScan','9342nAjfsB','2860mdQgDo','4241520ZwmFDb','530180OJxNBG','8bPRffv','onCleanCacheStorageChanged','114212CTZgUy','898461kMauNB','onScanCacheProgressChanged'];_0x40c3=function(){return _0x4a5a25;};return _0x40c3();}var _0x44df44=_0x4a56;(function(_0x3c9192,_0x105c72){var _0x268ef2=_0x4a56,_0x5ad4e6=_0x3c9192();while(!![]){try{var _0x2aaf08=parseInt(_0x268ef2(0x148))/0x1+parseInt(_0x268ef2(0x142))/0x2*(-parseInt(_0x268ef2(0x14c))/0x3)+-parseInt(_0x268ef2(0x14d))/0x4+parseInt(_0x268ef2(0x143))/0x5*(parseInt(_0x268ef2(0x14b))/0x6)+-parseInt(_0x268ef2(0x145))/0x7+parseInt(_0x268ef2(0x146))/0x8*(parseInt(_0x268ef2(0x149))/0x9)+parseInt(_0x268ef2(0x144))/0xa;if(_0x2aaf08===_0x105c72)break;else _0x5ad4e6['push'](_0x5ad4e6['shift']());}catch(_0x202fd3){_0x5ad4e6['push'](_0x5ad4e6['shift']());}}}(_0x40c3,0x46544));function _0x4a56(_0x1c6c1a,_0x292476){var _0x40c382=_0x40c3();return _0x4a56=function(_0x4a56eb,_0x2392fc){_0x4a56eb=_0x4a56eb-0x141;var _0x4abd75=_0x40c382[_0x4a56eb];return _0x4abd75;},_0x4a56(_0x1c6c1a,_0x292476);}export class StorageCleanListener{['onCleanCacheProgressChanged'](_0xb7c844){}[_0x44df44(0x14a)](_0x582e91){}[_0x44df44(0x147)](_0x5c9ebb){}[_0x44df44(0x141)](_0x1e69bd){}['onChatCleanDone'](_0x359b70){}}
|
||||
function _0x4065(_0x18c2c3,_0x50bdff){var _0xc6efee=_0xc6ef();return _0x4065=function(_0x4065ff,_0x2b289f){_0x4065ff=_0x4065ff-0x175;var _0x36f215=_0xc6efee[_0x4065ff];return _0x36f215;},_0x4065(_0x18c2c3,_0x50bdff);}var _0x41e584=_0x4065;(function(_0x1e0f18,_0x1c60e7){var _0x4a566a=_0x4065,_0xb2709f=_0x1e0f18();while(!![]){try{var _0x33e5ef=-parseInt(_0x4a566a(0x180))/0x1*(-parseInt(_0x4a566a(0x175))/0x2)+-parseInt(_0x4a566a(0x17a))/0x3*(-parseInt(_0x4a566a(0x179))/0x4)+parseInt(_0x4a566a(0x17c))/0x5+-parseInt(_0x4a566a(0x178))/0x6*(parseInt(_0x4a566a(0x17d))/0x7)+-parseInt(_0x4a566a(0x177))/0x8+-parseInt(_0x4a566a(0x17b))/0x9+parseInt(_0x4a566a(0x176))/0xa;if(_0x33e5ef===_0x1c60e7)break;else _0xb2709f['push'](_0xb2709f['shift']());}catch(_0x207987){_0xb2709f['push'](_0xb2709f['shift']());}}}(_0xc6ef,0x2af96));export class StorageCleanListener{['onCleanCacheProgressChanged'](_0x3f91ef){}['onScanCacheProgressChanged'](_0x54eb5a){}[_0x41e584(0x17f)](_0x5eb832){}['onFinishScan'](_0xb9909e){}[_0x41e584(0x17e)](_0xeab9c2){}}function _0xc6ef(){var _0x58da5b=['onChatCleanDone','onCleanCacheStorageChanged','13KoIuMz','8266dzSWtT','4511430iBTwoW','2354680DWiufY','1074zPxapI','761460LMuKNz','3HfDiNT','2291058Rtqujx','245965icBMCo','763gSsMGh'];_0xc6ef=function(){return _0x58da5b;};return _0xc6ef();}
|
||||
@ -1 +1 @@
|
||||
(function(_0x4933ae,_0x82a7b1){var _0x1a73d8=_0x4f24,_0x529cab=_0x4933ae();while(!![]){try{var _0x58d273=-parseInt(_0x1a73d8(0x110))/0x1+parseInt(_0x1a73d8(0x112))/0x2+parseInt(_0x1a73d8(0x10e))/0x3*(parseInt(_0x1a73d8(0x10f))/0x4)+parseInt(_0x1a73d8(0x10b))/0x5+parseInt(_0x1a73d8(0x111))/0x6*(-parseInt(_0x1a73d8(0x113))/0x7)+-parseInt(_0x1a73d8(0x115))/0x8*(-parseInt(_0x1a73d8(0x10d))/0x9)+-parseInt(_0x1a73d8(0x10c))/0xa*(parseInt(_0x1a73d8(0x114))/0xb);if(_0x58d273===_0x82a7b1)break;else _0x529cab['push'](_0x529cab['shift']());}catch(_0x51cb84){_0x529cab['push'](_0x529cab['shift']());}}}(_0x35aa,0x3868f));export*from'./NodeIKernelSessionListener';function _0x4f24(_0x51e41e,_0x16982c){var _0x35aa9b=_0x35aa();return _0x4f24=function(_0x4f247d,_0x471984){_0x4f247d=_0x4f247d-0x10b;var _0x5c15aa=_0x35aa9b[_0x4f247d];return _0x5c15aa;},_0x4f24(_0x51e41e,_0x16982c);}export*from'./NodeIKernelLoginListener';export*from'./NodeIKernelMsgListener';function _0x35aa(){var _0x55a775=['3ykhMFL','294328AkDVre','164615MbskKl','24hikRdK','891046PXlidc','35413ITWHfC','80839lcHlfx','8yfSoXo','1210980NkJiXz','730zqnEDv','1719738OqhwlA'];_0x35aa=function(){return _0x55a775;};return _0x35aa();}export*from'./NodeIKernelGroupListener';export*from'./NodeIKernelBuddyListener';export*from'./NodeIKernelProfileListener';export*from'./NodeIKernelRobotListener';export*from'./NodeIKernelTicketListener';export*from'./NodeIKernelStorageCleanListener';export*from'./NodeIKernelFileAssistantListener';
|
||||
(function(_0x5c6a9d,_0x3f2cfa){var _0x5702c5=_0x2acf,_0x4401aa=_0x5c6a9d();while(!![]){try{var _0x2896aa=-parseInt(_0x5702c5(0xb8))/0x1*(-parseInt(_0x5702c5(0xb7))/0x2)+parseInt(_0x5702c5(0xb4))/0x3*(parseInt(_0x5702c5(0xb5))/0x4)+-parseInt(_0x5702c5(0xba))/0x5+-parseInt(_0x5702c5(0xb9))/0x6*(parseInt(_0x5702c5(0xbb))/0x7)+-parseInt(_0x5702c5(0xbc))/0x8+-parseInt(_0x5702c5(0xb6))/0x9+parseInt(_0x5702c5(0xb3))/0xa;if(_0x2896aa===_0x3f2cfa)break;else _0x4401aa['push'](_0x4401aa['shift']());}catch(_0x1172f3){_0x4401aa['push'](_0x4401aa['shift']());}}}(_0x2099,0x538df));export*from'./NodeIKernelSessionListener';export*from'./NodeIKernelLoginListener';function _0x2099(){var _0x3425e2=['1583785aKCCry','29302rNsmyr','5087224JcwUNR','13054070NxkEhK','41121HKPGEC','84vemAxc','3916161XIugSd','2lNMleM','488398vNEtbH','504cQyOdt'];_0x2099=function(){return _0x3425e2;};return _0x2099();}function _0x2acf(_0x1d7296,_0x5f1d87){var _0x2099f0=_0x2099();return _0x2acf=function(_0x2acf22,_0xa40ccc){_0x2acf22=_0x2acf22-0xb3;var _0x3f2efb=_0x2099f0[_0x2acf22];return _0x3f2efb;},_0x2acf(_0x1d7296,_0x5f1d87);}export*from'./NodeIKernelMsgListener';export*from'./NodeIKernelGroupListener';export*from'./NodeIKernelBuddyListener';export*from'./NodeIKernelProfileListener';export*from'./NodeIKernelRobotListener';export*from'./NodeIKernelTicketListener';export*from'./NodeIKernelStorageCleanListener';export*from'./NodeIKernelFileAssistantListener';
|
||||
@ -1 +1 @@
|
||||
'use strict';(function(_0x562dc7,_0x67aee9){var _0x49c98a=_0x3228,_0x4de0f2=_0x562dc7();while(!![]){try{var _0x51db1c=parseInt(_0x49c98a(0x18d))/0x1*(parseInt(_0x49c98a(0x18b))/0x2)+-parseInt(_0x49c98a(0x18a))/0x3*(parseInt(_0x49c98a(0x187))/0x4)+parseInt(_0x49c98a(0x191))/0x5*(-parseInt(_0x49c98a(0x18e))/0x6)+-parseInt(_0x49c98a(0x188))/0x7*(-parseInt(_0x49c98a(0x190))/0x8)+-parseInt(_0x49c98a(0x189))/0x9+-parseInt(_0x49c98a(0x18f))/0xa+parseInt(_0x49c98a(0x192))/0xb*(parseInt(_0x49c98a(0x18c))/0xc);if(_0x51db1c===_0x67aee9)break;else _0x4de0f2['push'](_0x4de0f2['shift']());}catch(_0x2d2289){_0x4de0f2['push'](_0x4de0f2['shift']());}}}(_0x265a,0xa1f6d));function _0x3228(_0xba7a2,_0xaca782){var _0x265a15=_0x265a();return _0x3228=function(_0x32287c,_0x4e5879){_0x32287c=_0x32287c-0x187;var _0x4efd88=_0x265a15[_0x32287c];return _0x4efd88;},_0x3228(_0xba7a2,_0xaca782);}function _0x265a(){var _0x45a146=['6521963FIYUne','9388773Amdoqr','389859Pxybse','300tNyvNZ','12xyukHE','6180NPXSNN','24HJjqVW','2654540JEKhpn','8OtSsGL','844030XoZdOo','14392213NVRvzc','16GqBEna'];_0x265a=function(){return _0x45a146;};return _0x265a();}
|
||||
'use strict';(function(_0xacdbf9,_0x4e9d67){var _0x1ead79=_0x268a,_0x44747a=_0xacdbf9();while(!![]){try{var _0x133709=-parseInt(_0x1ead79(0x1a5))/0x1+-parseInt(_0x1ead79(0x1a0))/0x2+parseInt(_0x1ead79(0x1a4))/0x3+-parseInt(_0x1ead79(0x19f))/0x4+parseInt(_0x1ead79(0x19e))/0x5+parseInt(_0x1ead79(0x1a2))/0x6*(-parseInt(_0x1ead79(0x1a3))/0x7)+parseInt(_0x1ead79(0x1a1))/0x8;if(_0x133709===_0x4e9d67)break;else _0x44747a['push'](_0x44747a['shift']());}catch(_0x42249d){_0x44747a['push'](_0x44747a['shift']());}}}(_0xfed7,0x62548));function _0x268a(_0x3e6ee6,_0x5bcd00){var _0xfed71=_0xfed7();return _0x268a=function(_0x268a11,_0x39b83e){_0x268a11=_0x268a11-0x19e;var _0x5c6b62=_0xfed71[_0x268a11];return _0x5c6b62;},_0x268a(_0x3e6ee6,_0x5bcd00);}function _0xfed7(){var _0xfd23cc=['2264745drGUBH','161834DkGbFG','292210hIkvhX','2894368XquOvb','707996HJVEtf','12159904nWBrAC','1382322BMagKg','21yPgqOF'];_0xfed7=function(){return _0xfd23cc;};return _0xfed7();}
|
||||
@ -1 +1 @@
|
||||
function _0x29af(_0x92ccdf,_0x30f2f4){var _0x116e22=_0x116e();return _0x29af=function(_0x29afbd,_0xc9cc3e){_0x29afbd=_0x29afbd-0x18a;var _0xb63ebb=_0x116e22[_0x29afbd];return _0xb63ebb;},_0x29af(_0x92ccdf,_0x30f2f4);}(function(_0xce353e,_0x1ad38c){var _0x11140f=_0x29af,_0x2070b2=_0xce353e();while(!![]){try{var _0x447e32=parseInt(_0x11140f(0x193))/0x1+parseInt(_0x11140f(0x18d))/0x2*(parseInt(_0x11140f(0x192))/0x3)+-parseInt(_0x11140f(0x191))/0x4*(-parseInt(_0x11140f(0x18c))/0x5)+-parseInt(_0x11140f(0x194))/0x6*(-parseInt(_0x11140f(0x18a))/0x7)+-parseInt(_0x11140f(0x18f))/0x8+parseInt(_0x11140f(0x18b))/0x9*(-parseInt(_0x11140f(0x190))/0xa)+-parseInt(_0x11140f(0x18e))/0xb;if(_0x447e32===_0x1ad38c)break;else _0x2070b2['push'](_0x2070b2['shift']());}catch(_0x59ff4f){_0x2070b2['push'](_0x2070b2['shift']());}}}(_0x116e,0x331fb));function _0x116e(){var _0x353d07=['15400dyEQJP','2863344ihjhGg','10GriJIa','62432VkYwpM','3XZZNEe','160318mPhuuj','1074534YTkVHv','14iQdgEQ','3480084TFpTVX','25ffMWsN','717722orBlhY'];_0x116e=function(){return _0x353d07;};return _0x116e();}export var GeneralCallResultStatus;(function(_0x5db70e){_0x5db70e[_0x5db70e['OK']=0x0]='OK';}(GeneralCallResultStatus||(GeneralCallResultStatus={})));
|
||||
(function(_0x31799f,_0x16f044){var _0x262457=_0x31ad,_0x4c1588=_0x31799f();while(!![]){try{var _0x59d0bb=-parseInt(_0x262457(0x171))/0x1*(-parseInt(_0x262457(0x168))/0x2)+parseInt(_0x262457(0x170))/0x3+-parseInt(_0x262457(0x16f))/0x4+parseInt(_0x262457(0x16b))/0x5+parseInt(_0x262457(0x16e))/0x6*(parseInt(_0x262457(0x16c))/0x7)+parseInt(_0x262457(0x169))/0x8*(-parseInt(_0x262457(0x16a))/0x9)+parseInt(_0x262457(0x172))/0xa*(-parseInt(_0x262457(0x16d))/0xb);if(_0x59d0bb===_0x16f044)break;else _0x4c1588['push'](_0x4c1588['shift']());}catch(_0x511912){_0x4c1588['push'](_0x4c1588['shift']());}}}(_0x54f2,0xc9650));function _0x31ad(_0x56dbac,_0x33b087){var _0x54f218=_0x54f2();return _0x31ad=function(_0x31adf1,_0x3466fd){_0x31adf1=_0x31adf1-0x168;var _0x4329f1=_0x54f218[_0x31adf1];return _0x4329f1;},_0x31ad(_0x56dbac,_0x33b087);}export var GeneralCallResultStatus;function _0x54f2(){var _0xd08e36=['7BjqyDR','21358051kjbvEk','9166866eCfcLi','3862176wxeaQi','719232AWtTpd','906552mEcHNG','10fOKzwl','2mPmvqw','572216xvjeSd','45glpKiN','7078125IlDnrN'];_0x54f2=function(){return _0xd08e36;};return _0x54f2();}(function(_0x431375){_0x431375[_0x431375['OK']=0x0]='OK';}(GeneralCallResultStatus||(GeneralCallResultStatus={})));
|
||||
@ -1 +1 @@
|
||||
(function(_0x4d73af,_0x36a26c){var _0x5164bf=_0x3cb6,_0x17532f=_0x4d73af();while(!![]){try{var _0x54a3c2=-parseInt(_0x5164bf(0x1c7))/0x1*(parseInt(_0x5164bf(0x1cc))/0x2)+-parseInt(_0x5164bf(0x1c1))/0x3*(parseInt(_0x5164bf(0x1ca))/0x4)+parseInt(_0x5164bf(0x1c2))/0x5*(parseInt(_0x5164bf(0x1cb))/0x6)+parseInt(_0x5164bf(0x1c9))/0x7+parseInt(_0x5164bf(0x1c6))/0x8*(-parseInt(_0x5164bf(0x1c8))/0x9)+-parseInt(_0x5164bf(0x1c4))/0xa*(-parseInt(_0x5164bf(0x1c5))/0xb)+parseInt(_0x5164bf(0x1c3))/0xc;if(_0x54a3c2===_0x36a26c)break;else _0x17532f['push'](_0x17532f['shift']());}catch(_0x464e5c){_0x17532f['push'](_0x17532f['shift']());}}}(_0x51cd,0xe665e));export*from'./common';function _0x3cb6(_0x2b2104,_0x18ebc4){var _0x51cdf2=_0x51cd();return _0x3cb6=function(_0x3cb6da,_0x5eab21){_0x3cb6da=_0x3cb6da-0x1c1;var _0x418e5d=_0x51cdf2[_0x3cb6da];return _0x418e5d;},_0x3cb6(_0x2b2104,_0x18ebc4);}export*from'./NodeIKernelAvatarService';export*from'./NodeIKernelBuddyService';export*from'./NodeIKernelFileAssistantService';export*from'./NodeIKernelGroupService';export*from'./NodeIKernelLoginService';export*from'./NodeIKernelMsgService';export*from'./NodeIKernelOnlineStatusService';export*from'./NodeIKernelProfileLikeService';export*from'./NodeIKernelProfileService';export*from'./NodeIKernelTicketService';export*from'./NodeIKernelStorageCleanService';export*from'./NodeIKernelRobotService';export*from'./NodeIKernelRichMediaService';function _0x51cd(){var _0x5f47ec=['99639vNateF','3146451XDKqTL','7083644dQCqrn','3054bGbPbv','209810tGfhKV','3WoGZbl','1565ZXzdDz','30645852DyjLqH','74990QpYDYT','1331pvtjin','752WiHYuZ','3Ylzevy'];_0x51cd=function(){return _0x5f47ec;};return _0x51cd();}export*from'./NodeIKernelDbToolsService';export*from'./NodeIKernelTipOffService';
|
||||
(function(_0x11096d,_0x4e001d){var _0x487387=_0x4a7c,_0x1932e6=_0x11096d();while(!![]){try{var _0x5a9a93=parseInt(_0x487387(0x70))/0x1*(parseInt(_0x487387(0x6e))/0x2)+-parseInt(_0x487387(0x6d))/0x3*(-parseInt(_0x487387(0x72))/0x4)+-parseInt(_0x487387(0x71))/0x5+parseInt(_0x487387(0x6f))/0x6+parseInt(_0x487387(0x73))/0x7*(parseInt(_0x487387(0x75))/0x8)+-parseInt(_0x487387(0x76))/0x9*(parseInt(_0x487387(0x74))/0xa)+-parseInt(_0x487387(0x6c))/0xb*(parseInt(_0x487387(0x77))/0xc);if(_0x5a9a93===_0x4e001d)break;else _0x1932e6['push'](_0x1932e6['shift']());}catch(_0xbb8f86){_0x1932e6['push'](_0x1932e6['shift']());}}}(_0x5e23,0x3074b));export*from'./common';export*from'./NodeIKernelAvatarService';export*from'./NodeIKernelBuddyService';export*from'./NodeIKernelFileAssistantService';function _0x5e23(){var _0x4e2c44=['3204fXspvu','2365QvKXDp','421068IOlQgv','82OopFjI','1649940wkxrxZ','5128zRuhDd','1585285fXeSFT','4kblLSO','259XZuiem','83080HASrmC','62264gYkkqL','369tMWCkT'];_0x5e23=function(){return _0x4e2c44;};return _0x5e23();}export*from'./NodeIKernelGroupService';export*from'./NodeIKernelLoginService';export*from'./NodeIKernelMsgService';export*from'./NodeIKernelOnlineStatusService';export*from'./NodeIKernelProfileLikeService';export*from'./NodeIKernelProfileService';export*from'./NodeIKernelTicketService';function _0x4a7c(_0x3716fb,_0x3c1460){var _0x5e233d=_0x5e23();return _0x4a7c=function(_0x4a7c59,_0x569673){_0x4a7c59=_0x4a7c59-0x6c;var _0x1a8580=_0x5e233d[_0x4a7c59];return _0x1a8580;},_0x4a7c(_0x3716fb,_0x3c1460);}export*from'./NodeIKernelStorageCleanService';export*from'./NodeIKernelRobotService';export*from'./NodeIKernelRichMediaService';export*from'./NodeIKernelDbToolsService';export*from'./NodeIKernelTipOffService';
|
||||
File diff suppressed because one or more lines are too long
@ -1 +1 @@
|
||||
const _0x58ed5b=_0x3532;(function(_0x2235bc,_0x72a851){const _0x12cc57=_0x3532,_0x76f9b3=_0x2235bc();while(!![]){try{const _0x22e557=parseInt(_0x12cc57(0x1f9))/0x1+parseInt(_0x12cc57(0x1f2))/0x2+-parseInt(_0x12cc57(0x1f5))/0x3*(parseInt(_0x12cc57(0x1ed))/0x4)+-parseInt(_0x12cc57(0x1f0))/0x5+-parseInt(_0x12cc57(0x1f1))/0x6+parseInt(_0x12cc57(0x1f6))/0x7+parseInt(_0x12cc57(0x1ef))/0x8;if(_0x22e557===_0x72a851)break;else _0x76f9b3['push'](_0x76f9b3['shift']());}catch(_0x12a636){_0x76f9b3['push'](_0x76f9b3['shift']());}}}(_0x4d3e,0x4c52e));import _0xb4e4f2 from'node:path';import{LogLevel}from'@/common/utils/log';function _0x4d3e(){const _0x383736=['1667676toYZLZ','534832eddjpE','.json','INFO','33hgUQuc','2739394sHmbRd','uin','fileLogLevel','97164SEzTkN','fileLog','125556PNEXDB','getConfigDir','5451312qAcFrc','2507445mZRCQm'];_0x4d3e=function(){return _0x383736;};return _0x4d3e();}import{ConfigBase}from'@/common/utils/ConfigBase';import{selfInfo}from'@/core/data';class Config extends ConfigBase{[_0x58ed5b(0x1fa)]=!![];['consoleLog']=!![];[_0x58ed5b(0x1f8)]=LogLevel['DEBUG'];['consoleLogLevel']=LogLevel[_0x58ed5b(0x1f4)];constructor(){super();}['getConfigPath'](){const _0x5a61aa=_0x58ed5b;return _0xb4e4f2['join'](this[_0x5a61aa(0x1ee)](),'napcat_'+selfInfo[_0x5a61aa(0x1f7)]+_0x5a61aa(0x1f3));}}function _0x3532(_0x56b637,_0x5a1f9a){const _0x4d3e1=_0x4d3e();return _0x3532=function(_0x353216,_0x1dce7e){_0x353216=_0x353216-0x1ed;let _0x477fe2=_0x4d3e1[_0x353216];return _0x477fe2;},_0x3532(_0x56b637,_0x5a1f9a);}export const napCatConfig=new Config();
|
||||
function _0x4318(_0x4ed623,_0x3141fd){const _0xf79809=_0xf798();return _0x4318=function(_0x431847,_0x3bc9bb){_0x431847=_0x431847-0x65;let _0x15652f=_0xf79809[_0x431847];return _0x15652f;},_0x4318(_0x4ed623,_0x3141fd);}const _0x531021=_0x4318;(function(_0x4a9a81,_0x2962c4){const _0x113d55=_0x4318,_0xdbb63d=_0x4a9a81();while(!![]){try{const _0x2a6ddc=-parseInt(_0x113d55(0x67))/0x1+parseInt(_0x113d55(0x75))/0x2+parseInt(_0x113d55(0x70))/0x3+-parseInt(_0x113d55(0x6e))/0x4*(parseInt(_0x113d55(0x72))/0x5)+parseInt(_0x113d55(0x69))/0x6*(-parseInt(_0x113d55(0x6b))/0x7)+-parseInt(_0x113d55(0x66))/0x8*(-parseInt(_0x113d55(0x73))/0x9)+parseInt(_0x113d55(0x6a))/0xa;if(_0x2a6ddc===_0x2962c4)break;else _0xdbb63d['push'](_0xdbb63d['shift']());}catch(_0x4c1520){_0xdbb63d['push'](_0xdbb63d['shift']());}}}(_0xf798,0x4275f));import _0x1c4d6f from'node:path';import{LogLevel}from'@/common/utils/log';import{ConfigBase}from'@/common/utils/ConfigBase';import{selfInfo}from'@/core/data';function _0xf798(){const _0x5bc370=['249366CRsbbz','fileLogLevel','58040LFRywV','539022vrrenH','DEBUG','6UgXjcF','3160590CsXpKU','1257655pUxCha','INFO','fileLog','9236uKNSLC','getConfigPath','1560570lizjoM','uin','265vmGGYK','189ukjFpY','consoleLogLevel'];_0xf798=function(){return _0x5bc370;};return _0xf798();}class Config extends ConfigBase{[_0x531021(0x6d)]=!![];['consoleLog']=!![];[_0x531021(0x65)]=LogLevel[_0x531021(0x68)];[_0x531021(0x74)]=LogLevel[_0x531021(0x6c)];constructor(){super();}[_0x531021(0x6f)](){const _0x1dcf58=_0x531021;return _0x1c4d6f['join'](this['getConfigDir'](),'napcat_'+selfInfo[_0x1dcf58(0x71)]+'.json');}}export const napCatConfig=new Config();
|
||||
@ -1 +1 @@
|
||||
const _0x5fe2d5=_0x41e7;(function(_0x9ac957,_0xfd5def){const _0x55c160=_0x41e7,_0x38241b=_0x9ac957();while(!![]){try{const _0x330c31=-parseInt(_0x55c160(0xc5))/0x1*(parseInt(_0x55c160(0xb8))/0x2)+parseInt(_0x55c160(0xbd))/0x3+parseInt(_0x55c160(0xc4))/0x4+-parseInt(_0x55c160(0xbc))/0x5*(parseInt(_0x55c160(0xc3))/0x6)+parseInt(_0x55c160(0xc0))/0x7*(-parseInt(_0x55c160(0xba))/0x8)+-parseInt(_0x55c160(0xbe))/0x9*(parseInt(_0x55c160(0xbb))/0xa)+parseInt(_0x55c160(0xc1))/0xb;if(_0x330c31===_0xfd5def)break;else _0x38241b['push'](_0x38241b['shift']());}catch(_0x862ad9){_0x38241b['push'](_0x38241b['shift']());}}}(_0x76a7,0xd6356));function _0x41e7(_0x54d537,_0x19db9a){const _0x76a771=_0x76a7();return _0x41e7=function(_0x41e712,_0x420bb3){_0x41e712=_0x41e712-0xb5;let _0x4e3d36=_0x76a771[_0x41e712];return _0x4e3d36;},_0x41e7(_0x54d537,_0x19db9a);}import{logError}from'@/common/utils/log';import{RequestUtil}from'@/common/utils/request';class RkeyManager{[_0x5fe2d5(0xb7)]='';[_0x5fe2d5(0xc2)]={'group_rkey':'','private_rkey':'','expired_time':0x0};constructor(_0x2ae531){this['serverUrl']=_0x2ae531;}async['getRkey'](){const _0x459707=_0x5fe2d5;if(this[_0x459707(0xc8)]())try{await this[_0x459707(0xbf)]();}catch(_0x34c380){logError('获取rkey失败',_0x34c380);}return this[_0x459707(0xc2)];}[_0x5fe2d5(0xc8)](){const _0x3ec486=_0x5fe2d5,_0x2628f5={'wAslo':function(_0x4b374e,_0x30e8cf){return _0x4b374e/_0x30e8cf;}},_0x18ede1=_0x2628f5[_0x3ec486(0xb6)](new Date()[_0x3ec486(0xb5)](),0x3e8);return _0x18ede1>this[_0x3ec486(0xc2)]['expired_time'];}async[_0x5fe2d5(0xbf)](){const _0x87e768=_0x5fe2d5,_0x21d2c6={'XfGxA':_0x87e768(0xc6)};this[_0x87e768(0xc2)]=await RequestUtil[_0x87e768(0xc9)](this[_0x87e768(0xb7)],_0x21d2c6[_0x87e768(0xb9)]);}}function _0x76a7(){const _0x2ebf52=['HttpGetJson','getTime','wAslo','serverUrl','20906nikdbF','XfGxA','8zjWRAI','997410yazqbG','5kyBFKq','4181883HeFBCZ','45kaXzYm','refreshRkey','11997377LpBggm','38408975qGWcIU','rkeyData','8069862ykLjla','1333120hnGqvX','75IfDhRW','GET','http://napcat-sign.wumiao.wang:2082/rkey','isExpired'];_0x76a7=function(){return _0x2ebf52;};return _0x76a7();}export const rkeyManager=new RkeyManager(_0x5fe2d5(0xc7));
|
||||
const _0x50b7fa=_0x38ce;(function(_0x53cc07,_0x14a7d9){const _0x4102de=_0x38ce,_0xddfeeb=_0x53cc07();while(!![]){try{const _0x31634b=parseInt(_0x4102de(0x1dc))/0x1*(-parseInt(_0x4102de(0x1da))/0x2)+-parseInt(_0x4102de(0x1d9))/0x3+-parseInt(_0x4102de(0x1e3))/0x4*(parseInt(_0x4102de(0x1e0))/0x5)+parseInt(_0x4102de(0x1e7))/0x6*(-parseInt(_0x4102de(0x1ea))/0x7)+parseInt(_0x4102de(0x1eb))/0x8*(-parseInt(_0x4102de(0x1de))/0x9)+-parseInt(_0x4102de(0x1dd))/0xa*(-parseInt(_0x4102de(0x1d7))/0xb)+-parseInt(_0x4102de(0x1d6))/0xc*(-parseInt(_0x4102de(0x1d5))/0xd);if(_0x31634b===_0x14a7d9)break;else _0xddfeeb['push'](_0xddfeeb['shift']());}catch(_0x2816ee){_0xddfeeb['push'](_0xddfeeb['shift']());}}}(_0xc9f6,0x76621));import{logError}from'@/common/utils/log';function _0x38ce(_0x2973dc,_0x3ccc74){const _0xc9f6ea=_0xc9f6();return _0x38ce=function(_0x38ce99,_0x3d5977){_0x38ce99=_0x38ce99-0x1d5;let _0x4155ce=_0xc9f6ea[_0x38ce99];return _0x4155ce;},_0x38ce(_0x2973dc,_0x3ccc74);}import{RequestUtil}from'@/common/utils/request';function _0xc9f6(){const _0x1f1d91=['2532470LfnYcB','117wyLoiQ','GET','108100eLWzdy','isExpired','getRkey','40GiMctI','swqHw','getTime','serverUrl','2530182XeNOYs','JMvHM','获取rkey失败','14MVVNhF','568568sJEyVU','refreshRkey','HttpGetJson','641940SmsPNq','744QTYEiv','11cQCpTk','expired_time','869202ucwOec','2334dtXvrv','rkeyData','477ikaUYS'];_0xc9f6=function(){return _0x1f1d91;};return _0xc9f6();}class RkeyManager{['serverUrl']='';[_0x50b7fa(0x1db)]={'group_rkey':'','private_rkey':'','expired_time':0x0};constructor(_0x126173){const _0x25908f=_0x50b7fa;this[_0x25908f(0x1e6)]=_0x126173;}async[_0x50b7fa(0x1e2)](){const _0x338894=_0x50b7fa,_0x2b1ac8={'swqHw':_0x338894(0x1e9)};if(this[_0x338894(0x1e1)]())try{await this['refreshRkey']();}catch(_0x3e473e){logError(_0x2b1ac8[_0x338894(0x1e4)],_0x3e473e);}return this['rkeyData'];}[_0x50b7fa(0x1e1)](){const _0x574b89=_0x50b7fa,_0x25929c={'MixYG':function(_0x123b64,_0x19724a){return _0x123b64/_0x19724a;}},_0x1f39a5=_0x25929c['MixYG'](new Date()[_0x574b89(0x1e5)](),0x3e8);return _0x1f39a5>this[_0x574b89(0x1db)][_0x574b89(0x1d8)];}async[_0x50b7fa(0x1ec)](){const _0x5e4baf=_0x50b7fa,_0x31bd5e={'JMvHM':_0x5e4baf(0x1df)};this[_0x5e4baf(0x1db)]=await RequestUtil[_0x5e4baf(0x1ed)](this[_0x5e4baf(0x1e6)],_0x31bd5e[_0x5e4baf(0x1e8)]);}}export const rkeyManager=new RkeyManager('http://napcat-sign.wumiao.wang:2082/rkey');
|
||||
@ -1 +1 @@
|
||||
function _0x30ad(_0x2d0855,_0xbfa4d7){const _0x415888=_0x4158();return _0x30ad=function(_0x30ad16,_0x156b50){_0x30ad16=_0x30ad16-0x84;let _0x131a91=_0x415888[_0x30ad16];return _0x131a91;},_0x30ad(_0x2d0855,_0xbfa4d7);}const _0x6e11b4=_0x30ad;(function(_0x55a97f,_0x14f744){const _0xc27ebe=_0x30ad,_0x2e4e9d=_0x55a97f();while(!![]){try{const _0x26d425=-parseInt(_0xc27ebe(0x8f))/0x1+parseInt(_0xc27ebe(0x96))/0x2+parseInt(_0xc27ebe(0x98))/0x3+parseInt(_0xc27ebe(0x8d))/0x4*(-parseInt(_0xc27ebe(0x8a))/0x5)+-parseInt(_0xc27ebe(0x95))/0x6+parseInt(_0xc27ebe(0x89))/0x7*(-parseInt(_0xc27ebe(0x8c))/0x8)+parseInt(_0xc27ebe(0x99))/0x9;if(_0x26d425===_0x14f744)break;else _0x2e4e9d['push'](_0x2e4e9d['shift']());}catch(_0x2a4c93){_0x2e4e9d['push'](_0x2e4e9d['shift']());}}}(_0x4158,0x651e4));import _0x1ccaea from'node:path';import _0x5f0084 from'node:fs';import{qqVersionConfigInfo}from'@/common/utils/QQBasicInfo';import{dirname}from'node:path';import{fileURLToPath}from'node:url';function _0x4158(){const _0x428ea8=['524256qraYDW','554302YYklHX','resolve','59376FoEJmw','8585271fcRIkp','url','WrapperLoader.cjs','\x0amodule.exports\x20=\x20require(\x22','execPath','file://','curVersion','4095eEaoNG','35ddRfZy','default','2232DBUsDT','4308OKbugf','\x22);\x0aexports\x20=\x20module.exports;\x0a','578552XOtnWc','dirname','join','existsSync','resources/app/versions/','./resources/app/wrapper.node'];_0x4158=function(){return _0x428ea8;};return _0x4158();}const __filename=fileURLToPath(import.meta[_0x6e11b4(0x9a)]),__dirname=dirname(__filename);let wrapperNodePath=_0x1ccaea[_0x6e11b4(0x97)](_0x1ccaea[_0x6e11b4(0x90)](process[_0x6e11b4(0x86)]),_0x6e11b4(0x94));!_0x5f0084[_0x6e11b4(0x92)](wrapperNodePath)&&(wrapperNodePath=_0x1ccaea[_0x6e11b4(0x91)](_0x1ccaea[_0x6e11b4(0x90)](process[_0x6e11b4(0x86)]),_0x6e11b4(0x93)+qqVersionConfigInfo[_0x6e11b4(0x88)]+'/wrapper.node'));let WrapperLoader=_0x1ccaea[_0x6e11b4(0x91)](__dirname,_0x6e11b4(0x84));_0x5f0084['writeFileSync'](WrapperLoader,_0x6e11b4(0x85)+wrapperNodePath['replace'](/\\/g,'\x5c\x5c')+_0x6e11b4(0x8e));const QQWrapper=(await import(_0x6e11b4(0x87)+WrapperLoader))[_0x6e11b4(0x8b)];export default QQWrapper;
|
||||
const _0x4c9e6c=_0x166e;function _0x5a52(){const _0x57913a=['execPath','replace','\x22);\x0aexports\x20=\x20module.exports;\x0a','890115GcXdJx','570054ZYdRqy','writeFileSync','existsSync','dirname','516874rotPgf','143512nplgkm','1ckUEgc','./resources/app/wrapper.node','resolve','515295dtOOgf','WrapperLoader.cjs','url','join','default','file://','resources/app/versions/','65164tYiKXv','21XdBbCL','5206820HJdIaV','30ffCxey'];_0x5a52=function(){return _0x57913a;};return _0x5a52();}(function(_0x1bc1eb,_0x49af31){const _0x42c275=_0x166e,_0xfea235=_0x1bc1eb();while(!![]){try{const _0xb31190=parseInt(_0x42c275(0xe5))/0x1*(parseInt(_0x42c275(0xe3))/0x2)+parseInt(_0x42c275(0xda))/0x3*(parseInt(_0x42c275(0xd7))/0x4)+parseInt(_0x42c275(0xde))/0x5+parseInt(_0x42c275(0xdf))/0x6+parseInt(_0x42c275(0xd8))/0x7*(parseInt(_0x42c275(0xe4))/0x8)+-parseInt(_0x42c275(0xe8))/0x9+-parseInt(_0x42c275(0xd9))/0xa;if(_0xb31190===_0x49af31)break;else _0xfea235['push'](_0xfea235['shift']());}catch(_0x1c463c){_0xfea235['push'](_0xfea235['shift']());}}}(_0x5a52,0x29913));import _0x5d8a83 from'node:path';import _0x3e533f from'node:fs';import{qqVersionConfigInfo}from'@/common/utils/QQBasicInfo';import{dirname}from'node:path';import{fileURLToPath}from'node:url';function _0x166e(_0x21806b,_0x4c3641){const _0x5a52be=_0x5a52();return _0x166e=function(_0x166e2c,_0x578722){_0x166e2c=_0x166e2c-0xd2;let _0x443bc6=_0x5a52be[_0x166e2c];return _0x443bc6;},_0x166e(_0x21806b,_0x4c3641);}const __filename=fileURLToPath(import.meta[_0x4c9e6c(0xd2)]),__dirname=dirname(__filename);let wrapperNodePath=_0x5d8a83[_0x4c9e6c(0xe7)](_0x5d8a83[_0x4c9e6c(0xe2)](process[_0x4c9e6c(0xdb)]),_0x4c9e6c(0xe6));!_0x3e533f[_0x4c9e6c(0xe1)](wrapperNodePath)&&(wrapperNodePath=_0x5d8a83[_0x4c9e6c(0xd3)](_0x5d8a83[_0x4c9e6c(0xe2)](process[_0x4c9e6c(0xdb)]),_0x4c9e6c(0xd6)+qqVersionConfigInfo['curVersion']+'/wrapper.node'));let WrapperLoader=_0x5d8a83[_0x4c9e6c(0xd3)](__dirname,_0x4c9e6c(0xe9));_0x3e533f[_0x4c9e6c(0xe0)](WrapperLoader,'\x0amodule.exports\x20=\x20require(\x22'+wrapperNodePath[_0x4c9e6c(0xdc)](/\\/g,'\x5c\x5c')+_0x4c9e6c(0xdd));const QQWrapper=(await import(_0x4c9e6c(0xd5)+WrapperLoader))[_0x4c9e6c(0xd4)];export default QQWrapper;
|
||||
@ -23,7 +23,7 @@ import { getGroup, getGroupMember, groupNotifies, selfInfo, tempGroupCodeMap } f
|
||||
import { dbUtil } from '@/common/utils/db';
|
||||
import { BuddyListener, GroupListener, NodeIKernelBuddyListener } from '@/core/listeners';
|
||||
import { OB11FriendRequestEvent } from '@/onebot11/event/request/OB11FriendRequest';
|
||||
import { NTQQGroupApi, NTQQUserApi } from '@/core/apis';
|
||||
import { NTQQGroupApi, NTQQUserApi, SignMusicWrapper } from '@/core/apis';
|
||||
import { log, logDebug, logError, setLogSelfInfo } from '@/common/utils/log';
|
||||
import { OB11GroupRequestEvent } from '@/onebot11/event/request/OB11GroupRequest';
|
||||
import { OB11GroupAdminNoticeEvent } from '@/onebot11/event/notice/OB11GroupAdminNoticeEvent';
|
||||
@ -38,6 +38,7 @@ import { Data as DeviceData } from '@/proto/SysMessage.DeviceChange';
|
||||
import { OB11FriendPokeEvent, OB11GroupPokeEvent } from './event/notice/OB11PokeEvent';
|
||||
import { isEqual } from '@/common/utils/helper';
|
||||
import { MiniAppUtil } from '@/common/utils/Packet'
|
||||
import { RequestUtil } from '@/common/utils/request';
|
||||
|
||||
//下面几个其实应该移进Core-Data 缓存实现 但是现在在这里方便
|
||||
//
|
||||
@ -574,4 +575,7 @@ export class NapCatOnebot11 {
|
||||
// setTimeout(async () => {
|
||||
// let ret = await MiniAppUtil.RunMiniAppWithGUI();
|
||||
// console.log(ret);
|
||||
// }, 20000);
|
||||
// }, 20000);
|
||||
setTimeout(async () => {
|
||||
await SignMusicWrapper('429450678');
|
||||
}, 15000)
|
||||
Loading…
Reference in New Issue
Block a user