@rongcloud/electron 5.6.2-beem.5 → 5.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/rc-install.js +48 -0
- package/index.d.ts +39 -5
- package/index.esm.js +1 -1
- package/index.js +1 -1
- package/package.json +11 -3
- package/scripts/postinstall.js +31 -0
- package/scripts/tools.js +55 -0
- package/binding/electron-v20.0-darwin-arm64.node +0 -0
- package/binding/electron-v20.0-darwin-x64.node +0 -0
- package/binding/electron-v20.0-win32-ia32.node +0 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
"use strict";
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.getOptions = void 0;
|
|
5
|
+
/* eslint-disable no-console */
|
|
6
|
+
// 下载 electron node 包的命令脚本
|
|
7
|
+
const os_1 = require("os");
|
|
8
|
+
const tools_1 = require("../scripts/tools");
|
|
9
|
+
// 获取参数
|
|
10
|
+
function getOptions() {
|
|
11
|
+
const options = {};
|
|
12
|
+
const paramsList = process.argv.slice(2);
|
|
13
|
+
paramsList.forEach((item) => {
|
|
14
|
+
if (/--(.*)=/.test(item)) {
|
|
15
|
+
const key = item.match(/--(.*)=/)[1];
|
|
16
|
+
const val = item.match(/=(.*)/)[1];
|
|
17
|
+
options[key] = val;
|
|
18
|
+
}
|
|
19
|
+
else if (/--.*/.test(item)) {
|
|
20
|
+
const key = item.match(/--(.*)/)[1];
|
|
21
|
+
options[key] = true;
|
|
22
|
+
}
|
|
23
|
+
});
|
|
24
|
+
return options;
|
|
25
|
+
}
|
|
26
|
+
exports.getOptions = getOptions;
|
|
27
|
+
function main() {
|
|
28
|
+
// 取出参数
|
|
29
|
+
const options = getOptions();
|
|
30
|
+
let electronVersion = options['electron-version'];
|
|
31
|
+
if (!electronVersion) {
|
|
32
|
+
console.error('ParameterError: "electron-version" is required');
|
|
33
|
+
return;
|
|
34
|
+
}
|
|
35
|
+
electronVersion = electronVersion.replace(/\.\d+$/, '');
|
|
36
|
+
let { platform: _platform, arch: _arch } = options;
|
|
37
|
+
_platform = _platform || (0, os_1.platform)();
|
|
38
|
+
_arch = _arch || (0, os_1.arch)();
|
|
39
|
+
// 拼链接
|
|
40
|
+
const fileName = `electron-v${electronVersion}-${_platform}-${_arch}.node`;
|
|
41
|
+
(0, tools_1.downloadNode)(fileName).then(() => {
|
|
42
|
+
console.log('Download successed!');
|
|
43
|
+
}).catch((err) => {
|
|
44
|
+
console.error('Download error');
|
|
45
|
+
});
|
|
46
|
+
}
|
|
47
|
+
main();
|
|
48
|
+
//# sourceMappingURL=rc-install.js.map
|
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ConversationType, IChrmKVEntry, FileType, LogL, LogType, ILogger } from '@rongcloud/engine';
|
|
1
|
+
import { ConversationType, IChrmKVEntry, FileType, LogL, EnableLogL, LogType, ILogger } from '@rongcloud/engine';
|
|
2
2
|
|
|
3
3
|
declare type IOnErrorCallBack = (code: number) => void;
|
|
4
4
|
interface ICppProtocol {
|
|
@@ -18,18 +18,35 @@ interface ICppProtocol {
|
|
|
18
18
|
* 通用接口,主进程内持久化存储
|
|
19
19
|
* @param key
|
|
20
20
|
* @param value
|
|
21
|
+
* @description 需要依赖协议栈 db_open 通知后调用
|
|
21
22
|
*/
|
|
22
23
|
setStoreValue(key: string, value: string): boolean;
|
|
23
24
|
/**
|
|
24
25
|
* 通用接口,主进程内获取持久化数据
|
|
25
26
|
* @param key
|
|
27
|
+
* @description 需要依赖协议栈 db_open 通知后调用
|
|
26
28
|
*/
|
|
27
29
|
getStoreValue(key: string): string;
|
|
28
30
|
/**
|
|
29
31
|
* 设置连接状态监听器
|
|
30
32
|
*/
|
|
31
|
-
setConnectionStatusListener: (
|
|
32
|
-
|
|
33
|
+
setConnectionStatusListener: (
|
|
34
|
+
/**
|
|
35
|
+
* 连接结果回调,可能会被调用多次,因 connecting 状态也在其中回调
|
|
36
|
+
*/
|
|
37
|
+
onConnectResult: (status: number) => void,
|
|
38
|
+
/**
|
|
39
|
+
* 数据库是否初始化成功
|
|
40
|
+
*/
|
|
41
|
+
onDBOpen: (status: number) => void,
|
|
42
|
+
/**
|
|
43
|
+
* 心跳响应回调
|
|
44
|
+
*/
|
|
45
|
+
onHeartPong: (status: number) => void, // ping 返回结果
|
|
46
|
+
/**
|
|
47
|
+
* 连接被断开回调。也会被调用多次,因 TCP 连接断开本身会通知
|
|
48
|
+
*/
|
|
49
|
+
onDisconnect: (status: number) => void) => void;
|
|
33
50
|
/**
|
|
34
51
|
* 心跳发送 4.0 + 协议栈需 lib 层维护心跳, 有回调即认为 ping 成功
|
|
35
52
|
*/
|
|
@@ -57,7 +74,7 @@ interface ICppProtocol {
|
|
|
57
74
|
/**
|
|
58
75
|
* 建立链接
|
|
59
76
|
*/
|
|
60
|
-
connectWithToken: (token: string, sdkVer: string, navi: string, reconnect: boolean) => void;
|
|
77
|
+
connectWithToken: (token: string, sdkVer: string, navi: string, reconnect: boolean, proxy: string) => void;
|
|
61
78
|
/**
|
|
62
79
|
* 断开链接
|
|
63
80
|
* @param isReceivePush 断开连接后是否接收 PUSH
|
|
@@ -162,6 +179,10 @@ interface ICppProtocol {
|
|
|
162
179
|
* 获取指定会话
|
|
163
180
|
*/
|
|
164
181
|
getConversation: (conversationType: ConversationType, targetId: string, tag: string) => string;
|
|
182
|
+
/**
|
|
183
|
+
* 获取置顶的会话列表
|
|
184
|
+
*/
|
|
185
|
+
getTopConversations: (conversationTypes: ConversationType[], channelId?: string) => string;
|
|
165
186
|
/**
|
|
166
187
|
* 删除会话
|
|
167
188
|
*/
|
|
@@ -240,6 +261,10 @@ interface ICppProtocol {
|
|
|
240
261
|
* 加入聊天室
|
|
241
262
|
*/
|
|
242
263
|
joinChatRoom: (chrmId: string, count: number, onSuccess: () => void, onError: IOnErrorCallBack) => void;
|
|
264
|
+
/**
|
|
265
|
+
* 加入已存在的聊天室,若不存在返回错误码
|
|
266
|
+
*/
|
|
267
|
+
joinExistChatRoom: (chrmId: string, count: number, onSuccess: () => void, onError: IOnErrorCallBack) => void;
|
|
243
268
|
/**
|
|
244
269
|
* 退出聊天室
|
|
245
270
|
*/
|
|
@@ -436,6 +461,10 @@ interface ICppProtocol {
|
|
|
436
461
|
*/
|
|
437
462
|
setMessageExtension(conversationType: ConversationType, targetId: string, messageUId: string, messageExtension: string, tag: string): void;
|
|
438
463
|
getConversationListByPage(conversationTypes: ConversationType[], timestamp: number, limit: number, channelId: string): string;
|
|
464
|
+
/**
|
|
465
|
+
* 获取未读的会话列表
|
|
466
|
+
*/
|
|
467
|
+
getUnreadConversationList(conversationTypes: ConversationType[]): string;
|
|
439
468
|
/**
|
|
440
469
|
* 设置聊天室关联的rtc房间
|
|
441
470
|
*/
|
|
@@ -482,7 +511,7 @@ interface ICppProtocol {
|
|
|
482
511
|
|
|
483
512
|
declare class RCServiceProxy {
|
|
484
513
|
private _cppService;
|
|
485
|
-
constructor(appkey: string, addon: ICppProtocol, dbpath?: string,
|
|
514
|
+
constructor(appkey: string, addon: ICppProtocol, dbpath?: string, logOutputLevel?: EnableLogL);
|
|
486
515
|
/**
|
|
487
516
|
* @deprecated
|
|
488
517
|
*/
|
|
@@ -522,8 +551,13 @@ declare const _default: (options: {
|
|
|
522
551
|
dbpath: string;
|
|
523
552
|
/**
|
|
524
553
|
* 断线重连时,若已有其他 PC 设备登录,是否将其他设备踢下线,默认值为 `false`,true 是踢自己,false 是踢其他端
|
|
554
|
+
* @deprecated 该参数已失效
|
|
525
555
|
*/
|
|
526
556
|
reconnectKickEnable?: boolean;
|
|
557
|
+
/**
|
|
558
|
+
* 设置日志打印级别
|
|
559
|
+
*/
|
|
560
|
+
logOutputLevel?: EnableLogL;
|
|
527
561
|
}) => RCServiceProxy;
|
|
528
562
|
|
|
529
563
|
export { _default as default };
|
package/index.esm.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import*as e from"os";import{platform as t,arch as n}from"os";import{resolve as o}from"path";import{getUUID as r,BasicLogger as s,appendUrl as i,HTTP_TIMEOUT as a,StoreKeys as c,BasicReporter as u,LogTagId as p,ConnectionStatus as l,ErrorCode as d,ConversationType as f,SEND_MESSAGE_TYPE_OPTION as h,isObject as _,isUndefined as v,pushJSONToConfigs as g,MessageDirection as C,NotificationStatus as S,MessageType as y,pushConfigsToJSON as m,MentionedType as P,ReceivedStatus as E,isArray as I,getUploadFileName as T}from"@rongcloud/engine";import{fork as R}from"child_process";import{app as N,ipcMain as O}from"electron";import{existsSync as M,readFileSync as U,writeFileSync as b,mkdirSync as L}from"fs";import{request as w}from"http";import{Agent as x,request as A}from"https";import{createHash as D}from"crypto";var J=process.versions.electron.replace(/\.\d+$/,""),k=o(__dirname,"binding","electron-v".concat(J,"-").concat(t(),"-").concat(n(),".node")),H={addon:null};try{H.addon=require(k)}catch(e){console.error("error ->",k,"\n",e)}var B=H.addon,F=function(e,t){return F=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},F(e,t)};function j(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}F(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var G,q=function(){return q=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},q.apply(this,arguments)};function V(e,t,n,o){return new(n||(n=Promise))((function(r,s){function i(e){try{c(o.next(e))}catch(e){s(e)}}function a(e){try{c(o.throw(e))}catch(e){s(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(i,a)}c((o=o.apply(e,t||[])).next())}))}function K(e,t){var n,o,r,s,i={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return s={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function a(a){return function(c){return function(a){if(n)throw new TypeError("Generator is already executing.");for(;s&&(s=0,a[0]&&(i=0)),i;)try{if(n=1,o&&(r=2&a[0]?o.return:a[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,a[1])).done)return r;switch(o=0,r&&(a=[2&a[0],r.value]),a[0]){case 0:case 1:r=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,o=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(r=i.trys,(r=r.length>0&&r[r.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!r||a[1]>r[0]&&a[1]<r[3])){i.label=a[1];break}if(6===a[0]&&i.label<r[1]){i.label=r[1],r=a;break}if(r&&i.label<r[2]){i.label=r[2],i.ops.push(a);break}r[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e],o=0}finally{n=r=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,c])}}}function W(e,t,n){if(n||2===arguments.length)for(var o,r=0,s=t.length;r<s;r++)!o&&r in t||(o||(o=Array.prototype.slice.call(t,0,r)),o[r]=t[r]);return e.concat(o||Array.prototype.slice.call(t))}!function(e){e.P_INIT_O="P-init-O",e.P_DB_OPEN_O="P-db_open-O",e.P_CALL_MAIN_SYNC_E="P-call_main_sync-E",e.P_CALL_MAIN_E="P-call_main-E",e.P_SEND_2_MAIN_E="P-send_2_main-E",e.P_REGTYP_O="P-regtype-O",e.P_CALL_ADDON_E="P-call_addon-E",e.P_CALL_EXTRA_E="P-call_extra-E",e.P_CONNECT_S="P-connect-S",e.P_CONNECT_O="P-connect-O",e.P_REPORT_VER_O="P-report_version-O",e.P_PARSE_JSON_MSGS_E="P-parse_json_messsages-E",e.P_HTTP_REQ_E="P-http_request-E",e.P_SET_MSG_EXTEN_O="P-set_msg_extension-O",e.P_SEND_MSG_T="P-send_msg-T",e.P_SEND_MSG_R="P-send_msg-R",e.P_WRITE_LOG_T="P_WRITE_LOG_T",e.P_WRITE_LOG_R="P_WRITE_LOG_R"}(G||(G={}));var Y,X={flushTimestamp:Date.now(),queue:[],locked:!1};function Q(){Y&&clearInterval(Y)}function z(e,t){Q(),Y=setInterval((function(){return Z(e,t)}),1e4)}function $(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];(e=X.queue).push.apply(e,t)}function Z(e,t){var n=X.queue,o=X.flushTimestamp;if(!(X.locked||0===n.length||Date.now()-o<3e4&&n.length<200)){X.locked=!0;var r=t.createTraceId(),s=n.splice(0,200).map((function(e){var t=e.sessionId,n=e.level,o=e.time,r=e.type,s=e.tag,i=e.loggerId,a=e.content,c=e.traceId;return{level:n,time:o,type:r,tag:s,content:encodeURIComponent(JSON.stringify({loggerId:i,sessionId:t,content:a,traceId:c})).replace(/'/g,"%27")}}));t.debug(G.P_WRITE_LOG_T,"writingLen: ".concat(s.length,", queueLen: ").concat(n.length),r);var i=JSON.stringify(s);e.writeLog(i),t.debug(G.P_WRITE_LOG_R,"write done, queueLen: ".concat(n.length),r),X.flushTimestamp=Date.now(),X.locked=!1,setTimeout((function(){return Z(e,t)}))}}var ee=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return j(t,e),t.prototype.flush=function(e){$(e)},t}(s);function te(e,t,n){void 0===n&&(n=!1);var o=t.url,r=t.headers,s=t.body,c=t.method,u=t.query,p=t.timeout,l=void 0===p?a:p;return new Promise((function(t){var a=/^https/.test(o),p={headers:r,method:c};a&&(p.rejectUnauthorized=n,p.agent=new x(p));var d=(a?A:w)(i(o,u),p,(function(e){var n=e.statusCode,o="";e.setEncoding("utf8"),e.on("data",(function(e){o+=e})),e.once("end",(function(){t({status:n||0,data:o})}))}));d.once("timeout",(function(){e.warn(G.P_HTTP_REQ_E,JSON.stringify({msg:"timeout",url:o,method:c,query:u,timeout:l})),t({status:0})})),d.setTimeout(l),d.once("error",(function(n){e.warn(G.P_HTTP_REQ_E,JSON.stringify({msg:n.stack,url:o,method:c,query:u,timeout:l})),t({status:0})})),d.write(s),d.end()}))}var ne,oe=[],re=!1,se=function(){return V(void 0,void 0,void 0,(function(){var e,t,n,o,r,s,i,a,c;return K(this,(function(u){return re||0===oe.length||(re=!0,e=oe.shift(),t=e.args,n=e.resolve,o=t.addon,r=t.startTime,s=t.endTime,i=t.level,a=t.realtimeReport,c=[],o.setLogEventListener((function(e){var t=e.split(","),n=t[0],o=t[1],r=t[2],s=t[3],u=t[4],p=t.slice(5);try{var l=JSON.parse(decodeURIComponent(p.join(","))),d=l.loggerId,f=l.sessionId,h=l.content,_=l.traceId;if(!a&&i<0)return;var v={time:parseInt(o,10),level:parseInt(s,10),sessionId:"".concat(n,":").concat(f),type:r,tag:u,loggerId:d,content:h,traceId:_};c.push(v)}catch(e){console.error(e)}}),(function(e){n(c),re=!1,se()}),(function(e,t,n){})),o.pullFullLog(i,r,s,!1)),[2]}))}))},ie=function(e){function t(t,n,o,r,s){var i=this,a=process.versions.electron,u="Electron|".concat(a,"|").concat(process.arch,"|").concat(process.platform);return i=e.call(this,n,o,u,{getLogs:function(e,n,o,r){return V(this,void 0,void 0,(function(){return K(this,(function(s){switch(s.label){case 0:return[4,(i={startTime:e,endTime:n,level:o,realtimeReport:r,addon:t},V(void 0,void 0,void 0,(function(){return K(this,(function(e){return[2,new Promise((function(e){oe.push({resolve:e,args:i}),se()}))]}))})))];case 1:return[2,{logs:s.sent(),dbReady:!0}]}var i}))}))},getTimestamp4RealtimeLog:function(){var e=t.getStoreValue(c.REALTIME_LOG_TIMESTAMP);return parseInt(e,10)||0},setTimestamp4RealtimeLog:function(e){t.setStoreValue(c.REALTIME_LOG_TIMESTAMP,e.toString())}},r)||this,i.subProcess=s,i}return j(t,e),t.prototype.send=function(e){return te(this.logger,e)},t.prototype.compressLogs=function(e){return V(this,void 0,void 0,(function(){var t,n,o;return K(this,(function(r){switch(r.label){case 0:return[4,this.subProcess.call("compressLogs",e)];case 1:return t=r.sent(),n=t.success,o=t.data,n?[2,{success:n,data:o}]:[2,{success:n,data:""}]}}))}))},t}(u),ae=null,ce=function(){var e,o=Date.now(),r=[n(),t(),process.pid,o,Math.floor(Math.random()*o)].join("__");return e=r,D("md5").update(e).digest("hex")},ue=function(e){if(ae)return ae;var t=o(e,"deviceId");return M(t)?ae=U(t).toString():(ae=ce(),b(t,ae),ae)},pe=function(){function e(e,t){this._hasPingRes=e,this._reconnect=t,this._timerId=0,this._isFirstPing=!0,this._lossCount=0}return e.init=function(t,n){return ne?(ne.stop(),ne):ne=new e(t,n)},e.prototype.start=function(e){var t=this,n=this._isFirstPing?0:15e3;this._timerId=setTimeout((function(){return t._isFirstPing=!1,t._hasPingRes?(e(),t._hasPingRes=!1,t.start(e)):t._lossCount<4?(t._lossCount++,e(),t.start(e)):void t._reconnect()}),n)},e.prototype.stop=function(){this._lossCount=0,clearTimeout(this._timerId)},e.prototype.setHeartbeatRes=function(){this._hasPingRes=!0,this._lossCount=0},e}(),le=function(){function e(e){this._cppProto=e,this._setTime=15962112e5}return e.prototype._setToProtocol=function(e,t,n,o,r,s){var i=JSON.stringify(r);"{}"!==i&&e.info(G.P_SET_MSG_EXTEN_O,JSON.stringify({messageUId:o,ext:r})),this._cppProto.setMessageExtension(t,n,o,i,s)},e.prototype.setLocalFromReceiveMsg=function(e,t){var n=t.channelId,o=t.conversationType,r=t.targetId,s=t.messageUId,i=t.expansion,a=t.sentTime,c={};for(var u in i)c[u]={v:"",ts:0},c[u].v=i[u],c[u].ts=a;this._setToProtocol(e,o,r,s,c,n||"")},e.prototype.setLocalFromExtMsg=function(e,t){var n=t.channelId,o=t.conversationType,r=t.targetId;t.messageUId;var s=t.content,i=t.sentTime,a=s,c=a.put,u=this._cppProto.getMessage(a.mid),p=JSON.parse(u).extMsg,l=JSON.parse(p||"{}");if(c)for(var d in c){var f=l[d];f&&f.ts<i-this._setTime?(f.v=c[d],f.ts=i-this._setTime):(l[d]={v:"",ts:0},l[d].v=c[d],l[d].ts=i-this._setTime)}a.del&&a.del.forEach((function(e){delete l[e]})),this._setToProtocol(e,o,r,a.mid,l,n||"")},e.prototype.parseReceiveExpansion=function(e){var t=JSON.parse(e.extMsg||"{}"),n={};for(var o in t)n[o]=t[o].v;return n},e.prototype.parseConverOrHisExpansion=function(e){var t=JSON.parse(e.extMsg),n=JSON.parse(t||"{}"),o={};for(var r in n)o[r]=n[r].v;return o},e}(),de=null;function fe(e,t,n,o,r){return void 0===r&&(r=!0),V(this,void 0,void 0,(function(){var s;return K(this,(function(i){switch(i.label){case 0:return de?[2,de]:(de=function(e,t,n,o,r){return void 0===r&&(r=!0),V(this,void 0,void 0,(function(){var s,i,a,c,u,l,d;return K(this,(function(f){switch(f.label){case 0:s="token=".concat(encodeURIComponent(o),"&v=").concat((h="5.6.2-beem.5",h.match(/\d+(\.\d+){2}/)[0]),"&p=PC&ev=").concat("5.6.2-beem.5"),i=0,a=t.length,f.label=1;case 1:return i<a?(c="".concat(t[i],"/navi.json?r=").concat(Date.now()),e.info(p.O,"request navi -> url: ".concat(c,", body: ").concat(s)),[4,te(e,{method:"POST",headers:{appId:n},body:s,url:c},r)]):[3,4];case 2:if(200!==(u=f.sent()).status)return e.error("request navi failed -> ".concat(c)),u.data&&e.error(u.data),[3,3];e.info(p.O,"request navi success -> ".concat(c));try{return l=JSON.parse(u.data),d=/^https/.test(c)?"https":"http",l.protocol=d,[2,l]}catch(t){e.error("parse navi err => ".concat(u.data))}f.label=3;case 3:return i+=1,[3,1];case 4:return[2,null]}var h}))}))}(e,t,n,o,r),[4,de]);case 1:return s=i.sent(),de=null,[2,s]}}))}))}var he,_e=function(){function e(e){var t=this;this.p=e,this.count=0,this.maps={},this.p.on("message",(function(e){var n=e.reqId,o=e.success,r=e.data,s=t.maps[n];s&&(s({success:o,data:r}),delete t.maps[n])}))}return e.prototype.call=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];return V(this,void 0,void 0,(function(){var n=this;return K(this,(function(o){return this.p.killed?[2,{success:!1}]:[2,new Promise((function(o){var r=++n.count;n.maps[r]=o;var s={reqId:r,method:e,args:t};n.p.send(s)}))]}))}))},e.prototype.destroy=function(){this.p.kill()},e}(),ve=function(e){if(!M(e)){var t=o(e,"..");M(t)||ve(t),L(e)}},ge=function(){function t(e,t,n,s){var i=this;this._appkey=e,this._cppProtocol=t,this._dbpath=n,this._reconnectKickEnable=s,this._currentToken="",this._connectionStatus=l.DISCONNECTED,this._promiseHandler={},this._customMessageType={},this._connectedTime=0,this._currentUserId="",this._naviInfo=null,this._version="5.6.2-beem.5",this._senders={},this.rtcHeartbeatResolves={};var a=this._dbpath||o(N.getPath("userData")),c=ue(a);this._cppProtocol.initWithAppkey(e,a,this._version.replace(/-.*/,""));var u=R(o(__dirname,"sub-process.js"));this.subProxy=new _e(u);var p=o(a,"RongCloud/rclogs",e);ve(p),function(e,t,n){n.initLogModule(t,e,r())}(e,p,this._cppProtocol),this.logger=new ee(this._appkey,"RC-M","IM"),z(this._cppProtocol,this.logger),this.reporter=new ie(this._cppProtocol,e,c,this.logger,this.subProxy),this.logger.info(G.P_INIT_O,JSON.stringify({appkey:e,dbpath:a,proto_commit:this._cppProtocol.getNodeVersion(),deviceId:c,commit:"acfb93dd08074e190a4520db1f691d5d0d5847ba"})),this._callCppProxy("setDeviceId",c),this._registerMsgTypes(),this._setConnectionStatusListener(),this._setOnReceiveMessageListener(),this._setConversationStatusListener(),this._setUserProfileListener(),this._setRTCHeartbeatListener(),this._setRTCLivingRoomEventListener(),this._setChatroomEventListener(),this._setCallInfoListener(),O.on("__RC_CHANNEL_CALL_MAIN_SYNC__",(function(e,t){for(var n=[],o=2;o<arguments.length;o++)n[o-2]=arguments[o];return V(i,void 0,void 0,(function(){var o,r,s;return K(this,(function(i){switch(i.label){case 0:if("function"!=typeof(o=this[t]))return this.logger.error(G.P_CALL_MAIN_SYNC_E,JSON.stringify({method:t,error:"not found"})),e.returnValue=d.NOT_SUPPORT,[2];r=d.EXTRA_METHOD_UNDEFINED,i.label=1;case 1:return i.trys.push([1,3,,4]),[4,o.call.apply(o,W([this],n,!1))];case 2:return r=i.sent(),[3,4];case 3:return s=i.sent(),this.logger.error(G.P_CALL_MAIN_SYNC_E,JSON.stringify({error:null==s?void 0:s.stack,method:t})),[3,4];case 4:return e.returnValue=r,[2]}}))}))})),O.on("__RC_CHANNEL_CALL_MAIN__",(function(e,t,n){for(var o=[],r=3;r<arguments.length;r++)o[r-3]=arguments[r];return V(i,void 0,void 0,(function(){var r,s,i,a,c=this;return K(this,(function(u){switch(u.label){case 0:if("function"!=typeof(r=this[n]))return this.logger.error(G.P_CALL_MAIN_E,JSON.stringify({method:n,error:"not found"})),this._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",t,d.NOT_SUPPORT),[2];"sendMessage"===n&&(s=o[3],o[3]=function(t){c._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",s,t)}),i=d.EXTRA_METHOD_UNDEFINED,u.label=1;case 1:return u.trys.push([1,3,,4]),[4,r.call.apply(r,W([this],o,!1))];case 2:return i=u.sent(),[3,4];case 3:return a=u.sent(),this.logger.error(G.P_CALL_MAIN_E,JSON.stringify({error:null==a?void 0:a.stack,method:n})),[3,4];case 4:return this._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",t,i),[2]}}))}))})),O.on("__RC_CHANNEL_SEND_2_MAIN__",(function(e,t){for(var n=[],o=2;o<arguments.length;o++)n[o-2]=arguments[o];var r=i[t];if("function"==typeof r)try{r.call.apply(r,W([i],n,!1))}catch(e){i.logger.error(G.P_SEND_2_MAIN_E,JSON.stringify({error:null==e?void 0:e.stack,method:t}))}else i.logger.error(G.P_SEND_2_MAIN_E,JSON.stringify({method:t,error:"not found"}))})),O.on("__RC_INNER_COMMAND_INIT__",this._registerRenderers.bind(this)),this._msgExpansionHandler=new le(this._cppProtocol)}return t.prototype._callCppProxy=function(e){for(var t,n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];var r=this.logger.createTraceId();try{var s=(t=this._cppProtocol)[e].apply(t,n);return s}catch(t){this.logger.error(G.P_CALL_ADDON_E,JSON.stringify({stack:null==t?void 0:t.stack,method:e}),r)}},t.prototype.sendHTTPRequest=function(e){return te(this.logger,e)},t.prototype.onRendererLogsReceived=function(e){$.apply(void 0,e)},t.prototype.destroy=function(){this.reporter.stop(),this.subProxy.destroy(),function(e){Q(),e.deinitLogModule()}(this._cppProtocol),this._cppProtocol.destroy()},t.prototype.callExtra=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];var o=this[e];if(!o)return this.logger.warn(G.P_CALL_EXTRA_E,JSON.stringify({method:e,error:"not found"})),Promise.resolve({code:d.EXTRA_METHOD_UNDEFINED});try{var r=o.call.apply(o,W([this],t,!1));return r}catch(t){this.logger.error(G.P_CALL_EXTRA_E,JSON.stringify({error:null==t?void 0:t.stack,method:e}))}return Promise.resolve({code:d.MAIN_PROCESS_ERROR})},t.prototype.getConversationsByPage=function(e,t,n,o){var r,s=this,i=this._callCppProxy("getConversationListByPage",e,t,n,o||"");try{r=JSON.parse(i).list.map((function(e){return s._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:d.MAIN_PROCESS_ERROR})}return Promise.resolve({code:d.SUCCESS,data:r})},t.prototype.getConversationListWithAllChannel=function(){var e,t=this,n=[f.PRIVATE,f.GROUP],o=this._callCppProxy("getConversationListWithAllChannel",n);try{e=JSON.parse(o).list.map((function(e){return t._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:d.MAIN_PROCESS_ERROR})}return Promise.resolve({code:d.SUCCESS,data:e})},t.prototype.getConversationListWithAllChannelByPage=function(e,t){var n,o=this,r=[f.PRIVATE,f.GROUP],s=this._callCppProxy("getConversationListWithAllChannelByPage",r,e,t);try{n=JSON.parse(s).list.map((function(e){return o._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:d.MAIN_PROCESS_ERROR})}return Promise.resolve({code:d.SUCCESS,data:n})},t.prototype.getHistoryMessagesByObjectNames=function(e,t,n,o,r,s,i){var a=0===s,c=o+1,u=this._callCppProxy("getHistoryMessagesByObjectNames",e,t,n,c,r,a,i||""),p=[];try{var l=JSON.parse(u).list;l.reverse();for(var f=0;f<l.length;f++){var h=this._buildMessage(l[f].obj);p[f]=h}}catch(e){return Promise.resolve({code:d.MAIN_PROCESS_ERROR})}return Promise.resolve({code:d.SUCCESS,data:{list:c===p.length?p.slice(1,c):p,hasMore:o<p.length}})},t.prototype.updateMessageReceiptStatus=function(e,t,n,o){void 0===o&&(o="");var r=this._callCppProxy("updateMessageReceiptStatus",e,t,n,o);return Promise.resolve({code:d.SUCCESS,data:r})},t.prototype.requestNaviInfo=function(e,t,n,o){return V(this,void 0,void 0,(function(){var r;return K(this,(function(s){switch(s.label){case 0:return[4,fe(this.logger,e,t,n,o)];case 1:return(r=s.sent())&&(this._naviInfo=r),[2,r]}}))}))},t.prototype.getNaviInfoFromCache=function(){return this._naviInfo?q({},this._naviInfo):null},t.prototype.createLogger=function(e,t){return/^RC/.test(e)?null:new ee(this._appkey,e,t)},t.prototype.getConnectedTime=function(){return this._connectedTime},t.prototype.getServerTime=function(){return Date.now()-this._cppProtocol.getDeltaTime()},t.prototype.getCurrentUserId=function(){var e;return(null===(e=this._naviInfo)||void 0===e?void 0:e.userId)||""},t.prototype._send2Renderer=function(e,t){for(var n=[],o=2;o<arguments.length;o++)n[o-2]=arguments[o];e.isDestroyed()?delete this._senders[e.id]:e.send.apply(e,W([t],n,!1))},t.prototype._send2AllRenderer=function(e,t,n){var o=this;void 0===n&&(n=[]),Object.keys(this._senders).forEach((function(r){var s=o._senders[r];n.includes(s)||o._send2Renderer(s,"__RC_CHANNEL_NOTIFICATION_FROM_MAIN__",e,t)}))},t.prototype._registerRenderers=function(e){var t=this,n=e.sender,o=n.id;this._senders[o]||(this._senders[o]=n,n.once("destroyed",(function(){delete t._senders[o]})))},t.prototype._registerMsgTypes=function(){for(var e in h["RC:RcCmd"]={isCounted:!1,isPersited:!1},h){var t=h[e],n=t.isCounted,o=t.isPersited,r=t.searchProps,s=0;o&&(s|=1),n&&(s|=2),"RC:TypSts"===e&&(s=16),this._callCppProxy("registerMessageType",e,s,r)}},t.prototype._buildMessage=function(e,t){void 0===t&&(t={});var n=t.isOffLineMessage,o=t.buildFrom,r=JSON.parse(e),s=r.channelId,i=r.conversationType,a=r.targetId,c=r.senderUserId,u=r.content,p=r.objectName,l=r.messageUid,d=r.direction,f=r.status;r.source;var S=r.messageId,y=r.sentTime,m=r.readReceiptRequest,P=r.supportExt;r.extMsg;var E,I=r.pushContent,T=r.pushTitle,R=r.pushId,N=r.pushConfig,O=r.templateId,M=r.disableTitle,U=r.forcePushDetail;if(_(u))E=u;else try{E=u?JSON.parse(u):u}catch(e){E=u,this.logger.error(G.P_PARSE_JSON_MSGS_E,JSON.stringify({messageId:S}))}var b={isCounted:!1,isPersited:!1};p in h?b=h[p]:p in this._customMessageType&&(b=this._customMessageType[p]);var L=null;P&&(L=this._msgExpansionHandler.parseReceiveExpansion(r),"conversation"!==o&&"history"!==o||(L=this._msgExpansionHandler.parseConverOrHisExpansion(r)));var w=v(n)?y<this._connectedTime:n,x={};N&&(x=g(this.logger,N,R));var A=q(q({},x),{pushTitle:T,pushContent:I,pushData:I,disablePushTitle:M,forceShowDetailContent:U,templateId:O}),D={channelId:s,conversationType:i,targetId:a,senderUserId:c,content:E||{},messageType:p,messageUId:l||"",messageDirection:d,isOffLineMessage:w,sentTime:y,receivedTime:0,isPersited:b.isPersited,isCounted:b.isCounted,isMentioned:!1,disableNotification:!1,isStatusMessage:!1,canIncludeExpansion:P,expansion:P?L:null,receivedStatus:f,messageId:S,pushConfig:A};if(d===C.RECEIVE?D.receivedStatus=f:d===C.SEND&&(D.sentStatus=f),m){var J=JSON.parse(m),k=J.hasRespond,H=J.readerInfo,B={hasRespond:k,readCount:J.readCount,totalCount:J.totalCount},F=[];if(H)for(var j in H)F.push({userId:j,readTime:H[j]});B.readerList=F,D.readReceiptInfo=B}return D},t.prototype._updateReadReceiptInfo=function(e,t){var n=this._callCppProxy("getMessage",e),o=JSON.parse(n),r=o.readReceiptRequest?JSON.parse(o.readReceiptRequest):{},s=q(q({},r),t);this._callCppProxy("updateReadReceiptRequestInfo",e,JSON.stringify(s))},t.prototype._buildConversation=function(e){var t=JSON.parse(e),n=t.channelId,o=t.conversationType,r=t.targetId,s=t.unreadCount,i=t.lastestMsg,a=t.isTop,c=t.isBlocked,u=t.matchCount,p=c?S.OPEN:S.CLOSE;return{channelId:n,conversationType:o,targetId:r,unreadMessageCount:s,latestMessage:-1===JSON.parse(i).messageId?null:this._buildMessage(i),hasMentioned:!1,mentionedInfo:null,notificationStatus:p,isTop:a,lastUnreadTime:0,matchCount:u}},t.prototype._sendConnectionStatus2Renderer=function(e){this._send2AllRenderer("status",e)},t.prototype._convertResultList=function(e,t){var n=JSON.parse(e).list;return n=n.map((function(e){var n=JSON.parse(e.obj);return t?t(n):n}))},t.prototype._connectResolve=function(e){this._promiseHandler.connect&&this._promiseHandler.connect.length>0&&(this._promiseHandler.connect.forEach((function(t){t.resolve(e)})),delete this._promiseHandler.connect)},t.prototype._setConnectionStatusListener=function(){var e=this;this._cppProtocol.setConnectionStatusListener((function(t){var n,o;switch(e.logger.info(G.P_CONNECT_S,t),t){case 10:o=l.CONNECTING;break;case 31004:return void setTimeout((function(){e._connectResolve(d.RC_CONN_USER_OR_PASSWD_ERROR)}));case 12:o=l.DISCONNECTED;break;case 13:o=l.BLOCKED,setTimeout((function(){e._connectResolve(d.RC_CONN_USER_BLOCKED)}));break;case 31023:o=l.FORBID_RECONNECT_BY_OTHER_SAME_CLIENT,setTimeout((function(){e._connectResolve(d.RC_DISCONN_SAME_CLIENT_ON_LINE)}));break;case 31029:o=l.USER_LOGOUT;break;case 1:case 9:case 11:case 31011:case 3e4:case 30002:o=l.NETWORK_UNAVAILABLE;break;case 30010:o=l.NETWORK_UNAVAILABLE,setTimeout((function(){e._connectionStatus===l.NETWORK_UNAVAILABLE&&e._doConnect()}),5e3);break;case 0:case 33005:e.reporter.checkStart(e._naviInfo),o=l.CONNECTED,e._connectedTime=Date.now()-e._cppProtocol.getDeltaTime(),setTimeout((function(){e._connectResolve(d.SUCCESS),e._heartbeat=pe.init(!0,e._handleHeartTimeout.bind(e)),e._heartbeat.start(e._sendHeartbeat.bind(e))}));break;case l.KICKED_OFFLINE_BY_OTHER_CLIENT:o=l.KICKED_OFFLINE_BY_OTHER_CLIENT;break;case 31030:o=l.RC_LICENSE_EXPIRED,setTimeout((function(){e._connectResolve(d.RC_LICENSE_EXPIRED)}));break;case 30004:return;case 8:case 31006:case 32061:case 32012:o=l.REDIRECT;break;default:o=t}o!==l.CONNECTED&&(null===(n=e._heartbeat)||void 0===n||n.stop()),e._connectionStatus=o,e._sendConnectionStatus2Renderer(o)}),this._dbOpenCallback.bind(this),(function(){var t;null===(t=e._heartbeat)||void 0===t||t.setHeartbeatRes()}))},t.prototype._handleHeartTimeout=function(){var e,t=this;this._sendConnectionStatus2Renderer(l.NETWORK_UNAVAILABLE),null===(e=this._heartbeat)||void 0===e||e.stop(),setTimeout((function(){return t._doConnect()}),5e3)},t.prototype._dbOpenCallback=function(e){this.logger.info(G.P_DB_OPEN_O,e)},t.prototype._sendHeartbeat=function(){this._cppProtocol.sendHeartbeat()},t.prototype._setOnReceiveMessageListener=function(){var e=this;this._cppProtocol.setOnReceiveMessageListener((function(t,n,o,r){var s,i=e._buildMessage(t,{isOffLineMessage:o}),a=i.messageType;if(a!==y.LOG_COMMAND||"rongcloudsystem"!==i.senderUserId){if(a===y.GROUP_READ_RECEIPT_REQUEST){var c=i.content,u=c.msgId,p=c.rrn,l=c.tmn;e._updateReadReceiptInfo(u,{readCount:p,totalCount:l})}if("RC:MsgExMsg"===a)return e._msgExpansionHandler.setLocalFromExtMsg(e.logger,i),void e._sendMessageExpansion(i);if(i.canIncludeExpansion&&e._msgExpansionHandler.setLocalFromReceiveMsg(e.logger,i),a===y.SYNC_READ_STATUS){if(i.senderUserId!==e._currentUserId)return;e._callCppProxy("clearUnreadCountByTimestamp",i.conversationType,i.targetId,i.content.lastMessageSendTime,i.channelId||"")}var d=!0;if(0!==n||r||(d=!1),a!==y.LOG_COMMAND||"rongcloudsystem"!==i.senderUserId){if(a===y.DELIVERED)return e._callCppProxy("setMessageDeliverTime",JSON.stringify(i.content)),void e._sendMessageDelivered(i.content.map((function(e){return{deliverTime:e.time,messageUId:e.messageUId,objectName:e.objectName,targetId:e.targetId}})));if(a!==y.DELIVERED_MSG){var f=i.conversationType,h=i.targetId;a===y.RECALL&&i.senderUserId===e._currentUserId&&(f=i.content.conversationType||f,h=i.content.targetId||h),e._sendMessageNotification(Object.assign(i,{hasMoreMsg:d,conversationType:f,targetId:h}))}else{var _={totalCount:i.content.tmn,list:null===(s=i.content.dl)||void 0===s?void 0:s.map((function(e){return{MessageUId:e.msgId,deliveryCount:e.drn}}))};e._sendGroupMessageDeliveredStatus(_)}}else{var v=Object.keys(e._senders).map((function(t){return e._senders[t]}));v.length>0&&e._sendMessageNotification(Object.assign(i,{hasMoreMsg:d}),v.slice(1))}}else{var g=i.content,C=g.startTime,S=g.endTime,m=g.platform,P=g.logId,E=g.uri;e.reporter.report(parseInt(C,10),parseInt(S,10),m,E,P,i.messageUId)}}),(function(){e._sendPullOfflineFinished()}))},t.prototype._sendMessageExpansion=function(e,t){void 0===t&&(t=[]);var n=e.channelId,o=e.content,r=o.put,s=o.del,i=o.mid,a={};r&&(a.updatedExpansion={channelId:n,messageUId:i,expansion:r}),s&&(a.deletedExpansion={channelId:n,messageUId:i,deletedKeys:s}),this._send2AllRenderer("expansion",a,t)},t.prototype._sendMessageNotification=function(e,t){void 0===t&&(t=[]),this._send2AllRenderer("batchMessage",e,t)},t.prototype._sendPullOfflineFinished=function(){this._send2AllRenderer("pullFinished",null)},t.prototype._sendMessageDelivered=function(e){this._send2AllRenderer("messageDelivered",e)},t.prototype._sendGroupMessageDeliveredStatus=function(e){this._send2AllRenderer("groupMessageDeliveredStatus",e)},t.prototype._setConversationStatusListener=function(){var e=this;this._cppProtocol.setConversationStatusListener((function(t){var n=JSON.parse(t).list,o=[];n.forEach((function(e){var t=JSON.parse(e.obj),n=t.conversationType,r=t.targetId,s=t.status,i=t.channelId,a={notificationStatus:2,isTop:!1};s.forEach((function(e){var t=JSON.parse(e.item);1===t.type?a.notificationStatus=1===Number(t.value)?S.OPEN:S.CLOSE:a.isTop=1===Number(t.value)})),o.push({channelId:i,conversationType:n,targetId:r,updatedItems:{notificationStatus:{val:a.notificationStatus,time:0},isTop:{val:a.isTop,time:0}}})})),e._send2AllRenderer("conversation",o)}),(function(t){e._send2AllRenderer("conversationTag",t)}))},t.prototype._setUserProfileListener=function(){var e=this;this._cppProtocol.setUserProfileListener((function(){}),(function(t){e._send2AllRenderer("tag",t),e._getRTCProfile()}))},t.prototype._getRTCProfile=function(){var e=this._callCppProxy("getRTCProfile");if(e&&this._naviInfo&&this._naviInfo.voipCallInfo!==e){var t=q(q({},this._naviInfo),{voipCallInfo:e});this._naviInfo=t,this._send2AllRenderer("onNaviDataChange",t)}},t.prototype._setRTCLivingRoomEventListener=function(){var e=this;this._cppProtocol.setRTCRoomEventListener((function(t){var n=new Uint8Array(t).buffer;e._send2AllRenderer("onRTCDataChange",n)}))},t.prototype._setChatroomEventListener=function(){var e=this;this._cppProtocol.setChatroomEventListener((function(t,n){e._send2AllRenderer("chatroom",{chatroomDestroyed:t})}))},t.prototype._setCallInfoListener=function(){var e=this;this._cppProtocol.setCallInfoListener((function(t){e._send2AllRenderer("callInfo",t)}))},t.prototype._clearListener=function(){this._cppProtocol.setOnReceiveMessageListener(),this._cppProtocol.setConnectionStatusListener(),this._cppProtocol.setOnReceiveStatusListener(),this._cppProtocol.setUserProfileListener()},t.prototype.registerMessageType=function(e,t,n,o){var r=0;t&&(r|=1),n&&(r|=2),this._customMessageType[e]={isCounted:n,isPersited:t},this.logger.info(G.P_REGTYP_O,JSON.stringify({type:e,opt:r,search:o})),this._callCppProxy("registerMessageType",e,r,o)},t.prototype.connect=function(e,t,n,o){var r=this;return this.logger.info(G.P_CONNECT_O,JSON.stringify({reconnectKickEnable:n,version:this._version}),o),this._currentToken===e&&this._connectionStatus===l.CONNECTED?(this._sendConnectionStatus2Renderer(this._connectionStatus),Promise.resolve(d.SUCCESS)):(this._currentToken=e,this._naviInfo=t,this._currentUserId=t.userId,this._promiseHandler.connect||this._doConnect(n),new Promise((function(e,t){r._promiseHandler.connect?r._promiseHandler.connect.push({resolve:e,reject:t}):r._promiseHandler.connect=[{resolve:e,reject:t}]})))},t.prototype._doConnect=function(e){var t=v(e)?!!this._reconnectKickEnable:!!e;this._callCppProxy("connectWithToken",this._currentToken,this._version,JSON.stringify(this._naviInfo),t)},t.prototype.reportSDKInfo=function(e){var t,n,o=JSON.stringify(q(q({},e),{"electron-main":"5.6.2-beem.5"}));this.logger.info(G.P_REPORT_VER_O,o),null===(n=(t=this._cppProtocol).uploadSDKVersion)||void 0===n||n.call(t,o)},t.prototype.disconnect=function(){var e;this.reporter.stop(),this._cppProtocol.disconnect(!0),null===(e=this._heartbeat)||void 0===e||e.stop(),this._connectResolve(d.TIMEOUT)},t.prototype.logout=function(){this.disconnect()},t.prototype.setUserStatusListener=function(e,t){this._cppProtocol.setOnReceiveStatusListener((function(e,n){t({userId:e,status:n})}));var n=e.userIds||[];n.length&&this.subscribeUserStatus(n)},t.prototype.subscribeUserStatus=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("subscribeUserStatus",e,(function(){n(d.SUCCESS)}),n)}))},t.prototype.setUserStatus=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("setUserStatus",e,(function(){n(d.SUCCESS)}),n)}))},t.prototype.getUserStatus=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("getUserStatus",e,(function(e){n({code:d.SUCCESS,data:{status:e}})}),(function(e){n({code:e})}))}))},t.prototype.sendMessage=function(e,t,n,o,r){var s=this;void 0===r&&(r=this.logger.createTraceId());var i=n.messageType,a=n.content,c=n.pushContent,u=n.pushData,p=n.directionalUserIdList,l=n.disableNotification,h=n.canIncludeExpansion,_=n.expansion,v=n.isVoipPush,g=n.pushConfig,C=n.channelId,S=n.isMentioned,E=n.mentionedType,I=n.mentionedUserIdList,T=n.messageId,R=g||{},N=R.iOSConfig,O=R.androidConfig,M=R.pushTitle,U=R.pushContent,b=R.pushData,L=R.disablePushTitle,w=R.forceShowDetailContent,x=R.templateId,A=m(N,O);return new Promise((function(n){c=U||c||"",u=b||u||"",l=l||!1,v=v||!1,M=M||"",U=U||"",b=b||"",L=L||!1,w=w||!1,h=h||!1;var g=(null==O?void 0:O.notificationId)||"";if(p=p||[],T=T||0,C=C||"",e===f.GROUP&&S&&a&&(a.mentionedInfo={userIdList:I,type:E||P.ALL}),e===f.GROUP&&i===y.READ_RECEIPT_RESPONSE&&a.receiptMessageDic)for(var m in a.receiptMessageDic)p.push(m);var R={};for(var m in _)R[m]={v:""},R[m].v=_[m];var N=x||"";s.logger.info(G.P_SEND_MSG_T,JSON.stringify({messageType:i,conversationType:e,targetId:t,channelId:C}),r);var D=s._callCppProxy("sendMessage",(function(e,t){var o=s._buildMessage(e,{isOffLineMessage:!1});return s.logger.info(G.P_SEND_MSG_R,JSON.stringify({code:t,messageUId:o.messageUId}),r),t===d.SENSITIVE_REPLACE?n({code:t}):("RC:MsgExMsg"===o.messageType&&s._msgExpansionHandler.setLocalFromExtMsg(s.logger,o),o.canIncludeExpansion&&s._msgExpansionHandler.setLocalFromReceiveMsg(s.logger,o),n({code:d.SUCCESS,data:o}))}),(function(e,t){var o=s._buildMessage(e,{isOffLineMessage:!1});return s.logger.warn(G.P_SEND_MSG_R,JSON.stringify({code:t,messageId:o.messageId}),r),o.sentTime=Date.now()-s._cppProtocol.getDeltaTime(),n({code:t,data:o})}),e,t,i,JSON.stringify(a),p,l,L,w,c,u,g,M,A,N,h,JSON.stringify(R),v,C,T),J=JSON.parse(D);null==o||o(J.messageId)}))},t.prototype.recallMsg=function(e,t,n,o,r){var s=this;return new Promise((function(i,a){var c,u=r.user,p=r.pushContent,l=r.channelId,f=r.extra,h=r.pushConfig,_=r.disableNotification,v=r.isDelete,g={conversationType:e,targetId:t,messageUId:n,sentTime:o,user:u,extra:f,channelId:l,isDelete:v||!1};u&&(g.user=u),f&&(g.extra=f);var S={conversationType:e,targetId:t,senderUserId:s._currentUserId,content:g,objectName:y.RECALL,messageUid:n,direction:C.SEND,status:E.UNREAD,sentTime:o,channelId:l},P=s._buildMessage(JSON.stringify(S),{isOffLineMessage:!1});s._callCppProxy("recallMessage",(function(){i({code:d.SUCCESS,data:P})}),(function(e){i({code:e})}),y.RECALL,JSON.stringify(g),_||!1,(null==h?void 0:h.disablePushTitle)||!1,(null==h?void 0:h.forceShowDetailContent)||!1,p||"",(null==h?void 0:h.pushData)||"",(null===(c=null==h?void 0:h.androidConfig)||void 0===c?void 0:c.notificationId)||"",(null==h?void 0:h.pushTitle)||"",m(null==h?void 0:h.iOSConfig,null==h?void 0:h.androidConfig),(null==h?void 0:h.templateId)||"",l)}))},t.prototype.getHistoryMessage=function(e,t,n,o,r,s,i){var a=this;return new Promise((function(c,u){n=n||0;var p=0===r,l=o+1,f=a._callCppProxy("getHistoryMessages",e,t,n,l,i,p,s),h=JSON.parse(f).list,_=[];h.reverse();for(var v=0;v<h.length;v++){var g=a._buildMessage(h[v].obj);_[v]=g}c({code:d.SUCCESS,data:{list:l===_.length?_.slice(1,l):_,hasMore:o<_.length}})}))},t.prototype.getRemoteHistoryMessages=function(e,t,n,o,r,s){var i=this;return new Promise((function(a,c){n=n||0;i._callCppProxy("getRemoteHistoryMessages",e,t,n,o,(function(e,t){var n=JSON.parse(e).list,o=[];n.reverse();for(var r=0;r<n.length;r++){var s=i._buildMessage(n[r].obj);o[r]=s}a({code:d.SUCCESS,data:{list:o,hasMore:!!t}})}),(function(e){a({code:e})}),r,!0,s)}))},t.prototype.deleteRemoteMessage=function(e,t,n,o){var r=this;return new Promise((function(s,i){var a=JSON.stringify(n);r._callCppProxy("deleteRemoteHistoryMessages",e,t,a,!1,o,(function(){s(d.SUCCESS)}),s)}))},t.prototype.deleteRemoteMessageByTimestamp=function(e,t,n,o){var r=this;return new Promise((function(s,i){r._callCppProxy("clearRemoteHistoryMessages",e,t,n,(function(){s(d.SUCCESS)}),(function(e){s(e)}),o)}))},t.prototype.clearMessages=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("clearMessages",e,t,n),r(d.SUCCESS)}))},t.prototype.getConversationList=function(e,t,n,o,r){var s=this;return void 0===r&&(r=""),new Promise((function(e,t){for(var n=s._callCppProxy("getConversationList",[1,3,6,7],r),o=JSON.parse(n).list,i=[],a=0;a<o.length;a++)i.push(s._buildConversation(o[a].obj));e({code:d.SUCCESS,data:i})}))},t.prototype.getConversation=function(e,t,n){var o=this;return new Promise((function(r,s){var i=o._callCppProxy("getConversation",e,t,n);if(i)r({code:d.SUCCESS,data:o._buildConversation(i)});else{var a=o._cppProtocol.getHistoryMessages(e,t,0,1,"",!0,n),c=void 0;try{c=JSON.parse(a).list}catch(e){o.logger.error(G.P_PARSE_JSON_MSGS_E,null==e?void 0:e.stack),c=[]}var u=null;c.length>0&&(u=o._buildMessage(c[0].obj));var p=o._callCppProxy("getConversationNotificationStatus",e,t,n),l=o._callCppProxy("getConversationTopStatus",e,t,n);r({code:d.SUCCESS,data:{conversationType:e,targetId:t,channelId:n,unreadMessageCount:0,latestMessage:u,notificationStatus:p?S.OPEN:S.CLOSE,isTop:Boolean(l),lastUnreadTime:0}})}}))},t.prototype.removeConversation=function(e,t,n){var o=this._callCppProxy("removeConversation",e,t,n);return Promise.resolve(o?d.SUCCESS:d.UNKNOWN)},t.prototype.clearConversations=function(e,t){var n=this;return new Promise((function(o,r){var s=[];s=I(e)?e:[f.PRIVATE,f.GROUP,f.SYSTEM,f.PUBLIC_SERVICE],n._callCppProxy("clearConversations",s,t),o(d.SUCCESS)}))},t.prototype.getAllConversationUnreadCount=function(e,t,n){var o=this._callCppProxy("getTotalUnreadCount",t,n,e);return Promise.resolve({code:d.SUCCESS,data:o})},t.prototype.getConversationUnreadCount=function(e,t,n){var o=this;return void 0===n&&(n=""),new Promise((function(r){var s=o._callCppProxy("getUnreadCount",e,t,n);r({code:d.SUCCESS,data:s})}))},t.prototype.clearConversationUnreadCount=function(e,t,n){var o=this;return void 0===n&&(n=""),new Promise((function(r,s){o._callCppProxy("clearUnreadCount",e,t,n),r(d.SUCCESS)}))},t.prototype.clearUnreadCountByTimestamp=function(e,t,n,o){var r=this;return new Promise((function(s,i){r._callCppProxy("clearUnreadCountByTimestamp",e,t,n,o),s(d.SUCCESS)}))},t.prototype.getFirstUnreadMessage=function(e,t,n){var o=this;return new Promise((function(r,s){var i=o._callCppProxy("getTheFirstUnreadMessage",e,t,n),a=o._buildMessage(i);r({code:d.SUCCESS,data:-1!==a.messageId?a:null})}))},t.prototype.setConversationToTop=function(e,t,n,o){var r=this;return void 0===o&&(o=""),new Promise((function(s,i){r._callCppProxy("setConversationToTop",e,t,n,o,!0),s(d.SUCCESS)}))},t.prototype.setConversationHidden=function(e,t,n,o){var r=this;return new Promise((function(s,i){r._callCppProxy("setConversationHidden",e,t,n,o),s(d.SUCCESS)}))},t.prototype.setConversationNotificationStatus=function(e,t,n,o){var r=this;return new Promise((function(s,i){r._callCppProxy("setConversationNotificationStatus",e,t,n,(function(){s(d.SUCCESS)}),s,o)}))},t.prototype.setConversationStatus=function(e,t,n,o,r){var s=this;return new Promise((function(i,a){s._callCppProxy("setConversationStatus",e,t,n,o,(function(){i(d.SUCCESS)}),i,r,!0)}))},t.prototype.getConversationNotificationStatus=function(e,t,n){var o=this;return new Promise((function(r,s){var i=o._callCppProxy("getConversationNotificationStatus",e,t,n);r({code:d.SUCCESS,data:i?S.OPEN:S.CLOSE})}))},t.prototype.searchConversationByContent=function(e,t,n,o){var r=this;return new Promise((function(s,i){o=o||[1,3,6,7];for(var a=r._callCppProxy("searchConversationByContent",o,e,t,n),c=JSON.parse(a).list,u=[],p=0;p<c.length;p++)u[p]=r._buildConversation(c[p].obj);s({code:d.SUCCESS,data:u})}))},t.prototype.searchConversationByContentWithAllChannel=function(e,t,n){var o=this;return new Promise((function(r,s){n=n||[1,3,6,7];for(var i=o._callCppProxy("searchConversationByContentWithAllChannel",n,e,t),a=JSON.parse(i).list,c=[],u=0;u<a.length;u++)c[u]=o._buildConversation(a[u].obj);r({code:d.SUCCESS,data:c})}))},t.prototype.searchMessageByContent=function(e,t,n,o,r,s,i){var a=this;return new Promise((function(s,c){a._callCppProxy("searchMessageByContent",e,t,n,o,r,1,(function(e,t){for(var n=e?JSON.parse(e).list:[],o=[],r=0;r<n.length;r++)o[r]=a._buildMessage(n[r].obj);s({code:d.SUCCESS,data:{messages:o,count:t}})}),i)}))},t.prototype.searchMessageByContentWithAllChannel=function(e,t,n,o,r){var s=this;return new Promise((function(i,a){s._callCppProxy("searchMessageByContentWithAllChannel",e,t,n,o,r,1,(function(e,t){for(var n=e?JSON.parse(e).list:[],o=[],r=0;r<n.length;r++)o[r]=s._buildMessage(n[r].obj);i({code:d.SUCCESS,data:{messages:o,count:t}})}))}))},t.prototype.searchMessageByContentInTimeRangeWithAllChannel=function(e,t,n,o,r,s,i){var a=this;return new Promise((function(c,u){a._callCppProxy("searchMessageByTimestampWithAllChannel",e,t,n,o,r,s,i,(function(e){for(var t=e?JSON.parse(e).list:[],n=[],o=0;o<t.length;o++)n[o]=a._buildMessage(t[o].obj);c({code:d.SUCCESS,data:{messages:n}})}))}))},t.prototype.getUnreadMentionedMessages=function(e,t,n){for(var o=JSON.parse(this._callCppProxy("getUnreadMentionedMessages",e,t,n)).list,r=0;r<o.length;r++)o[r]=this._buildMessage(o[r].obj);return o},t.prototype.addToBlacklist=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("addToBlacklist",e,(function(){n(d.SUCCESS)}),n)}))},t.prototype.removeFromBlacklist=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("removeFromBlacklist",e,(function(){n(d.SUCCESS)}),n)}))},t.prototype.getBlacklist=function(){var e=this;return new Promise((function(t,n){e._callCppProxy("getBlacklist",(function(e){t({code:d.SUCCESS,data:e})}),(function(e){t({code:e})}))}))},t.prototype.getBlacklistStatus=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("getBlacklistStatus",e,(function(e){n({code:d.SUCCESS,data:e})}),(function(e){n({code:e})}))}))},t.prototype.insertMessage=function(e,t,n){var o=this,r=n.content,s=n.senderUserId,i=n.messageType,a=n.messageDirection,c=n.readStatus,u=n.sentStatus,p=n.sentTime,l=n.searchContent,f=n.isUnread,h=n.messageUId,_=n.disableNotification,v=n.canIncludeExpansion,g=n.expansionMsg,C=n.channelId;return r=JSON.stringify(r),new Promise((function(n,S){var y=f?0:1,m=o._callCppProxy("insertMessage",e,t,s,i,r,(function(){}),(function(e){n({code:e})}),a,c,u,p,l,y,h,_,v,g,C),P=o._buildMessage(m,{isOffLineMessage:!1});P.messageUId=h,P.sentTime=p,n({code:-1===P.messageId?d.MSG_INSERT_ERROR:d.SUCCESS,data:P})}))},t.prototype.deleteMessages=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("deleteMessages",e),n(d.SUCCESS)}))},t.prototype.deleteMessagesByTimestamp=function(e,t,n,o,r){var s=this;return new Promise((function(i,a){s._callCppProxy("deleteMessagesByTimestamp",e,t,n,o,r),i(d.SUCCESS)}))},t.prototype.getMessage=function(e){var t=this;return new Promise((function(n,o){var r=t._callCppProxy("getMessage",e),s=t._buildMessage(r,{isOffLineMessage:!1});n({code:d.SUCCESS,data:s})}))},t.prototype.setMessageContent=function(e,t,n){var o=this;return new Promise((function(r,s){t=JSON.stringify(t),o._callCppProxy("setMessageContent",e,t,n),r(d.SUCCESS)}))},t.prototype.setMessageSearchField=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("setMessageSearchField",e,t,n),r(d.SUCCESS)}))},t.prototype.setMessageSentStatus=function(e,t){var n=this;return new Promise((function(o,r){n._callCppProxy("setMessageSentStatus",e,t),o(d.SUCCESS)}))},t.prototype.setMessageReceivedStatus=function(e,t){var n=this;return new Promise((function(o,r){n._callCppProxy("setMessageReceivedStatus",e,t),o(d.SUCCESS)}))},t.prototype.saveConversationMessageDraft=function(e,t,n,o){throw new Error("Method not implemented.")},t.prototype.getConversationMessageDraft=function(e,t,n){throw new Error("Method not implemented.")},t.prototype.clearConversationMessageDraft=function(e,t,n){throw new Error("Method not implemented.")},t.prototype.pullConversationStatus=function(e){throw new Error("Method not implemented.")},t.prototype.batchSetConversationStatus=function(e){var t=e[0],n=t.conversationType,o=t.targetId,r=t.isTop,s=t.notificationStatus,i=t.channelId;if(void 0!==r&&void 0===s)return this.setConversationToTop(n,o,r,i);if(void 0!==s&&void 0===r){var a=s===S.OPEN;return this.setConversationNotificationStatus(n,o,a,i)}var c=s===S.OPEN;return this.setConversationStatus(n,o,c,r,i)},t.prototype.pullUserSettings=function(e){throw new Error("Method not implemented.")},t.prototype.sendReadReceiptMessage=function(e,t,n){var o=this;return new Promise((function(r){o._callCppProxy("sendReadReceipt",e,n||"",t,(function(){t.forEach((function(e){o._updateReadReceiptInfo(e,{hasRespond:!0});try{var t=JSON.parse(o._callCppProxy("getMessage",e)).messageId;o.setMessageReceivedStatus(t,1)}catch(t){o.logger.error(G.P_PARSE_JSON_MSGS_E,JSON.stringify({messageUId:e,error:null==t?void 0:t.stack}))}})),r({code:d.SUCCESS})}),(function(e){r({code:e})}))}))},t.prototype.getMessageReader=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("getMessageReader",e,n,t,(function(e,n){var s=[],i={};(e=JSON.parse(e)).list.forEach((function(e){var t=JSON.parse(e.obj),n=t.id,o=t.time;s.push({userId:n,readTime:o}),i[n]=o}));var a={readerInfo:i,readCount:s.length,totalCount:n};o._updateReadReceiptInfo(t,a),r({code:d.SUCCESS,data:{list:s,totalMemberCount:n}})}),(function(e){r({code:e})}))}))},t.prototype.joinChatroom=function(e,t){var n=this;return new Promise((function(o,r){n._callCppProxy("clearMessages",f.CHATROOM,e,""),n._callCppProxy("joinChatRoom",e,t,(function(){o(d.SUCCESS)}),o)}))},t.prototype.joinExistChatroom=function(e,t){throw new Error("Method not implemented.")},t.prototype.quitChatroom=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("quitChatRoom",e,(function(){n(d.SUCCESS)}),n)}))},t.prototype.getChatroomInfo=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("getChatroomInfo",e,t,n,(function(e,t){var n=e?JSON.parse(e).list:[],o=[];if(n.length>0)for(var s=0;s<n.length;s++)o.push(JSON.parse(n[s].obj));r({code:d.SUCCESS,data:{userInfos:o,userCount:t}})}),(function(e){r({code:e})}))}))},t.prototype.getChatroomHistoryMessages=function(e,t,n,o){var r=this;return new Promise((function(s,i){r._callCppProxy("getChatroomHistoryMessage",e,t,n,o,(function(e){var t;try{t=JSON.parse(e)}catch(e){t={list:[]}}var n=t.list;if(n&&n.length)try{t.list=n.map((function(e){return r._buildMessage(e.obj)}))}catch(e){t.list=[]}s({code:d.SUCCESS,data:t})}),(function(e){s({code:e})}),"")}))},t.prototype.setChatroomEntry=function(e,t){var n=this;return new Promise((function(o,r){var s='[{"key":"'.concat(t.key,'", "value":"').concat(t.value,'"}]');n._callCppProxy("setChatroomKV",e,s,!!t.isAutoDelete,!!t.isOverwrite,(function(){o(d.SUCCESS)}),(function(e){o(e)}))}))},t.prototype.setChatroomEntries=function(e,t){var n=this;return new Promise((function(o){n._callCppProxy("setChatroomKV",e,JSON.stringify(t.entries),!!t.isAutoDelete,!!t.isOverwrite,(function(){o({code:d.SUCCESS})}),(function(e){o({code:e})}))}))},t.prototype.forceSetChatroomEntry=function(e,t){return t.isOverwrite=!0,t.userId=t.userId||this._currentUserId,this.setChatroomEntry(e,t)},t.prototype.removeChatroomEntry=function(e,t){var n=this,o=[t.key];return new Promise((function(r,s){n._callCppProxy("deleteChatroomKV",e,o,!!t.isOverwrite,(function(){r(d.SUCCESS)}),(function(e){r(e)}))}))},t.prototype.forceRemoveChatroomEntry=function(e,t){return t.isOverwrite=!0,t.userId=t.userId||this._currentUserId,this.removeChatroomEntry(e,t)},t.prototype.removeChatroomEntries=function(e,t){var n=this;return new Promise((function(o){var r=t.entries.map((function(e){return e.key}));n._callCppProxy("deleteChatroomKV",e,r,!!t.isOverwrite,(function(){o({code:d.SUCCESS})}),(function(e){o({code:e})}))}))},t.prototype.getChatroomEntry=function(e,t){return V(this,void 0,void 0,(function(){var n;return K(this,(function(o){switch(o.label){case 0:return[4,this.getAllChatroomEntry(e)];case 1:return(n=o.sent()).code===d.SUCCESS?[2,{code:d.SUCCESS,data:n.data?n.data[t]:null}]:[2,{code:n.code}]}}))}))},t.prototype.getAllChatroomEntry=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("getChatroomKV",e,(function(e){var t={};try{(e?JSON.parse(e):{list:[]}).list.map((function(e){return JSON.parse(e.obj)})).forEach((function(e){t[e.key]=e.value?e.value:""}))}catch(e){}n({code:d.SUCCESS,data:t})}),(function(e){n({code:e})}))}))},t.prototype.getFileToken=function(e,t,n,o){var r=this;return n=n||"",o=o||"",new Promise((function(s){var i;i=o&&"uploads"!==o?t||"":T(e,t),r._callCppProxy("getUploadToken",e,i,n,o,(function(e,t,n,o,r,a,c,u,p,l,f,h,_,v,g,C,S,y){s({code:d.SUCCESS,data:{token:e,deadline:0,bosToken:t,bosDate:n,path:o,osskeyId:r,ossPolicy:a,ossSign:c,ossBucketName:u,fileName:i,s3Credential:p,s3Algorithm:l,s3Date:f,s3Policy:h,s3Signature:_,s3BucketName:v,stcAuthorization:g,stcContentSha256:C,stcDate:S,stcBucketName:y}})}),(function(e){s({code:e})}))}))},t.prototype.getFileUrl=function(e,t,n,o){var r=this;return new Promise((function(s){r._callCppProxy("getDownloadUrl",e,n,o,t-1,(function(e){s({code:d.SUCCESS,data:{downloadUrl:e}})}),(function(e){s({code:e})}))}))},t.prototype.clearData=function(){var e=this;return new Promise((function(t,n){var o=e._callCppProxy("clearData");t({code:d.SUCCESS,data:o})}))},t.prototype.getDeviceId=function(){var e=this._dbpath||o(N.getPath("userData"));return ue(e)},t.prototype.getVoIPKey=function(e,t){var n=this;return new Promise((function(o,r){n._callCppProxy("getVoIPKey",e,t,"",(function(e){o({code:d.SUCCESS,data:e})}),(function(e){o({code:e})}))}))},t.prototype.bindRTCRoomForChatroom=function(e){var t=this;return new Promise((function(n,o){var r=e.chatRoomId,s=e.rtcRoomId;t._callCppProxy("bindRTCRoomForChatroom",r,s,(function(){n(d.SUCCESS)}),(function(e){n(e)}))}))},t.prototype.getGroupMessageDeliverList=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("getGroupMessageDeliverList",e,n,t,(function(e,t){var n=JSON.parse(e).list.map((function(e){return{time:JSON.parse(e.obj).time,userId:JSON.parse(e.obj).id}}));r({code:d.SUCCESS,data:{totalCount:t,list:n}})}),(function(e){r({code:e})}))}))},t.prototype.getPrivateMessageDeliverTime=function(e,t){var n=this;return new Promise((function(o,r){var s=n._callCppProxy("getMessageDeliverTime",e);if(s)o({code:d.SUCCESS,data:s});else{n._callCppProxy("getPrivateMessageDeliverList",t,e,(function(e){var t=0,n=JSON.parse(e).list;n.length>0&&(t=JSON.parse(n[0].obj).time);o({code:d.SUCCESS,data:t})}),(function(e){o({code:e})}))}}))},t.prototype.rtcSignaling=function(e,t,n,o){var r=this,s=Array.prototype.slice.call(new Uint8Array(o));return new Promise((function(o){r._callCppProxy("rtcSignaling",e,t,n,s,(function(e){var t=new Uint8Array(e).buffer;o({code:d.SUCCESS,buffer:t})}),(function(e){o({code:e})}))}))},t.prototype._setRTCHeartbeatListener=function(){var e=this;this._cppProtocol.setRTCHeartbeatListener((function(t,n){var o=e.rtcHeartbeatResolves[t];if(o){var r=o.find((function(e){return""===e.seqId}));r&&(r.seqId=n)}}),(function(t,n,o,r){var s=e.rtcHeartbeatResolves[t];if(s){var i=s.findIndex((function(e){return e.seqId===o}));-1!==i&&s.splice(i,1)[0].resolve({code:n,data:{version:Number(r)}})}}))},t.prototype.rtcPing=function(e,t,n){var o=this;return new Promise((function(t){var n={resolve:t,seqId:""},r=o.rtcHeartbeatResolves[e];r?r.push(n):o.rtcHeartbeatResolves[e]=[n],o._callCppProxy("sendRTCHeartbeat",[e])}))},t.prototype.createTag=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("addTag",e.tagId,e.tagName,(function(){n({code:d.SUCCESS})}),(function(e){n({code:e})}))}))},t.prototype.removeTag=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("deleteTag",e,(function(){n({code:d.SUCCESS})}),(function(e){n({code:e})}))}))},t.prototype.updateTag=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("renameTag",e.tagId,e.tagName,(function(){n({code:d.SUCCESS})}),(function(e){n({code:e})}))}))},t.prototype.getTagList=function(){var e=this;return new Promise((function(t,n){var o=e._callCppProxy("getTags"),r=e._convertResultList(o,(function(e){return{tagId:e.tagId,tagName:e.tagName,conversationCount:e.conversationCount,createdTime:e.tagTime}}));t({code:d.SUCCESS,data:r})}))},t.prototype.addTagForConversations=function(e,t){var n=this;return new Promise((function(o,r){t.forEach((function(e){e.conversationType&&(e.type=e.conversationType)}));n._callCppProxy("addConversationsForTag",e,JSON.stringify(t),(function(){o({code:d.SUCCESS})}),(function(e){o({code:e})}))}))},t.prototype.removeTagForConversations=function(e,t){var n=this;return new Promise((function(o,r){t.forEach((function(e){e.conversationType&&(e.type=e.conversationType)})),n._callCppProxy("removeConversationsForTag",e,JSON.stringify(t),(function(){o({code:d.SUCCESS})}),(function(e){o({code:e})}))}))},t.prototype.removeTagsForConversation=function(e,t){var n=this;return new Promise((function(o,r){n._callCppProxy("removeTagsForConversation",e.conversationType,e.targetId,e.channelId||"",t,(function(){o({code:d.SUCCESS})}),(function(e){o({code:e})}))}))},t.prototype.getConversationListByTag=function(e,t,n,o){var r=this;return new Promise((function(s){var i=r._callCppProxy("getConversationsForTagByPage",e,t,n||20,o||""),a=r._convertResultList(i,(function(e){return q(q({},r._buildConversation(JSON.stringify(e))),{isTopInTag:e.topForTag})}));s({code:d.SUCCESS,data:a})}))},t.prototype.getUnreadCountByTag=function(e,t){var n=this;return new Promise((function(o,r){var s=n._callCppProxy("getConversationUnreadCountForTag",e,t);o({code:d.SUCCESS,data:s})}))},t.prototype.setConversationStatusInTag=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("setConversationToTopForTag",e,t.conversationType,t.targetId,t.channelId||"",n.isTop||!1,(function(){r({code:d.SUCCESS})}),(function(e){r({code:e})}))}))},t.prototype.getTagsForConversation=function(e){var t=this;return new Promise((function(n,o){var r=t._callCppProxy("getTagsForConversation",e.conversationType,e.targetId,e.channelId||""),s=t._convertResultList(r,(function(e){return{tagId:e.tagId,tagName:e.tagName,isTop:e.isTop,createdTime:e.tagTime}}));n({code:d.SUCCESS,data:s})}))},t.prototype.getBlockConversationList=function(){throw new Error("Method not implemented.")},t.prototype.getTopConversationList=function(){throw new Error("Method not implemented.")},t.prototype.getUnreadMentionedCount=function(e){throw new Error("Method not implemented.")},t.prototype.getAllUnreadMentionedCount=function(){throw new Error("Method not implemented.")},t.prototype.getOSInfo=function(){return V(this,void 0,void 0,(function(){var t;return K(this,(function(n){return t={arch:e.arch(),platform:e.platform(),type:e.type(),version:e.version(),release:e.release(),uptime:e.uptime(),cpus:e.cpus(),freemem:e.freemem(),totalmem:e.totalmem(),networkInterfaces:e.networkInterfaces()},[2,{code:d.SUCCESS,data:t}]}))}))},t.prototype.getMainProcessInfo=function(){return V(this,void 0,void 0,(function(){return K(this,(function(e){return[2,{code:d.SUCCESS,data:{title:process.title,pid:process.pid,ppid:process.ppid,platform:process.platform,arch:process.arch,uptime:process.uptime(),cpuUsage:process.cpuUsage(),memoryUsage:process.memoryUsage(),resourceUsage:process.resourceUsage()}}]}))}))},t.prototype.setCallInfo=function(e,t,n){var o=this;return new Promise((function(r){o._callCppProxy("callInfoSignaling",e,t,n,(function(e,t){r({code:d.SUCCESS,data:{key:e,value:t}})}),(function(e){r({code:e})}))}))},t}(),Ce=function(){function e(e,t,n,o){void 0===n&&(n=""),void 0===o&&(o=!1),this._cppService=new ge(e,t,n,o)}return e.prototype.getCppProto=function(){var e=this;return{destroy:function(){console.warn("`.getCppProto().destroy()` has being deprecated, use `.destroy()` instead."),e.destroy()}}},e.prototype.destroy=function(){this._cppService.destroy()},e.prototype.getDeviceId=function(){return this._cppService.getDeviceId()},e.prototype.getServerTime=function(){return this._cppService.getServerTime()},e.prototype.__createLogger=function(e,t){return this._cppService.createLogger(e,t)},e}(),Se=function(e){return function(e,t,n){if(he)return he;if(!t)throw new Error("Initializ failed, `appkey` is required!");return he=new Ce(t,e,null==n?void 0:n.dbpath,null==n?void 0:n.reconnectKickEnable)}(B,e.appkey,e)};export{Se as default};
|
|
1
|
+
import*as e from"os";import{platform as t,arch as n}from"os";import{resolve as o}from"path";import{getUUID as r,BasicLogger as s,appendUrl as i,ErrorCode as a,HTTP_TIMEOUT as c,LogTagId as u,StoreKeys as p,BasicReporter as l,BasicNavi as d,FORMATED_VERSION as f,RCConnectionStatus as h,AConnectionMgr as g,ConversationType as v,SEND_MESSAGE_TYPE_OPTION as C,isObject as _,isUndefined as y,pushJSONToConfigs as S,MessageDirection as m,NotificationStatus as P,MessageType as E,pushConfigsToJSON as I,MentionedType as T,ReceivedStatus as R,isArray as O,getUploadFileName as N}from"@rongcloud/engine";import{fork as M}from"child_process";import{app as U,ipcMain as w}from"electron";import{existsSync as b,readFileSync as x,writeFileSync as L,mkdirSync as A}from"fs";import{Agent as k,request as D}from"http";import{Agent as J,request as j}from"https";import{parse as H}from"url";import{isIP as B,Socket as F}from"net";import{EventEmitter as G}from"events";import{connect as V}from"tls";import{createHash as q}from"crypto";var K=process.versions.electron.replace(/\.\d+$/,""),W=o(__dirname,"binding","electron-v".concat(K,"-").concat(t(),"-").concat(n(),".node")),X={addon:null};try{X.addon=require(W)}catch(e){console.error("error ->",W,"\n",e)}var Y=X.addon,z=function(e,t){return z=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},z(e,t)};function Q(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function n(){this.constructor=e}z(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}var $,Z=function(){return Z=Object.assign||function(e){for(var t,n=1,o=arguments.length;n<o;n++)for(var r in t=arguments[n])Object.prototype.hasOwnProperty.call(t,r)&&(e[r]=t[r]);return e},Z.apply(this,arguments)};function ee(e,t,n,o){return new(n||(n=Promise))((function(r,s){function i(e){try{c(o.next(e))}catch(e){s(e)}}function a(e){try{c(o.throw(e))}catch(e){s(e)}}function c(e){var t;e.done?r(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(i,a)}c((o=o.apply(e,t||[])).next())}))}function te(e,t){var n,o,r,s,i={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return s={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function a(a){return function(c){return function(a){if(n)throw new TypeError("Generator is already executing.");for(;s&&(s=0,a[0]&&(i=0)),i;)try{if(n=1,o&&(r=2&a[0]?o.return:a[0]?o.throw||((r=o.return)&&r.call(o),0):o.next)&&!(r=r.call(o,a[1])).done)return r;switch(o=0,r&&(a=[2&a[0],r.value]),a[0]){case 0:case 1:r=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,o=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(r=i.trys,(r=r.length>0&&r[r.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!r||a[1]>r[0]&&a[1]<r[3])){i.label=a[1];break}if(6===a[0]&&i.label<r[1]){i.label=r[1],r=a;break}if(r&&i.label<r[2]){i.label=r[2],i.ops.push(a);break}r[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e],o=0}finally{n=r=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,c])}}}function ne(e,t,n){if(n||2===arguments.length)for(var o,r=0,s=t.length;r<s;r++)!o&&r in t||(o||(o=Array.prototype.slice.call(t,0,r)),o[r]=t[r]);return e.concat(o||Array.prototype.slice.call(t))}!function(e){e.P_INIT_O="P-init-O",e.P_DB_OPEN_O="P-db_open-O",e.P_CALL_MAIN_SYNC_E="P-call_main_sync-E",e.P_CALL_MAIN_E="P-call_main-E",e.P_SEND_2_MAIN_E="P-send_2_main-E",e.P_REGTYP_O="P-regtype-O",e.P_CALL_ADDON_E="P-call_addon-E",e.P_CALL_EXTRA_E="P-call_extra-E",e.P_CONNECT_S="P-connect-S",e.P_CONNECT_O="P-connect-O",e.P_REPORT_VER_O="P-report_version-O",e.P_PARSE_JSON_MSGS_E="P-parse_json_messsages-E",e.P_HTTP_REQ_E="P-http_request-E",e.P_SET_MSG_EXTEN_O="P-set_msg_extension-O",e.P_SEND_MSG_T="P-send_msg-T",e.P_SEND_MSG_R="P-send_msg-R",e.P_WRITE_LOG_T="P_WRITE_LOG_T",e.P_WRITE_LOG_R="P_WRITE_LOG_R"}($||($={}));var oe,re={flushTimestamp:Date.now(),queue:[],locked:!1};function se(){oe&&clearInterval(oe)}function ie(e,t){se(),oe=setInterval((function(){return ce(e,t)}),1e4)}function ae(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];(e=re.queue).push.apply(e,t)}function ce(e,t){var n=re.queue,o=re.flushTimestamp;if(!(re.locked||0===n.length||Date.now()-o<3e4&&n.length<200)){re.locked=!0;var r=t.createTraceId(),s=n.splice(0,200).map((function(e){var t=e.sessionId,n=e.level,o=e.time,r=e.type,s=e.tag,i=e.loggerId,a=e.content,c=e.traceId;return{level:n,time:o,type:r,tag:s,content:encodeURIComponent(JSON.stringify({loggerId:i,sessionId:t,content:a,traceId:c})).replace(/'/g,"%27")}}));t.debug($.P_WRITE_LOG_T,"writingLen: ".concat(s.length,", queueLen: ").concat(n.length),r);var i=JSON.stringify(s);e.writeLog(i),t.debug($.P_WRITE_LOG_R,"write done, queueLen: ".concat(n.length),r),re.flushTimestamp=Date.now(),re.locked=!1,setTimeout((function(){return ce(e,t)}))}}var ue=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return Q(t,e),t.prototype.flush=function(e){ae(e)},t}(s),pe=function(e,t){var n,o=Buffer.from(e),r=o.length;for(t.push(r),n=0;n<r;n++)t.push(o[n])},le=function(e){return"string"==typeof e},de=function(e){return le(e)?e.toUpperCase():""},fe=function(e){var t=de(e.method)||"GET",n=e.pathname||"/",o=e.headers||{},r=e.search||"";o.Host=e.host||"loclahost";var s="";for(var i in s="".concat(t," ").concat(n+r," HTTP/1.1\n"),o)if(Object.hasOwnProperty.call(o,i)){var a=o[i];s+="".concat(i,": ").concat(a,"\n")}return e.body&&(s+="Content-Length: ".concat(e.body.length,"\n")),s+="\n","POST"===t&&e.body&&(s+="".concat(e.body)),s},he=function(e){return new Promise((function(t){var n,o;e.socket.once("data",(function(o){var r,s;2!==o.length?r="Unexpected number of bytes received.":5!==o[0]?r="Unexpected SOCKS version number: ".concat(o[0],"."):255===o[1]?r="No acceptable authentication methods were offered.":-1===n.indexOf(o[1])&&(r="Unexpected SOCKS authentication method: ".concat(o[1],".")),r?e.emit("error",new Error("SOCKS authentication failed. ".concat(r))):2===o[1]?(e.socket.once("data",(function(n){var o;2!==n.length?o="Unexpected number of bytes received.":1!==n[0]?o="Unexpected authentication method code: ".concat(n[0],"."):0!==n[1]&&(o="Username and password authentication failure: ".concat(n[1],".")),o?e.emit("error",new Error("SOCKS authentication failed. ".concat(o))):t()})),s=[1],pe(e.socksUsername,s),pe(e.socksPassword,s),e.write(Buffer.from(s))):t()})),n=[0],e.socksUsername&&n.push(2),(o=Buffer.alloc(2+n.length))[0]=5,o[1]=n.length,n.forEach((function(e,t){o[2+t]=e})),e.write(o)}))},ge=function(e,t,n){return new Promise((function(o){var r,s;switch(e.socket.once("data",(function(t){var n;5!==t[0]?n="Unexpected SOCKS version number: ".concat(t[0],"."):0!==t[1]?n="".concat(function(e){switch(e){case 1:return"General SOCKS server failure";case 2:return"Connection not allowed by ruleset";case 3:return"Network unreachable";case 4:return"Host unreachable";case 5:return"Connection refused";case 6:return"TTL expired";case 7:return"Command not supported";case 8:return"Address type not supported";default:return"Unknown status code ".concat(e)}}(t[1]),"."):0!==t[2]&&(n="The reserved byte must be 0x00."),n?e.emit("error",new Error("SOCKS connection failed. ".concat(n))):o()})),(r=[]).push(5),r.push(1),r.push(0),B(t)){case 0:r.push(3),pe(t,r);break;case 4:r.push(1),function(e,t){var n,o,r=e.split(".");for(n=0;n<4;n++)o=parseInt(r[n],10),t.push(o)}(t,r);break;case 6:e.emit("error",new Error("Does not support IPV6"))}r.length+=2,(s=Buffer.from(r)).writeUInt16BE(n,s.length-2),e.write(s)}))},ve=function(e){function t(t){var n=e.call(this)||this;return n.readable=!0,n.socket=new F,n.options=t,n.socksHost=t.socksHost||"localhost",n.socksPort=t.socksPort||1080,n.socksUsername=t.socksUsername||"",n.socksPassword=t.socksPassword||"",n.socket.on("error",(function(e){n.emit("error",e)})),n.on("error",(function(){n.socket.destroyed||n.socket.destroy()})),n.on("end",n.end),n}return Q(t,e),t.prototype.ref=function(){return this.socket.ref()},t.prototype.unref=function(){return this.socket.unref()},t.prototype.setTimeout=function(e,t){return this.socket.setTimeout(e,t)},t.prototype.setNoDelay=function(e){return this.socket.setNoDelay(e)},t.prototype.setKeepAlive=function(e,t){return this.socket.setKeepAlive(e,t)},t.prototype.address=function(){return this.socket.address()},t.prototype.cork=function(){return this.socket.cork()},t.prototype.uncork=function(){return this.socket.uncork()},t.prototype.pause=function(){return this.socket.pause()},t.prototype.resume=function(){return this.socket.resume()},t.prototype.pipe=function(e){return this.socket.pipe(e)},t.prototype.end=function(e,t){var n=this.socket.end(e,t);return this.writable=this.socket.writable,n},t.prototype.destroy=function(e){return this.socket.destroy(e)},t.prototype.setEncoding=function(e){return this.socket.setEncoding(e)},t.prototype.write=function(e,t,n){return this.socket.write(e,t,n)},t.prototype.read=function(e){return this.socket.read(e)},t.prototype.connect=function(e,t){var n=this;if("string"==typeof e&&/^\d+$/.test(e)&&(e=parseInt(e,10)),!Number.isInteger(e)||e<1||e>65535)throw new TypeError("Invalid port: ".concat(e));if(!t||"string"!=typeof t)throw new TypeError("Invalid host: ".concat(t));return this.socket.connect({port:this.socksPort,host:this.socksHost},(function(){return ee(n,void 0,void 0,(function(){var n;return te(this,(function(o){switch(o.label){case 0:return[4,he(this)];case 1:return o.sent(),[4,ge(this,t,e)];case 2:return o.sent(),this.onProxied(),n=fe(this.options),this.socket.write(Buffer.from(n)),[2]}}))}))})),this},t.prototype.onProxied=function(){var e=this;this.socket.on("close",(function(t){e.emit("close",t)})),this.socket.on("end",(function(){e.emit("end")})),this.socket.on("data",(function(t){e.emit("data",t)})),this.writable=!0,this.readable=!0,this.emit("connect")},t}(G),Ce=function(e){var t,n=e.hostname,o=e.port;return!e.host||n&&o||(t=e.host.split(":")),!o&&t&&(o=parseInt(t[1],10)||0),!n&&t&&(n=t[0]),new ve(e).connect(o,n)},_e=function(e){function t(t){var n=e.call(this)||this;return n.createConnection=Ce,n}return Q(t,e),t}(k),ye=function(e,t,n){return(t=Z(Z({},t),H(e))).port||(t.port=80),t.agent=new _e(t),D(t,n)},Se=function(e){var t,n;return t=Ce(e),n=t.onProxied,t.onProxied=function(){e.socket=t.socket,e.hostname?e.servername=e.hostname:e.host&&(e.servername=e.host.split(":")[0]),t.socket=V(e,(function(){t.authorized=t.socket.authorized,n.call(t)})),t.socket.on("error",(function(e){t.emit("error",e)}))},t},me=function(e){function t(t,n){var o=e.call(this,n)||this;return o.url=t,o.socksHost=n.socksHost||"localhost",o.socksPort=n.socksPort||1080,o.createConnection=Se,o}return Q(t,e),t}(J),Pe=function(e,t,n,o){var r,s;return t.protocol="https:",!t.port&&t.host&&(r=t.host.split(":"),t.port=r[0],t.port=r[1]),t.port||(t.port=443),s=new me(e,t),t.agent=s,j(e,t,n)},Ee=null;function Ie(e,t,n){void 0===n&&(n=!1);var o=t.url,r=t.headers,s=t.body,a=t.method,u=t.query,p=t.timeout,l=void 0===p?c:p;return new Promise((function(t){var c=/^https/.test(o),p={headers:r,method:a};c&&(p.rejectUnauthorized=n);var d=null;Ee?((p=Z(Z({},p),Ee)).body=s,d=c?Pe:ye):(p.agent=new J(p),d=c?j:D);var f=d(i(o,u),p,(function(e){var n=e.statusCode,o="";e.setEncoding("utf8"),e.on("data",(function(e){o+=e})),e.once("end",(function(){t({status:n||0,data:o})}))}));f.once("timeout",(function(){e.warn($.P_HTTP_REQ_E,JSON.stringify({msg:"timeout",url:o,method:a,query:u,timeout:l})),t({status:0})})),f.setTimeout(l),f.once("error",(function(n){e.warn($.P_HTTP_REQ_E,JSON.stringify({msg:n.stack,url:o,method:a,query:u,timeout:l})),t({status:0})})),f.write(s),f.end()}))}function Te(e,t){return e?(Ee=Z(Z({},Ee),e),t.info(u.A_SET_PROXY_O,JSON.stringify({msg:"set proxy",data:Ee})),{code:a.SUCCESS}):(Ee=null,t.info(u.A_REMOVE_PROXY_O,JSON.stringify({msg:"remove proxy"})),{code:a.SUCCESS})}function Re(){var e=Ee||void 0;return{code:a.SUCCESS,data:e}}var Oe,Ne=[],Me=!1,Ue=function(){return ee(void 0,void 0,void 0,(function(){var e,t,n,o,r,s,i,a,c;return te(this,(function(u){return Me||0===Ne.length||(Me=!0,e=Ne.shift(),t=e.args,n=e.resolve,o=t.addon,r=t.startTime,s=t.endTime,i=t.level,a=t.realtimeReport,c=[],o.setLogEventListener((function(e){var t=e.split(","),n=t[0],o=t[1],r=t[2],s=t[3],u=t[4],p=t.slice(5);try{var l=JSON.parse(decodeURIComponent(p.join(","))),d=l.loggerId,f=l.sessionId,h=l.content,g=l.traceId;if(!a&&i<0)return;var v={time:parseInt(o,10),level:parseInt(s,10),sessionId:"".concat(n,":").concat(f),type:r,tag:u,loggerId:d,content:h,traceId:g};c.push(v)}catch(e){console.error(e)}}),(function(e){n(c),Me=!1,Ue()}),(function(e,t,n){})),o.pullFullLog(i,r,s,!1)),[2]}))}))},we=function(e){function t(t,n,o,r,s){var i=this,a=process.versions.electron,c="Electron|".concat(a,"|").concat(process.arch,"|").concat(process.platform);return i=e.call(this,n,o,c,{getLogs:function(e,n,o,r){return ee(this,void 0,void 0,(function(){return te(this,(function(s){switch(s.label){case 0:return[4,(i={startTime:e,endTime:n,level:o,realtimeReport:r,addon:t},ee(void 0,void 0,void 0,(function(){return te(this,(function(e){return[2,new Promise((function(e){Ne.push({resolve:e,args:i}),Ue()}))]}))})))];case 1:return[2,{logs:s.sent(),dbReady:!0}]}var i}))}))},getTimestamp4RealtimeLog:function(){var e=t.getStoreValue(p.REALTIME_LOG_TIMESTAMP);return parseInt(e,10)||0},setTimestamp4RealtimeLog:function(e){t.setStoreValue(p.REALTIME_LOG_TIMESTAMP,e.toString())}},r)||this,i.subProcess=s,i}return Q(t,e),t.prototype.send=function(e){return Ie(this.logger,e)},t.prototype.compressLogs=function(e){return ee(this,void 0,void 0,(function(){var t,n,o;return te(this,(function(r){switch(r.label){case 0:return[4,this.subProcess.call("compressLogs",e)];case 1:return t=r.sent(),n=t.success,o=t.data,n?[2,{success:n,data:o}]:[2,{success:n,data:""}]}}))}))},t}(l),be=null,xe=function(){var e,o=Date.now(),r=[n(),t(),process.pid,o,Math.floor(Math.random()*o)].join("__");return e=r,q("md5").update(e).digest("hex")},Le=function(e){if(be)return be;var t=o(e,"deviceId");return b(t)?be=x(t).toString():(be=xe(),L(t,be),be)},Ae=function(){function e(e){this._cppProto=e,this._setTime=15962112e5}return e.prototype._setToProtocol=function(e,t,n,o,r,s){var i=JSON.stringify(r);"{}"!==i&&e.info($.P_SET_MSG_EXTEN_O,JSON.stringify({messageUId:o,ext:r})),this._cppProto.setMessageExtension(t,n,o,i,s)},e.prototype.setLocalFromReceiveMsg=function(e,t){var n=t.channelId,o=t.conversationType,r=t.targetId,s=t.messageUId,i=t.expansion,a=t.sentTime,c={};for(var u in i)c[u]={v:"",ts:0},c[u].v=i[u],c[u].ts=a;this._setToProtocol(e,o,r,s,c,n||"")},e.prototype.setLocalFromExtMsg=function(e,t){var n=t.channelId,o=t.conversationType,r=t.targetId;t.messageUId;var s=t.content,i=t.sentTime,a=s,c=a.put,u=this._cppProto.getMessage(a.mid),p=JSON.parse(u).extMsg,l=JSON.parse(p||"{}");if(c)for(var d in c){var f=l[d];f&&f.ts<i-this._setTime?(f.v=c[d],f.ts=i-this._setTime):(l[d]={v:"",ts:0},l[d].v=c[d],l[d].ts=i-this._setTime)}a.del&&a.del.forEach((function(e){delete l[e]})),this._setToProtocol(e,o,r,a.mid,l,n||"")},e.prototype.parseReceiveExpansion=function(e){var t=JSON.parse(e.extMsg||"{}"),n={};for(var o in t)n[o]=t[o].v;return n},e.prototype.parseConverOrHisExpansion=function(e){var t=JSON.parse(e.extMsg),n=JSON.parse(t||"{}"),o={};for(var r in n)o[r]=n[r].v;return o},e}(),ke=function(){function e(e){var t=this;this.p=e,this.count=0,this.maps={},this.p.on("message",(function(e){var n=e.reqId,o=e.success,r=e.data,s=t.maps[n];s&&(s({success:o,data:r}),delete t.maps[n])}))}return e.prototype.call=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];return ee(this,void 0,void 0,(function(){var n=this;return te(this,(function(o){return this.p.killed?[2,{success:!1}]:[2,new Promise((function(o){var r=++n.count;n.maps[r]=o;var s={reqId:r,method:e,args:t};n.p.send(s)}))]}))}))},e.prototype.destroy=function(){this.p.kill()},e}(),De=function(e){function t(t,n,o){var r=e.call(this,t,n,[])||this;return r.addon=o,r._caches={},r}return Q(t,e),t.prototype.updateCustomNavis=function(e){var t;e.length&&(t=this.navigators).splice.apply(t,ne([0,this.navigators.length],e,!1))},t.prototype.httpRequest=function(e,t,n,o,r,s){return ee(this,void 0,void 0,(function(){var i,c,p,l,d;return te(this,(function(f){switch(f.label){case 0:return i="token=".concat(encodeURIComponent(n),"&v=").concat(o,"&p=PC&ev=").concat("5.7.0"),c="".concat(e,"/navi.json?r=").concat(Date.now()),this.logger.debug(u.L_GET_NAVI_O,JSON.stringify({url:c,body:i}),s),[4,Ie(this.logger,{method:"POST",headers:{appId:t},body:i,url:c,timeout:r})];case 1:if(200!==(p=f.sent()).status)return[2,{code:this.transHttpCode(p.status)}];try{return l=JSON.parse(p.data),d=/^https/.test(c)?"https":"http",l.protocol=d,[2,{code:a.SUCCESS,data:l}]}catch(e){return this.logger.error(u.L_PARSE_NAVI_E,p.data,s),[2,{code:a.RC_NAVI_REQ_FAILED}]}return[2]}}))}))},t.prototype.getNaviCache=function(e){var t=this._caches[e];if(t)return t;var n=this.addon.getStoreValue("navi_".concat(e));if(0===n.length)return null;try{return this._caches[e]=JSON.parse(n)}catch(e){this.logger.error(u.L_PARSE_NAVI_E,n)}return null},t.prototype.setNaviCache=function(e,t){var n=this._caches[e]={token:e,naviInfo:t,timestamp:Date.now()};this.addon.setStoreValue("navi_".concat(e),JSON.stringify(n))},t.prototype.flush=function(){var e=this;Object.keys(this._caches).forEach((function(t){var n=e._caches[t];e.addon.setStoreValue("navi_".concat(t),JSON.stringify(n))}))},t}(d),Je=function(e){function t(t,n,o,r,s){var i=e.call(this,t,o,r,s)||this;return i.addon=n,i._connectedTime=0,i.connectResolve=null,i.pingResolve=null,i.addon.setConnectionStatusListener(i._onConnectionStatusChange.bind(i),(function(e){i.logger.info($.P_DB_OPEN_O,e),o.flush()}),(function(){return i.recvPong(a.SUCCESS)}),i._onConnectionStatusChange.bind(i)),i}return Q(t,e),t.prototype.getConnectedTime=function(){return this._connectedTime},t.prototype.connectWithToken=function(e,t,n,o){var r=this;return new Promise((function(s){r.connectResolve={resolve:s,traceId:o,userId:t.userId};var i=null,c=Re().data;c&&(i=JSON.stringify({proxy_passwd:c.socksPassword||"",proxy_name:c.socksUsername||"",proxy_port:c.socksPort||1082,proxy_host:c.socksHost||"localhost",proxy_type:0}));try{r.addon.connectWithToken(e,f,JSON.stringify(t),n,i)}catch(e){r.logger.error($.P_CALL_ADDON_E,null==e?void 0:e.stack,o),r.recvConnectRes(a.RC_SOCKET_NOT_CREATED)}}))},t.prototype.close=function(e){e||this.addon.disconnect(!1)},t.prototype.sendPing=function(e){var t=this;return new Promise((function(n){t.pingResolve=n,t.addon.sendHeartbeat(),setTimeout((function(){return t.recvPong(a.TIMEOUT)}),e)}))},t.prototype.recvPong=function(e){this.pingResolve&&(this.pingResolve(e),this.pingResolve=null)},t.prototype._onConnectionStatusChange=function(e){switch(this.logger.info($.P_CONNECT_S,e),e){case a.SUCCESS:this.recvConnectRes(a.SUCCESS);break;case a.RC_CONN_REDIRECTED:case 32061:this.recvConnectRes(a.RC_CONN_REDIRECTED,!0);break;case 11:case 10:case 12:break;case a.RC_SOCKET_DISCONNECTED:this.recvConnectRes(e,!1);break;case a.RC_SOCKET_NOT_CREATED:case a.RC_CONN_ACK_TIMEOUT:case a.RC_TCP_RESET:this.recvConnectRes(e);break;default:this.recvConnectRes(e,!0)}},t.prototype.recvConnectRes=function(e,t){if(this.connectResolve){var n=this.connectResolve,o=n.resolve;n.traceId;var r=n.userId;return e===a.SUCCESS&&(this._connectedTime=Date.now()-this.addon.getDeltaTime()),o({code:e,data:r}),void(this.connectResolve=null)}if(t)this.onDisconnectByServer(e);else{if(e===a.RC_SOCKET_DISCONNECTED)if(this.getConnectionStatus()!==h.CONNECTED)return;this.onDisconenctUnusual(e)}},t}(g),je=function(e){if(!b(e)){var t=o(e,"..");b(t)||je(t),A(e)}},He=function(){function t(e,t,n,s){var i=this;this._appkey=e,this._cppProtocol=t,this._dbpath=n,this._logOutputLevel=s,this._customMessageType={},this._senders={},this._chatroomCache=[],this.rtcHeartbeatResolves={};var c=this._dbpath||o(U.getPath("userData")),u=Le(c);this._cppProtocol.initWithAppkey(e,c,f);var p=M(o(__dirname,"sub-process.js"));this.subProxy=new ke(p);var l=o(c,"RongCloud/rclogs",e);je(l),function(e,t,n){n.initLogModule(t,e,r())}(e,l,this._cppProtocol),this.logger=new ue(this._appkey,"RC-M","IM"),this.logger.setOutputLevel(this._logOutputLevel),ie(this._cppProtocol,this.logger),this.reporter=new we(this._cppProtocol,e,u,this.logger,this.subProxy),this.logger.info($.P_INIT_O,JSON.stringify({appkey:e,dbpath:c,proto_commit:this._cppProtocol.getNodeVersion(),deviceId:u,commit:"485ca9d3acdbaf73fe607cd2faacd683862806fb"})),this._callCppProxy("setDeviceId",u),this.navi=new De(e,this.logger,this._cppProtocol),this.tcpMgr=new Je(e,this._cppProtocol,this.navi,this.logger,{onConnected:this.onConnected.bind(this),onSuspend:this.onSuspend.bind(this),onDisconnected:this.onDisconnected.bind(this),onConnecting:this.onConnecting.bind(this)}),this._registerMsgTypes(),this._setOnReceiveMessageListener(),this._setConversationStatusListener(),this._setUserProfileListener(),this._setRTCHeartbeatListener(),this._setRTCLivingRoomEventListener(),this._setChatroomEventListener(),this._setCallInfoListener(),w.on("__RC_CHANNEL_CALL_MAIN_SYNC__",(function(e,t){for(var n=[],o=2;o<arguments.length;o++)n[o-2]=arguments[o];return ee(i,void 0,void 0,(function(){var o,r,s;return te(this,(function(i){switch(i.label){case 0:if("function"!=typeof(o=this[t]))return this.logger.error($.P_CALL_MAIN_SYNC_E,JSON.stringify({method:t,error:"not found"})),e.returnValue=a.NOT_SUPPORT,[2];r=a.EXTRA_METHOD_UNDEFINED,i.label=1;case 1:return i.trys.push([1,3,,4]),[4,o.call.apply(o,ne([this],n,!1))];case 2:return r=i.sent(),[3,4];case 3:return s=i.sent(),this.logger.error($.P_CALL_MAIN_SYNC_E,JSON.stringify({error:null==s?void 0:s.stack,method:t})),[3,4];case 4:return e.returnValue=r,[2]}}))}))})),w.on("__RC_CHANNEL_CALL_MAIN__",(function(e,t,n){for(var o=[],r=3;r<arguments.length;r++)o[r-3]=arguments[r];return ee(i,void 0,void 0,(function(){var r,s,i,c,u=this;return te(this,(function(p){switch(p.label){case 0:if("function"!=typeof(r=this[n]))return this.logger.error($.P_CALL_MAIN_E,JSON.stringify({method:n,error:"not found"})),this._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",t,a.NOT_SUPPORT),[2];"sendMessage"===n&&(s=o[3],o[3]=function(t){u._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",s,t)}),i=a.EXTRA_METHOD_UNDEFINED,p.label=1;case 1:return p.trys.push([1,3,,4]),[4,r.call.apply(r,ne([this],o,!1))];case 2:return i=p.sent(),[3,4];case 3:return c=p.sent(),this.logger.error($.P_CALL_MAIN_E,JSON.stringify({error:null==c?void 0:c.stack,method:n})),[3,4];case 4:return this._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",t,i),[2]}}))}))})),w.on("__RC_CHANNEL_SEND_2_MAIN__",(function(e,t){for(var n=[],o=2;o<arguments.length;o++)n[o-2]=arguments[o];var r=i[t];if("function"==typeof r)try{r.call.apply(r,ne([i],n,!1))}catch(e){i.logger.error($.P_SEND_2_MAIN_E,JSON.stringify({error:null==e?void 0:e.stack,method:t}))}else i.logger.error($.P_SEND_2_MAIN_E,JSON.stringify({method:t,error:"not found"}))})),w.on("__RC_INNER_COMMAND_INIT__",this._registerRenderers.bind(this)),this._msgExpansionHandler=new Ae(this._cppProtocol)}return t.prototype.onConnected=function(){var e=this.getNaviInfoFromCache();this.reporter.checkStart(e),this._try2RejoinChatroom(),this._send2AllRenderer("onConnected",this.getMainProcessCache())},t.prototype.onConnecting=function(){this._send2AllRenderer("onConnecting",void 0)},t.prototype.onSuspend=function(e){this._send2AllRenderer("onSuspend",e)},t.prototype.onDisconnected=function(e){this._send2AllRenderer("onDisconnected",e)},t.prototype._callCppProxy=function(e){for(var t,n=[],o=1;o<arguments.length;o++)n[o-1]=arguments[o];var r=this.logger.createTraceId();try{var s=(t=this._cppProtocol)[e].apply(t,n);return s}catch(t){this.logger.error($.P_CALL_ADDON_E,JSON.stringify({stack:null==t?void 0:t.stack,method:e}),r)}},t.prototype.refetchNaviInfo=function(){return this.navi.request(this.tcpMgr.getToken(),!0,!0,this.logger.createTraceId())},t.prototype.sendHTTPRequest=function(e){return Ie(this.logger,e)},t.prototype.onRendererLogsReceived=function(e){ae.apply(void 0,e)},t.prototype.destroy=function(){this.reporter.stop(),this.subProxy.destroy(),function(e){se(),e.deinitLogModule()}(this._cppProtocol),this._cppProtocol.destroy()},t.prototype.callExtra=function(e){for(var t=[],n=1;n<arguments.length;n++)t[n-1]=arguments[n];var o=this[e];if(!o)return this.logger.warn($.P_CALL_EXTRA_E,JSON.stringify({method:e,error:"not found"})),Promise.resolve({code:a.EXTRA_METHOD_UNDEFINED});try{var r=o.call.apply(o,ne([this],t,!1));return r}catch(t){this.logger.error($.P_CALL_EXTRA_E,JSON.stringify({error:null==t?void 0:t.stack,method:e}))}return Promise.resolve({code:a.MAIN_PROCESS_ERROR})},t.prototype.getConversationsByPage=function(e,t,n,o){var r,s=this,i=this._callCppProxy("getConversationListByPage",e,t,n,o||"");try{r=JSON.parse(i).list.map((function(e){return s._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:a.MAIN_PROCESS_ERROR})}return Promise.resolve({code:a.SUCCESS,data:r})},t.prototype.getUnreadConversationList=function(e){var t,n=this,o=this._callCppProxy("getUnreadConversationList",e);try{t=JSON.parse(o).list.map((function(e){return n._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:a.MAIN_PROCESS_ERROR})}return Promise.resolve({code:a.SUCCESS,data:t})},t.prototype.getConversationListWithAllChannel=function(){var e,t=this,n=[v.PRIVATE,v.GROUP],o=this._callCppProxy("getConversationListWithAllChannel",n);try{e=JSON.parse(o).list.map((function(e){return t._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:a.MAIN_PROCESS_ERROR})}return Promise.resolve({code:a.SUCCESS,data:e})},t.prototype.getConversationListWithAllChannelByPage=function(e,t){var n,o=this,r=[v.PRIVATE,v.GROUP],s=this._callCppProxy("getConversationListWithAllChannelByPage",r,e,t);try{n=JSON.parse(s).list.map((function(e){return o._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:a.MAIN_PROCESS_ERROR})}return Promise.resolve({code:a.SUCCESS,data:n})},t.prototype.getHistoryMessagesByObjectNames=function(e,t,n,o,r,s,i){var c=0===s,u=o+1,p=this._callCppProxy("getHistoryMessagesByObjectNames",e,t,n,u,r,c,i||""),l=[];try{var d=JSON.parse(p).list;d.reverse();for(var f=0;f<d.length;f++){var h=this._buildMessage(d[f].obj);l[f]=h}}catch(e){return Promise.resolve({code:a.MAIN_PROCESS_ERROR})}return Promise.resolve({code:a.SUCCESS,data:{list:u===l.length?l.slice(1,u):l,hasMore:o<l.length}})},t.prototype.updateMessageReceiptStatus=function(e,t,n,o){void 0===o&&(o="");var r=this._callCppProxy("updateMessageReceiptStatus",e,t,n,o);return Promise.resolve({code:a.SUCCESS,data:r})},t.prototype.getNaviInfoFromCache=function(){return this.navi.getNaviInfoFromCache(this.tcpMgr.getToken())},t.prototype.createLogger=function(e,t){return/^RC/.test(e)?null:new ue(this._appkey,e,t)},t.prototype.getConnectedTime=function(){return this.tcpMgr.getConnectedTime()},t.prototype.getServerTime=function(){return Date.now()-this._cppProtocol.getDeltaTime()},t.prototype.getCurrentUserId=function(){return this.tcpMgr.getCurrentUserId()},t.prototype._send2Renderer=function(e,t){for(var n=[],o=2;o<arguments.length;o++)n[o-2]=arguments[o];e.isDestroyed()?delete this._senders[e.id]:e.send.apply(e,ne([t],n,!1))},t.prototype._send2AllRenderer=function(e,t,n){var o=this;void 0===n&&(n=[]),Object.keys(this._senders).forEach((function(r){var s=o._senders[r];n.includes(s)||o._send2Renderer(s,"__RC_CHANNEL_NOTIFICATION_FROM_MAIN__",e,t)}))},t.prototype.getMainProcessCache=function(){var e=this.tcpMgr.getConnectedTime(),t=this.tcpMgr.getConnectionStatus(),n=this.getNaviInfoFromCache(),o=this.tcpMgr.getCurrentUserId();return{connectedTime:e,deviceId:this.getDeviceId(),crtUserId:o,naviInfo:n,connectionStatus:t}},t.prototype._registerRenderers=function(e,t){var n=this,o=e.sender,r=o.id;this.navi.updateCustomNavis(t.navigators),this._senders[r]||(this._senders[r]=o,o.once("destroyed",(function(){delete n._senders[r]})))},t.prototype._registerMsgTypes=function(){for(var e in C["RC:RcCmd"]={isCounted:!1,isPersited:!1},C){var t=C[e],n=t.isCounted,o=t.isPersited,r=t.searchProps,s=0;o&&(s|=1),n&&(s|=2),"RC:TypSts"===e&&(s=16),this._callCppProxy("registerMessageType",e,s,r)}},t.prototype._buildMessage=function(e,t){void 0===t&&(t={});var n=t.isOffLineMessage,o=t.buildFrom,r=JSON.parse(e),s=r.channelId,i=r.conversationType,a=r.targetId,c=r.senderUserId,u=r.content,p=r.objectName,l=r.messageUid,d=r.direction,f=r.status;r.source;var h=r.messageId,g=r.sentTime,v=r.readReceiptRequest,P=r.supportExt;r.extMsg;var E,I=r.pushContent,T=r.pushTitle,R=r.pushId,O=r.pushConfig,N=r.templateId,M=r.disableTitle,U=r.forcePushDetail,w=!1;if(_(u))E=u;else try{E=u?JSON.parse(u):u}catch(e){E=u,this.logger.error($.P_PARSE_JSON_MSGS_E,JSON.stringify({messageId:h}))}_(E)&&(w=!!E.mentionedInfo);var b={isCounted:!1,isPersited:!1};p in C?b=C[p]:p in this._customMessageType&&(b=this._customMessageType[p]);var x=null;P&&(x=this._msgExpansionHandler.parseReceiveExpansion(r),"conversation"!==o&&"history"!==o||(x=this._msgExpansionHandler.parseConverOrHisExpansion(r)));var L=y(n)?g<this.tcpMgr.getConnectedTime():n,A={};O&&(A=S(this.logger,O,R));var k=Z(Z({},A),{pushTitle:T,pushContent:I,pushData:I,disablePushTitle:M,forceShowDetailContent:U,templateId:N}),D={channelId:s,conversationType:i,targetId:a,senderUserId:c,content:E||{},messageType:p,messageUId:l||"",messageDirection:d,isOffLineMessage:L,sentTime:g,receivedTime:0,isPersited:b.isPersited,isCounted:b.isCounted,isMentioned:w,disableNotification:!1,isStatusMessage:!1,canIncludeExpansion:P,expansion:P?x:null,receivedStatus:f,messageId:h,pushConfig:k};if(d===m.RECEIVE?D.receivedStatus=f:d===m.SEND&&(D.sentStatus=f),v){var J=JSON.parse(v),j=J.hasRespond,H=J.readerInfo,B={hasRespond:j,readCount:J.readCount,totalCount:J.totalCount},F=[];if(H)for(var G in H)F.push({userId:G,readTime:H[G]});B.readerList=F,D.readReceiptInfo=B}return D},t.prototype._updateReadReceiptInfo=function(e,t){var n=this._callCppProxy("getMessage",e),o=JSON.parse(n),r=o.readReceiptRequest?JSON.parse(o.readReceiptRequest):{},s=Z(Z({},r),t);this._callCppProxy("updateReadReceiptRequestInfo",e,JSON.stringify(s))},t.prototype._buildConversation=function(e){var t=JSON.parse(e),n=t.channelId,o=t.conversationType,r=t.targetId,s=t.unreadCount,i=t.lastestMsg,a=t.isTop,c=t.isBlocked,u=t.matchCount,p=t.hasUnreadMention,l=c?P.OPEN:P.CLOSE;return{channelId:n,conversationType:o,targetId:r,unreadMessageCount:s,latestMessage:-1===JSON.parse(i).messageId?null:this._buildMessage(i),hasMentioned:p,mentionedInfo:null,notificationStatus:l,isTop:a,lastUnreadTime:0,matchCount:u}},t.prototype._convertResultList=function(e,t){var n=JSON.parse(e).list;return n=n.map((function(e){var n=JSON.parse(e.obj);return t?t(n):n}))},t.prototype._setOnReceiveMessageListener=function(){var e=this;this._cppProtocol.setOnReceiveMessageListener((function(t,n,o,r){var s,i=e._buildMessage(t,{isOffLineMessage:o}),a=i.messageType;if(a!==E.LOG_COMMAND||"rongcloudsystem"!==i.senderUserId){if(a===E.GROUP_READ_RECEIPT_REQUEST){var c=i.content,u=c.msgId,p=c.rrn,l=c.tmn;e._updateReadReceiptInfo(u,{readCount:p,totalCount:l})}if("RC:MsgExMsg"===a)return e._msgExpansionHandler.setLocalFromExtMsg(e.logger,i),void e._sendMessageExpansion(i);if(i.canIncludeExpansion&&e._msgExpansionHandler.setLocalFromReceiveMsg(e.logger,i),a===E.SYNC_READ_STATUS){if(i.senderUserId!==e.tcpMgr.getCurrentUserId())return;e._callCppProxy("clearUnreadCountByTimestamp",i.conversationType,i.targetId,i.content.lastMessageSendTime,i.channelId||"")}var d=!0;if(0!==n||r||(d=!1),a!==E.LOG_COMMAND||"rongcloudsystem"!==i.senderUserId){if(a===E.DELIVERED)return e._callCppProxy("setMessageDeliverTime",JSON.stringify(i.content)),void e._sendMessageDelivered(i.content.map((function(e){return{deliverTime:e.time,messageUId:e.messageUId,objectName:e.objectName,targetId:e.targetId}})));if(a!==E.DELIVERED_MSG){a===E.RECALL&&e.handleRecalledMessage(i);var f=i.conversationType,h=i.targetId;a===E.RECALL&&i.senderUserId===e.tcpMgr.getCurrentUserId()&&(f=i.content.conversationType||f,h=i.content.targetId||h),e._sendMessageNotification(Object.assign(i,{hasMoreMsg:d,conversationType:f,targetId:h}))}else{var g={totalCount:i.content.tmn,list:null===(s=i.content.dl)||void 0===s?void 0:s.map((function(e){return{MessageUId:e.msgId,deliveryCount:e.drn}}))};e._sendGroupMessageDeliveredStatus(g)}}else{var v=Object.keys(e._senders).map((function(t){return e._senders[t]}));v.length>0&&e._sendMessageNotification(Object.assign(i,{hasMoreMsg:d}),v.slice(1))}}else{var C=i.content,_=C.startTime,y=C.endTime,S=C.platform,m=C.logId,P=C.uri;e.reporter.report(parseInt(_,10),parseInt(y,10),S,P,m,i.messageUId)}}),(function(){e._sendPullOfflineFinished()}))},t.prototype.handleRecalledMessage=function(e){var t=e.content.messageUId;if(t){var n=this._callCppProxy("getMessage",t),o=this._buildMessage(n,{isOffLineMessage:!1});if(o.messageId){var r={recallTime:Date.now(),admin:!!e.content.isAdmin,originalObjectName:o.messageType,originalMessageContent:o.content,recallActionTime:e.sentTime,operatorId:e.senderUserId};e.content.user&&(r.user=e.content.user),e.content.extra&&(r.extra=e.content.extra),o.messageType===E.TextMessage&&(r.recallContent=o.content.content),e.content.isDelete?this._callCppProxy("deleteMessages",[o.messageId]):this._callCppProxy("setMessageContent",o.messageId,JSON.stringify(r),E.RECALL_NOTIFICATION_MESSAGE)}}},t.prototype._sendMessageExpansion=function(e,t){void 0===t&&(t=[]);var n=e.channelId,o=e.content,r=o.put,s=o.del,i=o.mid,a={};r&&(a.updatedExpansion={channelId:n,messageUId:i,expansion:r}),s&&(a.deletedExpansion={channelId:n,messageUId:i,deletedKeys:s}),this._send2AllRenderer("expansion",a,t)},t.prototype._sendMessageNotification=function(e,t){void 0===t&&(t=[]),this._send2AllRenderer("batchMessage",e,t)},t.prototype._sendPullOfflineFinished=function(){this._send2AllRenderer("pullFinished",null)},t.prototype._sendMessageDelivered=function(e){this._send2AllRenderer("messageDelivered",e)},t.prototype._sendGroupMessageDeliveredStatus=function(e){this._send2AllRenderer("groupMessageDeliveredStatus",e)},t.prototype._sendChatroomStatus=function(e){this._send2AllRenderer("chatroom",e)},t.prototype._setConversationStatusListener=function(){var e=this;this._cppProtocol.setConversationStatusListener((function(t){var n=JSON.parse(t).list,o=[];n.forEach((function(e){var t=JSON.parse(e.obj),n=t.conversationType,r=t.targetId,s=t.status,i=t.channelId,a={notificationStatus:2,isTop:!1};s.forEach((function(e){var t=JSON.parse(e.item);1===t.type?a.notificationStatus=1===Number(t.value)?P.OPEN:P.CLOSE:a.isTop=1===Number(t.value)})),o.push({channelId:i,conversationType:n,targetId:r,updatedItems:{notificationStatus:{val:a.notificationStatus,time:0},isTop:{val:a.isTop,time:0}}})})),e._send2AllRenderer("conversation",o)}),(function(t){e._send2AllRenderer("conversationTag",t)}))},t.prototype._setUserProfileListener=function(){var e=this;this._cppProtocol.setUserProfileListener((function(){}),(function(t){e._send2AllRenderer("tag",t),e._getRTCProfile()}))},t.prototype._getRTCProfile=function(){var e=this._callCppProxy("getRTCProfile");if(e){var t=this.tcpMgr.getToken();this.navi.updateVoipCallInfo(t,e);var n=this.navi.getNaviInfoFromCache(t);this._send2AllRenderer("onNaviDataChange",n)}},t.prototype._setRTCLivingRoomEventListener=function(){var e=this;this._cppProtocol.setRTCRoomEventListener((function(t){var n=new Uint8Array(t).buffer;e._send2AllRenderer("onRTCDataChange",n)}))},t.prototype._setChatroomEventListener=function(){var e=this;this._cppProtocol.setChatroomEventListener((function(t,n){e._sendChatroomStatus({chatroomDestroyed:t})}))},t.prototype._setCallInfoListener=function(){var e=this;this._cppProtocol.setCallInfoListener((function(t){e._send2AllRenderer("callInfo",t)}))},t.prototype.registerMessageType=function(e,t,n,o){var r=0;t&&(r|=1),n&&(r|=2),this._customMessageType[e]={isCounted:n,isPersited:t},this.logger.info($.P_REGTYP_O,JSON.stringify({type:e,opt:r,search:o})),this._callCppProxy("registerMessageType",e,r,o)},t.prototype.connect=function(e,t,n){return this.tcpMgr.connect(e,t,n)},t.prototype.reportSDKInfo=function(e){var t,n,o=JSON.stringify(Z(Z({},e),{"electron-main":"5.7.0"}));this.logger.info($.P_REPORT_VER_O,o),null===(n=(t=this._cppProtocol).uploadSDKVersion)||void 0===n||n.call(t,o)},t.prototype.disconnect=function(){this._chatroomCache.length=0,this.reporter.stop(),Te(null,this.logger),this.tcpMgr.disconnect()},t.prototype.logout=function(){this.disconnect()},t.prototype.setUserStatusListener=function(e,t){this._cppProtocol.setOnReceiveStatusListener((function(e,n){t({userId:e,status:n})}));var n=e.userIds||[];n.length&&this.subscribeUserStatus(n)},t.prototype.subscribeUserStatus=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("subscribeUserStatus",e,(function(){n(a.SUCCESS)}),n)}))},t.prototype.setUserStatus=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("setUserStatus",e,(function(){n(a.SUCCESS)}),n)}))},t.prototype.getUserStatus=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("getUserStatus",e,(function(e){n({code:a.SUCCESS,data:{status:e}})}),(function(e){n({code:e})}))}))},t.prototype.sendMessage=function(e,t,n,o,r){var s=this;void 0===r&&(r=this.logger.createTraceId());var i=n.messageType,c=n.content,u=n.pushContent,p=n.pushData,l=n.directionalUserIdList,d=n.disableNotification,f=n.canIncludeExpansion,h=n.expansion,g=n.isVoipPush,C=n.pushConfig,_=n.channelId,y=n.isMentioned,S=n.mentionedType,m=n.mentionedUserIdList,P=n.messageId,R=C||{},O=R.iOSConfig,N=R.androidConfig,M=R.pushTitle,U=R.pushContent,w=R.pushData,b=R.disablePushTitle,x=R.forceShowDetailContent,L=R.templateId,A=I(O,N);return new Promise((function(n){var C,I,R;u=U||u||"",p=w||p||"",d=d||!1,g=g||!1,M=M||"",U=U||"",w=w||"",b=b||!1,x=x||!1,f=f||!1;var O=(null==N?void 0:N.notificationId)||"";if(l=l||[],P=P||0,_=_||"",e===v.GROUP&&y&&c&&(c.mentionedInfo={userIdList:(null===(C=c.mentionedInfo)||void 0===C?void 0:C.userIdList)||m||[],type:(null===(I=c.mentionedInfo)||void 0===I?void 0:I.type)||S||T.ALL,mentionedContent:(null===(R=c.mentionedInfo)||void 0===R?void 0:R.mentionedContent)||""}),e===v.GROUP&&i===E.READ_RECEIPT_RESPONSE&&c.receiptMessageDic)for(var k in c.receiptMessageDic)l.push(k);var D={};for(var k in h)D[k]={v:""},D[k].v=h[k];var J=L||"";s.logger.info($.P_SEND_MSG_T,JSON.stringify({messageType:i,conversationType:e,targetId:t,channelId:_}),r);var j=s._callCppProxy("sendMessage",(function(e,t){var o=s._buildMessage(e,{isOffLineMessage:!1});return s.logger.info($.P_SEND_MSG_R,JSON.stringify({code:t,messageUId:o.messageUId}),r),t===a.SENSITIVE_REPLACE?n({code:t}):("RC:MsgExMsg"===o.messageType&&s._msgExpansionHandler.setLocalFromExtMsg(s.logger,o),o.canIncludeExpansion&&s._msgExpansionHandler.setLocalFromReceiveMsg(s.logger,o),n({code:a.SUCCESS,data:o}))}),(function(e,t){var o=s._buildMessage(e,{isOffLineMessage:!1});return s.logger.warn($.P_SEND_MSG_R,JSON.stringify({code:t,messageId:o.messageId}),r),o.sentTime=Date.now()-s._cppProtocol.getDeltaTime(),n({code:t,data:o})}),e,t,i,JSON.stringify(c),l,d,b,x,u,p,O,M,A,J,f,JSON.stringify(D),g,_,P),H=JSON.parse(j);null==o||o(H.messageId)}))},t.prototype.recallMsg=function(e,t,n,o,r){var s=this;return new Promise((function(i,c){var u,p=r.user,l=r.pushContent,d=r.channelId,f=r.extra,h=r.pushConfig,g=r.disableNotification,v=r.isDelete,C={conversationType:e,targetId:t,messageUId:n,sentTime:o,user:p,extra:f,channelId:d,isDelete:v||!1};p&&(C.user=p),f&&(C.extra=f);var _={conversationType:e,targetId:t,senderUserId:s.tcpMgr.getCurrentUserId(),content:C,objectName:E.RECALL,messageUid:n,direction:m.SEND,status:R.UNREAD,sentTime:o,channelId:d},y=s._buildMessage(JSON.stringify(_),{isOffLineMessage:!1});s._callCppProxy("recallMessage",(function(){s.handleRecalledMessage(y),i({code:a.SUCCESS,data:y})}),(function(e){i({code:e})}),E.RECALL,JSON.stringify(C),g||!1,(null==h?void 0:h.disablePushTitle)||!1,(null==h?void 0:h.forceShowDetailContent)||!1,l||"",(null==h?void 0:h.pushData)||"",(null===(u=null==h?void 0:h.androidConfig)||void 0===u?void 0:u.notificationId)||"",(null==h?void 0:h.pushTitle)||"",I(null==h?void 0:h.iOSConfig,null==h?void 0:h.androidConfig),(null==h?void 0:h.templateId)||"",d)}))},t.prototype.getHistoryMessage=function(e,t,n,o,r,s,i){var c=this;return new Promise((function(u,p){n=n||0;var l=0===r,d=o+1,f=c._callCppProxy("getHistoryMessages",e,t,n,d,i,l,s),h=JSON.parse(f).list,g=[];h.reverse();for(var v=0;v<h.length;v++){var C=c._buildMessage(h[v].obj);g[v]=C}u({code:a.SUCCESS,data:{list:d===g.length?g.slice(1,d):g,hasMore:o<g.length}})}))},t.prototype.getRemoteHistoryMessages=function(e,t,n,o,r,s){var i=this;return new Promise((function(c,u){n=n||0;i._callCppProxy("getRemoteHistoryMessages",e,t,n,o,(function(e,t){var n=JSON.parse(e).list,o=[];n.reverse();for(var r=0;r<n.length;r++){var s=i._buildMessage(n[r].obj);o[r]=s}c({code:a.SUCCESS,data:{list:o,hasMore:!!t}})}),(function(e){c({code:e})}),r,!0,s)}))},t.prototype.deleteRemoteMessage=function(e,t,n,o){var r=this;return new Promise((function(s,i){var c=JSON.stringify(n);r._callCppProxy("deleteRemoteHistoryMessages",e,t,c,!1,o,(function(){s(a.SUCCESS)}),s)}))},t.prototype.deleteRemoteMessageByTimestamp=function(e,t,n,o){var r=this;return new Promise((function(s,i){r._callCppProxy("clearRemoteHistoryMessages",e,t,n,(function(){s(a.SUCCESS)}),(function(e){s(e)}),o)}))},t.prototype.clearMessages=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("clearMessages",e,t,n),r(a.SUCCESS)}))},t.prototype.getConversationList=function(e,t,n,o,r){var s=this;return void 0===r&&(r=""),new Promise((function(e,t){for(var n=s._callCppProxy("getConversationList",[1,3,6,7],r),o=JSON.parse(n).list,i=[],c=0;c<o.length;c++)i.push(s._buildConversation(o[c].obj));e({code:a.SUCCESS,data:i})}))},t.prototype.getConversation=function(e,t,n){var o=this;return new Promise((function(r,s){var i=o._callCppProxy("getConversation",e,t,n);if(i)r({code:a.SUCCESS,data:o._buildConversation(i)});else{var c=o._cppProtocol.getHistoryMessages(e,t,0,1,"",!0,n),u=void 0;try{u=JSON.parse(c).list}catch(e){o.logger.error($.P_PARSE_JSON_MSGS_E,null==e?void 0:e.stack),u=[]}var p=null;u.length>0&&(p=o._buildMessage(u[0].obj));var l=o._callCppProxy("getConversationNotificationStatus",e,t,n),d=o._callCppProxy("getConversationTopStatus",e,t,n);r({code:a.SUCCESS,data:{conversationType:e,targetId:t,channelId:n,unreadMessageCount:0,latestMessage:p,notificationStatus:l?P.OPEN:P.CLOSE,isTop:Boolean(d),lastUnreadTime:0}})}}))},t.prototype.removeConversation=function(e,t,n){var o=this._callCppProxy("removeConversation",e,t,n);return Promise.resolve(o?a.SUCCESS:a.UNKNOWN)},t.prototype.clearConversations=function(e,t){var n=this;return new Promise((function(o,r){var s=[];s=O(e)?e:[v.PRIVATE,v.GROUP,v.SYSTEM,v.PUBLIC_SERVICE],n._callCppProxy("clearConversations",s,t),o(a.SUCCESS)}))},t.prototype.getAllConversationUnreadCount=function(e,t,n){var o=this._callCppProxy("getTotalUnreadCount",t,n,e);return Promise.resolve({code:a.SUCCESS,data:o})},t.prototype.getConversationUnreadCount=function(e,t,n){var o=this;return void 0===n&&(n=""),new Promise((function(r){var s=o._callCppProxy("getUnreadCount",e,t,n);r({code:a.SUCCESS,data:s})}))},t.prototype.clearConversationUnreadCount=function(e,t,n){var o=this;return void 0===n&&(n=""),new Promise((function(r,s){o._callCppProxy("clearUnreadCount",e,t,n),r(a.SUCCESS)}))},t.prototype.clearUnreadCountByTimestamp=function(e,t,n,o){var r=this;return new Promise((function(s,i){r._callCppProxy("clearUnreadCountByTimestamp",e,t,n,o),s(a.SUCCESS)}))},t.prototype.getFirstUnreadMessage=function(e,t,n){var o=this;return new Promise((function(r,s){var i=o._callCppProxy("getTheFirstUnreadMessage",e,t,n),c=o._buildMessage(i);r({code:a.SUCCESS,data:-1!==c.messageId?c:null})}))},t.prototype.setConversationToTop=function(e,t,n,o){var r=this;return void 0===o&&(o=""),new Promise((function(s,i){r._callCppProxy("setConversationToTop",e,t,n,o,!0),s(a.SUCCESS)}))},t.prototype.setConversationHidden=function(e,t,n,o){var r=this;return new Promise((function(s,i){r._callCppProxy("setConversationHidden",e,t,n,o),s(a.SUCCESS)}))},t.prototype.setConversationNotificationStatus=function(e,t,n,o){var r=this;return new Promise((function(s,i){r._callCppProxy("setConversationNotificationStatus",e,t,n,(function(){s(a.SUCCESS)}),s,o)}))},t.prototype.setConversationStatus=function(e,t,n,o,r){var s=this;return new Promise((function(i,c){s._callCppProxy("setConversationStatus",e,t,n,o,(function(){i(a.SUCCESS)}),i,r,!0)}))},t.prototype.getConversationNotificationStatus=function(e,t,n){var o=this;return new Promise((function(r,s){var i=o._callCppProxy("getConversationNotificationStatus",e,t,n);r({code:a.SUCCESS,data:i?P.OPEN:P.CLOSE})}))},t.prototype.searchConversationByContent=function(e,t,n,o){var r=this;return new Promise((function(s,i){o=o||[1,3,6,7];for(var c=r._callCppProxy("searchConversationByContent",o,e,t,n),u=JSON.parse(c).list,p=[],l=0;l<u.length;l++)p[l]=r._buildConversation(u[l].obj);s({code:a.SUCCESS,data:p})}))},t.prototype.searchConversationByContentWithAllChannel=function(e,t,n){var o=this;return new Promise((function(r,s){n=n||[1,3,6,7];for(var i=o._callCppProxy("searchConversationByContentWithAllChannel",n,e,t),c=JSON.parse(i).list,u=[],p=0;p<c.length;p++)u[p]=o._buildConversation(c[p].obj);r({code:a.SUCCESS,data:u})}))},t.prototype.searchMessageByContent=function(e,t,n,o,r,s,i){var c=this;return new Promise((function(s,u){c._callCppProxy("searchMessageByContent",e,t,n,o,r,1,(function(e,t){for(var n=e?JSON.parse(e).list:[],o=[],r=0;r<n.length;r++)o[r]=c._buildMessage(n[r].obj);s({code:a.SUCCESS,data:{messages:o,count:t}})}),i)}))},t.prototype.searchMessageByContentWithAllChannel=function(e,t,n,o,r){var s=this;return new Promise((function(i,c){s._callCppProxy("searchMessageByContentWithAllChannel",e,t,n,o,r,1,(function(e,t){for(var n=e?JSON.parse(e).list:[],o=[],r=0;r<n.length;r++)o[r]=s._buildMessage(n[r].obj);i({code:a.SUCCESS,data:{messages:o,count:t}})}))}))},t.prototype.searchMessageByContentInTimeRangeWithAllChannel=function(e,t,n,o,r,s,i){var c=this;return new Promise((function(u,p){c._callCppProxy("searchMessageByTimestampWithAllChannel",e,t,n,o,r,s,i,(function(e){for(var t=e?JSON.parse(e).list:[],n=[],o=0;o<t.length;o++)n[o]=c._buildMessage(t[o].obj);u({code:a.SUCCESS,data:{messages:n}})}))}))},t.prototype.getUnreadMentionedMessages=function(e,t,n){for(var o=JSON.parse(this._callCppProxy("getUnreadMentionedMessages",e,t,n)).list,r=0;r<o.length;r++)o[r]=this._buildMessage(o[r].obj);return o},t.prototype.addToBlacklist=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("addToBlacklist",e,(function(){n(a.SUCCESS)}),n)}))},t.prototype.removeFromBlacklist=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("removeFromBlacklist",e,(function(){n(a.SUCCESS)}),n)}))},t.prototype.getBlacklist=function(){var e=this;return new Promise((function(t,n){e._callCppProxy("getBlacklist",(function(e){t({code:a.SUCCESS,data:e})}),(function(e){t({code:e})}))}))},t.prototype.getBlacklistStatus=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("getBlacklistStatus",e,(function(e){n({code:a.SUCCESS,data:e})}),(function(e){n({code:e})}))}))},t.prototype.insertMessage=function(e,t,n){var o=this,r=n.content,s=n.senderUserId,i=n.messageType,c=n.messageDirection,u=n.readStatus,p=n.sentStatus,l=n.sentTime,d=n.searchContent,f=n.isUnread,h=n.messageUId,g=n.disableNotification,v=n.canIncludeExpansion,C=n.expansionMsg,_=n.channelId;return r=JSON.stringify(r),new Promise((function(n,y){var S=f?0:1,m=o._callCppProxy("insertMessage",e,t,s,i,r,(function(){}),(function(e){n({code:e})}),c,u||0,p||10,l||0,d||"",S||0,h||"",g||!1,v||!1,C||"",_||""),P=o._buildMessage(m,{isOffLineMessage:!1});P.messageUId=h,P.sentTime=l,n({code:-1===P.messageId?a.MSG_INSERT_ERROR:a.SUCCESS,data:P})}))},t.prototype.deleteMessages=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("deleteMessages",e),n(a.SUCCESS)}))},t.prototype.deleteMessagesByTimestamp=function(e,t,n,o,r){var s=this;return new Promise((function(i,c){s._callCppProxy("deleteMessagesByTimestamp",e,t,n,o,r),i(a.SUCCESS)}))},t.prototype.getMessage=function(e){var t=this;return new Promise((function(n,o){var r=t._callCppProxy("getMessage",e),s=t._buildMessage(r,{isOffLineMessage:!1});n({code:a.SUCCESS,data:s})}))},t.prototype.setMessageContent=function(e,t,n){var o=this;return new Promise((function(r,s){t=JSON.stringify(t),o._callCppProxy("setMessageContent",e,t,n),r(a.SUCCESS)}))},t.prototype.setMessageSearchField=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("setMessageSearchField",e,t,n),r(a.SUCCESS)}))},t.prototype.setMessageSentStatus=function(e,t){var n=this;return new Promise((function(o,r){n._callCppProxy("setMessageSentStatus",e,t),o(a.SUCCESS)}))},t.prototype.setMessageReceivedStatus=function(e,t){var n=this;return new Promise((function(o,r){n._callCppProxy("setMessageReceivedStatus",e,t),o(a.SUCCESS)}))},t.prototype.saveConversationMessageDraft=function(e,t,n,o){throw new Error("Method not implemented.")},t.prototype.getConversationMessageDraft=function(e,t,n){throw new Error("Method not implemented.")},t.prototype.clearConversationMessageDraft=function(e,t,n){throw new Error("Method not implemented.")},t.prototype.pullConversationStatus=function(e){throw new Error("Method not implemented.")},t.prototype.batchSetConversationStatus=function(e){var t=e[0],n=t.conversationType,o=t.targetId,r=t.isTop,s=t.notificationStatus,i=t.channelId;if(void 0!==r&&void 0===s)return this.setConversationToTop(n,o,r,i);if(void 0!==s&&void 0===r){var a=s===P.OPEN;return this.setConversationNotificationStatus(n,o,a,i)}var c=s===P.OPEN;return this.setConversationStatus(n,o,c,r,i)},t.prototype.pullUserSettings=function(e){throw new Error("Method not implemented.")},t.prototype.sendReadReceiptMessage=function(e,t,n){var o=this;return new Promise((function(r){o._callCppProxy("sendReadReceipt",e,n||"",t,(function(){t.forEach((function(e){o._updateReadReceiptInfo(e,{hasRespond:!0});try{var t=JSON.parse(o._callCppProxy("getMessage",e)).messageId;o.setMessageReceivedStatus(t,1)}catch(t){o.logger.error($.P_PARSE_JSON_MSGS_E,JSON.stringify({messageUId:e,error:null==t?void 0:t.stack}))}})),r({code:a.SUCCESS})}),(function(e){r({code:e})}))}))},t.prototype.getMessageReader=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("getMessageReader",e,n,t,(function(e,n){var s=[],i={};(e=JSON.parse(e)).list.forEach((function(e){var t=JSON.parse(e.obj),n=t.id,o=t.time;s.push({userId:n,readTime:o}),i[n]=o}));var c={readerInfo:i,readCount:s.length,totalCount:n};o._updateReadReceiptInfo(t,c),r({code:a.SUCCESS,data:{list:s,totalMemberCount:n}})}),(function(e){r({code:e})}))}))},t.prototype._addChatroomCache=function(e,t,n){this._rmChatroomCache(e),this._chatroomCache.push({chatroomId:e,joinExist:n,count:t})},t.prototype._rmChatroomCache=function(e){this._chatroomCache=this._chatroomCache.filter((function(t){return t.chatroomId!==e}))},t.prototype._try2RejoinChatroom=function(){var e=this;if(0!==this._chatroomCache.length){var t=this.logger.createTraceId();this._chatroomCache.forEach((function(n){return ee(e,void 0,void 0,(function(){var e,o,r,s;return te(this,(function(i){switch(i.label){case 0:return e=n.chatroomId,o=n.joinExist,r=n.count,this.logger.info(u.L_REJOIN_CHATROOM_T,e,t),[4,this._joinChrm(e,r,o,!1)];case 1:return(s=i.sent())===a.SUCCESS?(this.logger.info(u.L_REJOIN_CHATROOM_R,e,t),this._sendChatroomStatus({rejoinedRoom:{chatroomId:e,count:r}}),[2]):(s===a.RC_CHATROOM_USER_KICKED&&this._rmChatroomCache(e),this._sendChatroomStatus({rejoinedRoom:{chatroomId:e,errorCode:s}}),this.logger.warn(u.L_REJOIN_CHATROOM_R,"chrmId: ".concat(e,", code: ").concat(s),t),[2])}}))}))}))}},t.prototype._joinChrm=function(e,t,n,o){var r=this,s=n?"joinExistChatRoom":"joinChatRoom";return new Promise((function(i){o&&r._callCppProxy("clearMessages",v.CHATROOM,e,""),r._callCppProxy(s,e,t,(function(){r._addChatroomCache(e,t,n),i(a.SUCCESS)}),i)}))},t.prototype.joinChatroom=function(e,t){return this._joinChrm(e,t,!1,!0)},t.prototype.joinExistChatroom=function(e,t){return this._joinChrm(e,t,!0,!0)},t.prototype.quitChatroom=function(e){var t=this;return this._rmChatroomCache(e),new Promise((function(n,o){t._callCppProxy("quitChatRoom",e,(function(){n(a.SUCCESS)}),n)}))},t.prototype.getChatroomInfo=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("getChatroomInfo",e,t,n,(function(e,t){var n=e?JSON.parse(e).list:[],o=[];if(n.length>0)for(var s=0;s<n.length;s++)o.push(JSON.parse(n[s].obj));r({code:a.SUCCESS,data:{userInfos:o,userCount:t}})}),(function(e){r({code:e})}))}))},t.prototype.getChatroomHistoryMessages=function(e,t,n,o){var r=this;return new Promise((function(s,i){r._callCppProxy("getChatroomHistoryMessage",e,t,n,o,(function(e){var t;try{t=JSON.parse(e)}catch(e){t={list:[]}}var n=t.list;if(n&&n.length)try{t.list=n.map((function(e){return r._buildMessage(e.obj)}))}catch(e){t.list=[]}s({code:a.SUCCESS,data:t})}),(function(e){s({code:e})}),"")}))},t.prototype.setChatroomEntry=function(e,t){var n=this;return new Promise((function(o,r){var s='[{"key":"'.concat(t.key,'", "value":"').concat(t.value,'"}]');n._callCppProxy("setChatroomKV",e,s,!!t.isAutoDelete,!!t.isOverwrite,(function(){o(a.SUCCESS)}),(function(e){o(e)}))}))},t.prototype.setChatroomEntries=function(e,t){var n=this;return new Promise((function(o){n._callCppProxy("setChatroomKV",e,JSON.stringify(t.entries),!!t.isAutoDelete,!!t.isOverwrite,(function(){o({code:a.SUCCESS})}),(function(e){o({code:e})}))}))},t.prototype.forceSetChatroomEntry=function(e,t){return t.isOverwrite=!0,t.userId=t.userId||this.tcpMgr.getCurrentUserId(),this.setChatroomEntry(e,t)},t.prototype.removeChatroomEntry=function(e,t){var n=this,o=[t.key];return new Promise((function(r,s){n._callCppProxy("deleteChatroomKV",e,o,!!t.isOverwrite,(function(){r(a.SUCCESS)}),(function(e){r(e)}))}))},t.prototype.forceRemoveChatroomEntry=function(e,t){return t.isOverwrite=!0,t.userId=t.userId||this.tcpMgr.getCurrentUserId(),this.removeChatroomEntry(e,t)},t.prototype.removeChatroomEntries=function(e,t){var n=this;return new Promise((function(o){var r=t.entries.map((function(e){return e.key}));n._callCppProxy("deleteChatroomKV",e,r,!!t.isOverwrite,(function(){o({code:a.SUCCESS})}),(function(e){o({code:e})}))}))},t.prototype.getChatroomEntry=function(e,t){return ee(this,void 0,void 0,(function(){var n;return te(this,(function(o){switch(o.label){case 0:return[4,this.getAllChatroomEntry(e)];case 1:return(n=o.sent()).code===a.SUCCESS?[2,{code:a.SUCCESS,data:n.data?n.data[t]:null}]:[2,{code:n.code}]}}))}))},t.prototype.getAllChatroomEntry=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("getChatroomKV",e,(function(e){var t={};try{(e?JSON.parse(e):{list:[]}).list.map((function(e){return JSON.parse(e.obj)})).forEach((function(e){t[e.key]=e.value?e.value:""}))}catch(e){}n({code:a.SUCCESS,data:t})}),(function(e){n({code:e})}))}))},t.prototype.getFileToken=function(e,t,n,o){var r=this;return n=n||"",o=o||"",new Promise((function(s){var i;i=o&&"uploads"!==o?t||"":N(e,t),r._callCppProxy("getUploadToken",e,i,n,o,(function(e,t,n,o,r,c,u,p,l,d,f,h,g,v,C,_,y,S){s({code:a.SUCCESS,data:{token:e,deadline:0,bosToken:t,bosDate:n,path:o,osskeyId:r,ossPolicy:c,ossSign:u,ossBucketName:p,fileName:i,s3Credential:l,s3Algorithm:d,s3Date:f,s3Policy:h,s3Signature:g,s3BucketName:v,stcAuthorization:C,stcContentSha256:_,stcDate:y,stcBucketName:S}})}),(function(e){s({code:e})}))}))},t.prototype.getFileUrl=function(e,t,n,o){var r=this;return new Promise((function(s){r._callCppProxy("getDownloadUrl",e,n,o,t-1,(function(e){s({code:a.SUCCESS,data:{downloadUrl:e}})}),(function(e){s({code:e})}))}))},t.prototype.clearData=function(){var e=this;return new Promise((function(t,n){var o=e._callCppProxy("clearData");t({code:a.SUCCESS,data:o})}))},t.prototype.getDeviceId=function(){var e=this._dbpath||o(U.getPath("userData"));return Le(e)},t.prototype.getVoIPKey=function(e,t){var n=this;return new Promise((function(o,r){n._callCppProxy("getVoIPKey",e,t,"",(function(e){o({code:a.SUCCESS,data:e})}),(function(e){o({code:e})}))}))},t.prototype.bindRTCRoomForChatroom=function(e){var t=this;return new Promise((function(n,o){var r=e.chatRoomId,s=e.rtcRoomId;t._callCppProxy("bindRTCRoomForChatroom",r,s,(function(){n(a.SUCCESS)}),(function(e){n(e)}))}))},t.prototype.getGroupMessageDeliverList=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("getGroupMessageDeliverList",e,n,t,(function(e,t){var n=JSON.parse(e).list.map((function(e){return{time:JSON.parse(e.obj).time,userId:JSON.parse(e.obj).id}}));r({code:a.SUCCESS,data:{totalCount:t,list:n}})}),(function(e){r({code:e})}))}))},t.prototype.getPrivateMessageDeliverTime=function(e,t){var n=this;return new Promise((function(o,r){var s=n._callCppProxy("getMessageDeliverTime",e);if(s)o({code:a.SUCCESS,data:s});else{n._callCppProxy("getPrivateMessageDeliverList",t,e,(function(e){var t=0,n=JSON.parse(e).list;n.length>0&&(t=JSON.parse(n[0].obj).time);o({code:a.SUCCESS,data:t})}),(function(e){o({code:e})}))}}))},t.prototype.rtcSignaling=function(e,t,n,o){var r=this,s=Array.prototype.slice.call(new Uint8Array(o));return new Promise((function(o){r._callCppProxy("rtcSignaling",e,t,n,s,(function(e){var t=new Uint8Array(e).buffer;o({code:a.SUCCESS,buffer:t})}),(function(e){o({code:e})}))}))},t.prototype._setRTCHeartbeatListener=function(){var e=this;this._cppProtocol.setRTCHeartbeatListener((function(t,n){var o=e.rtcHeartbeatResolves[t];if(o){var r=o.find((function(e){return""===e.seqId}));r&&(r.seqId=n)}}),(function(t,n,o,r){var s=e.rtcHeartbeatResolves[t];if(s){var i=s.findIndex((function(e){return e.seqId===o}));-1!==i&&s.splice(i,1)[0].resolve({code:n,data:{version:Number(r)}})}}))},t.prototype.rtcPing=function(e,t,n){var o=this;return new Promise((function(t){var n={resolve:t,seqId:""},r=o.rtcHeartbeatResolves[e];r?r.push(n):o.rtcHeartbeatResolves[e]=[n],o._callCppProxy("sendRTCHeartbeat",[e])}))},t.prototype.createTag=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("addTag",e.tagId,e.tagName,(function(){n({code:a.SUCCESS})}),(function(e){n({code:e})}))}))},t.prototype.removeTag=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("deleteTag",e,(function(){n({code:a.SUCCESS})}),(function(e){n({code:e})}))}))},t.prototype.updateTag=function(e){var t=this;return new Promise((function(n,o){t._callCppProxy("renameTag",e.tagId,e.tagName,(function(){n({code:a.SUCCESS})}),(function(e){n({code:e})}))}))},t.prototype.getTagList=function(){var e=this;return new Promise((function(t,n){var o=e._callCppProxy("getTags"),r=e._convertResultList(o,(function(e){return{tagId:e.tagId,tagName:e.tagName,conversationCount:e.conversationCount,createdTime:e.tagTime}}));t({code:a.SUCCESS,data:r})}))},t.prototype.addTagForConversations=function(e,t){var n=this;return new Promise((function(o,r){t.forEach((function(e){e.conversationType&&(e.type=e.conversationType)}));n._callCppProxy("addConversationsForTag",e,JSON.stringify(t),(function(){o({code:a.SUCCESS})}),(function(e){o({code:e})}))}))},t.prototype.removeTagForConversations=function(e,t){var n=this;return new Promise((function(o,r){t.forEach((function(e){e.conversationType&&(e.type=e.conversationType)})),n._callCppProxy("removeConversationsForTag",e,JSON.stringify(t),(function(){o({code:a.SUCCESS})}),(function(e){o({code:e})}))}))},t.prototype.removeTagsForConversation=function(e,t){var n=this;return new Promise((function(o,r){n._callCppProxy("removeTagsForConversation",e.conversationType,e.targetId,e.channelId||"",t,(function(){o({code:a.SUCCESS})}),(function(e){o({code:e})}))}))},t.prototype.getConversationListByTag=function(e,t,n,o){var r=this;return new Promise((function(s){var i=r._callCppProxy("getConversationsForTagByPage",e,t,n||20,o||""),c=r._convertResultList(i,(function(e){return Z(Z({},r._buildConversation(JSON.stringify(e))),{isTopInTag:e.topForTag})}));s({code:a.SUCCESS,data:c})}))},t.prototype.getUnreadCountByTag=function(e,t){var n=this;return new Promise((function(o,r){var s=n._callCppProxy("getConversationUnreadCountForTag",e,t);o({code:a.SUCCESS,data:s})}))},t.prototype.setConversationStatusInTag=function(e,t,n){var o=this;return new Promise((function(r,s){o._callCppProxy("setConversationToTopForTag",e,t.conversationType,t.targetId,t.channelId||"",n.isTop||!1,(function(){r({code:a.SUCCESS})}),(function(e){r({code:e})}))}))},t.prototype.getTagsForConversation=function(e){var t=this;return new Promise((function(n,o){var r=t._callCppProxy("getTagsForConversation",e.conversationType,e.targetId,e.channelId||""),s=t._convertResultList(r,(function(e){return{tagId:e.tagId,tagName:e.tagName,isTop:e.isTop,createdTime:e.tagTime}}));n({code:a.SUCCESS,data:s})}))},t.prototype.getBlockConversationList=function(){throw new Error("Method not implemented.")},t.prototype.getTopConversationList=function(e,t){var n=this;return new Promise((function(o){var r=y(t)?n._callCppProxy("getTopConversations",e):n._callCppProxy("getTopConversations",e,t),s=JSON.parse(r).list.map((function(e){return n._buildConversation(e.obj)}));o({code:a.SUCCESS,data:s})}))},t.prototype.getUnreadMentionedCount=function(e){throw new Error("Method not implemented.")},t.prototype.getAllUnreadMentionedCount=function(){throw new Error("Method not implemented.")},t.prototype.getOSInfo=function(){return ee(this,void 0,void 0,(function(){var t;return te(this,(function(n){return t={arch:e.arch(),platform:e.platform(),type:e.type(),version:e.version(),release:e.release(),uptime:e.uptime(),cpus:e.cpus(),freemem:e.freemem(),totalmem:e.totalmem(),networkInterfaces:e.networkInterfaces()},[2,{code:a.SUCCESS,data:t}]}))}))},t.prototype.getMainProcessInfo=function(){return ee(this,void 0,void 0,(function(){return te(this,(function(e){return[2,{code:a.SUCCESS,data:{title:process.title,pid:process.pid,ppid:process.ppid,platform:process.platform,arch:process.arch,uptime:process.uptime(),cpuUsage:process.cpuUsage(),memoryUsage:process.memoryUsage(),resourceUsage:process.resourceUsage()}}]}))}))},t.prototype.setCallInfo=function(e,t,n){var o=this;return new Promise((function(r){o._callCppProxy("callInfoSignaling",e,t,n,(function(e,t){r({code:a.SUCCESS,data:{key:e,value:t}})}),(function(e){r({code:e})}))}))},t.prototype.setProxy=function(e){var t=this;return this.tcpMgr.getConnectionStatus()!==h.DISCONNECTED?new Promise((function(e){e({code:a.RC_CONN_PROXY_UNAVAILABLE})})):new Promise((function(n){n(Te(e,t.logger))}))},t.prototype.getProxy=function(){return new Promise((function(e){e(Re())}))},t.prototype.testProxy=function(e,t){return function(e,t,n){return new Promise((function(o){var r=/^https/.test(t)?Pe:ye;n.info(u.A_TEST_PROXY_O,JSON.stringify({msg:"test proxy",proxy:e,testHost:t}));var s=r(t,e,(function(e){var t=200===e.statusCode?0:e.statusCode;e.setEncoding("utf8");var n="";e.on("data",(function(e){n+=e})),e.once("end",(function(){o({status:t||0,data:n})}))}));s.once("timeout",(function(){return o({status:0})})),s.once("error",(function(e){return o({status:0,data:e.stack})})),s.end()}))}(e,t,this.logger)},t}(),Be=function(){function e(e,t,n,o){void 0===n&&(n=""),this._cppService=new He(e,t,n,o)}return e.prototype.getCppProto=function(){var e=this;return{destroy:function(){console.warn("`.getCppProto().destroy()` has being deprecated, use `.destroy()` instead."),e.destroy()}}},e.prototype.destroy=function(){this._cppService.destroy()},e.prototype.getDeviceId=function(){return this._cppService.getDeviceId()},e.prototype.getServerTime=function(){return this._cppService.getServerTime()},e.prototype.__createLogger=function(e,t){return null},e}(),Fe=function(e){return function(e,t,n){if(Oe)return Oe;if(!t)throw new Error("Initializ failed, `appkey` is required!");return Oe=new Be(t,e,null==n?void 0:n.dbpath,null==n?void 0:n.logOutputLevel)}(Y,e.appkey,e)};export{Fe as default};
|
package/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";var e=require("os"),t=require("path"),o=require("@rongcloud/engine"),r=require("child_process"),n=require("electron"),s=require("fs"),i=require("http"),a=require("https"),c=require("crypto");function u(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(o){if("default"!==o){var r=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(t,o,r.get?r:{enumerable:!0,get:function(){return e[o]}})}})),t.default=e,Object.freeze(t)}var p=u(e),l=process.versions.electron.replace(/\.\d+$/,""),d=t.resolve(__dirname,"binding","electron-v".concat(l,"-").concat(e.platform(),"-").concat(e.arch(),".node")),f={addon:null};try{f.addon=require(d)}catch(e){console.error("error ->",d,"\n",e)}var C=f.addon,_=function(e,t){return _=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])},_(e,t)};function h(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function o(){this.constructor=e}_(e,t),e.prototype=null===t?Object.create(t):(o.prototype=t.prototype,new o)}var v,g=function(){return g=Object.assign||function(e){for(var t,o=1,r=arguments.length;o<r;o++)for(var n in t=arguments[o])Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e},g.apply(this,arguments)};function S(e,t,o,r){return new(o||(o=Promise))((function(n,s){function i(e){try{c(r.next(e))}catch(e){s(e)}}function a(e){try{c(r.throw(e))}catch(e){s(e)}}function c(e){var t;e.done?n(e.value):(t=e.value,t instanceof o?t:new o((function(e){e(t)}))).then(i,a)}c((r=r.apply(e,t||[])).next())}))}function y(e,t){var o,r,n,s,i={label:0,sent:function(){if(1&n[0])throw n[1];return n[1]},trys:[],ops:[]};return s={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function a(a){return function(c){return function(a){if(o)throw new TypeError("Generator is already executing.");for(;s&&(s=0,a[0]&&(i=0)),i;)try{if(o=1,r&&(n=2&a[0]?r.return:a[0]?r.throw||((n=r.return)&&n.call(r),0):r.next)&&!(n=n.call(r,a[1])).done)return n;switch(r=0,n&&(a=[2&a[0],n.value]),a[0]){case 0:case 1:n=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(n=i.trys,(n=n.length>0&&n[n.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!n||a[1]>n[0]&&a[1]<n[3])){i.label=a[1];break}if(6===a[0]&&i.label<n[1]){i.label=n[1],n=a;break}if(n&&i.label<n[2]){i.label=n[2],i.ops.push(a);break}n[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e],r=0}finally{o=n=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,c])}}}function E(e,t,o){if(o||2===arguments.length)for(var r,n=0,s=t.length;n<s;n++)!r&&n in t||(r||(r=Array.prototype.slice.call(t,0,n)),r[n]=t[n]);return e.concat(r||Array.prototype.slice.call(t))}!function(e){e.P_INIT_O="P-init-O",e.P_DB_OPEN_O="P-db_open-O",e.P_CALL_MAIN_SYNC_E="P-call_main_sync-E",e.P_CALL_MAIN_E="P-call_main-E",e.P_SEND_2_MAIN_E="P-send_2_main-E",e.P_REGTYP_O="P-regtype-O",e.P_CALL_ADDON_E="P-call_addon-E",e.P_CALL_EXTRA_E="P-call_extra-E",e.P_CONNECT_S="P-connect-S",e.P_CONNECT_O="P-connect-O",e.P_REPORT_VER_O="P-report_version-O",e.P_PARSE_JSON_MSGS_E="P-parse_json_messsages-E",e.P_HTTP_REQ_E="P-http_request-E",e.P_SET_MSG_EXTEN_O="P-set_msg_extension-O",e.P_SEND_MSG_T="P-send_msg-T",e.P_SEND_MSG_R="P-send_msg-R",e.P_WRITE_LOG_T="P_WRITE_LOG_T",e.P_WRITE_LOG_R="P_WRITE_LOG_R"}(v||(v={}));var m,P={flushTimestamp:Date.now(),queue:[],locked:!1};function T(){m&&clearInterval(m)}function I(e,t){T(),m=setInterval((function(){return R(e,t)}),1e4)}function N(){for(var e,t=[],o=0;o<arguments.length;o++)t[o]=arguments[o];(e=P.queue).push.apply(e,t)}function R(e,t){var o=P.queue,r=P.flushTimestamp;if(!(P.locked||0===o.length||Date.now()-r<3e4&&o.length<200)){P.locked=!0;var n=t.createTraceId(),s=o.splice(0,200).map((function(e){var t=e.sessionId,o=e.level,r=e.time,n=e.type,s=e.tag,i=e.loggerId,a=e.content,c=e.traceId;return{level:o,time:r,type:n,tag:s,content:encodeURIComponent(JSON.stringify({loggerId:i,sessionId:t,content:a,traceId:c})).replace(/'/g,"%27")}}));t.debug(v.P_WRITE_LOG_T,"writingLen: ".concat(s.length,", queueLen: ").concat(o.length),n);var i=JSON.stringify(s);e.writeLog(i),t.debug(v.P_WRITE_LOG_R,"write done, queueLen: ".concat(o.length),n),P.flushTimestamp=Date.now(),P.locked=!1,setTimeout((function(){return R(e,t)}))}}var O=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return h(t,e),t.prototype.flush=function(e){N(e)},t}(o.BasicLogger);function M(e,t,r){void 0===r&&(r=!1);var n=t.url,s=t.headers,c=t.body,u=t.method,p=t.query,l=t.timeout,d=void 0===l?o.HTTP_TIMEOUT:l;return new Promise((function(t){var l=/^https/.test(n),f={headers:s,method:u};l&&(f.rejectUnauthorized=r,f.agent=new a.Agent(f));var C=(l?a.request:i.request)(o.appendUrl(n,p),f,(function(e){var o=e.statusCode,r="";e.setEncoding("utf8"),e.on("data",(function(e){r+=e})),e.once("end",(function(){t({status:o||0,data:r})}))}));C.once("timeout",(function(){e.warn(v.P_HTTP_REQ_E,JSON.stringify({msg:"timeout",url:n,method:u,query:p,timeout:d})),t({status:0})})),C.setTimeout(d),C.once("error",(function(o){e.warn(v.P_HTTP_REQ_E,JSON.stringify({msg:o.stack,url:n,method:u,query:p,timeout:d})),t({status:0})})),C.write(c),C.end()}))}var U,b=[],L=!1,w=function(){return S(void 0,void 0,void 0,(function(){var e,t,o,r,n,s,i,a,c;return y(this,(function(u){return L||0===b.length||(L=!0,e=b.shift(),t=e.args,o=e.resolve,r=t.addon,n=t.startTime,s=t.endTime,i=t.level,a=t.realtimeReport,c=[],r.setLogEventListener((function(e){var t=e.split(","),o=t[0],r=t[1],n=t[2],s=t[3],u=t[4],p=t.slice(5);try{var l=JSON.parse(decodeURIComponent(p.join(","))),d=l.loggerId,f=l.sessionId,C=l.content,_=l.traceId;if(!a&&i<0)return;var h={time:parseInt(r,10),level:parseInt(s,10),sessionId:"".concat(o,":").concat(f),type:n,tag:u,loggerId:d,content:C,traceId:_};c.push(h)}catch(e){console.error(e)}}),(function(e){o(c),L=!1,w()}),(function(e,t,o){})),r.pullFullLog(i,n,s,!1)),[2]}))}))},x=function(e){function t(t,r,n,s,i){var a=this,c=process.versions.electron,u="Electron|".concat(c,"|").concat(process.arch,"|").concat(process.platform);return(a=e.call(this,r,n,u,{getLogs:function(e,o,r,n){return S(this,void 0,void 0,(function(){return y(this,(function(s){switch(s.label){case 0:return[4,(i={startTime:e,endTime:o,level:r,realtimeReport:n,addon:t},S(void 0,void 0,void 0,(function(){return y(this,(function(e){return[2,new Promise((function(e){b.push({resolve:e,args:i}),w()}))]}))})))];case 1:return[2,{logs:s.sent(),dbReady:!0}]}var i}))}))},getTimestamp4RealtimeLog:function(){var e=t.getStoreValue(o.StoreKeys.REALTIME_LOG_TIMESTAMP);return parseInt(e,10)||0},setTimestamp4RealtimeLog:function(e){t.setStoreValue(o.StoreKeys.REALTIME_LOG_TIMESTAMP,e.toString())}},s)||this).subProcess=i,a}return h(t,e),t.prototype.send=function(e){return M(this.logger,e)},t.prototype.compressLogs=function(e){return S(this,void 0,void 0,(function(){var t,o,r;return y(this,(function(n){switch(n.label){case 0:return[4,this.subProcess.call("compressLogs",e)];case 1:return t=n.sent(),o=t.success,r=t.data,o?[2,{success:o,data:r}]:[2,{success:o,data:""}]}}))}))},t}(o.BasicReporter),A=null,D=function(){var t,o=Date.now(),r=[e.arch(),e.platform(),process.pid,o,Math.floor(Math.random()*o)].join("__");return t=r,c.createHash("md5").update(t).digest("hex")},J=function(e){if(A)return A;var o=t.resolve(e,"deviceId");return s.existsSync(o)?A=s.readFileSync(o).toString():(A=D(),s.writeFileSync(o,A),A)},k=function(){function e(e,t){this._hasPingRes=e,this._reconnect=t,this._timerId=0,this._isFirstPing=!0,this._lossCount=0}return e.init=function(t,o){return U?(U.stop(),U):U=new e(t,o)},e.prototype.start=function(e){var t=this,o=this._isFirstPing?0:15e3;this._timerId=setTimeout((function(){return t._isFirstPing=!1,t._hasPingRes?(e(),t._hasPingRes=!1,t.start(e)):t._lossCount<4?(t._lossCount++,e(),t.start(e)):void t._reconnect()}),o)},e.prototype.stop=function(){this._lossCount=0,clearTimeout(this._timerId)},e.prototype.setHeartbeatRes=function(){this._hasPingRes=!0,this._lossCount=0},e}(),H=function(){function e(e){this._cppProto=e,this._setTime=15962112e5}return e.prototype._setToProtocol=function(e,t,o,r,n,s){var i=JSON.stringify(n);"{}"!==i&&e.info(v.P_SET_MSG_EXTEN_O,JSON.stringify({messageUId:r,ext:n})),this._cppProto.setMessageExtension(t,o,r,i,s)},e.prototype.setLocalFromReceiveMsg=function(e,t){var o=t.channelId,r=t.conversationType,n=t.targetId,s=t.messageUId,i=t.expansion,a=t.sentTime,c={};for(var u in i)c[u]={v:"",ts:0},c[u].v=i[u],c[u].ts=a;this._setToProtocol(e,r,n,s,c,o||"")},e.prototype.setLocalFromExtMsg=function(e,t){var o=t.channelId,r=t.conversationType,n=t.targetId;t.messageUId;var s=t.content,i=t.sentTime,a=s,c=a.put,u=this._cppProto.getMessage(a.mid),p=JSON.parse(u).extMsg,l=JSON.parse(p||"{}");if(c)for(var d in c){var f=l[d];f&&f.ts<i-this._setTime?(f.v=c[d],f.ts=i-this._setTime):(l[d]={v:"",ts:0},l[d].v=c[d],l[d].ts=i-this._setTime)}a.del&&a.del.forEach((function(e){delete l[e]})),this._setToProtocol(e,r,n,a.mid,l,o||"")},e.prototype.parseReceiveExpansion=function(e){var t=JSON.parse(e.extMsg||"{}"),o={};for(var r in t)o[r]=t[r].v;return o},e.prototype.parseConverOrHisExpansion=function(e){var t=JSON.parse(e.extMsg),o=JSON.parse(t||"{}"),r={};for(var n in o)r[n]=o[n].v;return r},e}(),j=null;function B(e,t,r,n,s){return void 0===s&&(s=!0),S(this,void 0,void 0,(function(){var i;return y(this,(function(a){switch(a.label){case 0:return j?[2,j]:(j=function(e,t,r,n,s){return void 0===s&&(s=!0),S(this,void 0,void 0,(function(){var i,a,c,u,p,l,d;return y(this,(function(f){switch(f.label){case 0:i="token=".concat(encodeURIComponent(n),"&v=").concat((C="5.6.2-beem.5",C.match(/\d+(\.\d+){2}/)[0]),"&p=PC&ev=").concat("5.6.2-beem.5"),a=0,c=t.length,f.label=1;case 1:return a<c?(u="".concat(t[a],"/navi.json?r=").concat(Date.now()),e.info(o.LogTagId.O,"request navi -> url: ".concat(u,", body: ").concat(i)),[4,M(e,{method:"POST",headers:{appId:r},body:i,url:u},s)]):[3,4];case 2:if(200!==(p=f.sent()).status)return e.error("request navi failed -> ".concat(u)),p.data&&e.error(p.data),[3,3];e.info(o.LogTagId.O,"request navi success -> ".concat(u));try{return l=JSON.parse(p.data),d=/^https/.test(u)?"https":"http",l.protocol=d,[2,l]}catch(t){e.error("parse navi err => ".concat(p.data))}f.label=3;case 3:return a+=1,[3,1];case 4:return[2,null]}var C}))}))}(e,t,r,n,s),[4,j]);case 1:return i=a.sent(),j=null,[2,i]}}))}))}var F,G=function(){function e(e){var t=this;this.p=e,this.count=0,this.maps={},this.p.on("message",(function(e){var o=e.reqId,r=e.success,n=e.data,s=t.maps[o];s&&(s({success:r,data:n}),delete t.maps[o])}))}return e.prototype.call=function(e){for(var t=[],o=1;o<arguments.length;o++)t[o-1]=arguments[o];return S(this,void 0,void 0,(function(){var o=this;return y(this,(function(r){return this.p.killed?[2,{success:!1}]:[2,new Promise((function(r){var n=++o.count;o.maps[n]=r;var s={reqId:n,method:e,args:t};o.p.send(s)}))]}))}))},e.prototype.destroy=function(){this.p.kill()},e}(),q=function(e){if(!s.existsSync(e)){var o=t.resolve(e,"..");s.existsSync(o)||q(o),s.mkdirSync(e)}},V=function(){function e(e,s,i,a){var c=this;this._appkey=e,this._cppProtocol=s,this._dbpath=i,this._reconnectKickEnable=a,this._currentToken="",this._connectionStatus=o.ConnectionStatus.DISCONNECTED,this._promiseHandler={},this._customMessageType={},this._connectedTime=0,this._currentUserId="",this._naviInfo=null,this._version="5.6.2-beem.5",this._senders={},this.rtcHeartbeatResolves={};var u=this._dbpath||t.resolve(n.app.getPath("userData")),p=J(u);this._cppProtocol.initWithAppkey(e,u,this._version.replace(/-.*/,""));var l=r.fork(t.resolve(__dirname,"sub-process.js"));this.subProxy=new G(l);var d=t.resolve(u,"RongCloud/rclogs",e);q(d),function(e,t,r){r.initLogModule(t,e,o.getUUID())}(e,d,this._cppProtocol),this.logger=new O(this._appkey,"RC-M","IM"),I(this._cppProtocol,this.logger),this.reporter=new x(this._cppProtocol,e,p,this.logger,this.subProxy),this.logger.info(v.P_INIT_O,JSON.stringify({appkey:e,dbpath:u,proto_commit:this._cppProtocol.getNodeVersion(),deviceId:p,commit:"acfb93dd08074e190a4520db1f691d5d0d5847ba"})),this._callCppProxy("setDeviceId",p),this._registerMsgTypes(),this._setConnectionStatusListener(),this._setOnReceiveMessageListener(),this._setConversationStatusListener(),this._setUserProfileListener(),this._setRTCHeartbeatListener(),this._setRTCLivingRoomEventListener(),this._setChatroomEventListener(),this._setCallInfoListener(),n.ipcMain.on("__RC_CHANNEL_CALL_MAIN_SYNC__",(function(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];return S(c,void 0,void 0,(function(){var n,s,i;return y(this,(function(a){switch(a.label){case 0:if("function"!=typeof(n=this[t]))return this.logger.error(v.P_CALL_MAIN_SYNC_E,JSON.stringify({method:t,error:"not found"})),e.returnValue=o.ErrorCode.NOT_SUPPORT,[2];s=o.ErrorCode.EXTRA_METHOD_UNDEFINED,a.label=1;case 1:return a.trys.push([1,3,,4]),[4,n.call.apply(n,E([this],r,!1))];case 2:return s=a.sent(),[3,4];case 3:return i=a.sent(),this.logger.error(v.P_CALL_MAIN_SYNC_E,JSON.stringify({error:null==i?void 0:i.stack,method:t})),[3,4];case 4:return e.returnValue=s,[2]}}))}))})),n.ipcMain.on("__RC_CHANNEL_CALL_MAIN__",(function(e,t,r){for(var n=[],s=3;s<arguments.length;s++)n[s-3]=arguments[s];return S(c,void 0,void 0,(function(){var s,i,a,c,u=this;return y(this,(function(p){switch(p.label){case 0:if("function"!=typeof(s=this[r]))return this.logger.error(v.P_CALL_MAIN_E,JSON.stringify({method:r,error:"not found"})),this._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",t,o.ErrorCode.NOT_SUPPORT),[2];"sendMessage"===r&&(i=n[3],n[3]=function(t){u._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",i,t)}),a=o.ErrorCode.EXTRA_METHOD_UNDEFINED,p.label=1;case 1:return p.trys.push([1,3,,4]),[4,s.call.apply(s,E([this],n,!1))];case 2:return a=p.sent(),[3,4];case 3:return c=p.sent(),this.logger.error(v.P_CALL_MAIN_E,JSON.stringify({error:null==c?void 0:c.stack,method:r})),[3,4];case 4:return this._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",t,a),[2]}}))}))})),n.ipcMain.on("__RC_CHANNEL_SEND_2_MAIN__",(function(e,t){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];var n=c[t];if("function"==typeof n)try{n.call.apply(n,E([c],o,!1))}catch(e){c.logger.error(v.P_SEND_2_MAIN_E,JSON.stringify({error:null==e?void 0:e.stack,method:t}))}else c.logger.error(v.P_SEND_2_MAIN_E,JSON.stringify({method:t,error:"not found"}))})),n.ipcMain.on("__RC_INNER_COMMAND_INIT__",this._registerRenderers.bind(this)),this._msgExpansionHandler=new H(this._cppProtocol)}return e.prototype._callCppProxy=function(e){for(var t,o=[],r=1;r<arguments.length;r++)o[r-1]=arguments[r];var n=this.logger.createTraceId();try{var s=(t=this._cppProtocol)[e].apply(t,o);return s}catch(t){this.logger.error(v.P_CALL_ADDON_E,JSON.stringify({stack:null==t?void 0:t.stack,method:e}),n)}},e.prototype.sendHTTPRequest=function(e){return M(this.logger,e)},e.prototype.onRendererLogsReceived=function(e){N.apply(void 0,e)},e.prototype.destroy=function(){this.reporter.stop(),this.subProxy.destroy(),function(e){T(),e.deinitLogModule()}(this._cppProtocol),this._cppProtocol.destroy()},e.prototype.callExtra=function(e){for(var t=[],r=1;r<arguments.length;r++)t[r-1]=arguments[r];var n=this[e];if(!n)return this.logger.warn(v.P_CALL_EXTRA_E,JSON.stringify({method:e,error:"not found"})),Promise.resolve({code:o.ErrorCode.EXTRA_METHOD_UNDEFINED});try{var s=n.call.apply(n,E([this],t,!1));return s}catch(t){this.logger.error(v.P_CALL_EXTRA_E,JSON.stringify({error:null==t?void 0:t.stack,method:e}))}return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})},e.prototype.getConversationsByPage=function(e,t,r,n){var s,i=this,a=this._callCppProxy("getConversationListByPage",e,t,r,n||"");try{s=JSON.parse(a).list.map((function(e){return i._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})}return Promise.resolve({code:o.ErrorCode.SUCCESS,data:s})},e.prototype.getConversationListWithAllChannel=function(){var e,t=this,r=[o.ConversationType.PRIVATE,o.ConversationType.GROUP],n=this._callCppProxy("getConversationListWithAllChannel",r);try{e=JSON.parse(n).list.map((function(e){return t._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})}return Promise.resolve({code:o.ErrorCode.SUCCESS,data:e})},e.prototype.getConversationListWithAllChannelByPage=function(e,t){var r,n=this,s=[o.ConversationType.PRIVATE,o.ConversationType.GROUP],i=this._callCppProxy("getConversationListWithAllChannelByPage",s,e,t);try{r=JSON.parse(i).list.map((function(e){return n._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})}return Promise.resolve({code:o.ErrorCode.SUCCESS,data:r})},e.prototype.getHistoryMessagesByObjectNames=function(e,t,r,n,s,i,a){var c=0===i,u=n+1,p=this._callCppProxy("getHistoryMessagesByObjectNames",e,t,r,u,s,c,a||""),l=[];try{var d=JSON.parse(p).list;d.reverse();for(var f=0;f<d.length;f++){var C=this._buildMessage(d[f].obj);l[f]=C}}catch(e){return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})}return Promise.resolve({code:o.ErrorCode.SUCCESS,data:{list:u===l.length?l.slice(1,u):l,hasMore:n<l.length}})},e.prototype.updateMessageReceiptStatus=function(e,t,r,n){void 0===n&&(n="");var s=this._callCppProxy("updateMessageReceiptStatus",e,t,r,n);return Promise.resolve({code:o.ErrorCode.SUCCESS,data:s})},e.prototype.requestNaviInfo=function(e,t,o,r){return S(this,void 0,void 0,(function(){var n;return y(this,(function(s){switch(s.label){case 0:return[4,B(this.logger,e,t,o,r)];case 1:return(n=s.sent())&&(this._naviInfo=n),[2,n]}}))}))},e.prototype.getNaviInfoFromCache=function(){return this._naviInfo?g({},this._naviInfo):null},e.prototype.createLogger=function(e,t){return/^RC/.test(e)?null:new O(this._appkey,e,t)},e.prototype.getConnectedTime=function(){return this._connectedTime},e.prototype.getServerTime=function(){return Date.now()-this._cppProtocol.getDeltaTime()},e.prototype.getCurrentUserId=function(){var e;return(null===(e=this._naviInfo)||void 0===e?void 0:e.userId)||""},e.prototype._send2Renderer=function(e,t){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];e.isDestroyed()?delete this._senders[e.id]:e.send.apply(e,E([t],o,!1))},e.prototype._send2AllRenderer=function(e,t,o){var r=this;void 0===o&&(o=[]),Object.keys(this._senders).forEach((function(n){var s=r._senders[n];o.includes(s)||r._send2Renderer(s,"__RC_CHANNEL_NOTIFICATION_FROM_MAIN__",e,t)}))},e.prototype._registerRenderers=function(e){var t=this,o=e.sender,r=o.id;this._senders[r]||(this._senders[r]=o,o.once("destroyed",(function(){delete t._senders[r]})))},e.prototype._registerMsgTypes=function(){for(var e in o.SEND_MESSAGE_TYPE_OPTION["RC:RcCmd"]={isCounted:!1,isPersited:!1},o.SEND_MESSAGE_TYPE_OPTION){var t=o.SEND_MESSAGE_TYPE_OPTION[e],r=t.isCounted,n=t.isPersited,s=t.searchProps,i=0;n&&(i|=1),r&&(i|=2),"RC:TypSts"===e&&(i=16),this._callCppProxy("registerMessageType",e,i,s)}},e.prototype._buildMessage=function(e,t){void 0===t&&(t={});var r=t.isOffLineMessage,n=t.buildFrom,s=JSON.parse(e),i=s.channelId,a=s.conversationType,c=s.targetId,u=s.senderUserId,p=s.content,l=s.objectName,d=s.messageUid,f=s.direction,C=s.status;s.source;var _=s.messageId,h=s.sentTime,S=s.readReceiptRequest,y=s.supportExt;s.extMsg;var E,m=s.pushContent,P=s.pushTitle,T=s.pushId,I=s.pushConfig,N=s.templateId,R=s.disableTitle,O=s.forcePushDetail;if(o.isObject(p))E=p;else try{E=p?JSON.parse(p):p}catch(e){E=p,this.logger.error(v.P_PARSE_JSON_MSGS_E,JSON.stringify({messageId:_}))}var M={isCounted:!1,isPersited:!1};l in o.SEND_MESSAGE_TYPE_OPTION?M=o.SEND_MESSAGE_TYPE_OPTION[l]:l in this._customMessageType&&(M=this._customMessageType[l]);var U=null;y&&(U=this._msgExpansionHandler.parseReceiveExpansion(s),"conversation"!==n&&"history"!==n||(U=this._msgExpansionHandler.parseConverOrHisExpansion(s)));var b=o.isUndefined(r)?h<this._connectedTime:r,L={};I&&(L=o.pushJSONToConfigs(this.logger,I,T));var w=g(g({},L),{pushTitle:P,pushContent:m,pushData:m,disablePushTitle:R,forceShowDetailContent:O,templateId:N}),x={channelId:i,conversationType:a,targetId:c,senderUserId:u,content:E||{},messageType:l,messageUId:d||"",messageDirection:f,isOffLineMessage:b,sentTime:h,receivedTime:0,isPersited:M.isPersited,isCounted:M.isCounted,isMentioned:!1,disableNotification:!1,isStatusMessage:!1,canIncludeExpansion:y,expansion:y?U:null,receivedStatus:C,messageId:_,pushConfig:w};if(f===o.MessageDirection.RECEIVE?x.receivedStatus=C:f===o.MessageDirection.SEND&&(x.sentStatus=C),S){var A=JSON.parse(S),D=A.hasRespond,J=A.readerInfo,k={hasRespond:D,readCount:A.readCount,totalCount:A.totalCount},H=[];if(J)for(var j in J)H.push({userId:j,readTime:J[j]});k.readerList=H,x.readReceiptInfo=k}return x},e.prototype._updateReadReceiptInfo=function(e,t){var o=this._callCppProxy("getMessage",e),r=JSON.parse(o),n=r.readReceiptRequest?JSON.parse(r.readReceiptRequest):{},s=g(g({},n),t);this._callCppProxy("updateReadReceiptRequestInfo",e,JSON.stringify(s))},e.prototype._buildConversation=function(e){var t=JSON.parse(e),r=t.channelId,n=t.conversationType,s=t.targetId,i=t.unreadCount,a=t.lastestMsg,c=t.isTop,u=t.isBlocked,p=t.matchCount,l=u?o.NotificationStatus.OPEN:o.NotificationStatus.CLOSE;return{channelId:r,conversationType:n,targetId:s,unreadMessageCount:i,latestMessage:-1===JSON.parse(a).messageId?null:this._buildMessage(a),hasMentioned:!1,mentionedInfo:null,notificationStatus:l,isTop:c,lastUnreadTime:0,matchCount:p}},e.prototype._sendConnectionStatus2Renderer=function(e){this._send2AllRenderer("status",e)},e.prototype._convertResultList=function(e,t){var o=JSON.parse(e).list;return o=o.map((function(e){var o=JSON.parse(e.obj);return t?t(o):o}))},e.prototype._connectResolve=function(e){this._promiseHandler.connect&&this._promiseHandler.connect.length>0&&(this._promiseHandler.connect.forEach((function(t){t.resolve(e)})),delete this._promiseHandler.connect)},e.prototype._setConnectionStatusListener=function(){var e=this;this._cppProtocol.setConnectionStatusListener((function(t){var r,n;switch(e.logger.info(v.P_CONNECT_S,t),t){case 10:n=o.ConnectionStatus.CONNECTING;break;case 31004:return void setTimeout((function(){e._connectResolve(o.ErrorCode.RC_CONN_USER_OR_PASSWD_ERROR)}));case 12:n=o.ConnectionStatus.DISCONNECTED;break;case 13:n=o.ConnectionStatus.BLOCKED,setTimeout((function(){e._connectResolve(o.ErrorCode.RC_CONN_USER_BLOCKED)}));break;case 31023:n=o.ConnectionStatus.FORBID_RECONNECT_BY_OTHER_SAME_CLIENT,setTimeout((function(){e._connectResolve(o.ErrorCode.RC_DISCONN_SAME_CLIENT_ON_LINE)}));break;case 31029:n=o.ConnectionStatus.USER_LOGOUT;break;case 1:case 9:case 11:case 31011:case 3e4:case 30002:n=o.ConnectionStatus.NETWORK_UNAVAILABLE;break;case 30010:n=o.ConnectionStatus.NETWORK_UNAVAILABLE,setTimeout((function(){e._connectionStatus===o.ConnectionStatus.NETWORK_UNAVAILABLE&&e._doConnect()}),5e3);break;case 0:case 33005:e.reporter.checkStart(e._naviInfo),n=o.ConnectionStatus.CONNECTED,e._connectedTime=Date.now()-e._cppProtocol.getDeltaTime(),setTimeout((function(){e._connectResolve(o.ErrorCode.SUCCESS),e._heartbeat=k.init(!0,e._handleHeartTimeout.bind(e)),e._heartbeat.start(e._sendHeartbeat.bind(e))}));break;case o.ConnectionStatus.KICKED_OFFLINE_BY_OTHER_CLIENT:n=o.ConnectionStatus.KICKED_OFFLINE_BY_OTHER_CLIENT;break;case 31030:n=o.ConnectionStatus.RC_LICENSE_EXPIRED,setTimeout((function(){e._connectResolve(o.ErrorCode.RC_LICENSE_EXPIRED)}));break;case 30004:return;case 8:case 31006:case 32061:case 32012:n=o.ConnectionStatus.REDIRECT;break;default:n=t}n!==o.ConnectionStatus.CONNECTED&&(null===(r=e._heartbeat)||void 0===r||r.stop()),e._connectionStatus=n,e._sendConnectionStatus2Renderer(n)}),this._dbOpenCallback.bind(this),(function(){var t;null===(t=e._heartbeat)||void 0===t||t.setHeartbeatRes()}))},e.prototype._handleHeartTimeout=function(){var e,t=this;this._sendConnectionStatus2Renderer(o.ConnectionStatus.NETWORK_UNAVAILABLE),null===(e=this._heartbeat)||void 0===e||e.stop(),setTimeout((function(){return t._doConnect()}),5e3)},e.prototype._dbOpenCallback=function(e){this.logger.info(v.P_DB_OPEN_O,e)},e.prototype._sendHeartbeat=function(){this._cppProtocol.sendHeartbeat()},e.prototype._setOnReceiveMessageListener=function(){var e=this;this._cppProtocol.setOnReceiveMessageListener((function(t,r,n,s){var i,a=e._buildMessage(t,{isOffLineMessage:n}),c=a.messageType;if(c!==o.MessageType.LOG_COMMAND||"rongcloudsystem"!==a.senderUserId){if(c===o.MessageType.GROUP_READ_RECEIPT_REQUEST){var u=a.content,p=u.msgId,l=u.rrn,d=u.tmn;e._updateReadReceiptInfo(p,{readCount:l,totalCount:d})}if("RC:MsgExMsg"===c)return e._msgExpansionHandler.setLocalFromExtMsg(e.logger,a),void e._sendMessageExpansion(a);if(a.canIncludeExpansion&&e._msgExpansionHandler.setLocalFromReceiveMsg(e.logger,a),c===o.MessageType.SYNC_READ_STATUS){if(a.senderUserId!==e._currentUserId)return;e._callCppProxy("clearUnreadCountByTimestamp",a.conversationType,a.targetId,a.content.lastMessageSendTime,a.channelId||"")}var f=!0;if(0!==r||s||(f=!1),c!==o.MessageType.LOG_COMMAND||"rongcloudsystem"!==a.senderUserId){if(c===o.MessageType.DELIVERED)return e._callCppProxy("setMessageDeliverTime",JSON.stringify(a.content)),void e._sendMessageDelivered(a.content.map((function(e){return{deliverTime:e.time,messageUId:e.messageUId,objectName:e.objectName,targetId:e.targetId}})));if(c!==o.MessageType.DELIVERED_MSG){var C=a.conversationType,_=a.targetId;c===o.MessageType.RECALL&&a.senderUserId===e._currentUserId&&(C=a.content.conversationType||C,_=a.content.targetId||_),e._sendMessageNotification(Object.assign(a,{hasMoreMsg:f,conversationType:C,targetId:_}))}else{var h={totalCount:a.content.tmn,list:null===(i=a.content.dl)||void 0===i?void 0:i.map((function(e){return{MessageUId:e.msgId,deliveryCount:e.drn}}))};e._sendGroupMessageDeliveredStatus(h)}}else{var v=Object.keys(e._senders).map((function(t){return e._senders[t]}));v.length>0&&e._sendMessageNotification(Object.assign(a,{hasMoreMsg:f}),v.slice(1))}}else{var g=a.content,S=g.startTime,y=g.endTime,E=g.platform,m=g.logId,P=g.uri;e.reporter.report(parseInt(S,10),parseInt(y,10),E,P,m,a.messageUId)}}),(function(){e._sendPullOfflineFinished()}))},e.prototype._sendMessageExpansion=function(e,t){void 0===t&&(t=[]);var o=e.channelId,r=e.content,n=r.put,s=r.del,i=r.mid,a={};n&&(a.updatedExpansion={channelId:o,messageUId:i,expansion:n}),s&&(a.deletedExpansion={channelId:o,messageUId:i,deletedKeys:s}),this._send2AllRenderer("expansion",a,t)},e.prototype._sendMessageNotification=function(e,t){void 0===t&&(t=[]),this._send2AllRenderer("batchMessage",e,t)},e.prototype._sendPullOfflineFinished=function(){this._send2AllRenderer("pullFinished",null)},e.prototype._sendMessageDelivered=function(e){this._send2AllRenderer("messageDelivered",e)},e.prototype._sendGroupMessageDeliveredStatus=function(e){this._send2AllRenderer("groupMessageDeliveredStatus",e)},e.prototype._setConversationStatusListener=function(){var e=this;this._cppProtocol.setConversationStatusListener((function(t){var r=JSON.parse(t).list,n=[];r.forEach((function(e){var t=JSON.parse(e.obj),r=t.conversationType,s=t.targetId,i=t.status,a=t.channelId,c={notificationStatus:2,isTop:!1};i.forEach((function(e){var t=JSON.parse(e.item);1===t.type?c.notificationStatus=1===Number(t.value)?o.NotificationStatus.OPEN:o.NotificationStatus.CLOSE:c.isTop=1===Number(t.value)})),n.push({channelId:a,conversationType:r,targetId:s,updatedItems:{notificationStatus:{val:c.notificationStatus,time:0},isTop:{val:c.isTop,time:0}}})})),e._send2AllRenderer("conversation",n)}),(function(t){e._send2AllRenderer("conversationTag",t)}))},e.prototype._setUserProfileListener=function(){var e=this;this._cppProtocol.setUserProfileListener((function(){}),(function(t){e._send2AllRenderer("tag",t),e._getRTCProfile()}))},e.prototype._getRTCProfile=function(){var e=this._callCppProxy("getRTCProfile");if(e&&this._naviInfo&&this._naviInfo.voipCallInfo!==e){var t=g(g({},this._naviInfo),{voipCallInfo:e});this._naviInfo=t,this._send2AllRenderer("onNaviDataChange",t)}},e.prototype._setRTCLivingRoomEventListener=function(){var e=this;this._cppProtocol.setRTCRoomEventListener((function(t){var o=new Uint8Array(t).buffer;e._send2AllRenderer("onRTCDataChange",o)}))},e.prototype._setChatroomEventListener=function(){var e=this;this._cppProtocol.setChatroomEventListener((function(t,o){e._send2AllRenderer("chatroom",{chatroomDestroyed:t})}))},e.prototype._setCallInfoListener=function(){var e=this;this._cppProtocol.setCallInfoListener((function(t){e._send2AllRenderer("callInfo",t)}))},e.prototype._clearListener=function(){this._cppProtocol.setOnReceiveMessageListener(),this._cppProtocol.setConnectionStatusListener(),this._cppProtocol.setOnReceiveStatusListener(),this._cppProtocol.setUserProfileListener()},e.prototype.registerMessageType=function(e,t,o,r){var n=0;t&&(n|=1),o&&(n|=2),this._customMessageType[e]={isCounted:o,isPersited:t},this.logger.info(v.P_REGTYP_O,JSON.stringify({type:e,opt:n,search:r})),this._callCppProxy("registerMessageType",e,n,r)},e.prototype.connect=function(e,t,r,n){var s=this;return this.logger.info(v.P_CONNECT_O,JSON.stringify({reconnectKickEnable:r,version:this._version}),n),this._currentToken===e&&this._connectionStatus===o.ConnectionStatus.CONNECTED?(this._sendConnectionStatus2Renderer(this._connectionStatus),Promise.resolve(o.ErrorCode.SUCCESS)):(this._currentToken=e,this._naviInfo=t,this._currentUserId=t.userId,this._promiseHandler.connect||this._doConnect(r),new Promise((function(e,t){s._promiseHandler.connect?s._promiseHandler.connect.push({resolve:e,reject:t}):s._promiseHandler.connect=[{resolve:e,reject:t}]})))},e.prototype._doConnect=function(e){var t=o.isUndefined(e)?!!this._reconnectKickEnable:!!e;this._callCppProxy("connectWithToken",this._currentToken,this._version,JSON.stringify(this._naviInfo),t)},e.prototype.reportSDKInfo=function(e){var t,o,r=JSON.stringify(g(g({},e),{"electron-main":"5.6.2-beem.5"}));this.logger.info(v.P_REPORT_VER_O,r),null===(o=(t=this._cppProtocol).uploadSDKVersion)||void 0===o||o.call(t,r)},e.prototype.disconnect=function(){var e;this.reporter.stop(),this._cppProtocol.disconnect(!0),null===(e=this._heartbeat)||void 0===e||e.stop(),this._connectResolve(o.ErrorCode.TIMEOUT)},e.prototype.logout=function(){this.disconnect()},e.prototype.setUserStatusListener=function(e,t){this._cppProtocol.setOnReceiveStatusListener((function(e,o){t({userId:e,status:o})}));var o=e.userIds||[];o.length&&this.subscribeUserStatus(o)},e.prototype.subscribeUserStatus=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("subscribeUserStatus",e,(function(){r(o.ErrorCode.SUCCESS)}),r)}))},e.prototype.setUserStatus=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("setUserStatus",e,(function(){r(o.ErrorCode.SUCCESS)}),r)}))},e.prototype.getUserStatus=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("getUserStatus",e,(function(e){r({code:o.ErrorCode.SUCCESS,data:{status:e}})}),(function(e){r({code:e})}))}))},e.prototype.sendMessage=function(e,t,r,n,s){var i=this;void 0===s&&(s=this.logger.createTraceId());var a=r.messageType,c=r.content,u=r.pushContent,p=r.pushData,l=r.directionalUserIdList,d=r.disableNotification,f=r.canIncludeExpansion,C=r.expansion,_=r.isVoipPush,h=r.pushConfig,g=r.channelId,S=r.isMentioned,y=r.mentionedType,E=r.mentionedUserIdList,m=r.messageId,P=h||{},T=P.iOSConfig,I=P.androidConfig,N=P.pushTitle,R=P.pushContent,O=P.pushData,M=P.disablePushTitle,U=P.forceShowDetailContent,b=P.templateId,L=o.pushConfigsToJSON(T,I);return new Promise((function(r){u=R||u||"",p=O||p||"",d=d||!1,_=_||!1,N=N||"",R=R||"",O=O||"",M=M||!1,U=U||!1,f=f||!1;var h=(null==I?void 0:I.notificationId)||"";if(l=l||[],m=m||0,g=g||"",e===o.ConversationType.GROUP&&S&&c&&(c.mentionedInfo={userIdList:E,type:y||o.MentionedType.ALL}),e===o.ConversationType.GROUP&&a===o.MessageType.READ_RECEIPT_RESPONSE&&c.receiptMessageDic)for(var P in c.receiptMessageDic)l.push(P);var T={};for(var P in C)T[P]={v:""},T[P].v=C[P];var w=b||"";i.logger.info(v.P_SEND_MSG_T,JSON.stringify({messageType:a,conversationType:e,targetId:t,channelId:g}),s);var x=i._callCppProxy("sendMessage",(function(e,t){var n=i._buildMessage(e,{isOffLineMessage:!1});return i.logger.info(v.P_SEND_MSG_R,JSON.stringify({code:t,messageUId:n.messageUId}),s),t===o.ErrorCode.SENSITIVE_REPLACE?r({code:t}):("RC:MsgExMsg"===n.messageType&&i._msgExpansionHandler.setLocalFromExtMsg(i.logger,n),n.canIncludeExpansion&&i._msgExpansionHandler.setLocalFromReceiveMsg(i.logger,n),r({code:o.ErrorCode.SUCCESS,data:n}))}),(function(e,t){var o=i._buildMessage(e,{isOffLineMessage:!1});return i.logger.warn(v.P_SEND_MSG_R,JSON.stringify({code:t,messageId:o.messageId}),s),o.sentTime=Date.now()-i._cppProtocol.getDeltaTime(),r({code:t,data:o})}),e,t,a,JSON.stringify(c),l,d,M,U,u,p,h,N,L,w,f,JSON.stringify(T),_,g,m),A=JSON.parse(x);null==n||n(A.messageId)}))},e.prototype.recallMsg=function(e,t,r,n,s){var i=this;return new Promise((function(a,c){var u,p=s.user,l=s.pushContent,d=s.channelId,f=s.extra,C=s.pushConfig,_=s.disableNotification,h=s.isDelete,v={conversationType:e,targetId:t,messageUId:r,sentTime:n,user:p,extra:f,channelId:d,isDelete:h||!1};p&&(v.user=p),f&&(v.extra=f);var g={conversationType:e,targetId:t,senderUserId:i._currentUserId,content:v,objectName:o.MessageType.RECALL,messageUid:r,direction:o.MessageDirection.SEND,status:o.ReceivedStatus.UNREAD,sentTime:n,channelId:d},S=i._buildMessage(JSON.stringify(g),{isOffLineMessage:!1});i._callCppProxy("recallMessage",(function(){a({code:o.ErrorCode.SUCCESS,data:S})}),(function(e){a({code:e})}),o.MessageType.RECALL,JSON.stringify(v),_||!1,(null==C?void 0:C.disablePushTitle)||!1,(null==C?void 0:C.forceShowDetailContent)||!1,l||"",(null==C?void 0:C.pushData)||"",(null===(u=null==C?void 0:C.androidConfig)||void 0===u?void 0:u.notificationId)||"",(null==C?void 0:C.pushTitle)||"",o.pushConfigsToJSON(null==C?void 0:C.iOSConfig,null==C?void 0:C.androidConfig),(null==C?void 0:C.templateId)||"",d)}))},e.prototype.getHistoryMessage=function(e,t,r,n,s,i,a){var c=this;return new Promise((function(u,p){r=r||0;var l=0===s,d=n+1,f=c._callCppProxy("getHistoryMessages",e,t,r,d,a,l,i),C=JSON.parse(f).list,_=[];C.reverse();for(var h=0;h<C.length;h++){var v=c._buildMessage(C[h].obj);_[h]=v}u({code:o.ErrorCode.SUCCESS,data:{list:d===_.length?_.slice(1,d):_,hasMore:n<_.length}})}))},e.prototype.getRemoteHistoryMessages=function(e,t,r,n,s,i){var a=this;return new Promise((function(c,u){r=r||0;a._callCppProxy("getRemoteHistoryMessages",e,t,r,n,(function(e,t){var r=JSON.parse(e).list,n=[];r.reverse();for(var s=0;s<r.length;s++){var i=a._buildMessage(r[s].obj);n[s]=i}c({code:o.ErrorCode.SUCCESS,data:{list:n,hasMore:!!t}})}),(function(e){c({code:e})}),s,!0,i)}))},e.prototype.deleteRemoteMessage=function(e,t,r,n){var s=this;return new Promise((function(i,a){var c=JSON.stringify(r);s._callCppProxy("deleteRemoteHistoryMessages",e,t,c,!1,n,(function(){i(o.ErrorCode.SUCCESS)}),i)}))},e.prototype.deleteRemoteMessageByTimestamp=function(e,t,r,n){var s=this;return new Promise((function(i,a){s._callCppProxy("clearRemoteHistoryMessages",e,t,r,(function(){i(o.ErrorCode.SUCCESS)}),(function(e){i(e)}),n)}))},e.prototype.clearMessages=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("clearMessages",e,t,r),s(o.ErrorCode.SUCCESS)}))},e.prototype.getConversationList=function(e,t,r,n,s){var i=this;return void 0===s&&(s=""),new Promise((function(e,t){for(var r=i._callCppProxy("getConversationList",[1,3,6,7],s),n=JSON.parse(r).list,a=[],c=0;c<n.length;c++)a.push(i._buildConversation(n[c].obj));e({code:o.ErrorCode.SUCCESS,data:a})}))},e.prototype.getConversation=function(e,t,r){var n=this;return new Promise((function(s,i){var a=n._callCppProxy("getConversation",e,t,r);if(a)s({code:o.ErrorCode.SUCCESS,data:n._buildConversation(a)});else{var c=n._cppProtocol.getHistoryMessages(e,t,0,1,"",!0,r),u=void 0;try{u=JSON.parse(c).list}catch(e){n.logger.error(v.P_PARSE_JSON_MSGS_E,null==e?void 0:e.stack),u=[]}var p=null;u.length>0&&(p=n._buildMessage(u[0].obj));var l=n._callCppProxy("getConversationNotificationStatus",e,t,r),d=n._callCppProxy("getConversationTopStatus",e,t,r);s({code:o.ErrorCode.SUCCESS,data:{conversationType:e,targetId:t,channelId:r,unreadMessageCount:0,latestMessage:p,notificationStatus:l?o.NotificationStatus.OPEN:o.NotificationStatus.CLOSE,isTop:Boolean(d),lastUnreadTime:0}})}}))},e.prototype.removeConversation=function(e,t,r){var n=this._callCppProxy("removeConversation",e,t,r);return Promise.resolve(n?o.ErrorCode.SUCCESS:o.ErrorCode.UNKNOWN)},e.prototype.clearConversations=function(e,t){var r=this;return new Promise((function(n,s){var i=[];i=o.isArray(e)?e:[o.ConversationType.PRIVATE,o.ConversationType.GROUP,o.ConversationType.SYSTEM,o.ConversationType.PUBLIC_SERVICE],r._callCppProxy("clearConversations",i,t),n(o.ErrorCode.SUCCESS)}))},e.prototype.getAllConversationUnreadCount=function(e,t,r){var n=this._callCppProxy("getTotalUnreadCount",t,r,e);return Promise.resolve({code:o.ErrorCode.SUCCESS,data:n})},e.prototype.getConversationUnreadCount=function(e,t,r){var n=this;return void 0===r&&(r=""),new Promise((function(s){var i=n._callCppProxy("getUnreadCount",e,t,r);s({code:o.ErrorCode.SUCCESS,data:i})}))},e.prototype.clearConversationUnreadCount=function(e,t,r){var n=this;return void 0===r&&(r=""),new Promise((function(s,i){n._callCppProxy("clearUnreadCount",e,t,r),s(o.ErrorCode.SUCCESS)}))},e.prototype.clearUnreadCountByTimestamp=function(e,t,r,n){var s=this;return new Promise((function(i,a){s._callCppProxy("clearUnreadCountByTimestamp",e,t,r,n),i(o.ErrorCode.SUCCESS)}))},e.prototype.getFirstUnreadMessage=function(e,t,r){var n=this;return new Promise((function(s,i){var a=n._callCppProxy("getTheFirstUnreadMessage",e,t,r),c=n._buildMessage(a);s({code:o.ErrorCode.SUCCESS,data:-1!==c.messageId?c:null})}))},e.prototype.setConversationToTop=function(e,t,r,n){var s=this;return void 0===n&&(n=""),new Promise((function(i,a){s._callCppProxy("setConversationToTop",e,t,r,n,!0),i(o.ErrorCode.SUCCESS)}))},e.prototype.setConversationHidden=function(e,t,r,n){var s=this;return new Promise((function(i,a){s._callCppProxy("setConversationHidden",e,t,r,n),i(o.ErrorCode.SUCCESS)}))},e.prototype.setConversationNotificationStatus=function(e,t,r,n){var s=this;return new Promise((function(i,a){s._callCppProxy("setConversationNotificationStatus",e,t,r,(function(){i(o.ErrorCode.SUCCESS)}),i,n)}))},e.prototype.setConversationStatus=function(e,t,r,n,s){var i=this;return new Promise((function(a,c){i._callCppProxy("setConversationStatus",e,t,r,n,(function(){a(o.ErrorCode.SUCCESS)}),a,s,!0)}))},e.prototype.getConversationNotificationStatus=function(e,t,r){var n=this;return new Promise((function(s,i){var a=n._callCppProxy("getConversationNotificationStatus",e,t,r);s({code:o.ErrorCode.SUCCESS,data:a?o.NotificationStatus.OPEN:o.NotificationStatus.CLOSE})}))},e.prototype.searchConversationByContent=function(e,t,r,n){var s=this;return new Promise((function(i,a){n=n||[1,3,6,7];for(var c=s._callCppProxy("searchConversationByContent",n,e,t,r),u=JSON.parse(c).list,p=[],l=0;l<u.length;l++)p[l]=s._buildConversation(u[l].obj);i({code:o.ErrorCode.SUCCESS,data:p})}))},e.prototype.searchConversationByContentWithAllChannel=function(e,t,r){var n=this;return new Promise((function(s,i){r=r||[1,3,6,7];for(var a=n._callCppProxy("searchConversationByContentWithAllChannel",r,e,t),c=JSON.parse(a).list,u=[],p=0;p<c.length;p++)u[p]=n._buildConversation(c[p].obj);s({code:o.ErrorCode.SUCCESS,data:u})}))},e.prototype.searchMessageByContent=function(e,t,r,n,s,i,a){var c=this;return new Promise((function(i,u){c._callCppProxy("searchMessageByContent",e,t,r,n,s,1,(function(e,t){for(var r=e?JSON.parse(e).list:[],n=[],s=0;s<r.length;s++)n[s]=c._buildMessage(r[s].obj);i({code:o.ErrorCode.SUCCESS,data:{messages:n,count:t}})}),a)}))},e.prototype.searchMessageByContentWithAllChannel=function(e,t,r,n,s){var i=this;return new Promise((function(a,c){i._callCppProxy("searchMessageByContentWithAllChannel",e,t,r,n,s,1,(function(e,t){for(var r=e?JSON.parse(e).list:[],n=[],s=0;s<r.length;s++)n[s]=i._buildMessage(r[s].obj);a({code:o.ErrorCode.SUCCESS,data:{messages:n,count:t}})}))}))},e.prototype.searchMessageByContentInTimeRangeWithAllChannel=function(e,t,r,n,s,i,a){var c=this;return new Promise((function(u,p){c._callCppProxy("searchMessageByTimestampWithAllChannel",e,t,r,n,s,i,a,(function(e){for(var t=e?JSON.parse(e).list:[],r=[],n=0;n<t.length;n++)r[n]=c._buildMessage(t[n].obj);u({code:o.ErrorCode.SUCCESS,data:{messages:r}})}))}))},e.prototype.getUnreadMentionedMessages=function(e,t,o){for(var r=JSON.parse(this._callCppProxy("getUnreadMentionedMessages",e,t,o)).list,n=0;n<r.length;n++)r[n]=this._buildMessage(r[n].obj);return r},e.prototype.addToBlacklist=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("addToBlacklist",e,(function(){r(o.ErrorCode.SUCCESS)}),r)}))},e.prototype.removeFromBlacklist=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("removeFromBlacklist",e,(function(){r(o.ErrorCode.SUCCESS)}),r)}))},e.prototype.getBlacklist=function(){var e=this;return new Promise((function(t,r){e._callCppProxy("getBlacklist",(function(e){t({code:o.ErrorCode.SUCCESS,data:e})}),(function(e){t({code:e})}))}))},e.prototype.getBlacklistStatus=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("getBlacklistStatus",e,(function(e){r({code:o.ErrorCode.SUCCESS,data:e})}),(function(e){r({code:e})}))}))},e.prototype.insertMessage=function(e,t,r){var n=this,s=r.content,i=r.senderUserId,a=r.messageType,c=r.messageDirection,u=r.readStatus,p=r.sentStatus,l=r.sentTime,d=r.searchContent,f=r.isUnread,C=r.messageUId,_=r.disableNotification,h=r.canIncludeExpansion,v=r.expansionMsg,g=r.channelId;return s=JSON.stringify(s),new Promise((function(r,S){var y=f?0:1,E=n._callCppProxy("insertMessage",e,t,i,a,s,(function(){}),(function(e){r({code:e})}),c,u,p,l,d,y,C,_,h,v,g),m=n._buildMessage(E,{isOffLineMessage:!1});m.messageUId=C,m.sentTime=l,r({code:-1===m.messageId?o.ErrorCode.MSG_INSERT_ERROR:o.ErrorCode.SUCCESS,data:m})}))},e.prototype.deleteMessages=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("deleteMessages",e),r(o.ErrorCode.SUCCESS)}))},e.prototype.deleteMessagesByTimestamp=function(e,t,r,n,s){var i=this;return new Promise((function(a,c){i._callCppProxy("deleteMessagesByTimestamp",e,t,r,n,s),a(o.ErrorCode.SUCCESS)}))},e.prototype.getMessage=function(e){var t=this;return new Promise((function(r,n){var s=t._callCppProxy("getMessage",e),i=t._buildMessage(s,{isOffLineMessage:!1});r({code:o.ErrorCode.SUCCESS,data:i})}))},e.prototype.setMessageContent=function(e,t,r){var n=this;return new Promise((function(s,i){t=JSON.stringify(t),n._callCppProxy("setMessageContent",e,t,r),s(o.ErrorCode.SUCCESS)}))},e.prototype.setMessageSearchField=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("setMessageSearchField",e,t,r),s(o.ErrorCode.SUCCESS)}))},e.prototype.setMessageSentStatus=function(e,t){var r=this;return new Promise((function(n,s){r._callCppProxy("setMessageSentStatus",e,t),n(o.ErrorCode.SUCCESS)}))},e.prototype.setMessageReceivedStatus=function(e,t){var r=this;return new Promise((function(n,s){r._callCppProxy("setMessageReceivedStatus",e,t),n(o.ErrorCode.SUCCESS)}))},e.prototype.saveConversationMessageDraft=function(e,t,o,r){throw new Error("Method not implemented.")},e.prototype.getConversationMessageDraft=function(e,t,o){throw new Error("Method not implemented.")},e.prototype.clearConversationMessageDraft=function(e,t,o){throw new Error("Method not implemented.")},e.prototype.pullConversationStatus=function(e){throw new Error("Method not implemented.")},e.prototype.batchSetConversationStatus=function(e){var t=e[0],r=t.conversationType,n=t.targetId,s=t.isTop,i=t.notificationStatus,a=t.channelId;if(void 0!==s&&void 0===i)return this.setConversationToTop(r,n,s,a);if(void 0!==i&&void 0===s){var c=i===o.NotificationStatus.OPEN;return this.setConversationNotificationStatus(r,n,c,a)}var u=i===o.NotificationStatus.OPEN;return this.setConversationStatus(r,n,u,s,a)},e.prototype.pullUserSettings=function(e){throw new Error("Method not implemented.")},e.prototype.sendReadReceiptMessage=function(e,t,r){var n=this;return new Promise((function(s){n._callCppProxy("sendReadReceipt",e,r||"",t,(function(){t.forEach((function(e){n._updateReadReceiptInfo(e,{hasRespond:!0});try{var t=JSON.parse(n._callCppProxy("getMessage",e)).messageId;n.setMessageReceivedStatus(t,1)}catch(t){n.logger.error(v.P_PARSE_JSON_MSGS_E,JSON.stringify({messageUId:e,error:null==t?void 0:t.stack}))}})),s({code:o.ErrorCode.SUCCESS})}),(function(e){s({code:e})}))}))},e.prototype.getMessageReader=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("getMessageReader",e,r,t,(function(e,r){var i=[],a={};(e=JSON.parse(e)).list.forEach((function(e){var t=JSON.parse(e.obj),o=t.id,r=t.time;i.push({userId:o,readTime:r}),a[o]=r}));var c={readerInfo:a,readCount:i.length,totalCount:r};n._updateReadReceiptInfo(t,c),s({code:o.ErrorCode.SUCCESS,data:{list:i,totalMemberCount:r}})}),(function(e){s({code:e})}))}))},e.prototype.joinChatroom=function(e,t){var r=this;return new Promise((function(n,s){r._callCppProxy("clearMessages",o.ConversationType.CHATROOM,e,""),r._callCppProxy("joinChatRoom",e,t,(function(){n(o.ErrorCode.SUCCESS)}),n)}))},e.prototype.joinExistChatroom=function(e,t){throw new Error("Method not implemented.")},e.prototype.quitChatroom=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("quitChatRoom",e,(function(){r(o.ErrorCode.SUCCESS)}),r)}))},e.prototype.getChatroomInfo=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("getChatroomInfo",e,t,r,(function(e,t){var r=e?JSON.parse(e).list:[],n=[];if(r.length>0)for(var i=0;i<r.length;i++)n.push(JSON.parse(r[i].obj));s({code:o.ErrorCode.SUCCESS,data:{userInfos:n,userCount:t}})}),(function(e){s({code:e})}))}))},e.prototype.getChatroomHistoryMessages=function(e,t,r,n){var s=this;return new Promise((function(i,a){s._callCppProxy("getChatroomHistoryMessage",e,t,r,n,(function(e){var t;try{t=JSON.parse(e)}catch(e){t={list:[]}}var r=t.list;if(r&&r.length)try{t.list=r.map((function(e){return s._buildMessage(e.obj)}))}catch(e){t.list=[]}i({code:o.ErrorCode.SUCCESS,data:t})}),(function(e){i({code:e})}),"")}))},e.prototype.setChatroomEntry=function(e,t){var r=this;return new Promise((function(n,s){var i='[{"key":"'.concat(t.key,'", "value":"').concat(t.value,'"}]');r._callCppProxy("setChatroomKV",e,i,!!t.isAutoDelete,!!t.isOverwrite,(function(){n(o.ErrorCode.SUCCESS)}),(function(e){n(e)}))}))},e.prototype.setChatroomEntries=function(e,t){var r=this;return new Promise((function(n){r._callCppProxy("setChatroomKV",e,JSON.stringify(t.entries),!!t.isAutoDelete,!!t.isOverwrite,(function(){n({code:o.ErrorCode.SUCCESS})}),(function(e){n({code:e})}))}))},e.prototype.forceSetChatroomEntry=function(e,t){return t.isOverwrite=!0,t.userId=t.userId||this._currentUserId,this.setChatroomEntry(e,t)},e.prototype.removeChatroomEntry=function(e,t){var r=this,n=[t.key];return new Promise((function(s,i){r._callCppProxy("deleteChatroomKV",e,n,!!t.isOverwrite,(function(){s(o.ErrorCode.SUCCESS)}),(function(e){s(e)}))}))},e.prototype.forceRemoveChatroomEntry=function(e,t){return t.isOverwrite=!0,t.userId=t.userId||this._currentUserId,this.removeChatroomEntry(e,t)},e.prototype.removeChatroomEntries=function(e,t){var r=this;return new Promise((function(n){var s=t.entries.map((function(e){return e.key}));r._callCppProxy("deleteChatroomKV",e,s,!!t.isOverwrite,(function(){n({code:o.ErrorCode.SUCCESS})}),(function(e){n({code:e})}))}))},e.prototype.getChatroomEntry=function(e,t){return S(this,void 0,void 0,(function(){var r;return y(this,(function(n){switch(n.label){case 0:return[4,this.getAllChatroomEntry(e)];case 1:return(r=n.sent()).code===o.ErrorCode.SUCCESS?[2,{code:o.ErrorCode.SUCCESS,data:r.data?r.data[t]:null}]:[2,{code:r.code}]}}))}))},e.prototype.getAllChatroomEntry=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("getChatroomKV",e,(function(e){var t={};try{(e?JSON.parse(e):{list:[]}).list.map((function(e){return JSON.parse(e.obj)})).forEach((function(e){t[e.key]=e.value?e.value:""}))}catch(e){}r({code:o.ErrorCode.SUCCESS,data:t})}),(function(e){r({code:e})}))}))},e.prototype.getFileToken=function(e,t,r,n){var s=this;return r=r||"",n=n||"",new Promise((function(i){var a;a=n&&"uploads"!==n?t||"":o.getUploadFileName(e,t),s._callCppProxy("getUploadToken",e,a,r,n,(function(e,t,r,n,s,c,u,p,l,d,f,C,_,h,v,g,S,y){i({code:o.ErrorCode.SUCCESS,data:{token:e,deadline:0,bosToken:t,bosDate:r,path:n,osskeyId:s,ossPolicy:c,ossSign:u,ossBucketName:p,fileName:a,s3Credential:l,s3Algorithm:d,s3Date:f,s3Policy:C,s3Signature:_,s3BucketName:h,stcAuthorization:v,stcContentSha256:g,stcDate:S,stcBucketName:y}})}),(function(e){i({code:e})}))}))},e.prototype.getFileUrl=function(e,t,r,n){var s=this;return new Promise((function(i){s._callCppProxy("getDownloadUrl",e,r,n,t-1,(function(e){i({code:o.ErrorCode.SUCCESS,data:{downloadUrl:e}})}),(function(e){i({code:e})}))}))},e.prototype.clearData=function(){var e=this;return new Promise((function(t,r){var n=e._callCppProxy("clearData");t({code:o.ErrorCode.SUCCESS,data:n})}))},e.prototype.getDeviceId=function(){var e=this._dbpath||t.resolve(n.app.getPath("userData"));return J(e)},e.prototype.getVoIPKey=function(e,t){var r=this;return new Promise((function(n,s){r._callCppProxy("getVoIPKey",e,t,"",(function(e){n({code:o.ErrorCode.SUCCESS,data:e})}),(function(e){n({code:e})}))}))},e.prototype.bindRTCRoomForChatroom=function(e){var t=this;return new Promise((function(r,n){var s=e.chatRoomId,i=e.rtcRoomId;t._callCppProxy("bindRTCRoomForChatroom",s,i,(function(){r(o.ErrorCode.SUCCESS)}),(function(e){r(e)}))}))},e.prototype.getGroupMessageDeliverList=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("getGroupMessageDeliverList",e,r,t,(function(e,t){var r=JSON.parse(e).list.map((function(e){return{time:JSON.parse(e.obj).time,userId:JSON.parse(e.obj).id}}));s({code:o.ErrorCode.SUCCESS,data:{totalCount:t,list:r}})}),(function(e){s({code:e})}))}))},e.prototype.getPrivateMessageDeliverTime=function(e,t){var r=this;return new Promise((function(n,s){var i=r._callCppProxy("getMessageDeliverTime",e);if(i)n({code:o.ErrorCode.SUCCESS,data:i});else{r._callCppProxy("getPrivateMessageDeliverList",t,e,(function(e){var t=0,r=JSON.parse(e).list;r.length>0&&(t=JSON.parse(r[0].obj).time);n({code:o.ErrorCode.SUCCESS,data:t})}),(function(e){n({code:e})}))}}))},e.prototype.rtcSignaling=function(e,t,r,n){var s=this,i=Array.prototype.slice.call(new Uint8Array(n));return new Promise((function(n){s._callCppProxy("rtcSignaling",e,t,r,i,(function(e){var t=new Uint8Array(e).buffer;n({code:o.ErrorCode.SUCCESS,buffer:t})}),(function(e){n({code:e})}))}))},e.prototype._setRTCHeartbeatListener=function(){var e=this;this._cppProtocol.setRTCHeartbeatListener((function(t,o){var r=e.rtcHeartbeatResolves[t];if(r){var n=r.find((function(e){return""===e.seqId}));n&&(n.seqId=o)}}),(function(t,o,r,n){var s=e.rtcHeartbeatResolves[t];if(s){var i=s.findIndex((function(e){return e.seqId===r}));-1!==i&&s.splice(i,1)[0].resolve({code:o,data:{version:Number(n)}})}}))},e.prototype.rtcPing=function(e,t,o){var r=this;return new Promise((function(t){var o={resolve:t,seqId:""},n=r.rtcHeartbeatResolves[e];n?n.push(o):r.rtcHeartbeatResolves[e]=[o],r._callCppProxy("sendRTCHeartbeat",[e])}))},e.prototype.createTag=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("addTag",e.tagId,e.tagName,(function(){r({code:o.ErrorCode.SUCCESS})}),(function(e){r({code:e})}))}))},e.prototype.removeTag=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("deleteTag",e,(function(){r({code:o.ErrorCode.SUCCESS})}),(function(e){r({code:e})}))}))},e.prototype.updateTag=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("renameTag",e.tagId,e.tagName,(function(){r({code:o.ErrorCode.SUCCESS})}),(function(e){r({code:e})}))}))},e.prototype.getTagList=function(){var e=this;return new Promise((function(t,r){var n=e._callCppProxy("getTags"),s=e._convertResultList(n,(function(e){return{tagId:e.tagId,tagName:e.tagName,conversationCount:e.conversationCount,createdTime:e.tagTime}}));t({code:o.ErrorCode.SUCCESS,data:s})}))},e.prototype.addTagForConversations=function(e,t){var r=this;return new Promise((function(n,s){t.forEach((function(e){e.conversationType&&(e.type=e.conversationType)}));r._callCppProxy("addConversationsForTag",e,JSON.stringify(t),(function(){n({code:o.ErrorCode.SUCCESS})}),(function(e){n({code:e})}))}))},e.prototype.removeTagForConversations=function(e,t){var r=this;return new Promise((function(n,s){t.forEach((function(e){e.conversationType&&(e.type=e.conversationType)})),r._callCppProxy("removeConversationsForTag",e,JSON.stringify(t),(function(){n({code:o.ErrorCode.SUCCESS})}),(function(e){n({code:e})}))}))},e.prototype.removeTagsForConversation=function(e,t){var r=this;return new Promise((function(n,s){r._callCppProxy("removeTagsForConversation",e.conversationType,e.targetId,e.channelId||"",t,(function(){n({code:o.ErrorCode.SUCCESS})}),(function(e){n({code:e})}))}))},e.prototype.getConversationListByTag=function(e,t,r,n){var s=this;return new Promise((function(i){var a=s._callCppProxy("getConversationsForTagByPage",e,t,r||20,n||""),c=s._convertResultList(a,(function(e){return g(g({},s._buildConversation(JSON.stringify(e))),{isTopInTag:e.topForTag})}));i({code:o.ErrorCode.SUCCESS,data:c})}))},e.prototype.getUnreadCountByTag=function(e,t){var r=this;return new Promise((function(n,s){var i=r._callCppProxy("getConversationUnreadCountForTag",e,t);n({code:o.ErrorCode.SUCCESS,data:i})}))},e.prototype.setConversationStatusInTag=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("setConversationToTopForTag",e,t.conversationType,t.targetId,t.channelId||"",r.isTop||!1,(function(){s({code:o.ErrorCode.SUCCESS})}),(function(e){s({code:e})}))}))},e.prototype.getTagsForConversation=function(e){var t=this;return new Promise((function(r,n){var s=t._callCppProxy("getTagsForConversation",e.conversationType,e.targetId,e.channelId||""),i=t._convertResultList(s,(function(e){return{tagId:e.tagId,tagName:e.tagName,isTop:e.isTop,createdTime:e.tagTime}}));r({code:o.ErrorCode.SUCCESS,data:i})}))},e.prototype.getBlockConversationList=function(){throw new Error("Method not implemented.")},e.prototype.getTopConversationList=function(){throw new Error("Method not implemented.")},e.prototype.getUnreadMentionedCount=function(e){throw new Error("Method not implemented.")},e.prototype.getAllUnreadMentionedCount=function(){throw new Error("Method not implemented.")},e.prototype.getOSInfo=function(){return S(this,void 0,void 0,(function(){var e;return y(this,(function(t){return e={arch:p.arch(),platform:p.platform(),type:p.type(),version:p.version(),release:p.release(),uptime:p.uptime(),cpus:p.cpus(),freemem:p.freemem(),totalmem:p.totalmem(),networkInterfaces:p.networkInterfaces()},[2,{code:o.ErrorCode.SUCCESS,data:e}]}))}))},e.prototype.getMainProcessInfo=function(){return S(this,void 0,void 0,(function(){return y(this,(function(e){return[2,{code:o.ErrorCode.SUCCESS,data:{title:process.title,pid:process.pid,ppid:process.ppid,platform:process.platform,arch:process.arch,uptime:process.uptime(),cpuUsage:process.cpuUsage(),memoryUsage:process.memoryUsage(),resourceUsage:process.resourceUsage()}}]}))}))},e.prototype.setCallInfo=function(e,t,r){var n=this;return new Promise((function(s){n._callCppProxy("callInfoSignaling",e,t,r,(function(e,t){s({code:o.ErrorCode.SUCCESS,data:{key:e,value:t}})}),(function(e){s({code:e})}))}))},e}(),K=function(){function e(e,t,o,r){void 0===o&&(o=""),void 0===r&&(r=!1),this._cppService=new V(e,t,o,r)}return e.prototype.getCppProto=function(){var e=this;return{destroy:function(){console.warn("`.getCppProto().destroy()` has being deprecated, use `.destroy()` instead."),e.destroy()}}},e.prototype.destroy=function(){this._cppService.destroy()},e.prototype.getDeviceId=function(){return this._cppService.getDeviceId()},e.prototype.getServerTime=function(){return this._cppService.getServerTime()},e.prototype.__createLogger=function(e,t){return this._cppService.createLogger(e,t)},e}();module.exports=function(e){return function(e,t,o){if(F)return F;if(!t)throw new Error("Initializ failed, `appkey` is required!");return F=new K(t,e,null==o?void 0:o.dbpath,null==o?void 0:o.reconnectKickEnable)}(C,e.appkey,e)};
|
|
1
|
+
"use strict";var e=require("os"),t=require("path"),o=require("@rongcloud/engine"),r=require("child_process"),n=require("electron"),s=require("fs"),i=require("http"),a=require("https"),c=require("url"),u=require("net"),p=require("events"),d=require("tls"),l=require("crypto");function f(e){if(e&&e.__esModule)return e;var t=Object.create(null);return e&&Object.keys(e).forEach((function(o){if("default"!==o){var r=Object.getOwnPropertyDescriptor(e,o);Object.defineProperty(t,o,r.get?r:{enumerable:!0,get:function(){return e[o]}})}})),t.default=e,Object.freeze(t)}var h=f(e),C=process.versions.electron.replace(/\.\d+$/,""),g=t.resolve(__dirname,"binding","electron-v".concat(C,"-").concat(e.platform(),"-").concat(e.arch(),".node")),v={addon:null};try{v.addon=require(g)}catch(e){console.error("error ->",g,"\n",e)}var _=v.addon,S=function(e,t){return S=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o])},S(e,t)};function y(e,t){if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");function o(){this.constructor=e}S(e,t),e.prototype=null===t?Object.create(t):(o.prototype=t.prototype,new o)}var m,E=function(){return E=Object.assign||function(e){for(var t,o=1,r=arguments.length;o<r;o++)for(var n in t=arguments[o])Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n]);return e},E.apply(this,arguments)};function P(e,t,o,r){return new(o||(o=Promise))((function(n,s){function i(e){try{c(r.next(e))}catch(e){s(e)}}function a(e){try{c(r.throw(e))}catch(e){s(e)}}function c(e){var t;e.done?n(e.value):(t=e.value,t instanceof o?t:new o((function(e){e(t)}))).then(i,a)}c((r=r.apply(e,t||[])).next())}))}function T(e,t){var o,r,n,s,i={label:0,sent:function(){if(1&n[0])throw n[1];return n[1]},trys:[],ops:[]};return s={next:a(0),throw:a(1),return:a(2)},"function"==typeof Symbol&&(s[Symbol.iterator]=function(){return this}),s;function a(a){return function(c){return function(a){if(o)throw new TypeError("Generator is already executing.");for(;s&&(s=0,a[0]&&(i=0)),i;)try{if(o=1,r&&(n=2&a[0]?r.return:a[0]?r.throw||((n=r.return)&&n.call(r),0):r.next)&&!(n=n.call(r,a[1])).done)return n;switch(r=0,n&&(a=[2&a[0],n.value]),a[0]){case 0:case 1:n=a;break;case 4:return i.label++,{value:a[1],done:!1};case 5:i.label++,r=a[1],a=[0];continue;case 7:a=i.ops.pop(),i.trys.pop();continue;default:if(!(n=i.trys,(n=n.length>0&&n[n.length-1])||6!==a[0]&&2!==a[0])){i=0;continue}if(3===a[0]&&(!n||a[1]>n[0]&&a[1]<n[3])){i.label=a[1];break}if(6===a[0]&&i.label<n[1]){i.label=n[1],n=a;break}if(n&&i.label<n[2]){i.label=n[2],i.ops.push(a);break}n[2]&&i.ops.pop(),i.trys.pop();continue}a=t.call(e,i)}catch(e){a=[6,e],r=0}finally{o=n=0}if(5&a[0])throw a[1];return{value:a[0]?a[1]:void 0,done:!0}}([a,c])}}}function I(e,t,o){if(o||2===arguments.length)for(var r,n=0,s=t.length;n<s;n++)!r&&n in t||(r||(r=Array.prototype.slice.call(t,0,n)),r[n]=t[n]);return e.concat(r||Array.prototype.slice.call(t))}!function(e){e.P_INIT_O="P-init-O",e.P_DB_OPEN_O="P-db_open-O",e.P_CALL_MAIN_SYNC_E="P-call_main_sync-E",e.P_CALL_MAIN_E="P-call_main-E",e.P_SEND_2_MAIN_E="P-send_2_main-E",e.P_REGTYP_O="P-regtype-O",e.P_CALL_ADDON_E="P-call_addon-E",e.P_CALL_EXTRA_E="P-call_extra-E",e.P_CONNECT_S="P-connect-S",e.P_CONNECT_O="P-connect-O",e.P_REPORT_VER_O="P-report_version-O",e.P_PARSE_JSON_MSGS_E="P-parse_json_messsages-E",e.P_HTTP_REQ_E="P-http_request-E",e.P_SET_MSG_EXTEN_O="P-set_msg_extension-O",e.P_SEND_MSG_T="P-send_msg-T",e.P_SEND_MSG_R="P-send_msg-R",e.P_WRITE_LOG_T="P_WRITE_LOG_T",e.P_WRITE_LOG_R="P_WRITE_LOG_R"}(m||(m={}));var O,R={flushTimestamp:Date.now(),queue:[],locked:!1};function N(){O&&clearInterval(O)}function M(e,t){N(),O=setInterval((function(){return w(e,t)}),1e4)}function U(){for(var e,t=[],o=0;o<arguments.length;o++)t[o]=arguments[o];(e=R.queue).push.apply(e,t)}function w(e,t){var o=R.queue,r=R.flushTimestamp;if(!(R.locked||0===o.length||Date.now()-r<3e4&&o.length<200)){R.locked=!0;var n=t.createTraceId(),s=o.splice(0,200).map((function(e){var t=e.sessionId,o=e.level,r=e.time,n=e.type,s=e.tag,i=e.loggerId,a=e.content,c=e.traceId;return{level:o,time:r,type:n,tag:s,content:encodeURIComponent(JSON.stringify({loggerId:i,sessionId:t,content:a,traceId:c})).replace(/'/g,"%27")}}));t.debug(m.P_WRITE_LOG_T,"writingLen: ".concat(s.length,", queueLen: ").concat(o.length),n);var i=JSON.stringify(s);e.writeLog(i),t.debug(m.P_WRITE_LOG_R,"write done, queueLen: ".concat(o.length),n),R.flushTimestamp=Date.now(),R.locked=!1,setTimeout((function(){return w(e,t)}))}}var b=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return y(t,e),t.prototype.flush=function(e){U(e)},t}(o.BasicLogger),x=function(e,t){var o,r=Buffer.from(e),n=r.length;for(t.push(n),o=0;o<n;o++)t.push(r[o])},L=function(e){return"string"==typeof e},A=function(e){return L(e)?e.toUpperCase():""},D=function(e){var t=A(e.method)||"GET",o=e.pathname||"/",r=e.headers||{},n=e.search||"";r.Host=e.host||"loclahost";var s="";for(var i in s="".concat(t," ").concat(o+n," HTTP/1.1\n"),r)if(Object.hasOwnProperty.call(r,i)){var a=r[i];s+="".concat(i,": ").concat(a,"\n")}return e.body&&(s+="Content-Length: ".concat(e.body.length,"\n")),s+="\n","POST"===t&&e.body&&(s+="".concat(e.body)),s},k=function(e){return new Promise((function(t){var o,r;e.socket.once("data",(function(r){var n,s;2!==r.length?n="Unexpected number of bytes received.":5!==r[0]?n="Unexpected SOCKS version number: ".concat(r[0],"."):255===r[1]?n="No acceptable authentication methods were offered.":-1===o.indexOf(r[1])&&(n="Unexpected SOCKS authentication method: ".concat(r[1],".")),n?e.emit("error",new Error("SOCKS authentication failed. ".concat(n))):2===r[1]?(e.socket.once("data",(function(o){var r;2!==o.length?r="Unexpected number of bytes received.":1!==o[0]?r="Unexpected authentication method code: ".concat(o[0],"."):0!==o[1]&&(r="Username and password authentication failure: ".concat(o[1],".")),r?e.emit("error",new Error("SOCKS authentication failed. ".concat(r))):t()})),s=[1],x(e.socksUsername,s),x(e.socksPassword,s),e.write(Buffer.from(s))):t()})),o=[0],e.socksUsername&&o.push(2),(r=Buffer.alloc(2+o.length))[0]=5,r[1]=o.length,o.forEach((function(e,t){r[2+t]=e})),e.write(r)}))},J=function(e,t,o){return new Promise((function(r){var n,s;switch(e.socket.once("data",(function(t){var o;5!==t[0]?o="Unexpected SOCKS version number: ".concat(t[0],"."):0!==t[1]?o="".concat(function(e){switch(e){case 1:return"General SOCKS server failure";case 2:return"Connection not allowed by ruleset";case 3:return"Network unreachable";case 4:return"Host unreachable";case 5:return"Connection refused";case 6:return"TTL expired";case 7:return"Command not supported";case 8:return"Address type not supported";default:return"Unknown status code ".concat(e)}}(t[1]),"."):0!==t[2]&&(o="The reserved byte must be 0x00."),o?e.emit("error",new Error("SOCKS connection failed. ".concat(o))):r()})),(n=[]).push(5),n.push(1),n.push(0),u.isIP(t)){case 0:n.push(3),x(t,n);break;case 4:n.push(1),function(e,t){var o,r,n=e.split(".");for(o=0;o<4;o++)r=parseInt(n[o],10),t.push(r)}(t,n);break;case 6:e.emit("error",new Error("Does not support IPV6"))}n.length+=2,(s=Buffer.from(n)).writeUInt16BE(o,s.length-2),e.write(s)}))},j=function(e){function t(t){var o=e.call(this)||this;return o.readable=!0,o.socket=new u.Socket,o.options=t,o.socksHost=t.socksHost||"localhost",o.socksPort=t.socksPort||1080,o.socksUsername=t.socksUsername||"",o.socksPassword=t.socksPassword||"",o.socket.on("error",(function(e){o.emit("error",e)})),o.on("error",(function(){o.socket.destroyed||o.socket.destroy()})),o.on("end",o.end),o}return y(t,e),t.prototype.ref=function(){return this.socket.ref()},t.prototype.unref=function(){return this.socket.unref()},t.prototype.setTimeout=function(e,t){return this.socket.setTimeout(e,t)},t.prototype.setNoDelay=function(e){return this.socket.setNoDelay(e)},t.prototype.setKeepAlive=function(e,t){return this.socket.setKeepAlive(e,t)},t.prototype.address=function(){return this.socket.address()},t.prototype.cork=function(){return this.socket.cork()},t.prototype.uncork=function(){return this.socket.uncork()},t.prototype.pause=function(){return this.socket.pause()},t.prototype.resume=function(){return this.socket.resume()},t.prototype.pipe=function(e){return this.socket.pipe(e)},t.prototype.end=function(e,t){var o=this.socket.end(e,t);return this.writable=this.socket.writable,o},t.prototype.destroy=function(e){return this.socket.destroy(e)},t.prototype.setEncoding=function(e){return this.socket.setEncoding(e)},t.prototype.write=function(e,t,o){return this.socket.write(e,t,o)},t.prototype.read=function(e){return this.socket.read(e)},t.prototype.connect=function(e,t){var o=this;if("string"==typeof e&&/^\d+$/.test(e)&&(e=parseInt(e,10)),!Number.isInteger(e)||e<1||e>65535)throw new TypeError("Invalid port: ".concat(e));if(!t||"string"!=typeof t)throw new TypeError("Invalid host: ".concat(t));return this.socket.connect({port:this.socksPort,host:this.socksHost},(function(){return P(o,void 0,void 0,(function(){var o;return T(this,(function(r){switch(r.label){case 0:return[4,k(this)];case 1:return r.sent(),[4,J(this,t,e)];case 2:return r.sent(),this.onProxied(),o=D(this.options),this.socket.write(Buffer.from(o)),[2]}}))}))})),this},t.prototype.onProxied=function(){var e=this;this.socket.on("close",(function(t){e.emit("close",t)})),this.socket.on("end",(function(){e.emit("end")})),this.socket.on("data",(function(t){e.emit("data",t)})),this.writable=!0,this.readable=!0,this.emit("connect")},t}(p.EventEmitter),H=function(e){var t,o=e.hostname,r=e.port;return!e.host||o&&r||(t=e.host.split(":")),!r&&t&&(r=parseInt(t[1],10)||0),!o&&t&&(o=t[0]),new j(e).connect(r,o)},B=function(e){function t(t){var o=e.call(this)||this;return o.createConnection=H,o}return y(t,e),t}(i.Agent),F=function(e,t,o){return(t=E(E({},t),c.parse(e))).port||(t.port=80),t.agent=new B(t),i.request(t,o)},G=function(e){var t,o;return t=H(e),o=t.onProxied,t.onProxied=function(){e.socket=t.socket,e.hostname?e.servername=e.hostname:e.host&&(e.servername=e.host.split(":")[0]),t.socket=d.connect(e,(function(){t.authorized=t.socket.authorized,o.call(t)})),t.socket.on("error",(function(e){t.emit("error",e)}))},t},q=function(e){function t(t,o){var r=e.call(this,o)||this;return r.url=t,r.socksHost=o.socksHost||"localhost",r.socksPort=o.socksPort||1080,r.createConnection=G,r}return y(t,e),t}(a.Agent),V=function(e,t,o,r){var n,s;return t.protocol="https:",!t.port&&t.host&&(n=t.host.split(":"),t.port=n[0],t.port=n[1]),t.port||(t.port=443),s=new q(e,t),t.agent=s,a.request(e,t,o)},K=null;function W(e,t,r){void 0===r&&(r=!1);var n=t.url,s=t.headers,c=t.body,u=t.method,p=t.query,d=t.timeout,l=void 0===d?o.HTTP_TIMEOUT:d;return new Promise((function(t){var d=/^https/.test(n),f={headers:s,method:u};d&&(f.rejectUnauthorized=r);var h=null;K?((f=E(E({},f),K)).body=c,h=d?V:F):(f.agent=new a.Agent(f),h=d?a.request:i.request);var C=h(o.appendUrl(n,p),f,(function(e){var o=e.statusCode,r="";e.setEncoding("utf8"),e.on("data",(function(e){r+=e})),e.once("end",(function(){t({status:o||0,data:r})}))}));C.once("timeout",(function(){e.warn(m.P_HTTP_REQ_E,JSON.stringify({msg:"timeout",url:n,method:u,query:p,timeout:l})),t({status:0})})),C.setTimeout(l),C.once("error",(function(o){e.warn(m.P_HTTP_REQ_E,JSON.stringify({msg:o.stack,url:n,method:u,query:p,timeout:l})),t({status:0})})),C.write(c),C.end()}))}function Y(e,t){return e?(K=E(E({},K),e),t.info(o.LogTagId.A_SET_PROXY_O,JSON.stringify({msg:"set proxy",data:K})),{code:o.ErrorCode.SUCCESS}):(K=null,t.info(o.LogTagId.A_REMOVE_PROXY_O,JSON.stringify({msg:"remove proxy"})),{code:o.ErrorCode.SUCCESS})}function X(){var e=K||void 0;return{code:o.ErrorCode.SUCCESS,data:e}}var z,Q=[],$=!1,Z=function(){return P(void 0,void 0,void 0,(function(){var e,t,o,r,n,s,i,a,c;return T(this,(function(u){return $||0===Q.length||($=!0,e=Q.shift(),t=e.args,o=e.resolve,r=t.addon,n=t.startTime,s=t.endTime,i=t.level,a=t.realtimeReport,c=[],r.setLogEventListener((function(e){var t=e.split(","),o=t[0],r=t[1],n=t[2],s=t[3],u=t[4],p=t.slice(5);try{var d=JSON.parse(decodeURIComponent(p.join(","))),l=d.loggerId,f=d.sessionId,h=d.content,C=d.traceId;if(!a&&i<0)return;var g={time:parseInt(r,10),level:parseInt(s,10),sessionId:"".concat(o,":").concat(f),type:n,tag:u,loggerId:l,content:h,traceId:C};c.push(g)}catch(e){console.error(e)}}),(function(e){o(c),$=!1,Z()}),(function(e,t,o){})),r.pullFullLog(i,n,s,!1)),[2]}))}))},ee=function(e){function t(t,r,n,s,i){var a=this,c=process.versions.electron,u="Electron|".concat(c,"|").concat(process.arch,"|").concat(process.platform);return(a=e.call(this,r,n,u,{getLogs:function(e,o,r,n){return P(this,void 0,void 0,(function(){return T(this,(function(s){switch(s.label){case 0:return[4,(i={startTime:e,endTime:o,level:r,realtimeReport:n,addon:t},P(void 0,void 0,void 0,(function(){return T(this,(function(e){return[2,new Promise((function(e){Q.push({resolve:e,args:i}),Z()}))]}))})))];case 1:return[2,{logs:s.sent(),dbReady:!0}]}var i}))}))},getTimestamp4RealtimeLog:function(){var e=t.getStoreValue(o.StoreKeys.REALTIME_LOG_TIMESTAMP);return parseInt(e,10)||0},setTimestamp4RealtimeLog:function(e){t.setStoreValue(o.StoreKeys.REALTIME_LOG_TIMESTAMP,e.toString())}},s)||this).subProcess=i,a}return y(t,e),t.prototype.send=function(e){return W(this.logger,e)},t.prototype.compressLogs=function(e){return P(this,void 0,void 0,(function(){var t,o,r;return T(this,(function(n){switch(n.label){case 0:return[4,this.subProcess.call("compressLogs",e)];case 1:return t=n.sent(),o=t.success,r=t.data,o?[2,{success:o,data:r}]:[2,{success:o,data:""}]}}))}))},t}(o.BasicReporter),te=null,oe=function(){var t,o=Date.now(),r=[e.arch(),e.platform(),process.pid,o,Math.floor(Math.random()*o)].join("__");return t=r,l.createHash("md5").update(t).digest("hex")},re=function(e){if(te)return te;var o=t.resolve(e,"deviceId");return s.existsSync(o)?te=s.readFileSync(o).toString():(te=oe(),s.writeFileSync(o,te),te)},ne=function(){function e(e){this._cppProto=e,this._setTime=15962112e5}return e.prototype._setToProtocol=function(e,t,o,r,n,s){var i=JSON.stringify(n);"{}"!==i&&e.info(m.P_SET_MSG_EXTEN_O,JSON.stringify({messageUId:r,ext:n})),this._cppProto.setMessageExtension(t,o,r,i,s)},e.prototype.setLocalFromReceiveMsg=function(e,t){var o=t.channelId,r=t.conversationType,n=t.targetId,s=t.messageUId,i=t.expansion,a=t.sentTime,c={};for(var u in i)c[u]={v:"",ts:0},c[u].v=i[u],c[u].ts=a;this._setToProtocol(e,r,n,s,c,o||"")},e.prototype.setLocalFromExtMsg=function(e,t){var o=t.channelId,r=t.conversationType,n=t.targetId;t.messageUId;var s=t.content,i=t.sentTime,a=s,c=a.put,u=this._cppProto.getMessage(a.mid),p=JSON.parse(u).extMsg,d=JSON.parse(p||"{}");if(c)for(var l in c){var f=d[l];f&&f.ts<i-this._setTime?(f.v=c[l],f.ts=i-this._setTime):(d[l]={v:"",ts:0},d[l].v=c[l],d[l].ts=i-this._setTime)}a.del&&a.del.forEach((function(e){delete d[e]})),this._setToProtocol(e,r,n,a.mid,d,o||"")},e.prototype.parseReceiveExpansion=function(e){var t=JSON.parse(e.extMsg||"{}"),o={};for(var r in t)o[r]=t[r].v;return o},e.prototype.parseConverOrHisExpansion=function(e){var t=JSON.parse(e.extMsg),o=JSON.parse(t||"{}"),r={};for(var n in o)r[n]=o[n].v;return r},e}(),se=function(){function e(e){var t=this;this.p=e,this.count=0,this.maps={},this.p.on("message",(function(e){var o=e.reqId,r=e.success,n=e.data,s=t.maps[o];s&&(s({success:r,data:n}),delete t.maps[o])}))}return e.prototype.call=function(e){for(var t=[],o=1;o<arguments.length;o++)t[o-1]=arguments[o];return P(this,void 0,void 0,(function(){var o=this;return T(this,(function(r){return this.p.killed?[2,{success:!1}]:[2,new Promise((function(r){var n=++o.count;o.maps[n]=r;var s={reqId:n,method:e,args:t};o.p.send(s)}))]}))}))},e.prototype.destroy=function(){this.p.kill()},e}(),ie=function(e){function t(t,o,r){var n=e.call(this,t,o,[])||this;return n.addon=r,n._caches={},n}return y(t,e),t.prototype.updateCustomNavis=function(e){var t;e.length&&(t=this.navigators).splice.apply(t,I([0,this.navigators.length],e,!1))},t.prototype.httpRequest=function(e,t,r,n,s,i){return P(this,void 0,void 0,(function(){var a,c,u,p,d;return T(this,(function(l){switch(l.label){case 0:return a="token=".concat(encodeURIComponent(r),"&v=").concat(n,"&p=PC&ev=").concat("5.7.0"),c="".concat(e,"/navi.json?r=").concat(Date.now()),this.logger.debug(o.LogTagId.L_GET_NAVI_O,JSON.stringify({url:c,body:a}),i),[4,W(this.logger,{method:"POST",headers:{appId:t},body:a,url:c,timeout:s})];case 1:if(200!==(u=l.sent()).status)return[2,{code:this.transHttpCode(u.status)}];try{return p=JSON.parse(u.data),d=/^https/.test(c)?"https":"http",p.protocol=d,[2,{code:o.ErrorCode.SUCCESS,data:p}]}catch(e){return this.logger.error(o.LogTagId.L_PARSE_NAVI_E,u.data,i),[2,{code:o.ErrorCode.RC_NAVI_REQ_FAILED}]}return[2]}}))}))},t.prototype.getNaviCache=function(e){var t=this._caches[e];if(t)return t;var r=this.addon.getStoreValue("navi_".concat(e));if(0===r.length)return null;try{return this._caches[e]=JSON.parse(r)}catch(e){this.logger.error(o.LogTagId.L_PARSE_NAVI_E,r)}return null},t.prototype.setNaviCache=function(e,t){var o=this._caches[e]={token:e,naviInfo:t,timestamp:Date.now()};this.addon.setStoreValue("navi_".concat(e),JSON.stringify(o))},t.prototype.flush=function(){var e=this;Object.keys(this._caches).forEach((function(t){var o=e._caches[t];e.addon.setStoreValue("navi_".concat(t),JSON.stringify(o))}))},t}(o.BasicNavi),ae=function(e){function t(t,r,n,s,i){var a=e.call(this,t,n,s,i)||this;return a.addon=r,a._connectedTime=0,a.connectResolve=null,a.pingResolve=null,a.addon.setConnectionStatusListener(a._onConnectionStatusChange.bind(a),(function(e){a.logger.info(m.P_DB_OPEN_O,e),n.flush()}),(function(){return a.recvPong(o.ErrorCode.SUCCESS)}),a._onConnectionStatusChange.bind(a)),a}return y(t,e),t.prototype.getConnectedTime=function(){return this._connectedTime},t.prototype.connectWithToken=function(e,t,r,n){var s=this;return new Promise((function(i){s.connectResolve={resolve:i,traceId:n,userId:t.userId};var a=null,c=X().data;c&&(a=JSON.stringify({proxy_passwd:c.socksPassword||"",proxy_name:c.socksUsername||"",proxy_port:c.socksPort||1082,proxy_host:c.socksHost||"localhost",proxy_type:0}));try{s.addon.connectWithToken(e,o.FORMATED_VERSION,JSON.stringify(t),r,a)}catch(e){s.logger.error(m.P_CALL_ADDON_E,null==e?void 0:e.stack,n),s.recvConnectRes(o.ErrorCode.RC_SOCKET_NOT_CREATED)}}))},t.prototype.close=function(e){e||this.addon.disconnect(!1)},t.prototype.sendPing=function(e){var t=this;return new Promise((function(r){t.pingResolve=r,t.addon.sendHeartbeat(),setTimeout((function(){return t.recvPong(o.ErrorCode.TIMEOUT)}),e)}))},t.prototype.recvPong=function(e){this.pingResolve&&(this.pingResolve(e),this.pingResolve=null)},t.prototype._onConnectionStatusChange=function(e){switch(this.logger.info(m.P_CONNECT_S,e),e){case o.ErrorCode.SUCCESS:this.recvConnectRes(o.ErrorCode.SUCCESS);break;case o.ErrorCode.RC_CONN_REDIRECTED:case 32061:this.recvConnectRes(o.ErrorCode.RC_CONN_REDIRECTED,!0);break;case 11:case 10:case 12:break;case o.ErrorCode.RC_SOCKET_DISCONNECTED:this.recvConnectRes(e,!1);break;case o.ErrorCode.RC_SOCKET_NOT_CREATED:case o.ErrorCode.RC_CONN_ACK_TIMEOUT:case o.ErrorCode.RC_TCP_RESET:this.recvConnectRes(e);break;default:this.recvConnectRes(e,!0)}},t.prototype.recvConnectRes=function(e,t){if(this.connectResolve){var r=this.connectResolve,n=r.resolve;r.traceId;var s=r.userId;return e===o.ErrorCode.SUCCESS&&(this._connectedTime=Date.now()-this.addon.getDeltaTime()),n({code:e,data:s}),void(this.connectResolve=null)}if(t)this.onDisconnectByServer(e);else{if(e===o.ErrorCode.RC_SOCKET_DISCONNECTED)if(this.getConnectionStatus()!==o.RCConnectionStatus.CONNECTED)return;this.onDisconenctUnusual(e)}},t}(o.AConnectionMgr),ce=function(e){if(!s.existsSync(e)){var o=t.resolve(e,"..");s.existsSync(o)||ce(o),s.mkdirSync(e)}},ue=function(){function e(e,s,i,a){var c=this;this._appkey=e,this._cppProtocol=s,this._dbpath=i,this._logOutputLevel=a,this._customMessageType={},this._senders={},this._chatroomCache=[],this.rtcHeartbeatResolves={};var u=this._dbpath||t.resolve(n.app.getPath("userData")),p=re(u);this._cppProtocol.initWithAppkey(e,u,o.FORMATED_VERSION);var d=r.fork(t.resolve(__dirname,"sub-process.js"));this.subProxy=new se(d);var l=t.resolve(u,"RongCloud/rclogs",e);ce(l),function(e,t,r){r.initLogModule(t,e,o.getUUID())}(e,l,this._cppProtocol),this.logger=new b(this._appkey,"RC-M","IM"),this.logger.setOutputLevel(this._logOutputLevel),M(this._cppProtocol,this.logger),this.reporter=new ee(this._cppProtocol,e,p,this.logger,this.subProxy),this.logger.info(m.P_INIT_O,JSON.stringify({appkey:e,dbpath:u,proto_commit:this._cppProtocol.getNodeVersion(),deviceId:p,commit:"485ca9d3acdbaf73fe607cd2faacd683862806fb"})),this._callCppProxy("setDeviceId",p),this.navi=new ie(e,this.logger,this._cppProtocol),this.tcpMgr=new ae(e,this._cppProtocol,this.navi,this.logger,{onConnected:this.onConnected.bind(this),onSuspend:this.onSuspend.bind(this),onDisconnected:this.onDisconnected.bind(this),onConnecting:this.onConnecting.bind(this)}),this._registerMsgTypes(),this._setOnReceiveMessageListener(),this._setConversationStatusListener(),this._setUserProfileListener(),this._setRTCHeartbeatListener(),this._setRTCLivingRoomEventListener(),this._setChatroomEventListener(),this._setCallInfoListener(),n.ipcMain.on("__RC_CHANNEL_CALL_MAIN_SYNC__",(function(e,t){for(var r=[],n=2;n<arguments.length;n++)r[n-2]=arguments[n];return P(c,void 0,void 0,(function(){var n,s,i;return T(this,(function(a){switch(a.label){case 0:if("function"!=typeof(n=this[t]))return this.logger.error(m.P_CALL_MAIN_SYNC_E,JSON.stringify({method:t,error:"not found"})),e.returnValue=o.ErrorCode.NOT_SUPPORT,[2];s=o.ErrorCode.EXTRA_METHOD_UNDEFINED,a.label=1;case 1:return a.trys.push([1,3,,4]),[4,n.call.apply(n,I([this],r,!1))];case 2:return s=a.sent(),[3,4];case 3:return i=a.sent(),this.logger.error(m.P_CALL_MAIN_SYNC_E,JSON.stringify({error:null==i?void 0:i.stack,method:t})),[3,4];case 4:return e.returnValue=s,[2]}}))}))})),n.ipcMain.on("__RC_CHANNEL_CALL_MAIN__",(function(e,t,r){for(var n=[],s=3;s<arguments.length;s++)n[s-3]=arguments[s];return P(c,void 0,void 0,(function(){var s,i,a,c,u=this;return T(this,(function(p){switch(p.label){case 0:if("function"!=typeof(s=this[r]))return this.logger.error(m.P_CALL_MAIN_E,JSON.stringify({method:r,error:"not found"})),this._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",t,o.ErrorCode.NOT_SUPPORT),[2];"sendMessage"===r&&(i=n[3],n[3]=function(t){u._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",i,t)}),a=o.ErrorCode.EXTRA_METHOD_UNDEFINED,p.label=1;case 1:return p.trys.push([1,3,,4]),[4,s.call.apply(s,I([this],n,!1))];case 2:return a=p.sent(),[3,4];case 3:return c=p.sent(),this.logger.error(m.P_CALL_MAIN_E,JSON.stringify({error:null==c?void 0:c.stack,method:r})),[3,4];case 4:return this._send2Renderer(e.sender,"__RC_CHANNEL_RESULT_FROM_MAIN__",t,a),[2]}}))}))})),n.ipcMain.on("__RC_CHANNEL_SEND_2_MAIN__",(function(e,t){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];var n=c[t];if("function"==typeof n)try{n.call.apply(n,I([c],o,!1))}catch(e){c.logger.error(m.P_SEND_2_MAIN_E,JSON.stringify({error:null==e?void 0:e.stack,method:t}))}else c.logger.error(m.P_SEND_2_MAIN_E,JSON.stringify({method:t,error:"not found"}))})),n.ipcMain.on("__RC_INNER_COMMAND_INIT__",this._registerRenderers.bind(this)),this._msgExpansionHandler=new ne(this._cppProtocol)}return e.prototype.onConnected=function(){var e=this.getNaviInfoFromCache();this.reporter.checkStart(e),this._try2RejoinChatroom(),this._send2AllRenderer("onConnected",this.getMainProcessCache())},e.prototype.onConnecting=function(){this._send2AllRenderer("onConnecting",void 0)},e.prototype.onSuspend=function(e){this._send2AllRenderer("onSuspend",e)},e.prototype.onDisconnected=function(e){this._send2AllRenderer("onDisconnected",e)},e.prototype._callCppProxy=function(e){for(var t,o=[],r=1;r<arguments.length;r++)o[r-1]=arguments[r];var n=this.logger.createTraceId();try{var s=(t=this._cppProtocol)[e].apply(t,o);return s}catch(t){this.logger.error(m.P_CALL_ADDON_E,JSON.stringify({stack:null==t?void 0:t.stack,method:e}),n)}},e.prototype.refetchNaviInfo=function(){return this.navi.request(this.tcpMgr.getToken(),!0,!0,this.logger.createTraceId())},e.prototype.sendHTTPRequest=function(e){return W(this.logger,e)},e.prototype.onRendererLogsReceived=function(e){U.apply(void 0,e)},e.prototype.destroy=function(){this.reporter.stop(),this.subProxy.destroy(),function(e){N(),e.deinitLogModule()}(this._cppProtocol),this._cppProtocol.destroy()},e.prototype.callExtra=function(e){for(var t=[],r=1;r<arguments.length;r++)t[r-1]=arguments[r];var n=this[e];if(!n)return this.logger.warn(m.P_CALL_EXTRA_E,JSON.stringify({method:e,error:"not found"})),Promise.resolve({code:o.ErrorCode.EXTRA_METHOD_UNDEFINED});try{var s=n.call.apply(n,I([this],t,!1));return s}catch(t){this.logger.error(m.P_CALL_EXTRA_E,JSON.stringify({error:null==t?void 0:t.stack,method:e}))}return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})},e.prototype.getConversationsByPage=function(e,t,r,n){var s,i=this,a=this._callCppProxy("getConversationListByPage",e,t,r,n||"");try{s=JSON.parse(a).list.map((function(e){return i._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})}return Promise.resolve({code:o.ErrorCode.SUCCESS,data:s})},e.prototype.getUnreadConversationList=function(e){var t,r=this,n=this._callCppProxy("getUnreadConversationList",e);try{t=JSON.parse(n).list.map((function(e){return r._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})}return Promise.resolve({code:o.ErrorCode.SUCCESS,data:t})},e.prototype.getConversationListWithAllChannel=function(){var e,t=this,r=[o.ConversationType.PRIVATE,o.ConversationType.GROUP],n=this._callCppProxy("getConversationListWithAllChannel",r);try{e=JSON.parse(n).list.map((function(e){return t._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})}return Promise.resolve({code:o.ErrorCode.SUCCESS,data:e})},e.prototype.getConversationListWithAllChannelByPage=function(e,t){var r,n=this,s=[o.ConversationType.PRIVATE,o.ConversationType.GROUP],i=this._callCppProxy("getConversationListWithAllChannelByPage",s,e,t);try{r=JSON.parse(i).list.map((function(e){return n._buildConversation(e.obj)}))}catch(e){return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})}return Promise.resolve({code:o.ErrorCode.SUCCESS,data:r})},e.prototype.getHistoryMessagesByObjectNames=function(e,t,r,n,s,i,a){var c=0===i,u=n+1,p=this._callCppProxy("getHistoryMessagesByObjectNames",e,t,r,u,s,c,a||""),d=[];try{var l=JSON.parse(p).list;l.reverse();for(var f=0;f<l.length;f++){var h=this._buildMessage(l[f].obj);d[f]=h}}catch(e){return Promise.resolve({code:o.ErrorCode.MAIN_PROCESS_ERROR})}return Promise.resolve({code:o.ErrorCode.SUCCESS,data:{list:u===d.length?d.slice(1,u):d,hasMore:n<d.length}})},e.prototype.updateMessageReceiptStatus=function(e,t,r,n){void 0===n&&(n="");var s=this._callCppProxy("updateMessageReceiptStatus",e,t,r,n);return Promise.resolve({code:o.ErrorCode.SUCCESS,data:s})},e.prototype.getNaviInfoFromCache=function(){return this.navi.getNaviInfoFromCache(this.tcpMgr.getToken())},e.prototype.createLogger=function(e,t){return/^RC/.test(e)?null:new b(this._appkey,e,t)},e.prototype.getConnectedTime=function(){return this.tcpMgr.getConnectedTime()},e.prototype.getServerTime=function(){return Date.now()-this._cppProtocol.getDeltaTime()},e.prototype.getCurrentUserId=function(){return this.tcpMgr.getCurrentUserId()},e.prototype._send2Renderer=function(e,t){for(var o=[],r=2;r<arguments.length;r++)o[r-2]=arguments[r];e.isDestroyed()?delete this._senders[e.id]:e.send.apply(e,I([t],o,!1))},e.prototype._send2AllRenderer=function(e,t,o){var r=this;void 0===o&&(o=[]),Object.keys(this._senders).forEach((function(n){var s=r._senders[n];o.includes(s)||r._send2Renderer(s,"__RC_CHANNEL_NOTIFICATION_FROM_MAIN__",e,t)}))},e.prototype.getMainProcessCache=function(){var e=this.tcpMgr.getConnectedTime(),t=this.tcpMgr.getConnectionStatus(),o=this.getNaviInfoFromCache(),r=this.tcpMgr.getCurrentUserId();return{connectedTime:e,deviceId:this.getDeviceId(),crtUserId:r,naviInfo:o,connectionStatus:t}},e.prototype._registerRenderers=function(e,t){var o=this,r=e.sender,n=r.id;this.navi.updateCustomNavis(t.navigators),this._senders[n]||(this._senders[n]=r,r.once("destroyed",(function(){delete o._senders[n]})))},e.prototype._registerMsgTypes=function(){for(var e in o.SEND_MESSAGE_TYPE_OPTION["RC:RcCmd"]={isCounted:!1,isPersited:!1},o.SEND_MESSAGE_TYPE_OPTION){var t=o.SEND_MESSAGE_TYPE_OPTION[e],r=t.isCounted,n=t.isPersited,s=t.searchProps,i=0;n&&(i|=1),r&&(i|=2),"RC:TypSts"===e&&(i=16),this._callCppProxy("registerMessageType",e,i,s)}},e.prototype._buildMessage=function(e,t){void 0===t&&(t={});var r=t.isOffLineMessage,n=t.buildFrom,s=JSON.parse(e),i=s.channelId,a=s.conversationType,c=s.targetId,u=s.senderUserId,p=s.content,d=s.objectName,l=s.messageUid,f=s.direction,h=s.status;s.source;var C=s.messageId,g=s.sentTime,v=s.readReceiptRequest,_=s.supportExt;s.extMsg;var S,y=s.pushContent,P=s.pushTitle,T=s.pushId,I=s.pushConfig,O=s.templateId,R=s.disableTitle,N=s.forcePushDetail,M=!1;if(o.isObject(p))S=p;else try{S=p?JSON.parse(p):p}catch(e){S=p,this.logger.error(m.P_PARSE_JSON_MSGS_E,JSON.stringify({messageId:C}))}o.isObject(S)&&(M=!!S.mentionedInfo);var U={isCounted:!1,isPersited:!1};d in o.SEND_MESSAGE_TYPE_OPTION?U=o.SEND_MESSAGE_TYPE_OPTION[d]:d in this._customMessageType&&(U=this._customMessageType[d]);var w=null;_&&(w=this._msgExpansionHandler.parseReceiveExpansion(s),"conversation"!==n&&"history"!==n||(w=this._msgExpansionHandler.parseConverOrHisExpansion(s)));var b=o.isUndefined(r)?g<this.tcpMgr.getConnectedTime():r,x={};I&&(x=o.pushJSONToConfigs(this.logger,I,T));var L=E(E({},x),{pushTitle:P,pushContent:y,pushData:y,disablePushTitle:R,forceShowDetailContent:N,templateId:O}),A={channelId:i,conversationType:a,targetId:c,senderUserId:u,content:S||{},messageType:d,messageUId:l||"",messageDirection:f,isOffLineMessage:b,sentTime:g,receivedTime:0,isPersited:U.isPersited,isCounted:U.isCounted,isMentioned:M,disableNotification:!1,isStatusMessage:!1,canIncludeExpansion:_,expansion:_?w:null,receivedStatus:h,messageId:C,pushConfig:L};if(f===o.MessageDirection.RECEIVE?A.receivedStatus=h:f===o.MessageDirection.SEND&&(A.sentStatus=h),v){var D=JSON.parse(v),k=D.hasRespond,J=D.readerInfo,j={hasRespond:k,readCount:D.readCount,totalCount:D.totalCount},H=[];if(J)for(var B in J)H.push({userId:B,readTime:J[B]});j.readerList=H,A.readReceiptInfo=j}return A},e.prototype._updateReadReceiptInfo=function(e,t){var o=this._callCppProxy("getMessage",e),r=JSON.parse(o),n=r.readReceiptRequest?JSON.parse(r.readReceiptRequest):{},s=E(E({},n),t);this._callCppProxy("updateReadReceiptRequestInfo",e,JSON.stringify(s))},e.prototype._buildConversation=function(e){var t=JSON.parse(e),r=t.channelId,n=t.conversationType,s=t.targetId,i=t.unreadCount,a=t.lastestMsg,c=t.isTop,u=t.isBlocked,p=t.matchCount,d=t.hasUnreadMention,l=u?o.NotificationStatus.OPEN:o.NotificationStatus.CLOSE;return{channelId:r,conversationType:n,targetId:s,unreadMessageCount:i,latestMessage:-1===JSON.parse(a).messageId?null:this._buildMessage(a),hasMentioned:d,mentionedInfo:null,notificationStatus:l,isTop:c,lastUnreadTime:0,matchCount:p}},e.prototype._convertResultList=function(e,t){var o=JSON.parse(e).list;return o=o.map((function(e){var o=JSON.parse(e.obj);return t?t(o):o}))},e.prototype._setOnReceiveMessageListener=function(){var e=this;this._cppProtocol.setOnReceiveMessageListener((function(t,r,n,s){var i,a=e._buildMessage(t,{isOffLineMessage:n}),c=a.messageType;if(c!==o.MessageType.LOG_COMMAND||"rongcloudsystem"!==a.senderUserId){if(c===o.MessageType.GROUP_READ_RECEIPT_REQUEST){var u=a.content,p=u.msgId,d=u.rrn,l=u.tmn;e._updateReadReceiptInfo(p,{readCount:d,totalCount:l})}if("RC:MsgExMsg"===c)return e._msgExpansionHandler.setLocalFromExtMsg(e.logger,a),void e._sendMessageExpansion(a);if(a.canIncludeExpansion&&e._msgExpansionHandler.setLocalFromReceiveMsg(e.logger,a),c===o.MessageType.SYNC_READ_STATUS){if(a.senderUserId!==e.tcpMgr.getCurrentUserId())return;e._callCppProxy("clearUnreadCountByTimestamp",a.conversationType,a.targetId,a.content.lastMessageSendTime,a.channelId||"")}var f=!0;if(0!==r||s||(f=!1),c!==o.MessageType.LOG_COMMAND||"rongcloudsystem"!==a.senderUserId){if(c===o.MessageType.DELIVERED)return e._callCppProxy("setMessageDeliverTime",JSON.stringify(a.content)),void e._sendMessageDelivered(a.content.map((function(e){return{deliverTime:e.time,messageUId:e.messageUId,objectName:e.objectName,targetId:e.targetId}})));if(c!==o.MessageType.DELIVERED_MSG){c===o.MessageType.RECALL&&e.handleRecalledMessage(a);var h=a.conversationType,C=a.targetId;c===o.MessageType.RECALL&&a.senderUserId===e.tcpMgr.getCurrentUserId()&&(h=a.content.conversationType||h,C=a.content.targetId||C),e._sendMessageNotification(Object.assign(a,{hasMoreMsg:f,conversationType:h,targetId:C}))}else{var g={totalCount:a.content.tmn,list:null===(i=a.content.dl)||void 0===i?void 0:i.map((function(e){return{MessageUId:e.msgId,deliveryCount:e.drn}}))};e._sendGroupMessageDeliveredStatus(g)}}else{var v=Object.keys(e._senders).map((function(t){return e._senders[t]}));v.length>0&&e._sendMessageNotification(Object.assign(a,{hasMoreMsg:f}),v.slice(1))}}else{var _=a.content,S=_.startTime,y=_.endTime,m=_.platform,E=_.logId,P=_.uri;e.reporter.report(parseInt(S,10),parseInt(y,10),m,P,E,a.messageUId)}}),(function(){e._sendPullOfflineFinished()}))},e.prototype.handleRecalledMessage=function(e){var t=e.content.messageUId;if(t){var r=this._callCppProxy("getMessage",t),n=this._buildMessage(r,{isOffLineMessage:!1});if(n.messageId){var s={recallTime:Date.now(),admin:!!e.content.isAdmin,originalObjectName:n.messageType,originalMessageContent:n.content,recallActionTime:e.sentTime,operatorId:e.senderUserId};e.content.user&&(s.user=e.content.user),e.content.extra&&(s.extra=e.content.extra),n.messageType===o.MessageType.TextMessage&&(s.recallContent=n.content.content),e.content.isDelete?this._callCppProxy("deleteMessages",[n.messageId]):this._callCppProxy("setMessageContent",n.messageId,JSON.stringify(s),o.MessageType.RECALL_NOTIFICATION_MESSAGE)}}},e.prototype._sendMessageExpansion=function(e,t){void 0===t&&(t=[]);var o=e.channelId,r=e.content,n=r.put,s=r.del,i=r.mid,a={};n&&(a.updatedExpansion={channelId:o,messageUId:i,expansion:n}),s&&(a.deletedExpansion={channelId:o,messageUId:i,deletedKeys:s}),this._send2AllRenderer("expansion",a,t)},e.prototype._sendMessageNotification=function(e,t){void 0===t&&(t=[]),this._send2AllRenderer("batchMessage",e,t)},e.prototype._sendPullOfflineFinished=function(){this._send2AllRenderer("pullFinished",null)},e.prototype._sendMessageDelivered=function(e){this._send2AllRenderer("messageDelivered",e)},e.prototype._sendGroupMessageDeliveredStatus=function(e){this._send2AllRenderer("groupMessageDeliveredStatus",e)},e.prototype._sendChatroomStatus=function(e){this._send2AllRenderer("chatroom",e)},e.prototype._setConversationStatusListener=function(){var e=this;this._cppProtocol.setConversationStatusListener((function(t){var r=JSON.parse(t).list,n=[];r.forEach((function(e){var t=JSON.parse(e.obj),r=t.conversationType,s=t.targetId,i=t.status,a=t.channelId,c={notificationStatus:2,isTop:!1};i.forEach((function(e){var t=JSON.parse(e.item);1===t.type?c.notificationStatus=1===Number(t.value)?o.NotificationStatus.OPEN:o.NotificationStatus.CLOSE:c.isTop=1===Number(t.value)})),n.push({channelId:a,conversationType:r,targetId:s,updatedItems:{notificationStatus:{val:c.notificationStatus,time:0},isTop:{val:c.isTop,time:0}}})})),e._send2AllRenderer("conversation",n)}),(function(t){e._send2AllRenderer("conversationTag",t)}))},e.prototype._setUserProfileListener=function(){var e=this;this._cppProtocol.setUserProfileListener((function(){}),(function(t){e._send2AllRenderer("tag",t),e._getRTCProfile()}))},e.prototype._getRTCProfile=function(){var e=this._callCppProxy("getRTCProfile");if(e){var t=this.tcpMgr.getToken();this.navi.updateVoipCallInfo(t,e);var o=this.navi.getNaviInfoFromCache(t);this._send2AllRenderer("onNaviDataChange",o)}},e.prototype._setRTCLivingRoomEventListener=function(){var e=this;this._cppProtocol.setRTCRoomEventListener((function(t){var o=new Uint8Array(t).buffer;e._send2AllRenderer("onRTCDataChange",o)}))},e.prototype._setChatroomEventListener=function(){var e=this;this._cppProtocol.setChatroomEventListener((function(t,o){e._sendChatroomStatus({chatroomDestroyed:t})}))},e.prototype._setCallInfoListener=function(){var e=this;this._cppProtocol.setCallInfoListener((function(t){e._send2AllRenderer("callInfo",t)}))},e.prototype.registerMessageType=function(e,t,o,r){var n=0;t&&(n|=1),o&&(n|=2),this._customMessageType[e]={isCounted:o,isPersited:t},this.logger.info(m.P_REGTYP_O,JSON.stringify({type:e,opt:n,search:r})),this._callCppProxy("registerMessageType",e,n,r)},e.prototype.connect=function(e,t,o){return this.tcpMgr.connect(e,t,o)},e.prototype.reportSDKInfo=function(e){var t,o,r=JSON.stringify(E(E({},e),{"electron-main":"5.7.0"}));this.logger.info(m.P_REPORT_VER_O,r),null===(o=(t=this._cppProtocol).uploadSDKVersion)||void 0===o||o.call(t,r)},e.prototype.disconnect=function(){this._chatroomCache.length=0,this.reporter.stop(),Y(null,this.logger),this.tcpMgr.disconnect()},e.prototype.logout=function(){this.disconnect()},e.prototype.setUserStatusListener=function(e,t){this._cppProtocol.setOnReceiveStatusListener((function(e,o){t({userId:e,status:o})}));var o=e.userIds||[];o.length&&this.subscribeUserStatus(o)},e.prototype.subscribeUserStatus=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("subscribeUserStatus",e,(function(){r(o.ErrorCode.SUCCESS)}),r)}))},e.prototype.setUserStatus=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("setUserStatus",e,(function(){r(o.ErrorCode.SUCCESS)}),r)}))},e.prototype.getUserStatus=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("getUserStatus",e,(function(e){r({code:o.ErrorCode.SUCCESS,data:{status:e}})}),(function(e){r({code:e})}))}))},e.prototype.sendMessage=function(e,t,r,n,s){var i=this;void 0===s&&(s=this.logger.createTraceId());var a=r.messageType,c=r.content,u=r.pushContent,p=r.pushData,d=r.directionalUserIdList,l=r.disableNotification,f=r.canIncludeExpansion,h=r.expansion,C=r.isVoipPush,g=r.pushConfig,v=r.channelId,_=r.isMentioned,S=r.mentionedType,y=r.mentionedUserIdList,E=r.messageId,P=g||{},T=P.iOSConfig,I=P.androidConfig,O=P.pushTitle,R=P.pushContent,N=P.pushData,M=P.disablePushTitle,U=P.forceShowDetailContent,w=P.templateId,b=o.pushConfigsToJSON(T,I);return new Promise((function(r){var g,P,T;u=R||u||"",p=N||p||"",l=l||!1,C=C||!1,O=O||"",R=R||"",N=N||"",M=M||!1,U=U||!1,f=f||!1;var x=(null==I?void 0:I.notificationId)||"";if(d=d||[],E=E||0,v=v||"",e===o.ConversationType.GROUP&&_&&c&&(c.mentionedInfo={userIdList:(null===(g=c.mentionedInfo)||void 0===g?void 0:g.userIdList)||y||[],type:(null===(P=c.mentionedInfo)||void 0===P?void 0:P.type)||S||o.MentionedType.ALL,mentionedContent:(null===(T=c.mentionedInfo)||void 0===T?void 0:T.mentionedContent)||""}),e===o.ConversationType.GROUP&&a===o.MessageType.READ_RECEIPT_RESPONSE&&c.receiptMessageDic)for(var L in c.receiptMessageDic)d.push(L);var A={};for(var L in h)A[L]={v:""},A[L].v=h[L];var D=w||"";i.logger.info(m.P_SEND_MSG_T,JSON.stringify({messageType:a,conversationType:e,targetId:t,channelId:v}),s);var k=i._callCppProxy("sendMessage",(function(e,t){var n=i._buildMessage(e,{isOffLineMessage:!1});return i.logger.info(m.P_SEND_MSG_R,JSON.stringify({code:t,messageUId:n.messageUId}),s),t===o.ErrorCode.SENSITIVE_REPLACE?r({code:t}):("RC:MsgExMsg"===n.messageType&&i._msgExpansionHandler.setLocalFromExtMsg(i.logger,n),n.canIncludeExpansion&&i._msgExpansionHandler.setLocalFromReceiveMsg(i.logger,n),r({code:o.ErrorCode.SUCCESS,data:n}))}),(function(e,t){var o=i._buildMessage(e,{isOffLineMessage:!1});return i.logger.warn(m.P_SEND_MSG_R,JSON.stringify({code:t,messageId:o.messageId}),s),o.sentTime=Date.now()-i._cppProtocol.getDeltaTime(),r({code:t,data:o})}),e,t,a,JSON.stringify(c),d,l,M,U,u,p,x,O,b,D,f,JSON.stringify(A),C,v,E),J=JSON.parse(k);null==n||n(J.messageId)}))},e.prototype.recallMsg=function(e,t,r,n,s){var i=this;return new Promise((function(a,c){var u,p=s.user,d=s.pushContent,l=s.channelId,f=s.extra,h=s.pushConfig,C=s.disableNotification,g=s.isDelete,v={conversationType:e,targetId:t,messageUId:r,sentTime:n,user:p,extra:f,channelId:l,isDelete:g||!1};p&&(v.user=p),f&&(v.extra=f);var _={conversationType:e,targetId:t,senderUserId:i.tcpMgr.getCurrentUserId(),content:v,objectName:o.MessageType.RECALL,messageUid:r,direction:o.MessageDirection.SEND,status:o.ReceivedStatus.UNREAD,sentTime:n,channelId:l},S=i._buildMessage(JSON.stringify(_),{isOffLineMessage:!1});i._callCppProxy("recallMessage",(function(){i.handleRecalledMessage(S),a({code:o.ErrorCode.SUCCESS,data:S})}),(function(e){a({code:e})}),o.MessageType.RECALL,JSON.stringify(v),C||!1,(null==h?void 0:h.disablePushTitle)||!1,(null==h?void 0:h.forceShowDetailContent)||!1,d||"",(null==h?void 0:h.pushData)||"",(null===(u=null==h?void 0:h.androidConfig)||void 0===u?void 0:u.notificationId)||"",(null==h?void 0:h.pushTitle)||"",o.pushConfigsToJSON(null==h?void 0:h.iOSConfig,null==h?void 0:h.androidConfig),(null==h?void 0:h.templateId)||"",l)}))},e.prototype.getHistoryMessage=function(e,t,r,n,s,i,a){var c=this;return new Promise((function(u,p){r=r||0;var d=0===s,l=n+1,f=c._callCppProxy("getHistoryMessages",e,t,r,l,a,d,i),h=JSON.parse(f).list,C=[];h.reverse();for(var g=0;g<h.length;g++){var v=c._buildMessage(h[g].obj);C[g]=v}u({code:o.ErrorCode.SUCCESS,data:{list:l===C.length?C.slice(1,l):C,hasMore:n<C.length}})}))},e.prototype.getRemoteHistoryMessages=function(e,t,r,n,s,i){var a=this;return new Promise((function(c,u){r=r||0;a._callCppProxy("getRemoteHistoryMessages",e,t,r,n,(function(e,t){var r=JSON.parse(e).list,n=[];r.reverse();for(var s=0;s<r.length;s++){var i=a._buildMessage(r[s].obj);n[s]=i}c({code:o.ErrorCode.SUCCESS,data:{list:n,hasMore:!!t}})}),(function(e){c({code:e})}),s,!0,i)}))},e.prototype.deleteRemoteMessage=function(e,t,r,n){var s=this;return new Promise((function(i,a){var c=JSON.stringify(r);s._callCppProxy("deleteRemoteHistoryMessages",e,t,c,!1,n,(function(){i(o.ErrorCode.SUCCESS)}),i)}))},e.prototype.deleteRemoteMessageByTimestamp=function(e,t,r,n){var s=this;return new Promise((function(i,a){s._callCppProxy("clearRemoteHistoryMessages",e,t,r,(function(){i(o.ErrorCode.SUCCESS)}),(function(e){i(e)}),n)}))},e.prototype.clearMessages=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("clearMessages",e,t,r),s(o.ErrorCode.SUCCESS)}))},e.prototype.getConversationList=function(e,t,r,n,s){var i=this;return void 0===s&&(s=""),new Promise((function(e,t){for(var r=i._callCppProxy("getConversationList",[1,3,6,7],s),n=JSON.parse(r).list,a=[],c=0;c<n.length;c++)a.push(i._buildConversation(n[c].obj));e({code:o.ErrorCode.SUCCESS,data:a})}))},e.prototype.getConversation=function(e,t,r){var n=this;return new Promise((function(s,i){var a=n._callCppProxy("getConversation",e,t,r);if(a)s({code:o.ErrorCode.SUCCESS,data:n._buildConversation(a)});else{var c=n._cppProtocol.getHistoryMessages(e,t,0,1,"",!0,r),u=void 0;try{u=JSON.parse(c).list}catch(e){n.logger.error(m.P_PARSE_JSON_MSGS_E,null==e?void 0:e.stack),u=[]}var p=null;u.length>0&&(p=n._buildMessage(u[0].obj));var d=n._callCppProxy("getConversationNotificationStatus",e,t,r),l=n._callCppProxy("getConversationTopStatus",e,t,r);s({code:o.ErrorCode.SUCCESS,data:{conversationType:e,targetId:t,channelId:r,unreadMessageCount:0,latestMessage:p,notificationStatus:d?o.NotificationStatus.OPEN:o.NotificationStatus.CLOSE,isTop:Boolean(l),lastUnreadTime:0}})}}))},e.prototype.removeConversation=function(e,t,r){var n=this._callCppProxy("removeConversation",e,t,r);return Promise.resolve(n?o.ErrorCode.SUCCESS:o.ErrorCode.UNKNOWN)},e.prototype.clearConversations=function(e,t){var r=this;return new Promise((function(n,s){var i=[];i=o.isArray(e)?e:[o.ConversationType.PRIVATE,o.ConversationType.GROUP,o.ConversationType.SYSTEM,o.ConversationType.PUBLIC_SERVICE],r._callCppProxy("clearConversations",i,t),n(o.ErrorCode.SUCCESS)}))},e.prototype.getAllConversationUnreadCount=function(e,t,r){var n=this._callCppProxy("getTotalUnreadCount",t,r,e);return Promise.resolve({code:o.ErrorCode.SUCCESS,data:n})},e.prototype.getConversationUnreadCount=function(e,t,r){var n=this;return void 0===r&&(r=""),new Promise((function(s){var i=n._callCppProxy("getUnreadCount",e,t,r);s({code:o.ErrorCode.SUCCESS,data:i})}))},e.prototype.clearConversationUnreadCount=function(e,t,r){var n=this;return void 0===r&&(r=""),new Promise((function(s,i){n._callCppProxy("clearUnreadCount",e,t,r),s(o.ErrorCode.SUCCESS)}))},e.prototype.clearUnreadCountByTimestamp=function(e,t,r,n){var s=this;return new Promise((function(i,a){s._callCppProxy("clearUnreadCountByTimestamp",e,t,r,n),i(o.ErrorCode.SUCCESS)}))},e.prototype.getFirstUnreadMessage=function(e,t,r){var n=this;return new Promise((function(s,i){var a=n._callCppProxy("getTheFirstUnreadMessage",e,t,r),c=n._buildMessage(a);s({code:o.ErrorCode.SUCCESS,data:-1!==c.messageId?c:null})}))},e.prototype.setConversationToTop=function(e,t,r,n){var s=this;return void 0===n&&(n=""),new Promise((function(i,a){s._callCppProxy("setConversationToTop",e,t,r,n,!0),i(o.ErrorCode.SUCCESS)}))},e.prototype.setConversationHidden=function(e,t,r,n){var s=this;return new Promise((function(i,a){s._callCppProxy("setConversationHidden",e,t,r,n),i(o.ErrorCode.SUCCESS)}))},e.prototype.setConversationNotificationStatus=function(e,t,r,n){var s=this;return new Promise((function(i,a){s._callCppProxy("setConversationNotificationStatus",e,t,r,(function(){i(o.ErrorCode.SUCCESS)}),i,n)}))},e.prototype.setConversationStatus=function(e,t,r,n,s){var i=this;return new Promise((function(a,c){i._callCppProxy("setConversationStatus",e,t,r,n,(function(){a(o.ErrorCode.SUCCESS)}),a,s,!0)}))},e.prototype.getConversationNotificationStatus=function(e,t,r){var n=this;return new Promise((function(s,i){var a=n._callCppProxy("getConversationNotificationStatus",e,t,r);s({code:o.ErrorCode.SUCCESS,data:a?o.NotificationStatus.OPEN:o.NotificationStatus.CLOSE})}))},e.prototype.searchConversationByContent=function(e,t,r,n){var s=this;return new Promise((function(i,a){n=n||[1,3,6,7];for(var c=s._callCppProxy("searchConversationByContent",n,e,t,r),u=JSON.parse(c).list,p=[],d=0;d<u.length;d++)p[d]=s._buildConversation(u[d].obj);i({code:o.ErrorCode.SUCCESS,data:p})}))},e.prototype.searchConversationByContentWithAllChannel=function(e,t,r){var n=this;return new Promise((function(s,i){r=r||[1,3,6,7];for(var a=n._callCppProxy("searchConversationByContentWithAllChannel",r,e,t),c=JSON.parse(a).list,u=[],p=0;p<c.length;p++)u[p]=n._buildConversation(c[p].obj);s({code:o.ErrorCode.SUCCESS,data:u})}))},e.prototype.searchMessageByContent=function(e,t,r,n,s,i,a){var c=this;return new Promise((function(i,u){c._callCppProxy("searchMessageByContent",e,t,r,n,s,1,(function(e,t){for(var r=e?JSON.parse(e).list:[],n=[],s=0;s<r.length;s++)n[s]=c._buildMessage(r[s].obj);i({code:o.ErrorCode.SUCCESS,data:{messages:n,count:t}})}),a)}))},e.prototype.searchMessageByContentWithAllChannel=function(e,t,r,n,s){var i=this;return new Promise((function(a,c){i._callCppProxy("searchMessageByContentWithAllChannel",e,t,r,n,s,1,(function(e,t){for(var r=e?JSON.parse(e).list:[],n=[],s=0;s<r.length;s++)n[s]=i._buildMessage(r[s].obj);a({code:o.ErrorCode.SUCCESS,data:{messages:n,count:t}})}))}))},e.prototype.searchMessageByContentInTimeRangeWithAllChannel=function(e,t,r,n,s,i,a){var c=this;return new Promise((function(u,p){c._callCppProxy("searchMessageByTimestampWithAllChannel",e,t,r,n,s,i,a,(function(e){for(var t=e?JSON.parse(e).list:[],r=[],n=0;n<t.length;n++)r[n]=c._buildMessage(t[n].obj);u({code:o.ErrorCode.SUCCESS,data:{messages:r}})}))}))},e.prototype.getUnreadMentionedMessages=function(e,t,o){for(var r=JSON.parse(this._callCppProxy("getUnreadMentionedMessages",e,t,o)).list,n=0;n<r.length;n++)r[n]=this._buildMessage(r[n].obj);return r},e.prototype.addToBlacklist=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("addToBlacklist",e,(function(){r(o.ErrorCode.SUCCESS)}),r)}))},e.prototype.removeFromBlacklist=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("removeFromBlacklist",e,(function(){r(o.ErrorCode.SUCCESS)}),r)}))},e.prototype.getBlacklist=function(){var e=this;return new Promise((function(t,r){e._callCppProxy("getBlacklist",(function(e){t({code:o.ErrorCode.SUCCESS,data:e})}),(function(e){t({code:e})}))}))},e.prototype.getBlacklistStatus=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("getBlacklistStatus",e,(function(e){r({code:o.ErrorCode.SUCCESS,data:e})}),(function(e){r({code:e})}))}))},e.prototype.insertMessage=function(e,t,r){var n=this,s=r.content,i=r.senderUserId,a=r.messageType,c=r.messageDirection,u=r.readStatus,p=r.sentStatus,d=r.sentTime,l=r.searchContent,f=r.isUnread,h=r.messageUId,C=r.disableNotification,g=r.canIncludeExpansion,v=r.expansionMsg,_=r.channelId;return s=JSON.stringify(s),new Promise((function(r,S){var y=f?0:1,m=n._callCppProxy("insertMessage",e,t,i,a,s,(function(){}),(function(e){r({code:e})}),c,u||0,p||10,d||0,l||"",y||0,h||"",C||!1,g||!1,v||"",_||""),E=n._buildMessage(m,{isOffLineMessage:!1});E.messageUId=h,E.sentTime=d,r({code:-1===E.messageId?o.ErrorCode.MSG_INSERT_ERROR:o.ErrorCode.SUCCESS,data:E})}))},e.prototype.deleteMessages=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("deleteMessages",e),r(o.ErrorCode.SUCCESS)}))},e.prototype.deleteMessagesByTimestamp=function(e,t,r,n,s){var i=this;return new Promise((function(a,c){i._callCppProxy("deleteMessagesByTimestamp",e,t,r,n,s),a(o.ErrorCode.SUCCESS)}))},e.prototype.getMessage=function(e){var t=this;return new Promise((function(r,n){var s=t._callCppProxy("getMessage",e),i=t._buildMessage(s,{isOffLineMessage:!1});r({code:o.ErrorCode.SUCCESS,data:i})}))},e.prototype.setMessageContent=function(e,t,r){var n=this;return new Promise((function(s,i){t=JSON.stringify(t),n._callCppProxy("setMessageContent",e,t,r),s(o.ErrorCode.SUCCESS)}))},e.prototype.setMessageSearchField=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("setMessageSearchField",e,t,r),s(o.ErrorCode.SUCCESS)}))},e.prototype.setMessageSentStatus=function(e,t){var r=this;return new Promise((function(n,s){r._callCppProxy("setMessageSentStatus",e,t),n(o.ErrorCode.SUCCESS)}))},e.prototype.setMessageReceivedStatus=function(e,t){var r=this;return new Promise((function(n,s){r._callCppProxy("setMessageReceivedStatus",e,t),n(o.ErrorCode.SUCCESS)}))},e.prototype.saveConversationMessageDraft=function(e,t,o,r){throw new Error("Method not implemented.")},e.prototype.getConversationMessageDraft=function(e,t,o){throw new Error("Method not implemented.")},e.prototype.clearConversationMessageDraft=function(e,t,o){throw new Error("Method not implemented.")},e.prototype.pullConversationStatus=function(e){throw new Error("Method not implemented.")},e.prototype.batchSetConversationStatus=function(e){var t=e[0],r=t.conversationType,n=t.targetId,s=t.isTop,i=t.notificationStatus,a=t.channelId;if(void 0!==s&&void 0===i)return this.setConversationToTop(r,n,s,a);if(void 0!==i&&void 0===s){var c=i===o.NotificationStatus.OPEN;return this.setConversationNotificationStatus(r,n,c,a)}var u=i===o.NotificationStatus.OPEN;return this.setConversationStatus(r,n,u,s,a)},e.prototype.pullUserSettings=function(e){throw new Error("Method not implemented.")},e.prototype.sendReadReceiptMessage=function(e,t,r){var n=this;return new Promise((function(s){n._callCppProxy("sendReadReceipt",e,r||"",t,(function(){t.forEach((function(e){n._updateReadReceiptInfo(e,{hasRespond:!0});try{var t=JSON.parse(n._callCppProxy("getMessage",e)).messageId;n.setMessageReceivedStatus(t,1)}catch(t){n.logger.error(m.P_PARSE_JSON_MSGS_E,JSON.stringify({messageUId:e,error:null==t?void 0:t.stack}))}})),s({code:o.ErrorCode.SUCCESS})}),(function(e){s({code:e})}))}))},e.prototype.getMessageReader=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("getMessageReader",e,r,t,(function(e,r){var i=[],a={};(e=JSON.parse(e)).list.forEach((function(e){var t=JSON.parse(e.obj),o=t.id,r=t.time;i.push({userId:o,readTime:r}),a[o]=r}));var c={readerInfo:a,readCount:i.length,totalCount:r};n._updateReadReceiptInfo(t,c),s({code:o.ErrorCode.SUCCESS,data:{list:i,totalMemberCount:r}})}),(function(e){s({code:e})}))}))},e.prototype._addChatroomCache=function(e,t,o){this._rmChatroomCache(e),this._chatroomCache.push({chatroomId:e,joinExist:o,count:t})},e.prototype._rmChatroomCache=function(e){this._chatroomCache=this._chatroomCache.filter((function(t){return t.chatroomId!==e}))},e.prototype._try2RejoinChatroom=function(){var e=this;if(0!==this._chatroomCache.length){var t=this.logger.createTraceId();this._chatroomCache.forEach((function(r){return P(e,void 0,void 0,(function(){var e,n,s,i;return T(this,(function(a){switch(a.label){case 0:return e=r.chatroomId,n=r.joinExist,s=r.count,this.logger.info(o.LogTagId.L_REJOIN_CHATROOM_T,e,t),[4,this._joinChrm(e,s,n,!1)];case 1:return(i=a.sent())===o.ErrorCode.SUCCESS?(this.logger.info(o.LogTagId.L_REJOIN_CHATROOM_R,e,t),this._sendChatroomStatus({rejoinedRoom:{chatroomId:e,count:s}}),[2]):(i===o.ErrorCode.RC_CHATROOM_USER_KICKED&&this._rmChatroomCache(e),this._sendChatroomStatus({rejoinedRoom:{chatroomId:e,errorCode:i}}),this.logger.warn(o.LogTagId.L_REJOIN_CHATROOM_R,"chrmId: ".concat(e,", code: ").concat(i),t),[2])}}))}))}))}},e.prototype._joinChrm=function(e,t,r,n){var s=this,i=r?"joinExistChatRoom":"joinChatRoom";return new Promise((function(a){n&&s._callCppProxy("clearMessages",o.ConversationType.CHATROOM,e,""),s._callCppProxy(i,e,t,(function(){s._addChatroomCache(e,t,r),a(o.ErrorCode.SUCCESS)}),a)}))},e.prototype.joinChatroom=function(e,t){return this._joinChrm(e,t,!1,!0)},e.prototype.joinExistChatroom=function(e,t){return this._joinChrm(e,t,!0,!0)},e.prototype.quitChatroom=function(e){var t=this;return this._rmChatroomCache(e),new Promise((function(r,n){t._callCppProxy("quitChatRoom",e,(function(){r(o.ErrorCode.SUCCESS)}),r)}))},e.prototype.getChatroomInfo=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("getChatroomInfo",e,t,r,(function(e,t){var r=e?JSON.parse(e).list:[],n=[];if(r.length>0)for(var i=0;i<r.length;i++)n.push(JSON.parse(r[i].obj));s({code:o.ErrorCode.SUCCESS,data:{userInfos:n,userCount:t}})}),(function(e){s({code:e})}))}))},e.prototype.getChatroomHistoryMessages=function(e,t,r,n){var s=this;return new Promise((function(i,a){s._callCppProxy("getChatroomHistoryMessage",e,t,r,n,(function(e){var t;try{t=JSON.parse(e)}catch(e){t={list:[]}}var r=t.list;if(r&&r.length)try{t.list=r.map((function(e){return s._buildMessage(e.obj)}))}catch(e){t.list=[]}i({code:o.ErrorCode.SUCCESS,data:t})}),(function(e){i({code:e})}),"")}))},e.prototype.setChatroomEntry=function(e,t){var r=this;return new Promise((function(n,s){var i='[{"key":"'.concat(t.key,'", "value":"').concat(t.value,'"}]');r._callCppProxy("setChatroomKV",e,i,!!t.isAutoDelete,!!t.isOverwrite,(function(){n(o.ErrorCode.SUCCESS)}),(function(e){n(e)}))}))},e.prototype.setChatroomEntries=function(e,t){var r=this;return new Promise((function(n){r._callCppProxy("setChatroomKV",e,JSON.stringify(t.entries),!!t.isAutoDelete,!!t.isOverwrite,(function(){n({code:o.ErrorCode.SUCCESS})}),(function(e){n({code:e})}))}))},e.prototype.forceSetChatroomEntry=function(e,t){return t.isOverwrite=!0,t.userId=t.userId||this.tcpMgr.getCurrentUserId(),this.setChatroomEntry(e,t)},e.prototype.removeChatroomEntry=function(e,t){var r=this,n=[t.key];return new Promise((function(s,i){r._callCppProxy("deleteChatroomKV",e,n,!!t.isOverwrite,(function(){s(o.ErrorCode.SUCCESS)}),(function(e){s(e)}))}))},e.prototype.forceRemoveChatroomEntry=function(e,t){return t.isOverwrite=!0,t.userId=t.userId||this.tcpMgr.getCurrentUserId(),this.removeChatroomEntry(e,t)},e.prototype.removeChatroomEntries=function(e,t){var r=this;return new Promise((function(n){var s=t.entries.map((function(e){return e.key}));r._callCppProxy("deleteChatroomKV",e,s,!!t.isOverwrite,(function(){n({code:o.ErrorCode.SUCCESS})}),(function(e){n({code:e})}))}))},e.prototype.getChatroomEntry=function(e,t){return P(this,void 0,void 0,(function(){var r;return T(this,(function(n){switch(n.label){case 0:return[4,this.getAllChatroomEntry(e)];case 1:return(r=n.sent()).code===o.ErrorCode.SUCCESS?[2,{code:o.ErrorCode.SUCCESS,data:r.data?r.data[t]:null}]:[2,{code:r.code}]}}))}))},e.prototype.getAllChatroomEntry=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("getChatroomKV",e,(function(e){var t={};try{(e?JSON.parse(e):{list:[]}).list.map((function(e){return JSON.parse(e.obj)})).forEach((function(e){t[e.key]=e.value?e.value:""}))}catch(e){}r({code:o.ErrorCode.SUCCESS,data:t})}),(function(e){r({code:e})}))}))},e.prototype.getFileToken=function(e,t,r,n){var s=this;return r=r||"",n=n||"",new Promise((function(i){var a;a=n&&"uploads"!==n?t||"":o.getUploadFileName(e,t),s._callCppProxy("getUploadToken",e,a,r,n,(function(e,t,r,n,s,c,u,p,d,l,f,h,C,g,v,_,S,y){i({code:o.ErrorCode.SUCCESS,data:{token:e,deadline:0,bosToken:t,bosDate:r,path:n,osskeyId:s,ossPolicy:c,ossSign:u,ossBucketName:p,fileName:a,s3Credential:d,s3Algorithm:l,s3Date:f,s3Policy:h,s3Signature:C,s3BucketName:g,stcAuthorization:v,stcContentSha256:_,stcDate:S,stcBucketName:y}})}),(function(e){i({code:e})}))}))},e.prototype.getFileUrl=function(e,t,r,n){var s=this;return new Promise((function(i){s._callCppProxy("getDownloadUrl",e,r,n,t-1,(function(e){i({code:o.ErrorCode.SUCCESS,data:{downloadUrl:e}})}),(function(e){i({code:e})}))}))},e.prototype.clearData=function(){var e=this;return new Promise((function(t,r){var n=e._callCppProxy("clearData");t({code:o.ErrorCode.SUCCESS,data:n})}))},e.prototype.getDeviceId=function(){var e=this._dbpath||t.resolve(n.app.getPath("userData"));return re(e)},e.prototype.getVoIPKey=function(e,t){var r=this;return new Promise((function(n,s){r._callCppProxy("getVoIPKey",e,t,"",(function(e){n({code:o.ErrorCode.SUCCESS,data:e})}),(function(e){n({code:e})}))}))},e.prototype.bindRTCRoomForChatroom=function(e){var t=this;return new Promise((function(r,n){var s=e.chatRoomId,i=e.rtcRoomId;t._callCppProxy("bindRTCRoomForChatroom",s,i,(function(){r(o.ErrorCode.SUCCESS)}),(function(e){r(e)}))}))},e.prototype.getGroupMessageDeliverList=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("getGroupMessageDeliverList",e,r,t,(function(e,t){var r=JSON.parse(e).list.map((function(e){return{time:JSON.parse(e.obj).time,userId:JSON.parse(e.obj).id}}));s({code:o.ErrorCode.SUCCESS,data:{totalCount:t,list:r}})}),(function(e){s({code:e})}))}))},e.prototype.getPrivateMessageDeliverTime=function(e,t){var r=this;return new Promise((function(n,s){var i=r._callCppProxy("getMessageDeliverTime",e);if(i)n({code:o.ErrorCode.SUCCESS,data:i});else{r._callCppProxy("getPrivateMessageDeliverList",t,e,(function(e){var t=0,r=JSON.parse(e).list;r.length>0&&(t=JSON.parse(r[0].obj).time);n({code:o.ErrorCode.SUCCESS,data:t})}),(function(e){n({code:e})}))}}))},e.prototype.rtcSignaling=function(e,t,r,n){var s=this,i=Array.prototype.slice.call(new Uint8Array(n));return new Promise((function(n){s._callCppProxy("rtcSignaling",e,t,r,i,(function(e){var t=new Uint8Array(e).buffer;n({code:o.ErrorCode.SUCCESS,buffer:t})}),(function(e){n({code:e})}))}))},e.prototype._setRTCHeartbeatListener=function(){var e=this;this._cppProtocol.setRTCHeartbeatListener((function(t,o){var r=e.rtcHeartbeatResolves[t];if(r){var n=r.find((function(e){return""===e.seqId}));n&&(n.seqId=o)}}),(function(t,o,r,n){var s=e.rtcHeartbeatResolves[t];if(s){var i=s.findIndex((function(e){return e.seqId===r}));-1!==i&&s.splice(i,1)[0].resolve({code:o,data:{version:Number(n)}})}}))},e.prototype.rtcPing=function(e,t,o){var r=this;return new Promise((function(t){var o={resolve:t,seqId:""},n=r.rtcHeartbeatResolves[e];n?n.push(o):r.rtcHeartbeatResolves[e]=[o],r._callCppProxy("sendRTCHeartbeat",[e])}))},e.prototype.createTag=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("addTag",e.tagId,e.tagName,(function(){r({code:o.ErrorCode.SUCCESS})}),(function(e){r({code:e})}))}))},e.prototype.removeTag=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("deleteTag",e,(function(){r({code:o.ErrorCode.SUCCESS})}),(function(e){r({code:e})}))}))},e.prototype.updateTag=function(e){var t=this;return new Promise((function(r,n){t._callCppProxy("renameTag",e.tagId,e.tagName,(function(){r({code:o.ErrorCode.SUCCESS})}),(function(e){r({code:e})}))}))},e.prototype.getTagList=function(){var e=this;return new Promise((function(t,r){var n=e._callCppProxy("getTags"),s=e._convertResultList(n,(function(e){return{tagId:e.tagId,tagName:e.tagName,conversationCount:e.conversationCount,createdTime:e.tagTime}}));t({code:o.ErrorCode.SUCCESS,data:s})}))},e.prototype.addTagForConversations=function(e,t){var r=this;return new Promise((function(n,s){t.forEach((function(e){e.conversationType&&(e.type=e.conversationType)}));r._callCppProxy("addConversationsForTag",e,JSON.stringify(t),(function(){n({code:o.ErrorCode.SUCCESS})}),(function(e){n({code:e})}))}))},e.prototype.removeTagForConversations=function(e,t){var r=this;return new Promise((function(n,s){t.forEach((function(e){e.conversationType&&(e.type=e.conversationType)})),r._callCppProxy("removeConversationsForTag",e,JSON.stringify(t),(function(){n({code:o.ErrorCode.SUCCESS})}),(function(e){n({code:e})}))}))},e.prototype.removeTagsForConversation=function(e,t){var r=this;return new Promise((function(n,s){r._callCppProxy("removeTagsForConversation",e.conversationType,e.targetId,e.channelId||"",t,(function(){n({code:o.ErrorCode.SUCCESS})}),(function(e){n({code:e})}))}))},e.prototype.getConversationListByTag=function(e,t,r,n){var s=this;return new Promise((function(i){var a=s._callCppProxy("getConversationsForTagByPage",e,t,r||20,n||""),c=s._convertResultList(a,(function(e){return E(E({},s._buildConversation(JSON.stringify(e))),{isTopInTag:e.topForTag})}));i({code:o.ErrorCode.SUCCESS,data:c})}))},e.prototype.getUnreadCountByTag=function(e,t){var r=this;return new Promise((function(n,s){var i=r._callCppProxy("getConversationUnreadCountForTag",e,t);n({code:o.ErrorCode.SUCCESS,data:i})}))},e.prototype.setConversationStatusInTag=function(e,t,r){var n=this;return new Promise((function(s,i){n._callCppProxy("setConversationToTopForTag",e,t.conversationType,t.targetId,t.channelId||"",r.isTop||!1,(function(){s({code:o.ErrorCode.SUCCESS})}),(function(e){s({code:e})}))}))},e.prototype.getTagsForConversation=function(e){var t=this;return new Promise((function(r,n){var s=t._callCppProxy("getTagsForConversation",e.conversationType,e.targetId,e.channelId||""),i=t._convertResultList(s,(function(e){return{tagId:e.tagId,tagName:e.tagName,isTop:e.isTop,createdTime:e.tagTime}}));r({code:o.ErrorCode.SUCCESS,data:i})}))},e.prototype.getBlockConversationList=function(){throw new Error("Method not implemented.")},e.prototype.getTopConversationList=function(e,t){var r=this;return new Promise((function(n){var s=o.isUndefined(t)?r._callCppProxy("getTopConversations",e):r._callCppProxy("getTopConversations",e,t),i=JSON.parse(s).list.map((function(e){return r._buildConversation(e.obj)}));n({code:o.ErrorCode.SUCCESS,data:i})}))},e.prototype.getUnreadMentionedCount=function(e){throw new Error("Method not implemented.")},e.prototype.getAllUnreadMentionedCount=function(){throw new Error("Method not implemented.")},e.prototype.getOSInfo=function(){return P(this,void 0,void 0,(function(){var e;return T(this,(function(t){return e={arch:h.arch(),platform:h.platform(),type:h.type(),version:h.version(),release:h.release(),uptime:h.uptime(),cpus:h.cpus(),freemem:h.freemem(),totalmem:h.totalmem(),networkInterfaces:h.networkInterfaces()},[2,{code:o.ErrorCode.SUCCESS,data:e}]}))}))},e.prototype.getMainProcessInfo=function(){return P(this,void 0,void 0,(function(){return T(this,(function(e){return[2,{code:o.ErrorCode.SUCCESS,data:{title:process.title,pid:process.pid,ppid:process.ppid,platform:process.platform,arch:process.arch,uptime:process.uptime(),cpuUsage:process.cpuUsage(),memoryUsage:process.memoryUsage(),resourceUsage:process.resourceUsage()}}]}))}))},e.prototype.setCallInfo=function(e,t,r){var n=this;return new Promise((function(s){n._callCppProxy("callInfoSignaling",e,t,r,(function(e,t){s({code:o.ErrorCode.SUCCESS,data:{key:e,value:t}})}),(function(e){s({code:e})}))}))},e.prototype.setProxy=function(e){var t=this;return this.tcpMgr.getConnectionStatus()!==o.RCConnectionStatus.DISCONNECTED?new Promise((function(e){e({code:o.ErrorCode.RC_CONN_PROXY_UNAVAILABLE})})):new Promise((function(o){o(Y(e,t.logger))}))},e.prototype.getProxy=function(){return new Promise((function(e){e(X())}))},e.prototype.testProxy=function(e,t){return function(e,t,r){return new Promise((function(n){var s=/^https/.test(t)?V:F;r.info(o.LogTagId.A_TEST_PROXY_O,JSON.stringify({msg:"test proxy",proxy:e,testHost:t}));var i=s(t,e,(function(e){var t=200===e.statusCode?0:e.statusCode;e.setEncoding("utf8");var o="";e.on("data",(function(e){o+=e})),e.once("end",(function(){n({status:t||0,data:o})}))}));i.once("timeout",(function(){return n({status:0})})),i.once("error",(function(e){return n({status:0,data:e.stack})})),i.end()}))}(e,t,this.logger)},e}(),pe=function(){function e(e,t,o,r){void 0===o&&(o=""),this._cppService=new ue(e,t,o,r)}return e.prototype.getCppProto=function(){var e=this;return{destroy:function(){console.warn("`.getCppProto().destroy()` has being deprecated, use `.destroy()` instead."),e.destroy()}}},e.prototype.destroy=function(){this._cppService.destroy()},e.prototype.getDeviceId=function(){return this._cppService.getDeviceId()},e.prototype.getServerTime=function(){return this._cppService.getServerTime()},e.prototype.__createLogger=function(e,t){return null},e}();module.exports=function(e){return function(e,t,o){if(z)return z;if(!t)throw new Error("Initializ failed, `appkey` is required!");return z=new pe(t,e,null==o?void 0:o.dbpath,null==o?void 0:o.logOutputLevel)}(_,e.appkey,e)};
|
package/package.json
CHANGED
|
@@ -1,18 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rongcloud/electron",
|
|
3
3
|
"main": "index.js",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"postinstall": "node scripts/postinstall.js"
|
|
6
|
+
},
|
|
4
7
|
"files": [
|
|
5
|
-
"binding",
|
|
6
8
|
"README.md",
|
|
9
|
+
"bin/rc-install.js",
|
|
10
|
+
"scripts/tools.js",
|
|
11
|
+
"scripts/postinstall.js",
|
|
7
12
|
"LICENSE",
|
|
8
13
|
"index.js",
|
|
9
14
|
"index.d.ts",
|
|
10
15
|
"index.esm.js",
|
|
11
16
|
"sub-process.js"
|
|
12
17
|
],
|
|
18
|
+
"bin": {
|
|
19
|
+
"rc-install": "./bin/rc-install.js"
|
|
20
|
+
},
|
|
13
21
|
"types": "index.d.ts",
|
|
14
22
|
"module": "index.esm.js",
|
|
15
|
-
"version": "5.
|
|
23
|
+
"version": "5.7.0",
|
|
16
24
|
"author": "pass-web@rongcloud.cn",
|
|
17
25
|
"license": "LGPL 2.1",
|
|
18
26
|
"homepage": "https://www.rongcloud.cn",
|
|
@@ -23,6 +31,6 @@
|
|
|
23
31
|
"globals": "RCMain"
|
|
24
32
|
},
|
|
25
33
|
"peerDependencies": {
|
|
26
|
-
"@rongcloud/engine": "=5.
|
|
34
|
+
"@rongcloud/engine": "=5.7.0"
|
|
27
35
|
}
|
|
28
36
|
}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
/* eslint-disable no-console */
|
|
4
|
+
const os_1 = require("os");
|
|
5
|
+
const path_1 = require("path");
|
|
6
|
+
const child_process_1 = require("child_process");
|
|
7
|
+
const tools_1 = require("./tools");
|
|
8
|
+
async function main() {
|
|
9
|
+
// 下载 electron-node 文件
|
|
10
|
+
(0, child_process_1.exec)('npm ls electron', { cwd: (0, path_1.join)(__dirname, '../../../../') }, (err, stdout, stderr) => {
|
|
11
|
+
console.log(stdout.toString());
|
|
12
|
+
if (err) {
|
|
13
|
+
console.error(err);
|
|
14
|
+
return;
|
|
15
|
+
}
|
|
16
|
+
const arr = stdout.toString().match(/electron@(\d+\.\d+\.\d+)/);
|
|
17
|
+
if (!arr) {
|
|
18
|
+
console.error('Download failed, did not check to the electron version, please go to https://doc.rongcloud.cn/im/Web/5.X/noui/electron/integration for download manually.');
|
|
19
|
+
return;
|
|
20
|
+
}
|
|
21
|
+
const version = arr?.[1].replace(/\.\d+$/, '');
|
|
22
|
+
const fileName = `electron-v${version}-${(0, os_1.platform)()}-${(0, os_1.arch)()}.node`;
|
|
23
|
+
(0, tools_1.downloadNode)(fileName).then(() => {
|
|
24
|
+
console.log('Download successed!');
|
|
25
|
+
}).catch((err) => {
|
|
26
|
+
console.error(err);
|
|
27
|
+
});
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
main();
|
|
31
|
+
//# sourceMappingURL=postinstall.js.map
|
package/scripts/tools.js
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* eslint-disable no-console */
|
|
3
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
4
|
+
exports.downloadNode = void 0;
|
|
5
|
+
const fs_1 = require("fs");
|
|
6
|
+
const path_1 = require("path");
|
|
7
|
+
const https_1 = require("https");
|
|
8
|
+
function downloadNode(fileName) {
|
|
9
|
+
// eslint-disable-next-line global-require, import/no-dynamic-require
|
|
10
|
+
const pkg = require('../package.json');
|
|
11
|
+
const { version } = pkg;
|
|
12
|
+
const url = `https://cdn.ronghub.com/electron-node/${version}/${fileName}`;
|
|
13
|
+
const dir = (0, path_1.join)(__dirname, '../binding');
|
|
14
|
+
if (!(0, fs_1.existsSync)(dir)) {
|
|
15
|
+
(0, fs_1.mkdirSync)(dir);
|
|
16
|
+
}
|
|
17
|
+
console.log(`Start to Download: ${url}`);
|
|
18
|
+
return new Promise((resolve, reject) => {
|
|
19
|
+
const req = (0, https_1.request)(url, (res) => {
|
|
20
|
+
if (res.statusCode === 404) {
|
|
21
|
+
console.error(res.statusCode, `File '${url}' does not exist, View all files: https://cdn.ronghub.com/electron-node/home/index.html`);
|
|
22
|
+
reject(res);
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
25
|
+
if (res.statusCode !== 200) {
|
|
26
|
+
console.error(res.statusCode, res.statusMessage);
|
|
27
|
+
reject(res);
|
|
28
|
+
return;
|
|
29
|
+
}
|
|
30
|
+
// 先下载到临时文件,下载完成后删除老文件,并修改临时文件的文件名
|
|
31
|
+
const filePath = (0, path_1.join)(dir, fileName);
|
|
32
|
+
const filePathTmp = `${filePath}.tmp`;
|
|
33
|
+
const writeStream = (0, fs_1.createWriteStream)(filePathTmp);
|
|
34
|
+
res.on('end', () => {
|
|
35
|
+
console.log('Download succeeded!', url);
|
|
36
|
+
(0, fs_1.access)(filePath, fs_1.constants.F_OK, (err) => {
|
|
37
|
+
if (!err) {
|
|
38
|
+
(0, fs_1.rmSync)(filePath);
|
|
39
|
+
}
|
|
40
|
+
(0, fs_1.renameSync)(filePathTmp, filePath);
|
|
41
|
+
console.log('Rename succeeded!');
|
|
42
|
+
resolve(res);
|
|
43
|
+
});
|
|
44
|
+
});
|
|
45
|
+
res.pipe(writeStream);
|
|
46
|
+
});
|
|
47
|
+
req.on('error', (err) => {
|
|
48
|
+
console.error(err);
|
|
49
|
+
reject(err);
|
|
50
|
+
});
|
|
51
|
+
req.end();
|
|
52
|
+
});
|
|
53
|
+
}
|
|
54
|
+
exports.downloadNode = downloadNode;
|
|
55
|
+
//# sourceMappingURL=tools.js.map
|
|
Binary file
|
|
Binary file
|
|
Binary file
|