@resolveio/server-lib 20.4.77 → 20.4.79

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.
@@ -0,0 +1,3 @@
1
+ import { MongoManagerCollection } from '../managers/mongo.manager';
2
+ import { WorkerTaskDataChunkModel } from '../models/worker-task-data-chunk.model';
3
+ export declare let WorkerTaskDataChunks: MongoManagerCollection<WorkerTaskDataChunkModel>;
@@ -0,0 +1,2 @@
1
+ "use strict";Object.defineProperty(exports,"__esModule",{value:!0}),exports.WorkerTaskDataChunks=void 0;var index_1=require("../index"),mongo_manager_1=require("../managers/mongo.manager"),simpl_schema_1=require("simpl-schema"),schema={_id:{type:String,optional:!0},__v:{type:Number,optional:!0},updatedAt:{type:Date,optional:!0},createdAt:{type:Date,optional:!0},id_request:{type:String},data:{type:Array},"data.$":{type:simpl_schema_1.default.oneOf(Object,String,Number,Boolean,Date),blackbox:!0},id_user:{type:String},user:{type:String},id_ws:{type:String}};function initializeCollection(){var e;index_1.ResolveIOServer&&index_1.ResolveIOServer.getMainDB()?(e=new mongo_manager_1.MongoManagerModel({collectionName:"worker-task-data-chunks",schema:schema,useVersionCollection:!1,useReportBuilder:!1,reportBuilderLookupTables:[],timestamps:!0,createLogs:!1,checkSchema:!1,collectionOptions:null}),exports.WorkerTaskDataChunks=e.collection_main,exports.WorkerTaskDataChunks.createIndex({createdAt:1},{expireAfterSeconds:1296e3})):setTimeout(function(){initializeCollection()},0)}exports.WorkerTaskDataChunks=null,initializeCollection();
2
+ //# sourceMappingURL=worker-task-data-chunk.collection.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/collections/worker-task-data-chunk.collection.ts"],"names":["index_1","require","mongo_manager_1","simpl_schema_1","schema","_id","type","String","optional","__v","Number","updatedAt","Date","createdAt","id_request","data","Array","data.$","default","oneOf","Object","Boolean","blackbox","id_user","user","id_ws","initializeCollection","model","ResolveIOServer","getMainDB","MongoManagerModel","collectionName","useVersionCollection","useReportBuilder","reportBuilderLookupTables","timestamps","createLogs","checkSchema","collectionOptions","exports","WorkerTaskDataChunks","collection_main","createIndex","expireAfterSeconds","setTimeout"],"mappings":"wGAAA,IAAAA,QAAAC,QAAA,UAAA,EACAC,gBAAAD,QAAA,2BAAA,EACAE,eAAAF,QAAA,cAAA,EAGIG,OAAc,CACjBC,IAAK,CACJC,KAAMC,OACNC,SAAU,CAAA,C,EAEXC,IAAK,CACJH,KAAMI,OACNF,SAAU,CAAA,C,EAEXG,UAAW,CACVL,KAAMM,KACNJ,SAAU,CAAA,C,EAEXK,UAAW,CACVP,KAAMM,KACNJ,SAAU,CAAA,C,EAEXM,WAAY,CACXR,KAAMC,M,EAEPQ,KAAM,CACLT,KAAMU,K,EAEPC,SAAU,CACTX,KAAMH,eAAAe,QAAaC,MAAMC,OAAQb,OAAQG,OAAQW,QAAST,IAAI,EAC9DU,SAAU,CAAA,C,EAEXC,QAAS,CACRjB,KAAMC,M,EAEPiB,KAAM,CACLlB,KAAMC,M,EAEPkB,MAAO,CACNnB,KAAMC,M,GAQR,SAASmB,uBACR,IACOC,EADH3B,QAAA4B,iBAAmB5B,QAAA4B,gBAAgBC,UAAS,GACzCF,EAAQ,IAAIzB,gBAAA4B,kBAA4C,CAC7DC,eAAgB,0BAChB3B,OAAQA,OACR4B,qBAAsB,CAAA,EACtBC,iBAAkB,CAAA,EAClBC,0BAA2B,GAC3BC,WAAY,CAAA,EACZC,WAAY,CAAA,EACZC,YAAa,CAAA,EACbC,kBAAmB,I,CACnB,EACDC,QAAAC,qBAAuBb,EAAMc,gBAC7BF,QAAAC,qBAAqBE,YAAY,CAAC7B,UAAW,CAAC,EAAG,CAAC8B,mBAAoB,MAAiB,CAAC,GAGxFC,WAAW,WACVlB,qBAAoB,CACrB,EAAG,CAAC,CAEN,CAzBWa,QAAAC,qBAAyE,KAEpFd,qBAAoB","file":"worker-task-data-chunk.collection.js","sourcesContent":["import { ResolveIOServer } from '../index';\nimport { MongoManagerCollection, MongoManagerModel } from '../managers/mongo.manager';\nimport SimpleSchema from 'simpl-schema';\nimport { WorkerTaskDataChunkModel } from '../models/worker-task-data-chunk.model';\n\nlet schema: any = {\n\t_id: {\n\t\ttype: String,\n\t\toptional: true\n\t},\n\t__v: {\n\t\ttype: Number,\n\t\toptional: true\n\t},\n\tupdatedAt: {\n\t\ttype: Date,\n\t\toptional: true\n\t},\n\tcreatedAt: {\n\t\ttype: Date,\n\t\toptional: true\n\t},\n\tid_request: {\n\t\ttype: String\n\t},\n\tdata: {\n\t\ttype: Array, // Declaring params as an array\n\t},\n\t'data.$': {\n\t\ttype: SimpleSchema.oneOf(Object, String, Number, Boolean, Date), // Allowing multiple types\n\t\tblackbox: true // Blackbox for the object type\n\t},\n\tid_user: {\n\t\ttype: String\n\t},\n\tuser: {\n\t\ttype: String\n\t},\n\tid_ws: {\n\t\ttype: String\n\t}\n};\n\nexport let WorkerTaskDataChunks: MongoManagerCollection<WorkerTaskDataChunkModel> = null;\n\ninitializeCollection();\n\nfunction initializeCollection() {\n\tif (ResolveIOServer && ResolveIOServer.getMainDB()) {\n\t\tconst model = new MongoManagerModel<WorkerTaskDataChunkModel>({\n\t\t\tcollectionName: 'worker-task-data-chunks',\n\t\t\tschema: schema,\n\t\t\tuseVersionCollection: false,\n\t\t\tuseReportBuilder: false,\n\t\t\treportBuilderLookupTables: [],\n\t\t\ttimestamps: true,\n\t\t\tcreateLogs: false,\n\t\t\tcheckSchema: false,\n\t\t\tcollectionOptions: null\n\t\t});\n\t\tWorkerTaskDataChunks = model.collection_main;\n\t\tWorkerTaskDataChunks.createIndex({createdAt: 1}, {expireAfterSeconds: 60 * 60 * 24 * 15});\n\t}\n\telse {\n\t\tsetTimeout(() => {\n\t\t\tinitializeCollection();\n\t\t}, 0);\n\t}\n}"]}
@@ -1,2 +1,2 @@
1
- "use strict";var __assign=this&&this.__assign||function(){return(__assign=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var o in t=arguments[r])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e}).apply(this,arguments)},__awaiter=this&&this.__awaiter||function(e,n,o,i){return new(o=o||Promise)(function(r,t){function fulfilled(e){try{step(i.next(e))}catch(e){t(e)}}function rejected(e){try{step(i.throw(e))}catch(e){t(e)}}function step(e){var t;e.done?r(e.value):((t=e.value)instanceof o?t:new o(function(e){e(t)})).then(fulfilled,rejected)}step((i=i.apply(e,n||[])).next())})},__generator=this&&this.__generator||function(n,o){var i,s,a,c={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]},l={next:verb(0),throw:verb(1),return:verb(2)};return"function"==typeof Symbol&&(l[Symbol.iterator]=function(){return this}),l;function verb(r){return function(e){var t=[r,e];if(i)throw new TypeError("Generator is already executing.");for(;c=l&&t[l=0]?0:c;)try{if(i=1,s&&(a=2&t[0]?s.return:t[0]?s.throw||((a=s.return)&&a.call(s),0):s.next)&&!(a=a.call(s,t[1])).done)return a;switch(s=0,(t=a?[2&t[0],a.value]:t)[0]){case 0:case 1:a=t;break;case 4:return c.label++,{value:t[1],done:!1};case 5:c.label++,s=t[1],t=[0];continue;case 7:t=c.ops.pop(),c.trys.pop();continue;default:if(!(a=0<(a=c.trys).length&&a[a.length-1])&&(6===t[0]||2===t[0])){c=0;continue}if(3===t[0]&&(!a||t[1]>a[0]&&t[1]<a[3]))c.label=t[1];else if(6===t[0]&&c.label<a[1])c.label=a[1],a=t;else{if(!(a&&c.label<a[2])){a[2]&&c.ops.pop(),c.trys.pop();continue}c.label=a[2],c.ops.push(t)}}t=o.call(n,c)}catch(e){t=[6,e],s=0}finally{i=a=0}if(5&t[0])throw t[1];return{value:t[0]?t[1]:void 0,done:!0}}}},__read=this&&this.__read||function(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,i=r.call(e),s=[];try{for(;(void 0===t||0<t--)&&!(n=i.next()).done;)s.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=i.return)&&r.call(i)}finally{if(o)throw o.error}}return s},__spreadArray=this&&this.__spreadArray||function(e,t,r){if(r||2===arguments.length)for(var n,o=0,i=t.length;o<i;o++)!n&&o in t||((n=n||Array.prototype.slice.call(t,0,o))[o]=t[o]);return e.concat(n||Array.prototype.slice.call(t))},__values=this&&this.__values||function(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return{value:(e=e&&n>=e.length?void 0:e)&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},collections_1=(Object.defineProperty(exports,"__esModule",{value:!0}),exports.MethodManager=exports.AWS=void 0,require("../methods/collections")),logs_1=require("../methods/logs"),counters_1=require("../methods/counters"),pdf_1=require("../methods/pdf"),aws_1=require("../methods/aws"),path=require("path"),fs=require("fs"),nodemailer=require("nodemailer"),sesTransport=require("nodemailer-ses-transport"),accounts_1=require("../methods/accounts"),init_1=require("../fixtures/init"),cron_jobs_1=require("../fixtures/cron-jobs"),cron_jobs_2=require("../methods/cron-jobs"),flags_1=require("../methods/flags"),common_1=require("../util/common"),log_collection_1=require("../collections/log.collection"),log_method_latency_collection_1=require("../collections/log-method-latency.collection"),moment=require("moment-timezone"),report_builder_1=require("../methods/report-builder"),support_1=require("../methods/support"),monitor_1=require("../methods/monitor"),email_history_collection_1=require("../collections/email-history.collection"),mongo_manager_1=require("./mongo.manager"),client_s3_1=require("@aws-sdk/client-s3"),worker_task_request_collection_1=require("../collections/worker-task-request.collection"),worker_task_response_collection_1=require("../collections/worker-task-response.collection"),flag_updates_1=require("../methods/flag-updates"),AWS=function(){function AWS(e){this._serverConfig=null,this._s3=null,this._s3USEast1=null,this._serverConfig=e}return AWS.prototype.s3=function(){return this._s3||(this._s3=new client_s3_1.S3({credentials:{accessKeyId:process.env.AWS_ACCESS_KEY,secretAccessKey:process.env.AWS_SECRET_ACCESS_KEY},region:process.env.AWS_REGION,apiVersion:"2006-03-01"})),this._s3},AWS.prototype.s3USEast1=function(){return"us-east-1"===process.env.AWS_REGION?this.s3():(this._s3USEast1||(this._s3USEast1=new client_s3_1.S3({credentials:{accessKeyId:process.env.AWS_ACCESS_KEY,secretAccessKey:process.env.AWS_SECRET_ACCESS_KEY},region:"us-east-1",apiVersion:"2006-03-01"})),this._s3USEast1)},AWS}(),MethodManager=(exports.AWS=AWS,function(){function MethodManager(e,t,r,n,o,i){var s=this;this._methods={},this._isWorkersEnabled=!1,this._isWorkerInstance=!1,this.emailQueue=new Set,this.isEmailProcessing=!1,this._debugCallMethodInternalHits=0,this._debugCallMethodHits=0,this._debugCallMethodCronJobHits=0,this._debugSendQueueHits=0,this._mainServer=e,this._websocketManager=this._mainServer.getWebSocketManager(),this.serverConfig=t,this.clientDir=r,this._monitorManagerFunction=n,this._isWorkersEnabled=o,this._isWorkerInstance=i,"false"!==process.env.IS_WORKERS_ENABLED&&("true"!==process.env.IS_WORKER_INSTANCE||"0"!==process.env.WORKER_INDEX)||process.env.NODE_APP_INSTANCE&&"0"!==process.env.NODE_APP_INSTANCE||setTimeout(function(){console.log(new Date,"Start Server Fixture"),(0,init_1.loadServerInit)(t),console.log(new Date,"End Server Fixture")},5e3),(0,cron_jobs_1.loadServerCronJobs)(),(0,accounts_1.loadAccountMethods)(this),(0,aws_1.loadAWSMethods)(this),(0,collections_1.loadCollectionMethods)(this),(0,counters_1.loadCounterMethods)(this),(0,logs_1.loadLogMethods)(this),(0,pdf_1.loadPDFMethods)(this),(0,cron_jobs_2.loadCronJobMethods)(this),(0,flags_1.loadFlagMethods)(this),(0,flag_updates_1.loadFlagUpdatesMethods)(this),(0,report_builder_1.loadReportBuilderMethods)(this),(0,support_1.loadSupportMethods)(this),(0,monitor_1.loadMonitorMethods)(this),this._aws=new AWS(t),e.sesMail?this._mailer=nodemailer.createTransport(sesTransport({accessKeyId:process.env.AWS_ACCESS_KEY,secretAccessKey:process.env.AWS_SECRET_ACCESS_KEY,region:process.env.AWS_SES_REGION})):this._mailer=nodemailer.createTransport({host:this.serverConfig.MAIL_HOST,port:this.serverConfig.MAIL_PORT,secure:!1,auth:{user:this.serverConfig.MAIL_USERNAME,pass:this.serverConfig.MAIL_PASSWORD},tls:{ciphers:"SSLv3"}}),setInterval(function(){s._mainServer.getSubscriptionManager()&&s._mainServer.getSubscriptionManager().getEnableDebug()&&(console.log(new Date,"Method Manager","Send Queue Hits",s._debugSendQueueHits),console.log(new Date,"Method Manager","Call Method Internal Hits",s._debugCallMethodInternalHits),console.log(new Date,"Method Manager","Call Method Hits",s._debugCallMethodHits),console.log(new Date,"Method Manager","Call Method Cron Hits",s._debugCallMethodCronJobHits)),s._debugCallMethodInternalHits=0,s._debugCallMethodHits=0,s._debugCallMethodCronJobHits=0,s._debugSendQueueHits=0},6e4),this._isWorkersEnabled&&!this._isWorkerInstance||this.setupEmailWatcher()}return MethodManager.prototype.getMainServer=function(){return this._mainServer},MethodManager.prototype.methods=function(e){this._methods=Object.assign(this._methods,e)},MethodManager.prototype.callMethodCron=function(t){for(var e,o=this,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];if(this._debugCallMethodCronJobHits+=1,this._methods[t]){if((1<r.length||r[0])&&!this._methods[t].skipValidation){if(!this._methods[t].check)return console.error(new Date,"No Check Function For Method "+t),void this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Check Function For Method "+t);if(!this._methods[t].check._schema)return console.error(new Date,"No Check Schema For Method "+t),void this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Check Function For Method "+t);for(var i={},s=Object.keys(this._methods[t].check._schema).filter(function(e){return!e.includes(".")}),a=0;a<r.length;a++)i[s[a]]=r[a];try{this._methods[t].check.validate(i)}catch(e){if(e)return console.error(new Date,"Error in Method Check ("+t+")",e),void this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"Match Error On Method "+t+"\n\nData Being Checked\n"+JSON.stringify(i,null,2)+"\n\nErrors\n"+JSON.stringify(e,null,2))}}var c,l,u,d=null;return this._isWorkersEnabled&&!this._isWorkerInstance&&"insertSubscriptionLog"!==t&&"countQuery"!==t&&"incCounter"!==t&&"supportCreateBillingUser"!==t&&"find"!==t&&"insertDocument"!==t&&"countWithQuery"!==t&&"findOne"!==t&&"updateDocumentProps"!==t&&"findWithOptions"!==t&&"getSignedUrl"!==t&&"updateDocument"!==t&&"insertErrorLog"!==t&&"getSignedUrls"!==t&&"removeDocument"!==t&&"getSignedUrlWithId"!==t&&"incorrectUser"!==t&&"reloadWS"!==t&&"reconnectWS"!==t&&"disconnectWS"!==t?(c=this._monitorManagerFunction.startMonitorFunction("Cron Method",t,"","",r),l=(0,mongo_manager_1.objectIdHexString)(),d=new Promise(function(t,r){var n=worker_task_response_collection_1.WorkerTaskResponses.watchCollection([{$match:{"fullDocument.id_request":l}}],{fullDocument:"updateLookup"});n.on("change",function(e){"insert"===e.operationType&&(o._monitorManagerFunction.finishMonitorFunction(c),((e=e.fullDocument).has_error?r:t)(e.data),n.close())}),n.on("error",function(e){console.error("Error watching worker responses:",e),r(e),n.close()})}),worker_task_request_collection_1.WorkerTaskRequests.create({_id:l,method:t,params:r,status:"pending",id_user:this.id_user,user:this.user,id_ws:this.id_socket})):(u=this._monitorManagerFunction.startMonitorFunction("Cron Method",t,"","",r),d=(e=this._methods[t].function).call.apply(e,__spreadArray([Object.assign({},this,MethodManager.prototype,{id_user:"",user:"",id_ws:""})],__read(r),!1)).then(function(e){return o._monitorManagerFunction.finishMonitorFunction(u),e},function(e){return o._monitorManagerFunction.finishMonitorFunction(u),o.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+o.serverConfig.CLIENT_NAME,"Error Detected During Method "+t+" - (callMethodCron)\n\nData \n"+JSON.stringify(r,null,2)+"\n\nErrors\n"+JSON.stringify(e,null,2)),e})),d}console.log("No Method: "+t),this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Method: "+t)},MethodManager.prototype.callMethod=function(n,o,i,s,a){for(var c,e,l,u,t=this,d=[],r=5;r<arguments.length;r++)d[r-5]=arguments[r];if(this._debugCallMethodHits+=1,this._methods[a]){if((1<d.length||d[0])&&!this._methods[a].skipValidation){if(!this._methods[a].check)return console.error(new Date,"No Check Function For Method "+a),this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Check Function For Method "+a),this.sendWS(o,i,a,d,h={messageId:s,hasError:!0,data:"Internal Error"}),void(n&&log_method_latency_collection_1.LogMethodLatencies.deleteOne({_id:n}));if(!this._methods[a].check._schema)return console.error(new Date,"No Check Schema For Method "+a),this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Check Schema For Method "+a),h={messageId:s,hasError:!0,data:"Internal Error"},n&&log_method_latency_collection_1.LogMethodLatencies.deleteOne({_id:n}),void this.sendWS(o,i,a,d,h);for(var h,_={},f=Object.keys(this._methods[a].check._schema).filter(function(e){return!e.includes(".")}),g=0;g<d.length;g++)_[f[g]]=d[g];try{this._methods[a].check.validate(_)}catch(e){if(e)return console.error(new Date,"Error in Method Check ("+a+")",e),"processAirdropDistribution"!==a&&this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"Match Error On Method "+a+"\n\nData Being Checked\n"+JSON.stringify(_,null,2)+"\n\nErrors\n"+JSON.stringify(e,null,2)),this.sendWS(o,i,a,d,h={messageId:s,hasError:!0,data:"Internal Error"}),void(n&&log_method_latency_collection_1.LogMethodLatencies.deleteOne({_id:n}))}}this._isWorkersEnabled&&!this._isWorkerInstance&&"insertSubscriptionLog"!==a&&"countQuery"!==a&&"incCounter"!==a&&"supportCreateBillingUser"!==a&&"find"!==a&&"insertDocument"!==a&&"countWithQuery"!==a&&"findOne"!==a&&"updateDocumentProps"!==a&&"findWithOptions"!==a&&"getSignedUrl"!==a&&"updateDocument"!==a&&"insertErrorLog"!==a&&"getSignedUrls"!==a&&"removeDocument"!==a&&"getSignedUrlWithId"!==a&&"incorrectUser"!==a&&"reloadWS"!==a&&"reconnectWS"!==a&&"disconnectWS"!==a?(c=this._monitorManagerFunction.startMonitorFunction("Method",a,o.user||"",o.id_socket||"",d),e=(0,mongo_manager_1.objectIdHexString)(),(l=worker_task_response_collection_1.WorkerTaskResponses.watchCollection([{$match:{"fullDocument.id_request":e}}],{fullDocument:"updateLookup"})).on("change",function(r){return __awaiter(t,void 0,void 0,function(){var t;return __generator(this,function(e){switch(e.label){case 0:return"insert"!==r.operationType?[3,3]:(this._monitorManagerFunction.finishMonitorFunction(c),t=r.fullDocument,t={messageId:s,hasError:t.has_error,data:t.data},this.sendWS(o,new Date,a,d,t),n?[4,log_method_latency_collection_1.LogMethodLatencies.findById(n)]:[3,2]);case 1:(t=e.sent())&&log_method_latency_collection_1.LogMethodLatencies.updateOne({_id:n},{$set:{date_end:new Date,latency_ms:moment().diff(moment(t.date_start),"milliseconds",!0)}}),e.label=2;case 2:l.close(),e.label=3;case 3:return[2]}})})}),l.on("error",function(e){console.error("Error watching worker responses:",e),l.close()}),worker_task_request_collection_1.WorkerTaskRequests.create({_id:e,method:a,params:d,status:"pending",id_user:o.id_user,user:o.user,id_ws:o.id_socket})):(u=this._monitorManagerFunction.startMonitorFunction("Method",a,o.user||"",o.id_socket||"",d),(e=this._methods[a].function).call.apply(e,__spreadArray([Object.assign({},this,MethodManager.prototype,{id_user:o.id_user,user:o.user,id_ws:o.id_socket})],__read(d),!1)).then(function(r){return __awaiter(t,void 0,void 0,function(){var t;return __generator(this,function(e){switch(e.label){case 0:return(this._monitorManagerFunction.finishMonitorFunction(u),t={messageId:s,hasError:!1,data:r},this.sendWS(o,i,a,d,t),n)?[4,log_method_latency_collection_1.LogMethodLatencies.findById(n)]:[3,2];case 1:(t=e.sent())&&log_method_latency_collection_1.LogMethodLatencies.updateOne({_id:n},{$set:{date_end:new Date,latency_ms:moment().diff(moment(t.date_start),"milliseconds",!0)}}),e.label=2;case 2:return[2]}})})},function(e){t._monitorManagerFunction.finishMonitorFunction(u),t.sendWS(o,i,a,d,{messageId:s,hasError:!0,data:e}),n&&log_method_latency_collection_1.LogMethodLatencies.deleteOne({_id:n}),"processAirdropDistribution"!==a&&t.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+t.serverConfig.CLIENT_NAME,"Error Detected During Method "+a+" - (callMethod)\n\nData \n"+JSON.stringify(d,null,2)+"\n\nErrors\n"+JSON.stringify(e,null,2))}))}else console.log("No Method: "+a),this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Method: "+a),h={messageId:s,hasError:!0,data:"Internal Error"},this.sendWS(o,new Date,a,d,h),n&&log_method_latency_collection_1.LogMethodLatencies.deleteOne({_id:n})},MethodManager.prototype.callMethodInternal=function(t){for(var e,o=this,r=[],n=1;n<arguments.length;n++)r[n-1]=arguments[n];if(this._debugCallMethodInternalHits+=1,!this._methods[t])return console.log("No Method: "+t),null;if((1<r.length||r[0]&&"function"!=typeof r[0])&&!this._methods[t].skipValidation){if(!this._methods[t].check)return console.error(new Date,"No Check Function For Method "+t),null;if(!this._methods[t].check._schema)return console.error(new Date,"No Check Schema For Method "+t),null}"insertSubscriptionLog"!==t&&"getDataURIfromURL"!==t&&"processAirdropDistribution"!==t&&"incCounter"!==t&&"supportCreateBillingUser"!==t&&"countCollectionWithQuery"!==t&&log_collection_1.Logs.insertOne({_id:(0,mongo_manager_1.objectIdHexString)(),type:"callMethodInternal",collection:"",id_document:"",payload:(0,common_1.getBinarySize)(JSON.stringify([r]))<2e5?JSON.stringify([r],null,2):"Too Big",method:t,id_user:this.id_user||"",user:this.user||"",messageId:0,route:""});var i,s,a,c="function"==typeof r[r.length-1]?r.slice(0,-1):r,l=null;return this._isWorkersEnabled&&!this._isWorkerInstance&&"insertSubscriptionLog"!==t&&"countQuery"!==t&&"incCounter"!==t&&"supportCreateBillingUser"!==t&&"find"!==t&&"insertDocument"!==t&&"countWithQuery"!==t&&"findOne"!==t&&"updateDocumentProps"!==t&&"findWithOptions"!==t&&"getSignedUrl"!==t&&"updateDocument"!==t&&"insertErrorLog"!==t&&"getSignedUrls"!==t&&"removeDocument"!==t&&"getSignedUrlWithId"!==t&&"incorrectUser"!==t&&"reloadWS"!==t&&"reconnectWS"!==t&&"disconnectWS"!==t?(i=this._monitorManagerFunction.startMonitorFunction("Internal Method",t,this.user||"","",c),s=(0,mongo_manager_1.objectIdHexString)(),l=new Promise(function(t,r){var n=worker_task_response_collection_1.WorkerTaskResponses.watchCollection([{$match:{"fullDocument.id_request":s}}],{fullDocument:"updateLookup"});n.on("change",function(e){"insert"===e.operationType&&(o._monitorManagerFunction.finishMonitorFunction(i),((e=e.fullDocument).has_error?r:t)(e.data),n.close())}),n.on("error",function(e){console.error("Error watching worker responses:",e),r(e),n.close()})}),worker_task_request_collection_1.WorkerTaskRequests.create({_id:s,method:t,params:c,status:"pending",id_user:this.id_user,user:this.user,id_ws:this.id_socket})):(a=this._monitorManagerFunction.startMonitorFunction("Internal Method",t,this.user||"","",c),l=(e=this._methods[t].function).call.apply(e,__spreadArray([Object.assign({},this,MethodManager.prototype)],__read(c),!1)).then(function(e){return o._monitorManagerFunction.finishMonitorFunction(a),e},function(e){return o._monitorManagerFunction.finishMonitorFunction(a),o.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+o.serverConfig.CLIENT_NAME,"Error Detected During Method "+t+" - (callMethodInternal)\n\nData \n"+JSON.stringify(r,null,2)+"\n\nErrors\n"+JSON.stringify(e,null,2)),e})),r[r.length-1]&&"function"==typeof r[r.length-1]&&l.then(function(e){return r[r.length-1](null,e)},function(e){return r[r.length-1](e,null)}),l},MethodManager.prototype.sendWS=function(e,t,r,n,o){this._websocketManager.send(e,o),"reportBuilderGetResults"!==r&&"reportBuilderGetDistinctValue"!==r&&"reportBuilderBuildTree"!==r&&"generatePDF"!==r&&"getWOOfflineData"!==r&&"countQuery"!==r&&"countWithQuery"!==r&&"countCollectionWithQuery"!==r&&"find"!==r&&"findOne"!==r&&"findWithOptions"!==r&&"uploadFileAndSave"!==r&&"getDrivers"!==r&&"processAirdropDistribution"!==r&&log_collection_1.Logs.insertOne({_id:(0,mongo_manager_1.objectIdHexString)(),type:"client-response",collection:"",id_document:"",payload:(0,common_1.getBinarySize)(JSON.stringify([n,o]))<2e5?JSON.stringify([n,o],null,2):"Too Big",method:r,id_user:e.id_user||"",user:e.user||"",messageId:o.messageId,route:""})},MethodManager.prototype.setupEmailWatcher=function(){return __awaiter(this,void 0,void 0,function(){var t,n=this;return __generator(this,function(e){switch(e.label){case 0:return(t=email_history_collection_1.EmailHistories.watchCollection([])).on("change",function(r){return __awaiter(n,void 0,void 0,function(){var t;return __generator(this,function(e){return"insert"===r.operationType&&r.fullDocument&&"pending"===r.fullDocument.status?(this.emailQueue.add(r.fullDocument._id.toString()),this.tryProcessEmail()):"update"!==r.operationType&&"replace"!==r.operationType||(t=r.fullDocument)&&"pending"!==t.status&&this.emailQueue.has(t._id.toString())&&this.emailQueue.delete(t._id.toString()),[2]})})}).on("error",function(e){console.error("Email history changestream error",e),t.close()}).on("close",function(){n.setupEmailWatcher()}),[4,this.loadPendingEmails()];case 1:return e.sent(),[2]}})})},MethodManager.prototype.loadPendingEmails=function(){return __awaiter(this,void 0,void 0,function(){var t,r,n,o,i,s;return __generator(this,function(e){switch(e.label){case 0:return[4,email_history_collection_1.EmailHistories.find({status:"pending"},{sort:{_id:1}})];case 1:t=e.sent();try{for(r=__values(t),n=r.next();!n.done;n=r.next())o=n.value,this.emailQueue.add(o._id.toString())}catch(e){i={error:e}}finally{try{n&&!n.done&&(s=r.return)&&s.call(r)}finally{if(i)throw i.error}}return this.tryProcessEmail(),[2]}})})},MethodManager.prototype.tryProcessEmail=function(){return __awaiter(this,void 0,void 0,function(){var t,d,r,h=this;return __generator(this,function(e){switch(e.label){case 0:if(this.isEmailProcessing||0===this.emailQueue.size)return[2];this.isEmailProcessing=!0,e.label=1;case 1:e.trys.push([1,5,6,7]),t=function(){var n,t,r,o,i,s,a,c,l,u;return __generator(this,function(e){switch(e.label){case 0:return i=d.emailQueue.values().next().value,d.emailQueue.delete(i),[4,email_history_collection_1.EmailHistories.findOneAndUpdate({_id:i,status:"pending"},{$set:{status:"processing",processingAt:new Date}})];case 1:if(!(n=e.sent()))return[2,"continue"];if(!(n.attachments&&0<n.attachments.length))return[3,14];e.label=2;case 2:e.trys.push([2,12,,14]),e.label=3;case 3:e.trys.push([3,9,10,11]),l=void 0,t=__values(n.attachments),r=t.next(),e.label=4;case 4:return r.done?[3,8]:(o=r.value).path&&o.path.startsWith("http")?[4,fetch(o.path)]:[3,7];case 5:if((i=e.sent()).ok)return[4,i.arrayBuffer()];throw new Error("Failed to fetch attachment: ".concat(o.path));case 6:s=e.sent(),s=Buffer.from(s),s.length<=20971520&&(o.content=s,delete o.path),e.label=7;case 7:return r=t.next(),[3,4];case 8:return[3,11];case 9:return s=e.sent(),l={error:s},[3,11];case 10:try{r&&!r.done&&(u=t.return)&&u.call(t)}finally{if(l)throw l.error}return[7];case 11:return[3,14];case 12:return a=e.sent(),console.error("Failed to fetch attachment:",a),[4,email_history_collection_1.EmailHistories.updateOne({_id:n._id},{$set:{status:"failed",error:"string"==typeof a?a:d.safeStringify(a),completedAt:new Date}})];case 13:return e.sent(),[2,"continue"];case 14:return(c={replyTo:n.reply_to||d.serverConfig.MAIL_REPLY_TO||void 0,from:n.send_from||d.serverConfig.MAIL_FROM,to:n.email,subject:(d.serverConfig.ROOT_URL.match(/https:\/\/dev\./)||d.serverConfig.ROOT_URL.match(/https:\/\/www\.dev\./)?"(DEV SERVER) - ":"")+n.subject,text:"string"==typeof n.text?n.text:"",html:"string"==typeof n.html?n.html:"",attachments:n.attachments||[]}).attachments&&0<c.attachments.length&&(c.attachments=c.attachments.map(function(e){e=__assign({},e);return!e.content||"object"!=typeof e.content||e.content instanceof Buffer?"string"==typeof e.content&&"base64"===e.encoding?(e.content=Buffer.from(e.content,"base64"),delete e.encoding):"string"==typeof e.content&&(e.content=Buffer.from(e.content)):"Binary"===e.content._bsontype&&0===e.content.sub_type?e.content=Buffer.from(e.content.buffer):e.content=Buffer.from(e.content),e})),[4,new Promise(function(r){h._mailer.sendMail(c,function(t,e){return __awaiter(h,void 0,void 0,function(){return __generator(this,function(e){try{t?(console.error("Failed to send email:",t),email_history_collection_1.EmailHistories.updateOne({_id:n._id},{$set:{status:"failed",error:"string"==typeof t?t:this.safeStringify(t),completedAt:new Date}})):"dev@resolveio.com"===n.email?email_history_collection_1.EmailHistories.deleteOne({_id:n._id}):email_history_collection_1.EmailHistories.updateOne({_id:n._id},{$set:{status:"completed",completedAt:new Date}})}catch(e){console.error("Error in sendMail callback:",e),email_history_collection_1.EmailHistories.updateOne({_id:n._id},{$set:{status:"failed",error:"string"==typeof e?e:this.safeStringify(e),completedAt:new Date}})}finally{r()}return[2]})})})})];case 15:return e.sent(),[4,new Promise(function(e){return setTimeout(e,1e3)})];case 16:return e.sent(),[2]}})},d=this,e.label=2;case 2:return 0<this.emailQueue.size?[5,t()]:[3,4];case 3:return e.sent(),[3,2];case 4:return[3,7];case 5:return r=e.sent(),console.error("Error processing email queue:",r),[3,7];case 6:return this.isEmailProcessing=!1,0<this.emailQueue.size&&this.tryProcessEmail(),[7];case 7:return[2]}})})},MethodManager.prototype.safeStringify=function(e){try{return JSON.stringify(e,this.getCircularReplacer())}catch(e){return"Error in JSON stringifying: ".concat(e.message)}},MethodManager.prototype.getCircularReplacer=function(){var r=new WeakSet;return function(e,t){if("object"==typeof t&&null!==t){if(r.has(t))return"[Circular]";r.add(t)}return t}},MethodManager.prototype.sendEmail=function(o,i,s,a,c,l,u,d){var e=this;return void 0===d&&(d=!1),new Promise(function(r,n){return __awaiter(e,void 0,void 0,function(){var t;return __generator(this,function(e){return(o=!this.serverConfig.ROOT_URL.match(/https:\/\/dev\./)&&!this.serverConfig.ROOT_URL.match(/https:\/\/www\.dev\./)&&"http://localhost:4200"!==this.serverConfig.ROOT_URL||o.match(/\@resolveio\.com/)?o:"dev@resolveio.com")?"http://localhost:4200"!==this.serverConfig.ROOT_URL||d?(c=c||[],c=(c=Array.isArray(c)?c:[c]).map(function(e){e=__assign({},e);return Buffer.isBuffer(e.content)&&(e.content=e.content.toString("base64"),e.encoding="base64"),e}),t={_id:(0,mongo_manager_1.objectIdHexString)(),__v:0,date:new Date,id_user:this.id_user||"",user:this.user||"",email:o,subject:i||"",text:s||"",html:a||"",attachments:c||[],send_from:l||"",reply_to:u||"",status:"pending",error:""},email_history_collection_1.EmailHistories.insertOne(t).then(function(e){return r(e)},function(e){console.error("Failed to queue email:",e),n(e)})):(console.log("Send email",o,i,s,a,c,l),r(!0)):r(!0),[2]})})})},MethodManager.prototype.getAWS=function(){return this._aws},MethodManager.prototype.readFile=function(e){var t=this;return new Promise(function(r,n){fs.existsSync(path.join(__dirname,"../private/"+e))?fs.readFile(path.join(__dirname,"../private/"+e),"utf-8",function(e,t){e?n(e):r(t)}):fs.existsSync(path.join(t.clientDir,"./private/"+e))&&fs.readFile(path.join(t.clientDir,"./private/"+e),"utf-8",function(e,t){e?n(e):r(t)})})},MethodManager.prototype.readImage=function(e){var t=this;return new Promise(function(r,n){fs.existsSync(path.join(__dirname,"../private/"+e))?fs.readFile(path.join(__dirname,"../private/"+e),"base64",function(e,t){e?n(e):r(t)}):fs.existsSync(path.join(t.clientDir,"./private/"+e))&&fs.readFile(path.join(t.clientDir,"./private/"+e),"base64",function(e,t){e?n(e):r(t)})})},MethodManager}());exports.MethodManager=MethodManager;
1
+ "use strict";var __assign=this&&this.__assign||function(){return(__assign=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var o in t=arguments[r])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e}).apply(this,arguments)},__awaiter=this&&this.__awaiter||function(e,n,o,i){return new(o=o||Promise)(function(r,t){function fulfilled(e){try{step(i.next(e))}catch(e){t(e)}}function rejected(e){try{step(i.throw(e))}catch(e){t(e)}}function step(e){var t;e.done?r(e.value):((t=e.value)instanceof o?t:new o(function(e){e(t)})).then(fulfilled,rejected)}step((i=i.apply(e,n||[])).next())})},__generator=this&&this.__generator||function(n,o){var i,s,a,c={label:0,sent:function(){if(1&a[0])throw a[1];return a[1]},trys:[],ops:[]},l={next:verb(0),throw:verb(1),return:verb(2)};return"function"==typeof Symbol&&(l[Symbol.iterator]=function(){return this}),l;function verb(r){return function(e){var t=[r,e];if(i)throw new TypeError("Generator is already executing.");for(;c=l&&t[l=0]?0:c;)try{if(i=1,s&&(a=2&t[0]?s.return:t[0]?s.throw||((a=s.return)&&a.call(s),0):s.next)&&!(a=a.call(s,t[1])).done)return a;switch(s=0,(t=a?[2&t[0],a.value]:t)[0]){case 0:case 1:a=t;break;case 4:return c.label++,{value:t[1],done:!1};case 5:c.label++,s=t[1],t=[0];continue;case 7:t=c.ops.pop(),c.trys.pop();continue;default:if(!(a=0<(a=c.trys).length&&a[a.length-1])&&(6===t[0]||2===t[0])){c=0;continue}if(3===t[0]&&(!a||t[1]>a[0]&&t[1]<a[3]))c.label=t[1];else if(6===t[0]&&c.label<a[1])c.label=a[1],a=t;else{if(!(a&&c.label<a[2])){a[2]&&c.ops.pop(),c.trys.pop();continue}c.label=a[2],c.ops.push(t)}}t=o.call(n,c)}catch(e){t=[6,e],s=0}finally{i=a=0}if(5&t[0])throw t[1];return{value:t[0]?t[1]:void 0,done:!0}}}},__read=this&&this.__read||function(e,t){var r="function"==typeof Symbol&&e[Symbol.iterator];if(!r)return e;var n,o,i=r.call(e),s=[];try{for(;(void 0===t||0<t--)&&!(n=i.next()).done;)s.push(n.value)}catch(e){o={error:e}}finally{try{n&&!n.done&&(r=i.return)&&r.call(i)}finally{if(o)throw o.error}}return s},__spreadArray=this&&this.__spreadArray||function(e,t,r){if(r||2===arguments.length)for(var n,o=0,i=t.length;o<i;o++)!n&&o in t||((n=n||Array.prototype.slice.call(t,0,o))[o]=t[o]);return e.concat(n||Array.prototype.slice.call(t))},__values=this&&this.__values||function(e){var t="function"==typeof Symbol&&Symbol.iterator,r=t&&e[t],n=0;if(r)return r.call(e);if(e&&"number"==typeof e.length)return{next:function(){return{value:(e=e&&n>=e.length?void 0:e)&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},collections_1=(Object.defineProperty(exports,"__esModule",{value:!0}),exports.MethodManager=exports.AWS=void 0,require("../methods/collections")),logs_1=require("../methods/logs"),counters_1=require("../methods/counters"),pdf_1=require("../methods/pdf"),aws_1=require("../methods/aws"),path=require("path"),fs=require("fs"),nodemailer=require("nodemailer"),sesTransport=require("nodemailer-ses-transport"),accounts_1=require("../methods/accounts"),init_1=require("../fixtures/init"),cron_jobs_1=require("../fixtures/cron-jobs"),cron_jobs_2=require("../methods/cron-jobs"),flags_1=require("../methods/flags"),common_1=require("../util/common"),log_collection_1=require("../collections/log.collection"),log_method_latency_collection_1=require("../collections/log-method-latency.collection"),moment=require("moment-timezone"),report_builder_1=require("../methods/report-builder"),support_1=require("../methods/support"),monitor_1=require("../methods/monitor"),email_history_collection_1=require("../collections/email-history.collection"),mongo_manager_1=require("./mongo.manager"),client_s3_1=require("@aws-sdk/client-s3"),worker_task_request_collection_1=require("../collections/worker-task-request.collection"),worker_task_response_collection_1=require("../collections/worker-task-response.collection"),flag_updates_1=require("../methods/flag-updates"),worker_task_data_chunk_collection_1=require("../collections/worker-task-data-chunk.collection"),AWS=function(){function AWS(e){this._serverConfig=null,this._s3=null,this._s3USEast1=null,this._serverConfig=e}return AWS.prototype.s3=function(){return this._s3||(this._s3=new client_s3_1.S3({credentials:{accessKeyId:process.env.AWS_ACCESS_KEY,secretAccessKey:process.env.AWS_SECRET_ACCESS_KEY},region:process.env.AWS_REGION,apiVersion:"2006-03-01"})),this._s3},AWS.prototype.s3USEast1=function(){return"us-east-1"===process.env.AWS_REGION?this.s3():(this._s3USEast1||(this._s3USEast1=new client_s3_1.S3({credentials:{accessKeyId:process.env.AWS_ACCESS_KEY,secretAccessKey:process.env.AWS_SECRET_ACCESS_KEY},region:"us-east-1",apiVersion:"2006-03-01"})),this._s3USEast1)},AWS}(),MethodManager=(exports.AWS=AWS,function(){function MethodManager(e,t,r,n,o,i){var s=this;this._methods={},this._isWorkersEnabled=!1,this._isWorkerInstance=!1,this.emailQueue=new Set,this.isEmailProcessing=!1,this._debugCallMethodInternalHits=0,this._debugCallMethodHits=0,this._debugCallMethodCronJobHits=0,this._debugSendQueueHits=0,this._mainServer=e,this._websocketManager=this._mainServer.getWebSocketManager(),this.serverConfig=t,this.clientDir=r,this._monitorManagerFunction=n,this._isWorkersEnabled=o,this._isWorkerInstance=i,"false"!==process.env.IS_WORKERS_ENABLED&&("true"!==process.env.IS_WORKER_INSTANCE||"0"!==process.env.WORKER_INDEX)||process.env.NODE_APP_INSTANCE&&"0"!==process.env.NODE_APP_INSTANCE||setTimeout(function(){console.log(new Date,"Start Server Fixture"),(0,init_1.loadServerInit)(t),console.log(new Date,"End Server Fixture")},5e3),(0,cron_jobs_1.loadServerCronJobs)(),(0,accounts_1.loadAccountMethods)(this),(0,aws_1.loadAWSMethods)(this),(0,collections_1.loadCollectionMethods)(this),(0,counters_1.loadCounterMethods)(this),(0,logs_1.loadLogMethods)(this),(0,pdf_1.loadPDFMethods)(this),(0,cron_jobs_2.loadCronJobMethods)(this),(0,flags_1.loadFlagMethods)(this),(0,flag_updates_1.loadFlagUpdatesMethods)(this),(0,report_builder_1.loadReportBuilderMethods)(this),(0,support_1.loadSupportMethods)(this),(0,monitor_1.loadMonitorMethods)(this),this._aws=new AWS(t),e.sesMail?this._mailer=nodemailer.createTransport(sesTransport({accessKeyId:process.env.AWS_ACCESS_KEY,secretAccessKey:process.env.AWS_SECRET_ACCESS_KEY,region:process.env.AWS_SES_REGION})):this._mailer=nodemailer.createTransport({host:this.serverConfig.MAIL_HOST,port:this.serverConfig.MAIL_PORT,secure:!1,auth:{user:this.serverConfig.MAIL_USERNAME,pass:this.serverConfig.MAIL_PASSWORD},tls:{ciphers:"SSLv3"}}),setInterval(function(){s._mainServer.getSubscriptionManager()&&s._mainServer.getSubscriptionManager().getEnableDebug()&&(console.log(new Date,"Method Manager","Send Queue Hits",s._debugSendQueueHits),console.log(new Date,"Method Manager","Call Method Internal Hits",s._debugCallMethodInternalHits),console.log(new Date,"Method Manager","Call Method Hits",s._debugCallMethodHits),console.log(new Date,"Method Manager","Call Method Cron Hits",s._debugCallMethodCronJobHits)),s._debugCallMethodInternalHits=0,s._debugCallMethodHits=0,s._debugCallMethodCronJobHits=0,s._debugSendQueueHits=0},6e4),this._isWorkersEnabled&&!this._isWorkerInstance||this.setupEmailWatcher()}return MethodManager.prototype.getMainServer=function(){return this._mainServer},MethodManager.prototype.methods=function(e){this._methods=Object.assign(this._methods,e)},MethodManager.prototype.callMethodCron=function(t){for(var o=this,r=[],e=1;e<arguments.length;e++)r[e-1]=arguments[e];if(this._debugCallMethodCronJobHits+=1,this._methods[t]){if((1<r.length||r[0])&&!this._methods[t].skipValidation){if(!this._methods[t].check)return console.error(new Date,"No Check Function For Method "+t),void this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Check Function For Method "+t);if(!this._methods[t].check._schema)return console.error(new Date,"No Check Schema For Method "+t),void this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Check Function For Method "+t);for(var n={},i=Object.keys(this._methods[t].check._schema).filter(function(e){return!e.includes(".")}),s=0;s<r.length;s++)n[i[s]]=r[s];try{this._methods[t].check.validate(n)}catch(e){if(e)return console.error(new Date,"Error in Method Check ("+t+")",e),void this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"Match Error On Method "+t+"\n\nData Being Checked\n"+JSON.stringify(n,null,2)+"\n\nErrors\n"+JSON.stringify(e,null,2))}}var a=null;if(this._isWorkersEnabled&&!this._isWorkerInstance&&"insertSubscriptionLog"!==t&&"countQuery"!==t&&"incCounter"!==t&&"supportCreateBillingUser"!==t&&"find"!==t&&"insertDocument"!==t&&"countWithQuery"!==t&&"findOne"!==t&&"updateDocumentProps"!==t&&"findWithOptions"!==t&&"getSignedUrl"!==t&&"updateDocument"!==t&&"insertErrorLog"!==t&&"getSignedUrls"!==t&&"removeDocument"!==t&&"getSignedUrlWithId"!==t&&"incorrectUser"!==t&&"reloadWS"!==t&&"reconnectWS"!==t&&"disconnectWS"!==t){var c=JSON.stringify(r);if(8388608<Buffer.byteLength(c,"utf8")){for(var l=[],u=Buffer.from(c,"utf8"),d=[],s=0;s<u.length;s+=2097152){var h=u.slice(s,s+2097152),h={_id:(0,mongo_manager_1.objectIdHexString)(),data:h.toString("base64")};d.push(h),l.push(h._id)}r=[{__largeDataRef:!0,chunks:l}],worker_task_data_chunk_collection_1.WorkerTaskDataChunks.create(d)}var _=this._monitorManagerFunction.startMonitorFunction("Cron Method",t,"","",r),f=(0,mongo_manager_1.objectIdHexString)(),a=new Promise(function(t,r){var n=worker_task_response_collection_1.WorkerTaskResponses.watchCollection([{$match:{"fullDocument.id_request":f}}],{fullDocument:"updateLookup"});n.on("change",function(e){"insert"===e.operationType&&(o._monitorManagerFunction.finishMonitorFunction(_),((e=e.fullDocument).has_error?r:t)(e.data),n.close())}),n.on("error",function(e){console.error("Error watching worker responses:",e),r(e),n.close()})});worker_task_request_collection_1.WorkerTaskRequests.create({_id:f,method:t,params:r,status:"pending",id_user:this.id_user,user:this.user,id_ws:this.id_socket})}else{var g=this._monitorManagerFunction.startMonitorFunction("Cron Method",t,"","",r);a=(c=this._methods[t].function).call.apply(c,__spreadArray([Object.assign({},this,MethodManager.prototype,{id_user:"",user:"",id_ws:""})],__read(r),!1)).then(function(e){return o._monitorManagerFunction.finishMonitorFunction(g),e},function(e){return o._monitorManagerFunction.finishMonitorFunction(g),o.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+o.serverConfig.CLIENT_NAME,"Error Detected During Method "+t+" - (callMethodCron)\n\nData \n"+JSON.stringify(r,null,2)+"\n\nErrors\n"+JSON.stringify(e,null,2)),e})}return a}console.log("No Method: "+t),this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Method: "+t)},MethodManager.prototype.callMethod=function(n,o,i,s,a){for(var t=this,c=[],e=5;e<arguments.length;e++)c[e-5]=arguments[e];if(this._debugCallMethodHits+=1,this._methods[a]){if((1<c.length||c[0])&&!this._methods[a].skipValidation){if(!this._methods[a].check)return console.error(new Date,"No Check Function For Method "+a),this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Check Function For Method "+a),this.sendWS(o,i,a,c,r={messageId:s,hasError:!0,data:"Internal Error"}),void(n&&log_method_latency_collection_1.LogMethodLatencies.deleteOne({_id:n}));if(!this._methods[a].check._schema)return console.error(new Date,"No Check Schema For Method "+a),this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Check Schema For Method "+a),r={messageId:s,hasError:!0,data:"Internal Error"},n&&log_method_latency_collection_1.LogMethodLatencies.deleteOne({_id:n}),void this.sendWS(o,i,a,c,r);for(var r,l={},u=Object.keys(this._methods[a].check._schema).filter(function(e){return!e.includes(".")}),d=0;d<c.length;d++)l[u[d]]=c[d];try{this._methods[a].check.validate(l)}catch(e){if(e)return console.error(new Date,"Error in Method Check ("+a+")",e),"processAirdropDistribution"!==a&&this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"Match Error On Method "+a+"\n\nData Being Checked\n"+JSON.stringify(l,null,2)+"\n\nErrors\n"+JSON.stringify(e,null,2)),this.sendWS(o,i,a,c,r={messageId:s,hasError:!0,data:"Internal Error"}),void(n&&log_method_latency_collection_1.LogMethodLatencies.deleteOne({_id:n}))}}if(this._isWorkersEnabled&&!this._isWorkerInstance&&"insertSubscriptionLog"!==a&&"countQuery"!==a&&"incCounter"!==a&&"supportCreateBillingUser"!==a&&"find"!==a&&"insertDocument"!==a&&"countWithQuery"!==a&&"findOne"!==a&&"updateDocumentProps"!==a&&"findWithOptions"!==a&&"getSignedUrl"!==a&&"updateDocument"!==a&&"insertErrorLog"!==a&&"getSignedUrls"!==a&&"removeDocument"!==a&&"getSignedUrlWithId"!==a&&"incorrectUser"!==a&&"reloadWS"!==a&&"reconnectWS"!==a&&"disconnectWS"!==a){var h=JSON.stringify(c);if(8388608<Buffer.byteLength(h,"utf8")){for(var _=[],f=Buffer.from(h,"utf8"),g=[],d=0;d<f.length;d+=2097152){var m=f.slice(d,d+2097152),m={_id:(0,mongo_manager_1.objectIdHexString)(),data:m.toString("base64")};g.push(m),_.push(m._id)}c=[{__largeDataRef:!0,chunks:_}],worker_task_data_chunk_collection_1.WorkerTaskDataChunks.create(g)}var p=this._monitorManagerFunction.startMonitorFunction("Method",a,o.user||"",o.id_socket||"",c),h=(0,mongo_manager_1.objectIdHexString)(),v=worker_task_response_collection_1.WorkerTaskResponses.watchCollection([{$match:{"fullDocument.id_request":h}}],{fullDocument:"updateLookup"});v.on("change",function(r){return __awaiter(t,void 0,void 0,function(){var t;return __generator(this,function(e){switch(e.label){case 0:return"insert"!==r.operationType?[3,3]:(this._monitorManagerFunction.finishMonitorFunction(p),t=r.fullDocument,t={messageId:s,hasError:t.has_error,data:t.data},this.sendWS(o,new Date,a,c,t),n?[4,log_method_latency_collection_1.LogMethodLatencies.findById(n)]:[3,2]);case 1:(t=e.sent())&&log_method_latency_collection_1.LogMethodLatencies.updateOne({_id:n},{$set:{date_end:new Date,latency_ms:moment().diff(moment(t.date_start),"milliseconds",!0)}}),e.label=2;case 2:v.close(),e.label=3;case 3:return[2]}})})}),v.on("error",function(e){console.error("Error watching worker responses:",e),v.close()}),worker_task_request_collection_1.WorkerTaskRequests.create({_id:h,method:a,params:c,status:"pending",id_user:o.id_user,user:o.user,id_ws:o.id_socket})}else{var M=this._monitorManagerFunction.startMonitorFunction("Method",a,o.user||"",o.id_socket||"",c);(h=this._methods[a].function).call.apply(h,__spreadArray([Object.assign({},this,MethodManager.prototype,{id_user:o.id_user,user:o.user,id_ws:o.id_socket})],__read(c),!1)).then(function(r){return __awaiter(t,void 0,void 0,function(){var t;return __generator(this,function(e){switch(e.label){case 0:return(this._monitorManagerFunction.finishMonitorFunction(M),t={messageId:s,hasError:!1,data:r},this.sendWS(o,i,a,c,t),n)?[4,log_method_latency_collection_1.LogMethodLatencies.findById(n)]:[3,2];case 1:(t=e.sent())&&log_method_latency_collection_1.LogMethodLatencies.updateOne({_id:n},{$set:{date_end:new Date,latency_ms:moment().diff(moment(t.date_start),"milliseconds",!0)}}),e.label=2;case 2:return[2]}})})},function(e){t._monitorManagerFunction.finishMonitorFunction(M),t.sendWS(o,i,a,c,{messageId:s,hasError:!0,data:e}),n&&log_method_latency_collection_1.LogMethodLatencies.deleteOne({_id:n}),"processAirdropDistribution"!==a&&t.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+t.serverConfig.CLIENT_NAME,"Error Detected During Method "+a+" - (callMethod)\n\nData \n"+JSON.stringify(c,null,2)+"\n\nErrors\n"+JSON.stringify(e,null,2))})}}else console.log("No Method: "+a),this.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+this.serverConfig.CLIENT_NAME,"No Method: "+a),r={messageId:s,hasError:!0,data:"Internal Error"},this.sendWS(o,new Date,a,c,r),n&&log_method_latency_collection_1.LogMethodLatencies.deleteOne({_id:n})},MethodManager.prototype.callMethodInternal=function(t){for(var o=this,r=[],e=1;e<arguments.length;e++)r[e-1]=arguments[e];if(this._debugCallMethodInternalHits+=1,!this._methods[t])return console.log("No Method: "+t),null;if((1<r.length||r[0]&&"function"!=typeof r[0])&&!this._methods[t].skipValidation){if(!this._methods[t].check)return console.error(new Date,"No Check Function For Method "+t),null;if(!this._methods[t].check._schema)return console.error(new Date,"No Check Schema For Method "+t),null}"insertSubscriptionLog"!==t&&"getDataURIfromURL"!==t&&"processAirdropDistribution"!==t&&"incCounter"!==t&&"supportCreateBillingUser"!==t&&"countCollectionWithQuery"!==t&&log_collection_1.Logs.insertOne({_id:(0,mongo_manager_1.objectIdHexString)(),type:"callMethodInternal",collection:"",id_document:"",payload:(0,common_1.getBinarySize)(JSON.stringify([r]))<2e5?JSON.stringify([r],null,2):"Too Big",method:t,id_user:this.id_user||"",user:this.user||"",messageId:0,route:""});var n="function"==typeof r[r.length-1]?r.slice(0,-1):r,i=null;if(this._isWorkersEnabled&&!this._isWorkerInstance&&"insertSubscriptionLog"!==t&&"countQuery"!==t&&"incCounter"!==t&&"supportCreateBillingUser"!==t&&"find"!==t&&"insertDocument"!==t&&"countWithQuery"!==t&&"findOne"!==t&&"updateDocumentProps"!==t&&"findWithOptions"!==t&&"getSignedUrl"!==t&&"updateDocument"!==t&&"insertErrorLog"!==t&&"getSignedUrls"!==t&&"removeDocument"!==t&&"getSignedUrlWithId"!==t&&"incorrectUser"!==t&&"reloadWS"!==t&&"reconnectWS"!==t&&"disconnectWS"!==t){var s=JSON.stringify(n);if(8388608<Buffer.byteLength(s,"utf8")){for(var a=[],c=Buffer.from(s,"utf8"),l=[],u=0;u<c.length;u+=2097152){var d=c.slice(u,u+2097152),d={_id:(0,mongo_manager_1.objectIdHexString)(),data:d.toString("base64")};l.push(d),a.push(d._id)}n=[{__largeDataRef:!0,chunks:a}],worker_task_data_chunk_collection_1.WorkerTaskDataChunks.create(l)}var h=this._monitorManagerFunction.startMonitorFunction("Internal Method",t,this.user||"","",n),_=(0,mongo_manager_1.objectIdHexString)(),i=new Promise(function(t,r){var n=worker_task_response_collection_1.WorkerTaskResponses.watchCollection([{$match:{"fullDocument.id_request":_}}],{fullDocument:"updateLookup"});n.on("change",function(e){"insert"===e.operationType&&(o._monitorManagerFunction.finishMonitorFunction(h),((e=e.fullDocument).has_error?r:t)(e.data),n.close())}),n.on("error",function(e){console.error("Error watching worker responses:",e),r(e),n.close()})});worker_task_request_collection_1.WorkerTaskRequests.create({_id:_,method:t,params:n,status:"pending",id_user:this.id_user,user:this.user,id_ws:this.id_socket})}else{var f=this._monitorManagerFunction.startMonitorFunction("Internal Method",t,this.user||"","",n);i=(s=this._methods[t].function).call.apply(s,__spreadArray([Object.assign({},this,MethodManager.prototype)],__read(n),!1)).then(function(e){return o._monitorManagerFunction.finishMonitorFunction(f),e},function(e){return o._monitorManagerFunction.finishMonitorFunction(f),o.sendEmail("dev@resolveio.com","SERVER - Error Detected - "+o.serverConfig.CLIENT_NAME,"Error Detected During Method "+t+" - (callMethodInternal)\n\nData \n"+JSON.stringify(r,null,2)+"\n\nErrors\n"+JSON.stringify(e,null,2)),e})}return r[r.length-1]&&"function"==typeof r[r.length-1]&&i.then(function(e){return r[r.length-1](null,e)},function(e){return r[r.length-1](e,null)}),i},MethodManager.prototype.sendWS=function(e,t,r,n,o){this._websocketManager.send(e,o),"reportBuilderGetResults"!==r&&"reportBuilderGetDistinctValue"!==r&&"reportBuilderBuildTree"!==r&&"generatePDF"!==r&&"getWOOfflineData"!==r&&"countQuery"!==r&&"countWithQuery"!==r&&"countCollectionWithQuery"!==r&&"find"!==r&&"findOne"!==r&&"findWithOptions"!==r&&"uploadFileAndSave"!==r&&"getDrivers"!==r&&"processAirdropDistribution"!==r&&log_collection_1.Logs.insertOne({_id:(0,mongo_manager_1.objectIdHexString)(),type:"client-response",collection:"",id_document:"",payload:(0,common_1.getBinarySize)(JSON.stringify([n,o]))<2e5?JSON.stringify([n,o],null,2):"Too Big",method:r,id_user:e.id_user||"",user:e.user||"",messageId:o.messageId,route:""})},MethodManager.prototype.setupEmailWatcher=function(){return __awaiter(this,void 0,void 0,function(){var t,n=this;return __generator(this,function(e){switch(e.label){case 0:return(t=email_history_collection_1.EmailHistories.watchCollection([])).on("change",function(r){return __awaiter(n,void 0,void 0,function(){var t;return __generator(this,function(e){return"insert"===r.operationType&&r.fullDocument&&"pending"===r.fullDocument.status?(this.emailQueue.add(r.fullDocument._id.toString()),this.tryProcessEmail()):"update"!==r.operationType&&"replace"!==r.operationType||(t=r.fullDocument)&&"pending"!==t.status&&this.emailQueue.has(t._id.toString())&&this.emailQueue.delete(t._id.toString()),[2]})})}).on("error",function(e){console.error("Email history changestream error",e),t.close()}).on("close",function(){n.setupEmailWatcher()}),[4,this.loadPendingEmails()];case 1:return e.sent(),[2]}})})},MethodManager.prototype.loadPendingEmails=function(){return __awaiter(this,void 0,void 0,function(){var t,r,n,o,i,s;return __generator(this,function(e){switch(e.label){case 0:return[4,email_history_collection_1.EmailHistories.find({status:"pending"},{sort:{_id:1}})];case 1:t=e.sent();try{for(r=__values(t),n=r.next();!n.done;n=r.next())o=n.value,this.emailQueue.add(o._id.toString())}catch(e){i={error:e}}finally{try{n&&!n.done&&(s=r.return)&&s.call(r)}finally{if(i)throw i.error}}return this.tryProcessEmail(),[2]}})})},MethodManager.prototype.tryProcessEmail=function(){return __awaiter(this,void 0,void 0,function(){var t,d,r,h=this;return __generator(this,function(e){switch(e.label){case 0:if(this.isEmailProcessing||0===this.emailQueue.size)return[2];this.isEmailProcessing=!0,e.label=1;case 1:e.trys.push([1,5,6,7]),t=function(){var n,t,r,o,i,s,a,c,l,u;return __generator(this,function(e){switch(e.label){case 0:return i=d.emailQueue.values().next().value,d.emailQueue.delete(i),[4,email_history_collection_1.EmailHistories.findOneAndUpdate({_id:i,status:"pending"},{$set:{status:"processing",processingAt:new Date}})];case 1:if(!(n=e.sent()))return[2,"continue"];if(!(n.attachments&&0<n.attachments.length))return[3,14];e.label=2;case 2:e.trys.push([2,12,,14]),e.label=3;case 3:e.trys.push([3,9,10,11]),l=void 0,t=__values(n.attachments),r=t.next(),e.label=4;case 4:return r.done?[3,8]:(o=r.value).path&&o.path.startsWith("http")?[4,fetch(o.path)]:[3,7];case 5:if((i=e.sent()).ok)return[4,i.arrayBuffer()];throw new Error("Failed to fetch attachment: ".concat(o.path));case 6:s=e.sent(),s=Buffer.from(s),s.length<=20971520&&(o.content=s,delete o.path),e.label=7;case 7:return r=t.next(),[3,4];case 8:return[3,11];case 9:return s=e.sent(),l={error:s},[3,11];case 10:try{r&&!r.done&&(u=t.return)&&u.call(t)}finally{if(l)throw l.error}return[7];case 11:return[3,14];case 12:return a=e.sent(),console.error("Failed to fetch attachment:",a),[4,email_history_collection_1.EmailHistories.updateOne({_id:n._id},{$set:{status:"failed",error:"string"==typeof a?a:d.safeStringify(a),completedAt:new Date}})];case 13:return e.sent(),[2,"continue"];case 14:return(c={replyTo:n.reply_to||d.serverConfig.MAIL_REPLY_TO||void 0,from:n.send_from||d.serverConfig.MAIL_FROM,to:n.email,subject:(d.serverConfig.ROOT_URL.match(/https:\/\/dev\./)||d.serverConfig.ROOT_URL.match(/https:\/\/www\.dev\./)?"(DEV SERVER) - ":"")+n.subject,text:"string"==typeof n.text?n.text:"",html:"string"==typeof n.html?n.html:"",attachments:n.attachments||[]}).attachments&&0<c.attachments.length&&(c.attachments=c.attachments.map(function(e){e=__assign({},e);return!e.content||"object"!=typeof e.content||e.content instanceof Buffer?"string"==typeof e.content&&"base64"===e.encoding?(e.content=Buffer.from(e.content,"base64"),delete e.encoding):"string"==typeof e.content&&(e.content=Buffer.from(e.content)):"Binary"===e.content._bsontype&&0===e.content.sub_type?e.content=Buffer.from(e.content.buffer):e.content=Buffer.from(e.content),e})),[4,new Promise(function(r){h._mailer.sendMail(c,function(t,e){return __awaiter(h,void 0,void 0,function(){return __generator(this,function(e){try{t?(console.error("Failed to send email:",t),email_history_collection_1.EmailHistories.updateOne({_id:n._id},{$set:{status:"failed",error:"string"==typeof t?t:this.safeStringify(t),completedAt:new Date}})):"dev@resolveio.com"===n.email?email_history_collection_1.EmailHistories.deleteOne({_id:n._id}):email_history_collection_1.EmailHistories.updateOne({_id:n._id},{$set:{status:"completed",completedAt:new Date}})}catch(e){console.error("Error in sendMail callback:",e),email_history_collection_1.EmailHistories.updateOne({_id:n._id},{$set:{status:"failed",error:"string"==typeof e?e:this.safeStringify(e),completedAt:new Date}})}finally{r()}return[2]})})})})];case 15:return e.sent(),[4,new Promise(function(e){return setTimeout(e,1e3)})];case 16:return e.sent(),[2]}})},d=this,e.label=2;case 2:return 0<this.emailQueue.size?[5,t()]:[3,4];case 3:return e.sent(),[3,2];case 4:return[3,7];case 5:return r=e.sent(),console.error("Error processing email queue:",r),[3,7];case 6:return this.isEmailProcessing=!1,0<this.emailQueue.size&&this.tryProcessEmail(),[7];case 7:return[2]}})})},MethodManager.prototype.safeStringify=function(e){try{return JSON.stringify(e,this.getCircularReplacer())}catch(e){return"Error in JSON stringifying: ".concat(e.message)}},MethodManager.prototype.getCircularReplacer=function(){var r=new WeakSet;return function(e,t){if("object"==typeof t&&null!==t){if(r.has(t))return"[Circular]";r.add(t)}return t}},MethodManager.prototype.sendEmail=function(o,i,s,a,c,l,u,d){var e=this;return void 0===d&&(d=!1),new Promise(function(r,n){return __awaiter(e,void 0,void 0,function(){var t;return __generator(this,function(e){return(o=!this.serverConfig.ROOT_URL.match(/https:\/\/dev\./)&&!this.serverConfig.ROOT_URL.match(/https:\/\/www\.dev\./)&&"http://localhost:4200"!==this.serverConfig.ROOT_URL||o.match(/\@resolveio\.com/)?o:"dev@resolveio.com")?"http://localhost:4200"!==this.serverConfig.ROOT_URL||d?(c=c||[],c=(c=Array.isArray(c)?c:[c]).map(function(e){e=__assign({},e);return Buffer.isBuffer(e.content)&&(e.content=e.content.toString("base64"),e.encoding="base64"),e}),t={_id:(0,mongo_manager_1.objectIdHexString)(),__v:0,date:new Date,id_user:this.id_user||"",user:this.user||"",email:o,subject:i||"",text:s||"",html:a||"",attachments:c||[],send_from:l||"",reply_to:u||"",status:"pending",error:""},email_history_collection_1.EmailHistories.insertOne(t).then(function(e){return r(e)},function(e){console.error("Failed to queue email:",e),n(e)})):(console.log("Send email",o,i,s,a,c,l),r(!0)):r(!0),[2]})})})},MethodManager.prototype.getAWS=function(){return this._aws},MethodManager.prototype.readFile=function(e){var t=this;return new Promise(function(r,n){fs.existsSync(path.join(__dirname,"../private/"+e))?fs.readFile(path.join(__dirname,"../private/"+e),"utf-8",function(e,t){e?n(e):r(t)}):fs.existsSync(path.join(t.clientDir,"./private/"+e))&&fs.readFile(path.join(t.clientDir,"./private/"+e),"utf-8",function(e,t){e?n(e):r(t)})})},MethodManager.prototype.readImage=function(e){var t=this;return new Promise(function(r,n){fs.existsSync(path.join(__dirname,"../private/"+e))?fs.readFile(path.join(__dirname,"../private/"+e),"base64",function(e,t){e?n(e):r(t)}):fs.existsSync(path.join(t.clientDir,"./private/"+e))&&fs.readFile(path.join(t.clientDir,"./private/"+e),"base64",function(e,t){e?n(e):r(t)})})},MethodManager}());exports.MethodManager=MethodManager;
2
2
  //# sourceMappingURL=method.manager.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/managers/method.manager.ts"],"names":["collections_1","require","logs_1","counters_1","pdf_1","aws_1","path","fs","nodemailer","sesTransport","accounts_1","init_1","cron_jobs_1","cron_jobs_2","flags_1","common_1","log_collection_1","log_method_latency_collection_1","moment","report_builder_1","support_1","monitor_1","email_history_collection_1","mongo_manager_1","client_s3_1","worker_task_request_collection_1","worker_task_response_collection_1","flag_updates_1","AWS","serverConfig","this","_serverConfig","_s3","_s3USEast1","prototype","s3","S3","credentials","accessKeyId","process","env","AWS_ACCESS_KEY","secretAccessKey","AWS_SECRET_ACCESS_KEY","region","AWS_REGION","apiVersion","s3USEast1","MethodManager","exports","mainServer","clientDir","monitorManagerFunction","isWorkersEnabled","isWorkerInstance","_this","_methods","_isWorkersEnabled","_isWorkerInstance","emailQueue","Set","isEmailProcessing","_debugCallMethodInternalHits","_debugCallMethodHits","_debugCallMethodCronJobHits","_debugSendQueueHits","_mainServer","_websocketManager","getWebSocketManager","_monitorManagerFunction","IS_WORKERS_ENABLED","IS_WORKER_INSTANCE","WORKER_INDEX","NODE_APP_INSTANCE","setTimeout","console","log","Date","loadServerInit","loadServerCronJobs","loadAccountMethods","loadAWSMethods","loadCollectionMethods","loadCounterMethods","loadLogMethods","loadPDFMethods","loadCronJobMethods","loadFlagMethods","loadFlagUpdatesMethods","loadReportBuilderMethods","loadSupportMethods","loadMonitorMethods","_aws","sesMail","_mailer","createTransport","AWS_SES_REGION","host","port","secure","auth","user","pass","tls","ciphers","setInterval","getSubscriptionManager","getEnableDebug","setupEmailWatcher","getMainServer","methods","method","Object","assign","callMethodCron","methodData","_i","arguments","length","skipValidation","check","error","sendEmail","_schema","valObj","rootKeys","keys","filter","a","includes","i","validate","errors","JSON","stringify","monitor_2","taskId_1","monitor_3","promise","startMonitorFunction","objectIdHexString","Promise","resolve","reject","changeStream","WorkerTaskResponses","watchCollection","$match","fullDocument.id_request","fullDocument","on","change","operationType","finishMonitorFunction","taskResponse","has_error","data","close","WorkerTaskRequests","create","_id","params","status","id_user","id_ws","_a","function","call","apply","__spreadArray","__read","then","res","methodErrs","callMethod","id_methodLatency","ws","messageDate","messageId","monitor_4","taskId","changeStream_1","monitor_5","sendWS","serverRes","hasError","LogMethodLatencies","deleteOne","__awaiter","findById","latency","sent","updateOne","$set","date_end","latency_ms","diff","date_start","err","callMethodInternal","Logs","insertOne","type","collection","id_document","payload","getBinarySize","route","monitor_6","taskId_2","monitor_7","functionMethodData","slice","send","EmailHistories","add","toString","tryProcessEmail","updatedEmail","has","delete","loadPendingEmails","find","sort","pendingEmails","_b","pendingEmails_1","__values","pendingEmails_1_1","next","done","email","value","size","emailId","this_1","values","findOneAndUpdate","processingAt","emailHistory","_e","attachments","e_2","_c","att","startsWith","fetch","response","ok","arrayBuffer","Error","concat","buffer","Buffer","from","content","err_2","safeStringify","completedAt","mailOptions","replyTo","reply_to","undefined","send_from","MAIL_FROM","to","subject","match","text","html","map","newAtt","__assign","encoding","_bsontype","sub_type","sendMail","info","err_1","obj","getCircularReplacer","e","message","seen","WeakSet","key","sendTo","local_override","Array","isArray","isBuffer","__v","date","history","getAWS","readFile","fileName","existsSync","join","__dirname","readImage"],"mappings":"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","file":"method.manager.js","sourcesContent":["import { ServerResponseModel } from '../models/server-response.model';\nimport { loadCollectionMethods } from '../methods/collections';\nimport { MethodModel } from '../models/method.model';\nimport { loadLogMethods } from '../methods/logs';\nimport { loadCounterMethods } from '../methods/counters';\nimport { loadPDFMethods } from '../methods/pdf';\nimport { loadAWSMethods } from '../methods/aws';\nimport * as path from 'path';\nimport * as fs from 'fs';\nimport * as nodemailer from 'nodemailer';\nimport * as sesTransport from 'nodemailer-ses-transport';\nimport { loadAccountMethods } from '../methods/accounts';\nimport { loadServerInit } from '../fixtures/init';\nimport { loadServerCronJobs } from '../fixtures/cron-jobs';\nimport { loadCronJobMethods } from '../methods/cron-jobs';\nimport { loadFlagMethods } from '../methods/flags';\nimport { getBinarySize } from '../util/common';\nimport { Logs } from '../collections/log.collection';\nimport ResolveIOMainServer from '../server-app';\nimport { LogMethodLatencies } from '../collections/log-method-latency.collection';\nimport * as moment from 'moment-timezone';\nimport { loadReportBuilderMethods } from '../methods/report-builder';\nimport { loadSupportMethods } from '../methods/support';\nimport { loadMonitorMethods } from '../methods/monitor';\nimport { EmailHistories } from '../collections/email-history.collection';\nimport { objectIdHexString } from './mongo.manager';\nimport { MonitorManagerFunction } from './monitor.manager';\nimport { S3 } from '@aws-sdk/client-s3';\nimport { WorkerTaskRequests } from '../collections/worker-task-request.collection';\nimport { WorkerTaskResponses } from '../collections/worker-task-response.collection';\nimport { WebSocketManager } from './websocket.manager';\nimport * as WebSocket from 'ws';\nimport { loadFlagUpdatesMethods } from '../methods/flag-updates';\nimport { EmailHistoryModel } from '../models/email-history.model';\n\nexport class AWS {\n\tprivate _serverConfig = null;\n\tprivate _s3: S3 = null;\n\tprivate _s3USEast1: S3 = null;\n\n\tconstructor(serverConfig) {\n\t\tthis._serverConfig = serverConfig;\n\t}\n\n\tpublic s3(): S3 {\n\t\tif (this._s3) {\n\t\t\treturn this._s3;\n\t\t}\n\n\t\tthis._s3 = new S3({\n\t\t\tcredentials: {\n\t\t\t\taccessKeyId: process.env.AWS_ACCESS_KEY,\n\t\t\t\tsecretAccessKey: process.env.AWS_SECRET_ACCESS_KEY\n\t\t\t},\n\t\t\tregion: process.env.AWS_REGION,\n\t\t\tapiVersion: '2006-03-01'\n\t\t});\n\n\t\treturn this._s3;\n\t}\n\n\tpublic s3USEast1(): S3 {\n\t\tif (process.env.AWS_REGION === 'us-east-1') {\n\t\t\treturn this.s3();\n\t\t}\n\t\telse {\n\t\t\tif (this._s3USEast1) {\n\t\t\t\treturn this._s3USEast1;\n\t\t\t}\n\t\t\t\n\t\t\tthis._s3USEast1 = new S3({\n\t\t\t\tcredentials: {\n\t\t\t\t\taccessKeyId: process.env.AWS_ACCESS_KEY,\n\t\t\t\t\tsecretAccessKey: process.env.AWS_SECRET_ACCESS_KEY\n\t\t\t\t},\n\t\t\t\tregion: 'us-east-1',\n\t\t\t\tapiVersion: '2006-03-01'\n\t\t\t});\n\t\n\t\t\treturn this._s3USEast1;\n\t\t}\n\t}\n}\n\nexport class MethodManager {\n\tprivate _mainServer: ResolveIOMainServer;\n\tprivate _websocketManager: WebSocketManager;\n\tpublic _methods: MethodModel = {};\n\tprivate _mailer: nodemailer.Transporter;\n\tprivate _aws: AWS;\n\tprivate serverConfig;\n\tprivate clientDir;\n\tprivate _monitorManagerFunction: MonitorManagerFunction;\n\tprivate _isWorkersEnabled = false;\n\tprivate _isWorkerInstance = false;\n\n\tprivate emailQueue: Set<string> = new Set(); // Set to store pending email IDs\n\tprivate isEmailProcessing = false;\n\n\tprivate _debugCallMethodInternalHits = 0;\n\tprivate _debugCallMethodHits = 0;\n\tprivate _debugCallMethodCronJobHits = 0;\n\tprivate _debugSendQueueHits = 0;\n\n\tconstructor(mainServer, serverConfig, clientDir, monitorManagerFunction: MonitorManagerFunction, isWorkersEnabled, isWorkerInstance) {\n\t\tthis._mainServer = mainServer;\n\t\tthis._websocketManager = this._mainServer.getWebSocketManager();\n\t\tthis.serverConfig = serverConfig;\n\t\tthis.clientDir = clientDir;\n\t\tthis._monitorManagerFunction = monitorManagerFunction;\n\t\tthis._isWorkersEnabled = isWorkersEnabled;\n\t\tthis._isWorkerInstance = isWorkerInstance;\n\n\t\t// Fixtures\n\t\tif (process.env.IS_WORKERS_ENABLED === 'false' || (process.env.IS_WORKER_INSTANCE === 'true' && process.env.WORKER_INDEX === '0')) {\n\t\t\tif (!process.env.NODE_APP_INSTANCE || process.env.NODE_APP_INSTANCE === '0') {\n\t\t\t\tsetTimeout(() => {\n\t\t\t\t\tconsole.log(new Date(), 'Start Server Fixture');\n\t\t\t\t\tloadServerInit(serverConfig);\n\t\t\t\t\tconsole.log(new Date(), 'End Server Fixture');\n\t\t\t\t}, 5000);\n\t\t\t}\n\t\t}\n\n\t\tloadServerCronJobs();\n\n\t\t// Methods\n\t\tloadAccountMethods(this);\n\t\tloadAWSMethods(this);\n\t\tloadCollectionMethods(this);\n\t\tloadCounterMethods(this);\n\t\tloadLogMethods(this);\n\t\tloadPDFMethods(this);\n\t\tloadCronJobMethods(this);\n\t\tloadFlagMethods(this);\n\t\tloadFlagUpdatesMethods(this);\n\t\tloadReportBuilderMethods(this);\n\t\tloadSupportMethods(this);\n\t\tloadMonitorMethods(this);\n\n\t\tthis._aws = new AWS(serverConfig);\n\n\t\tif (mainServer.sesMail) {\n\t\t\tthis._mailer = nodemailer.createTransport(sesTransport({\n\t\t\t\taccessKeyId: process.env.AWS_ACCESS_KEY,\n\t\t\t\tsecretAccessKey: process.env.AWS_SECRET_ACCESS_KEY,\n\t\t\t\tregion: process.env.AWS_SES_REGION\n\t\t\t}));\n\t\t}\n\t\telse {\n\t\t\tthis._mailer = nodemailer.createTransport({\n\t\t\t\thost: this.serverConfig['MAIL_HOST'], // 'smtp.office365.com', // Office 365 server\n\t\t\t\tport: this.serverConfig['MAIL_PORT'], //587, // secure SMTP\n\t\t\t\tsecure: false, // false for TLS - as a boolean not string - but the default is false so just remove this completely\n\t\t\t\tauth: {\n\t\t\t\t\tuser: this.serverConfig['MAIL_USERNAME'],\n\t\t\t\t\tpass: this.serverConfig['MAIL_PASSWORD']\n\t\t\t\t},\n\t\t\t\ttls: {\n\t\t\t\t\tciphers: 'SSLv3'\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tsetInterval(() => {\n\t\t\tif (this._mainServer.getSubscriptionManager() && this._mainServer.getSubscriptionManager().getEnableDebug()) {\n\t\t\t\tconsole.log(new Date(), 'Method Manager', 'Send Queue Hits', this._debugSendQueueHits);\n\t\t\t\tconsole.log(new Date(), 'Method Manager', 'Call Method Internal Hits', this._debugCallMethodInternalHits);\n\t\t\t\tconsole.log(new Date(), 'Method Manager', 'Call Method Hits', this._debugCallMethodHits);\n\t\t\t\tconsole.log(new Date(), 'Method Manager', 'Call Method Cron Hits', this._debugCallMethodCronJobHits);\n\t\t\t}\n\n\t\t\tthis._debugCallMethodInternalHits = 0;\n\t\t\tthis._debugCallMethodHits = 0;\n\t\t\tthis._debugCallMethodCronJobHits = 0;\n\t\t\tthis._debugSendQueueHits = 0;\n\t\t}, 60000);\n\n\t\tif (!this._isWorkersEnabled || this._isWorkerInstance) {\n\t\t\tthis.setupEmailWatcher();\n\t\t}\n\t}\n\n\tpublic getMainServer() {\n\t\treturn this._mainServer;\n\t}\n\n\t// Add methods to private methods object\n\tpublic methods(method: MethodModel) {\n\t\tthis._methods = Object.assign(this._methods, method);\n\t}\n\n\tpublic callMethodCron(method: string, ...methodData: any[]) {\n\t\tthis._debugCallMethodCronJobHits += 1;\n\n\t\tif (!this._methods[method]) {\n\t\t\tconsole.log('No Method: ' + method);\n\n\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Method: ' + method);\n\n\t\t\treturn;\n\t\t}\n\t\t\n\t\tif ((methodData.length > 1 || methodData[0]) && !this._methods[method].skipValidation) {\n\t\t\tif (!this._methods[method].check) {\n\t\t\t\tconsole.error(new Date(), 'No Check Function For Method ' + method);\n\n\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Check Function For Method ' + method);\n\t\n\t\t\t\treturn;\n\t\t\t}\n\t\t\telse if (!this._methods[method].check._schema) {\n\t\t\t\tconsole.error(new Date(), 'No Check Schema For Method ' + method);\n\n\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Check Function For Method ' + method);\n\t\n\t\t\t\treturn;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tlet valObj = {};\n\t\t\t\tlet valKeys = Object.keys(this._methods[method].check._schema);\n\n\t\t\t\tlet rootKeys = valKeys.filter(a => !a.includes('.'));\n\t\t\t\t\n\t\t\t\tfor (let i = 0; i < methodData.length; i++) {\n\t\t\t\t\tvalObj[rootKeys[i]] = methodData[i];\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tthis._methods[method].check.validate(valObj);\n\t\t\t\t}\n\t\t\t\tcatch (errors) {\n\t\t\t\t\tif (errors) {\n\t\t\t\t\t\tconsole.error(new Date(), 'Error in Method Check (' + method + ')', errors);\n\n\t\t\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'Match Error On Method ' + method + '\\n\\nData Being Checked\\n' + JSON.stringify(valObj, null, 2) + '\\n\\nErrors\\n' + JSON.stringify(errors, null, 2));\n\t\t\t\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tlet promise = null;\n\n\t\t// Check if workers are enabled and this is not a worker instance\n\t\tif (this._isWorkersEnabled && \n\t\t\t!this._isWorkerInstance && \n\t\t\tmethod !== 'insertSubscriptionLog' && \n\t\t\tmethod !== 'countQuery' &&\n\t\t\tmethod !== 'incCounter' && \n\t\t\tmethod !== 'supportCreateBillingUser' &&\n\t\t\tmethod !== 'find' &&\n\t\t\tmethod !== 'insertDocument' &&\n\t\t\tmethod !== 'countWithQuery' &&\n\t\t\tmethod !== 'findOne' &&\n\t\t\tmethod !== 'updateDocumentProps' &&\n\t\t\tmethod !== 'findWithOptions' &&\n\t\t\tmethod !== 'getSignedUrl' &&\n\t\t\tmethod !== 'updateDocument' &&\n\t\t\tmethod !== 'insertErrorLog' &&\n\t\t\tmethod !== 'getSignedUrls' &&\n\t\t\tmethod !== 'removeDocument' &&\n\t\t\tmethod !== 'getSignedUrlWithId' &&\n\t\t\tmethod !== 'incorrectUser' &&\n\t\t\tmethod !== 'reloadWS' &&\n\t\t\tmethod !== 'reconnectWS' &&\n\t\t\tmethod !== 'disconnectWS'\n\t\t) {\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Cron Method', method, '', '', methodData);\n\n\t\t\t// Push task to worker-task-reqs collection\n\t\t\tconst taskId = objectIdHexString();\n\n\t\t\t// Watch worker-task-resps for result\n\t\t\tpromise = new Promise((resolve, reject) => {\n\t\t\t\tlet changeStream = WorkerTaskResponses.watchCollection([{ $match: { 'fullDocument.id_request': taskId } }], { fullDocument: 'updateLookup' });\n\n\t\t\t\tchangeStream.on('change', change => {\n\t\t\t\t\tif (change.operationType === 'insert') {\n\t\t\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\n\t\t\t\t\t\tconst taskResponse = change.fullDocument;\n\n\t\t\t\t\t\tif (taskResponse.has_error) {\n\t\t\t\t\t\t\treject(taskResponse.data); // Task failed, return error\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tresolve(taskResponse.data); // Task succeeded, return result\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tchangeStream.close(); // Close the cursor after receiving response\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\tchangeStream.on('error', error => {\n\t\t\t\t\tconsole.error('Error watching worker responses:', error);\n\t\t\t\t\treject(error);\n\t\t\t\t\tchangeStream.close();\n\t\t\t\t});\n\t\t\t});\n\n\t\t\tWorkerTaskRequests.create({\n\t\t\t\t_id: taskId,\n\t\t\t\tmethod: method,\n\t\t\t\tparams: methodData,\n\t\t\t\tstatus: 'pending',\n\t\t\t\tid_user: this['id_user'],\n\t\t\t\tuser: this['user'],\n\t\t\t\tid_ws: this['id_socket']\n\t\t\t});\n\t\t}\n\t\telse {\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Cron Method', method, '', '', methodData);\n\t\t\tpromise = this._methods[method].function.call(Object.assign({}, this, MethodManager.prototype, {id_user: '', user: '', id_ws: ''}), ...methodData)\n\t\t\t.then(res => {\n\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\t\t\treturn res;\n\t\t\t}, methodErrs => {\n\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'Error Detected During Method ' + method + ' - (callMethodCron)\\n\\nData \\n' + JSON.stringify(methodData, null, 2) + '\\n\\nErrors\\n' + JSON.stringify(methodErrs, null, 2));\n\t\t\t\treturn methodErrs;\n\t\t\t});\n\t\t}\n\n\t\treturn promise;\n\t}\n\n\t// Call/run method (Emit on Socket)\n\tpublic callMethod(id_methodLatency: string, ws: WebSocket, messageDate: Date, messageId: number, method: string, ...methodData: any[]) {\n\t\tthis._debugCallMethodHits += 1;\n\n\t\tif (!this._methods[method]) {\n\t\t\tconsole.log('No Method: ' + method);\n\n\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Method: ' + method);\n\n\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\tmessageId: messageId,\n\t\t\t\thasError: true,\n\t\t\t\tdata: 'Internal Error'\n\t\t\t};\n\n\t\t\tthis.sendWS(ws, new Date(), method, methodData, serverRes);\n\n\t\t\tif (id_methodLatency) {\n\t\t\t\tLogMethodLatencies.deleteOne({_id: id_methodLatency});\n\t\t\t}\n\n\t\t\treturn;\n\t\t}\n\n\t\tif ((methodData.length > 1 || methodData[0]) && !this._methods[method].skipValidation) {\n\t\t\tif (!this._methods[method].check) {\n\t\t\t\tconsole.error(new Date(), 'No Check Function For Method ' + method);\n\n\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Check Function For Method ' + method);\n\t\t\t\t\n\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\thasError: true,\n\t\t\t\t\tdata: 'Internal Error'\n\t\t\t\t};\n\n\t\t\t\tthis.sendWS(ws, messageDate, method, methodData, serverRes);\n\n\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\tLogMethodLatencies.deleteOne({ _id: id_methodLatency });\n\t\t\t\t}\n\n\t\t\t\treturn;\n\t\t\t}\n\t\t\telse if (!this._methods[method].check._schema) {\n\t\t\t\tconsole.error(new Date(), 'No Check Schema For Method ' + method);\n\n\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Check Schema For Method ' + method);\n\t\t\t\t\n\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\thasError: true,\n\t\t\t\t\tdata: 'Internal Error'\n\t\t\t\t};\n\n\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\tLogMethodLatencies.deleteOne({ _id: id_methodLatency });\n\t\t\t\t}\n\n\t\t\t\tthis.sendWS(ws, messageDate, method, methodData, serverRes);\n\n\t\t\t\treturn;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tlet valObj = {};\n\t\t\t\tlet valKeys = Object.keys(this._methods[method].check._schema);\n\n\t\t\t\tlet rootKeys = valKeys.filter(a => !a.includes('.'));\n\n\t\t\t\tfor (let i = 0; i < methodData.length; i++) {\n\t\t\t\t\tvalObj[rootKeys[i]] = methodData[i];\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tthis._methods[method].check.validate(valObj);\n\t\t\t\t}\n\t\t\t\tcatch (errors) {\n\t\t\t\t\tif (errors) {\n\t\t\t\t\t\tconsole.error(new Date(), 'Error in Method Check (' + method + ')', errors);\n\n\t\t\t\t\t\tif (method !== 'processAirdropDistribution') {\n\t\t\t\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'Match Error On Method ' + method + '\\n\\nData Being Checked\\n' + JSON.stringify(valObj, null, 2) + '\\n\\nErrors\\n' + JSON.stringify(errors, null, 2));\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\t\t\thasError: true,\n\t\t\t\t\t\t\tdata: 'Internal Error'\n\t\t\t\t\t\t};\n\n\t\t\t\t\t\tthis.sendWS(ws, messageDate, method, methodData, serverRes);\n\n\t\t\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\t\t\tLogMethodLatencies.deleteOne({ _id: id_methodLatency });\n\t\t\t\t\t\t}\n\t\t\t\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t// Check if workers are enabled and this is not a worker instance\n\t\tif (this._isWorkersEnabled && \n\t\t\t!this._isWorkerInstance && \n\t\t\tmethod !== 'insertSubscriptionLog' && \n\t\t\tmethod !== 'countQuery' && method !== 'incCounter' && \n\t\t\tmethod !== 'supportCreateBillingUser' &&\n\t\t\tmethod !== 'find' &&\n\t\t\tmethod !== 'insertDocument' &&\n\t\t\tmethod !== 'countWithQuery' &&\n\t\t\tmethod !== 'findOne' &&\n\t\t\tmethod !== 'updateDocumentProps' &&\n\t\t\tmethod !== 'findWithOptions' &&\n\t\t\tmethod !== 'getSignedUrl' &&\n\t\t\tmethod !== 'updateDocument' &&\n\t\t\tmethod !== 'insertErrorLog' &&\n\t\t\tmethod !== 'getSignedUrls' &&\n\t\t\tmethod !== 'removeDocument' &&\n\t\t\tmethod !== 'getSignedUrlWithId' &&\n\t\t\tmethod !== 'incorrectUser' &&\n\t\t\tmethod !== 'reloadWS' &&\n\t\t\tmethod !== 'reconnectWS' &&\n\t\t\tmethod !== 'disconnectWS'\n\t\t) {\t\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Method', method, ws['user'] || '', ws['id_socket'] || '', methodData);\n\t\t\t\n\t\t\t// Push task to worker-task-reqs collection\n\t\t\tconst taskId = objectIdHexString();\n\n\t\t\tlet changeStream = WorkerTaskResponses.watchCollection([{ $match: { 'fullDocument.id_request': taskId } }], { fullDocument: 'updateLookup' });\n\n\t\t\tchangeStream.on('change', async change => {\n\t\t\t\tif (change.operationType === 'insert') {\n\t\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\n\t\t\t\t\tconst taskResponse = change.fullDocument;\n\n\t\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\t\thasError: taskResponse.has_error,\n\t\t\t\t\t\tdata: taskResponse.data\n\t\t\t\t\t};\n\n\t\t\t\t\tthis.sendWS(ws, new Date(), method, methodData, serverRes);\n\n\t\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\t\tlet latency = await LogMethodLatencies.findById(id_methodLatency);\n\n\t\t\t\t\t\tif (latency) {\n\t\t\t\t\t\t\tLogMethodLatencies.updateOne({_id: id_methodLatency}, {$set: {date_end: new Date(), latency_ms: moment().diff(moment(latency.date_start), 'milliseconds', true)}});\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tchangeStream.close(); // Close the cursor after receiving response\n\t\t\t\t}\n\t\t\t});\n\n\t\t\tchangeStream.on('error', error => {\n\t\t\t\tconsole.error('Error watching worker responses:', error);\n\t\t\t\tchangeStream.close();\n\t\t\t});\n\n\t\t\tWorkerTaskRequests.create({\n\t\t\t\t_id: taskId,\n\t\t\t\tmethod: method,\n\t\t\t\tparams: methodData,\n\t\t\t\tstatus: 'pending',\n\t\t\t\tid_user: ws['id_user'],\n\t\t\t\tuser: ws['user'],\n\t\t\t\tid_ws: ws['id_socket']\n\t\t\t});\n\t\t}\n\t\telse {\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Method', method, ws['user'] || '', ws['id_socket'] || '', methodData);\n\t\t\tthis._methods[method].function.call(Object.assign({}, this, MethodManager.prototype, {id_user: ws['id_user'], user: ws['user'], id_ws: ws['id_socket']}), ...methodData)\n\t\t\t.then(async (res) => {\n\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\n\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\thasError: false,\n\t\t\t\t\tdata: res\n\t\t\t\t};\n\n\t\t\t\tthis.sendWS(ws, messageDate, method, methodData, serverRes);\n\n\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\tlet latency = await LogMethodLatencies.findById(id_methodLatency);\n\n\t\t\t\t\tif (latency) {\n\t\t\t\t\t\tLogMethodLatencies.updateOne({_id: id_methodLatency}, {$set: {date_end: new Date(), latency_ms: moment().diff(moment(latency.date_start), 'milliseconds', true)}});\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\terr => {\n\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\thasError: true,\n\t\t\t\t\tdata: err\n\t\t\t\t};\n\n\t\t\t\tthis.sendWS(ws, messageDate, method, methodData, serverRes);\n\n\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\tLogMethodLatencies.deleteOne({_id: id_methodLatency});\n\t\t\t\t}\n\n\t\t\t\tif (method !== 'processAirdropDistribution') {\n\t\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'Error Detected During Method ' + method + ' - (callMethod)\\n\\nData \\n' + JSON.stringify(methodData, null, 2) + '\\n\\nErrors\\n' + JSON.stringify(err, null, 2));\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n\n\t// Call/run method internal (No Emit on Socket)\n\tpublic callMethodInternal(method: string, ...methodData: any[]): Promise<any> {\n\t\tthis._debugCallMethodInternalHits += 1;\n\n\t\tif (!this._methods[method]) {\n\t\t\tconsole.log('No Method: ' + method);\n\t\t\treturn null;\n\t\t}\n\n\t\tif ((methodData.length > 1 || (methodData[0] && typeof methodData[0] !== 'function')) && !this._methods[method].skipValidation) {\n\t\t\tif (!this._methods[method].check) {\n\t\t\t\tconsole.error(new Date(), 'No Check Function For Method ' + method);\n\t\t\t\treturn null;\n\t\t\t}\n\t\t\telse if (!this._methods[method].check._schema) {\n\t\t\t\tconsole.error(new Date(), 'No Check Schema For Method ' + method);\n\t\t\t\treturn null;\n\t\t\t}\n\t\t}\n\n\t\tif (method !== 'insertSubscriptionLog' && method !== 'getDataURIfromURL' && method !== 'processAirdropDistribution' && method !== 'incCounter' && method !== 'supportCreateBillingUser' && method !== 'countCollectionWithQuery') {\n\t\t\tLogs.insertOne({\n\t\t\t\t_id: objectIdHexString(),\n\t\t\t\ttype: 'callMethodInternal',\n\t\t\t\tcollection: '',\n\t\t\t\tid_document: '',\n\t\t\t\tpayload: getBinarySize(JSON.stringify([methodData])) < 200000 ? JSON.stringify([methodData], null, 2) : 'Too Big',\n\t\t\t\tmethod: method,\n\t\t\t\tid_user: this['id_user'] || '',\n\t\t\t\tuser: this['user'] || '',\n\t\t\t\tmessageId: 0,\n\t\t\t\troute: ''\n\t\t\t});\n\t\t}\n\n\t\tlet functionMethodData = typeof(methodData[methodData.length - 1]) === 'function' ? methodData.slice(0, -1) : methodData;\n\t\tlet promise = null;\n\n\t\tif (this._isWorkersEnabled && \n\t\t\t!this._isWorkerInstance && \n\t\t\tmethod !== 'insertSubscriptionLog' && \n\t\t\tmethod !== 'countQuery' && method !== 'incCounter' && \n\t\t\tmethod !== 'supportCreateBillingUser' &&\n\t\t\tmethod !== 'find' &&\n\t\t\tmethod !== 'insertDocument' &&\n\t\t\tmethod !== 'countWithQuery' &&\n\t\t\tmethod !== 'findOne' &&\n\t\t\tmethod !== 'updateDocumentProps' &&\n\t\t\tmethod !== 'findWithOptions' &&\n\t\t\tmethod !== 'getSignedUrl' &&\n\t\t\tmethod !== 'updateDocument' &&\n\t\t\tmethod !== 'insertErrorLog' &&\n\t\t\tmethod !== 'getSignedUrls' &&\n\t\t\tmethod !== 'removeDocument' &&\n\t\t\tmethod !== 'getSignedUrlWithId' &&\n\t\t\tmethod !== 'incorrectUser' &&\n\t\t\tmethod !== 'reloadWS' &&\n\t\t\tmethod !== 'reconnectWS' &&\n\t\t\tmethod !== 'disconnectWS'\n\t\t) {\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Internal Method', method, this['user'] || '', '', functionMethodData);\n\n\t\t\t// Push task to worker-task-reqs collection\n\t\t\tconst taskId = objectIdHexString();\n\n\t\t\t// Watch worker-task-resps for result\n\t\t\tpromise = new Promise((resolve, reject) => {\n\t\t\t\tlet changeStream = WorkerTaskResponses.watchCollection([{ $match: { 'fullDocument.id_request': taskId } }], { fullDocument: 'updateLookup' });\n\n\t\t\t\tchangeStream.on('change', (change) => {\n\t\t\t\t\tif (change.operationType === 'insert') {\n\t\t\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\n\t\t\t\t\t\tconst taskResponse = change.fullDocument;\n\n\t\t\t\t\t\tif (taskResponse.has_error) {\n\t\t\t\t\t\t\treject(taskResponse.data); // Task failed, return error\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tresolve(taskResponse.data); // Task succeeded, return result\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tchangeStream.close(); // Close the cursor after receiving response\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\tchangeStream.on('error', error => {\n\t\t\t\t\tconsole.error('Error watching worker responses:', error);\n\t\t\t\t\treject(error);\n\t\t\t\t\tchangeStream.close();\n\t\t\t\t});\n\t\t\t});\n\n\t\t\tWorkerTaskRequests.create({\n\t\t\t\t_id: taskId,\n\t\t\t\tmethod: method,\n\t\t\t\tparams: functionMethodData,\n\t\t\t\tstatus: 'pending',\n\t\t\t\tid_user: this['id_user'],\n\t\t\t\tuser: this['user'],\n\t\t\t\tid_ws: this['id_socket']\n\t\t\t});\n\t\t}\n\t\telse {\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Internal Method', method, this['user'] || '', '', functionMethodData);\n\t\t\tpromise = this._methods[method].function.call(Object.assign({}, this, MethodManager.prototype), ...functionMethodData)\n\t\t\t\t.then(res => {\n\t\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\t\t\t\treturn res;\n\t\t\t\t},\n\t\t\t\tmethodErrs => {\n\t\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'Error Detected During Method ' + method + ' - (callMethodInternal)\\n\\nData \\n' + JSON.stringify(methodData, null, 2) + '\\n\\nErrors\\n' + JSON.stringify(methodErrs, null, 2));\n\t\t\t\t\treturn methodErrs;\n\t\t\t\t});\n\t\t}\n\n\t\tif (methodData[methodData.length - 1] && typeof(methodData[methodData.length - 1]) === 'function') {\n\t\t\tpromise.then(res => methodData[methodData.length - 1](null, res), err => methodData[methodData.length - 1](err, null));\n\t\t}\n\t\t\n\t\treturn promise;\n\t}\n\n\tprivate sendWS(ws: WebSocket, messageDate: Date, method: string, methodData: any[], data: ServerResponseModel) {\n\t\tthis._websocketManager.send(ws, data);\n\n\t\tif (\n\t\t\tmethod !== 'reportBuilderGetResults' &&\n\t\t\tmethod !== 'reportBuilderGetDistinctValue' &&\n\t\t\tmethod !== 'reportBuilderBuildTree' &&\n\t\t\tmethod !== 'generatePDF' &&\n\t\t\tmethod !== 'getWOOfflineData' &&\n\t\t\tmethod !== 'countQuery' &&\n\t\t\tmethod !== 'countWithQuery' &&\n\t\t\tmethod !== 'countCollectionWithQuery' &&\n\t\t\tmethod !== 'find' &&\n\t\t\tmethod !== 'findOne' &&\n\t\t\tmethod !== 'findWithOptions' &&\n\t\t\tmethod !== 'uploadFileAndSave' &&\n\t\t\tmethod !== 'getDrivers' &&\n\t\t\tmethod !== 'processAirdropDistribution'\n\t\t) {\n\t\t\tLogs.insertOne({\n\t\t\t\t_id: objectIdHexString(),\n\t\t\t\ttype: 'client-response',\n\t\t\t\tcollection: '',\n\t\t\t\tid_document: '',\n\t\t\t\tpayload:\n\t\t\t\t\tgetBinarySize(JSON.stringify([methodData, data])) < 200000\n\t\t\t\t\t\t? JSON.stringify([methodData, data], null, 2)\n\t\t\t\t\t\t: 'Too Big',\n\t\t\t\tmethod: method,\n\t\t\t\tid_user: ws['id_user'] || '',\n\t\t\t\tuser: ws['user'] || '',\n\t\t\t\tmessageId: data.messageId,\n\t\t\t\troute: ''\n\t\t\t});\n\t\t}\n\n\t\t// MethodResponses.create({\n\t\t// \t_id: objectIdHexString(),\n\t\t// \t__v: 0,\n\t\t// \tid_user: ws['id_user'] || '',\n\t\t// \tmessage_id: data.messageId,\n\t\t// \tresponse: getBinarySize(JSON.stringify(data)) < 200000 ? data : { error: 'Too Big' },\n\t\t// \tmethod: method,\n\t\t// \tdate: messageDate\n\t\t// });\n\t}\n\n\tasync setupEmailWatcher() {\n\t\tconst changeStream = EmailHistories.watchCollection([]);\n\n\t\tchangeStream.on('change', async (change) => {\n\t\t\tif (change.operationType === 'insert' && change.fullDocument && change.fullDocument.status === 'pending') {\n\t\t\t\tthis.emailQueue.add(change.fullDocument._id.toString());\n\t\t\t\tthis.tryProcessEmail();\n\t\t\t}\n\t\t\telse if (change.operationType === 'update' || change.operationType === 'replace') {\n\t\t\t\tconst updatedEmail = change.fullDocument;\n\t\t\t\tif (updatedEmail && updatedEmail.status !== 'pending' && this.emailQueue.has(updatedEmail._id.toString())) {\n\t\t\t\t\tthis.emailQueue.delete(updatedEmail._id.toString());\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t\t.on('error', err => {\n\t\t\tconsole.error('Email history changestream error', err);\n\t\t\tchangeStream.close();\n\t\t})\n\t\t.on('close', () => {\n\t\t\tthis.setupEmailWatcher();\n\t\t});\n\n\t\tawait this.loadPendingEmails();\n\t}\n\n\tasync loadPendingEmails() {\n\t\t// Load any pending emails on startup\n\t\tconst pendingEmails = await EmailHistories.find({ status: 'pending' }, {sort: {_id: 1}});\n\t\tfor (const email of pendingEmails) {\n\t\t\tthis.emailQueue.add(email._id.toString());\n\t\t}\n\t\t// Try to process emails\n\t\tthis.tryProcessEmail();\n\t}\n\n\tasync tryProcessEmail() {\n\t\tif (this.isEmailProcessing || this.emailQueue.size === 0) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tthis.isEmailProcessing = true;\n\t\n\t\ttry {\n\t\t\twhile (this.emailQueue.size > 0) {\n\t\t\t\tconst emailId = this.emailQueue.values().next().value;\n\t\t\t\tthis.emailQueue.delete(emailId);\n\t\n\t\t\t\tconst emailHistory = await EmailHistories.findOneAndUpdate(\n\t\t\t\t\t{\n\t\t\t\t\t\t_id: emailId,\n\t\t\t\t\t\tstatus: 'pending',\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t$set: { status: 'processing', processingAt: new Date() },\n\t\t\t\t\t}\n\t\t\t\t);\n\t\n\t\t\t\tif (!emailHistory) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\n\t\t\t\t// Fetch and process attachments\n\t\t\t\tif (emailHistory.attachments && emailHistory.attachments.length > 0) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tfor (let att of emailHistory.attachments) {\n\t\t\t\t\t\t\tif (att.path && att.path.startsWith('http')) {\n\t\t\t\t\t\t\t\tconst response = await fetch(att.path);\n\t\t\t\t\t\t\t\tif (!response.ok) {\n\t\t\t\t\t\t\t\t\tthrow new Error(`Failed to fetch attachment: ${att.path}`);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tconst arrayBuffer = await response.arrayBuffer();\n\t\t\t\t\t\t\t\tconst buffer = Buffer.from(arrayBuffer);\n\t\n\t\t\t\t\t\t\t\t// Check the size of the attachment\n\t\t\t\t\t\t\t\tconst maxSize = 20 * 1024 * 1024; // 20MB in bytes\n\t\t\t\t\t\t\t\tif (buffer.length <= maxSize) {\n\t\t\t\t\t\t\t\t\t// Attachment is within size limits, include it\n\t\t\t\t\t\t\t\t\tatt.content = buffer;\n\t\t\t\t\t\t\t\t\tdelete att.path;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tcatch (err) {\n\t\t\t\t\t\tconsole.error('Failed to fetch attachment:', err);\n\t\n\t\t\t\t\t\tawait EmailHistories.updateOne(\n\t\t\t\t\t\t\t{ _id: emailHistory._id },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$set: {\n\t\t\t\t\t\t\t\t\tstatus: 'failed',\n\t\t\t\t\t\t\t\t\terror: typeof err === 'string' ? err : this.safeStringify(err),\n\t\t\t\t\t\t\t\t\tcompletedAt: new Date(),\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t);\n\t\t\t\t\t\t// Skip to the next email\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\n\t\t\t\t// Prepare email options\n\t\t\t\tconst mailOptions: any = {\n\t\t\t\t\treplyTo: emailHistory.reply_to || (this.serverConfig['MAIL_REPLY_TO'] || undefined),\n\t\t\t\t\tfrom: emailHistory.send_from || this.serverConfig.MAIL_FROM,\n\t\t\t\t\tto: emailHistory.email,\n\t\t\t\t\tsubject:\n\t\t\t\t\t\t(this.serverConfig['ROOT_URL'].match(/https:\\/\\/dev\\./) ||\n\t\t\t\t\t\tthis.serverConfig['ROOT_URL'].match(/https:\\/\\/www\\.dev\\./)\n\t\t\t\t\t\t\t? '(DEV SERVER) - '\n\t\t\t\t\t\t\t: '') + emailHistory.subject,\n\t\t\t\t\ttext: typeof emailHistory.text === 'string' ? emailHistory.text : '',\n\t\t\t\t\thtml: typeof emailHistory.html === 'string' ? emailHistory.html : '',\n\t\t\t\t\tattachments: emailHistory.attachments || [],\n\t\t\t\t};\n\t\n\t\t\t\t// Process attachments before sending\n\t\t\t\tif (mailOptions.attachments && mailOptions.attachments.length > 0) {\n\t\t\t\t\tmailOptions.attachments = mailOptions.attachments.map((att) => {\n\t\t\t\t\t\tconst newAtt = { ...att };\n\t\t\t\t\t\t// Handle attachments stored as BinData or Buffer\n\t\t\t\t\t\tif (newAtt.content && typeof newAtt.content === 'object' && !(newAtt.content instanceof Buffer)) {\n\t\t\t\t\t\t\t// Convert MongoDB's Binary data to Buffer\n\t\t\t\t\t\t\tif (newAtt.content._bsontype === 'Binary' && newAtt.content.sub_type === 0) {\n\t\t\t\t\t\t\t\tnewAtt.content = Buffer.from(newAtt.content.buffer);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// Handle other types if necessary\n\t\t\t\t\t\t\t\tnewAtt.content = Buffer.from(newAtt.content);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Handle attachments stored as Base64 strings\n\t\t\t\t\t\telse if (typeof newAtt.content === 'string' && newAtt.encoding === 'base64') {\n\t\t\t\t\t\t\tnewAtt.content = Buffer.from(newAtt.content, 'base64');\n\t\t\t\t\t\t\tdelete newAtt.encoding;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Ensure the content is a Buffer\n\t\t\t\t\t\telse if (typeof newAtt.content === 'string') {\n\t\t\t\t\t\t\tnewAtt.content = Buffer.from(newAtt.content);\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn newAtt;\n\t\t\t\t\t});\n\t\t\t\t}\n\t\n\t\t\t\t// Send the email\n\t\t\t\tawait new Promise<void>((resolve) => {\n\t\t\t\t\tthis._mailer.sendMail(mailOptions, async (err, info) => {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tif (err) {\n\t\t\t\t\t\t\t\tconsole.error('Failed to send email:', err);\n\t\t\t\t\t\t\t\tEmailHistories.updateOne(\n\t\t\t\t\t\t\t\t\t{ _id: emailHistory._id },\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t$set: {\n\t\t\t\t\t\t\t\t\t\t\tstatus: 'failed',\n\t\t\t\t\t\t\t\t\t\t\terror: typeof err === 'string' ? err : this.safeStringify(err),\n\t\t\t\t\t\t\t\t\t\t\tcompletedAt: new Date(),\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif (emailHistory.email === 'dev@resolveio.com') {\n\t\t\t\t\t\t\t\t\tEmailHistories.deleteOne({ _id: emailHistory._id });\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tEmailHistories.updateOne(\n\t\t\t\t\t\t\t\t\t\t{ _id: emailHistory._id },\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t$set: {\n\t\t\t\t\t\t\t\t\t\t\t\tstatus: 'completed',\n\t\t\t\t\t\t\t\t\t\t\t\tcompletedAt: new Date(),\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcatch (error) {\n\t\t\t\t\t\t\tconsole.error('Error in sendMail callback:', error);\n\t\t\t\t\t\t\tEmailHistories.updateOne(\n\t\t\t\t\t\t\t\t{ _id: emailHistory._id },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$set: {\n\t\t\t\t\t\t\t\t\t\tstatus: 'failed',\n\t\t\t\t\t\t\t\t\t\terror: typeof error === 'string' ? error : this.safeStringify(error),\n\t\t\t\t\t\t\t\t\t\tcompletedAt: new Date(),\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t} finally {\n\t\t\t\t\t\t\tresolve(); // Continue processing the queue\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t});\n\t\n\t\t\t\t// Wait for at least one second before sending the next email\n\t\t\t\tawait new Promise((resolve) => setTimeout(resolve, 1000));\n\t\t\t}\n\t\t}\n\t\tcatch (err) {\n\t\t\tconsole.error('Error processing email queue:', err);\n\t\t}\n\t\tfinally {\n\t\t\tthis.isEmailProcessing = false;\n\t\t\t// Check if new emails arrived while processing\n\t\t\tif (this.emailQueue.size > 0) {\n\t\t\t\tthis.tryProcessEmail();\n\t\t\t}\n\t\t}\n\t}\n\n\tsafeStringify(obj)\n\t{\n\t\ttry\n\t\t{\n\t\t\treturn JSON.stringify(obj, this.getCircularReplacer());\n\t\t}\n\t\tcatch (e)\n\t\t{\n\t\t\treturn `Error in JSON stringifying: ${e.message}`;\n\t\t}\n\t}\n\n\tgetCircularReplacer()\n\t{\n\t\tconst seen = new WeakSet();\n\t\treturn (key, value) =>\n\t\t{\n\t\t\tif (typeof value === \"object\" && value !== null)\n\t\t\t{\n\t\t\t\tif (seen.has(value))\n\t\t\t\t{\n\t\t\t\t\treturn \"[Circular]\";\n\t\t\t\t}\n\t\t\t\tseen.add(value);\n\t\t\t}\n\t\t\treturn value;\n\t\t};\n\t}\n\n\tpublic sendEmail(\n\t\tsendTo: string,\n\t\tsubject: string,\n\t\ttext?: string,\n\t\thtml?: string,\n\t\tattachments?: any[],\n\t\tsend_from?: string,\n\t\treply_to?: string,\n\t\tlocal_override = false\n\t) {\n\t\treturn new Promise(async (resolve, reject) => {\n\t\t\t// Modify sendTo in development environments\n\t\t\tif (\n\t\t\t\t(this.serverConfig['ROOT_URL'].match(/https:\\/\\/dev\\./) ||\n\t\t\t\t\tthis.serverConfig['ROOT_URL'].match(/https:\\/\\/www\\.dev\\./) ||\n\t\t\t\t\tthis.serverConfig['ROOT_URL'] === 'http://localhost:4200') &&\n\t\t\t\t!sendTo.match(/\\@resolveio\\.com/)\n\t\t\t) {\n\t\t\t\tsendTo = 'dev@resolveio.com';\n\t\t\t}\n\t\n\t\t\tif (sendTo) {\n\t\t\t\tif (\n\t\t\t\t\tthis.serverConfig['ROOT_URL'] !== 'http://localhost:4200' ||\n\t\t\t\t\tlocal_override\n\t\t\t\t) {\n\t\t\t\t\tif (!attachments) {\n\t\t\t\t\t\tattachments = [];\n\t\t\t\t\t}\n\t\n\t\t\t\t\tif (!Array.isArray(attachments)) {\n\t\t\t\t\t\tattachments = [attachments];\n\t\t\t\t\t}\n\t\n\t\t\t\t\t// Process attachments before saving\n\t\t\t\t\tattachments = attachments.map((att) => {\n\t\t\t\t\t\tconst newAtt = { ...att };\n\t\t\t\t\t\tif (Buffer.isBuffer(newAtt.content)) {\n\t\t\t\t\t\t\tnewAtt.content = newAtt.content.toString('base64');\n\t\t\t\t\t\t\tnewAtt.encoding = 'base64';\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn newAtt;\n\t\t\t\t\t});\n\t\n\t\t\t\t\t// Queue the email in MongoDB\n\t\t\t\t\tconst emailHistory: EmailHistoryModel = {\n\t\t\t\t\t\t_id: objectIdHexString(),\n\t\t\t\t\t\t__v: 0,\n\t\t\t\t\t\tdate: new Date(),\n\t\t\t\t\t\tid_user: this['id_user'] || '',\n\t\t\t\t\t\tuser: this['user'] || '',\n\t\t\t\t\t\temail: sendTo,\n\t\t\t\t\t\tsubject: subject || '',\n\t\t\t\t\t\ttext: text || '',\n\t\t\t\t\t\thtml: html || '',\n\t\t\t\t\t\tattachments: attachments || [],\n\t\t\t\t\t\tsend_from: send_from || '',\n\t\t\t\t\t\treply_to: reply_to || '',\n\t\t\t\t\t\tstatus: 'pending',\n\t\t\t\t\t\terror: ''\n\t\t\t\t\t};\n\t\n\t\t\t\t\tEmailHistories.insertOne(emailHistory).then(\n\t\t\t\t\t\t(history) => resolve(history),\n\t\t\t\t\t\t(err) => {\n\t\t\t\t\t\t\tconsole.error('Failed to queue email:', err);\n\t\t\t\t\t\t\treject(err);\n\t\t\t\t\t\t}\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tconsole.log(\n\t\t\t\t\t\t'Send email',\n\t\t\t\t\t\tsendTo,\n\t\t\t\t\t\tsubject,\n\t\t\t\t\t\ttext,\n\t\t\t\t\t\thtml,\n\t\t\t\t\t\tattachments,\n\t\t\t\t\t\tsend_from\n\t\t\t\t\t);\n\t\t\t\t\tresolve(true);\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tresolve(true);\n\t\t\t}\n\t\t});\n\t}\n\n\tpublic getAWS(): AWS {\n\t\treturn this._aws;\n\t}\n\n\tpublic readFile(fileName) {\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tif (fs.existsSync(path.join(__dirname, ('../private/' + fileName)))) {\n\t\t\t\tfs.readFile(path.join(__dirname, ('../private/' + fileName)), 'utf-8', (err, res) => { \n\t\t\t\t\tif (err) {\n\t\t\t\t\t\treject(err);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif (fs.existsSync(path.join(this.clientDir, ('./private/' + fileName)))) {\n\t\t\t\t\tfs.readFile(path.join(this.clientDir, ('./private/' + fileName)), 'utf-8', (err, res) => { \n\t\t\t\t\t\tif (err) {\n\t\t\t\t\t\t\treject(err);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\n\tpublic readImage(fileName) {\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tif (fs.existsSync(path.join(__dirname, ('../private/' + fileName)))) {\n\t\t\t\tfs.readFile(path.join(__dirname, ('../private/' + fileName)), 'base64', (err, res) => { \n\t\t\t\t\tif (err) {\n\t\t\t\t\t\treject(err);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif (fs.existsSync(path.join(this.clientDir, ('./private/' + fileName)))) {\n\t\t\t\t\tfs.readFile(path.join(this.clientDir, ('./private/' + fileName)), 'base64', (err, res) => { \n\t\t\t\t\t\tif (err) {\n\t\t\t\t\t\t\treject(err);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n}"]}
1
+ {"version":3,"sources":["../../src/managers/method.manager.ts"],"names":["collections_1","require","logs_1","counters_1","pdf_1","aws_1","path","fs","nodemailer","sesTransport","accounts_1","init_1","cron_jobs_1","cron_jobs_2","flags_1","common_1","log_collection_1","log_method_latency_collection_1","moment","report_builder_1","support_1","monitor_1","email_history_collection_1","mongo_manager_1","client_s3_1","worker_task_request_collection_1","worker_task_response_collection_1","flag_updates_1","worker_task_data_chunk_collection_1","AWS","serverConfig","this","_serverConfig","_s3","_s3USEast1","prototype","s3","S3","credentials","accessKeyId","process","env","AWS_ACCESS_KEY","secretAccessKey","AWS_SECRET_ACCESS_KEY","region","AWS_REGION","apiVersion","s3USEast1","MethodManager","exports","mainServer","clientDir","monitorManagerFunction","isWorkersEnabled","isWorkerInstance","_this","_methods","_isWorkersEnabled","_isWorkerInstance","emailQueue","Set","isEmailProcessing","_debugCallMethodInternalHits","_debugCallMethodHits","_debugCallMethodCronJobHits","_debugSendQueueHits","_mainServer","_websocketManager","getWebSocketManager","_monitorManagerFunction","IS_WORKERS_ENABLED","IS_WORKER_INSTANCE","WORKER_INDEX","NODE_APP_INSTANCE","setTimeout","console","log","Date","loadServerInit","loadServerCronJobs","loadAccountMethods","loadAWSMethods","loadCollectionMethods","loadCounterMethods","loadLogMethods","loadPDFMethods","loadCronJobMethods","loadFlagMethods","loadFlagUpdatesMethods","loadReportBuilderMethods","loadSupportMethods","loadMonitorMethods","_aws","sesMail","_mailer","createTransport","AWS_SES_REGION","host","port","secure","auth","user","pass","tls","ciphers","setInterval","getSubscriptionManager","getEnableDebug","setupEmailWatcher","getMainServer","methods","method","Object","assign","callMethodCron","methodData","_i","arguments","length","skipValidation","check","error","sendEmail","_schema","valObj","rootKeys","keys","filter","a","includes","i","validate","errors","JSON","stringify","promise","serializedData","Buffer","byteLength","chunkedReferences","methodDataBuffer","from","newChunks","chunk","slice","chunkDoc","_id","objectIdHexString","data","toString","push","__largeDataRef","chunks","WorkerTaskDataChunks","create","monitor_2","startMonitorFunction","taskId_1","Promise","resolve","reject","changeStream","WorkerTaskResponses","watchCollection","$match","fullDocument.id_request","fullDocument","on","change","operationType","finishMonitorFunction","taskResponse","has_error","close","WorkerTaskRequests","params","status","id_user","id_ws","monitor_3","_a","function","call","apply","__spreadArray","__read","then","res","methodErrs","callMethod","id_methodLatency","ws","messageDate","messageId","sendWS","serverRes","hasError","LogMethodLatencies","deleteOne","monitor_4","taskId","changeStream_1","__awaiter","findById","latency","sent","updateOne","$set","date_end","latency_ms","diff","date_start","monitor_5","err","callMethodInternal","Logs","insertOne","type","collection","id_document","payload","getBinarySize","route","functionMethodData","monitor_6","taskId_2","monitor_7","send","EmailHistories","add","tryProcessEmail","updatedEmail","has","delete","loadPendingEmails","find","sort","pendingEmails","_b","pendingEmails_1","__values","pendingEmails_1_1","next","done","email","value","size","emailId","this_1","values","findOneAndUpdate","processingAt","emailHistory","_e","attachments","e_2","_c","att","startsWith","fetch","response","ok","arrayBuffer","Error","concat","buffer","content","err_2","safeStringify","completedAt","mailOptions","replyTo","reply_to","undefined","send_from","MAIL_FROM","to","subject","match","text","html","map","newAtt","__assign","encoding","_bsontype","sub_type","sendMail","info","err_1","obj","getCircularReplacer","e","message","seen","WeakSet","key","sendTo","local_override","Array","isArray","isBuffer","__v","date","history","getAWS","readFile","fileName","existsSync","join","__dirname","readImage"],"mappings":"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","file":"method.manager.js","sourcesContent":["import { ServerResponseModel } from '../models/server-response.model';\nimport { loadCollectionMethods } from '../methods/collections';\nimport { MethodModel } from '../models/method.model';\nimport { loadLogMethods } from '../methods/logs';\nimport { loadCounterMethods } from '../methods/counters';\nimport { loadPDFMethods } from '../methods/pdf';\nimport { loadAWSMethods } from '../methods/aws';\nimport * as path from 'path';\nimport * as fs from 'fs';\nimport * as nodemailer from 'nodemailer';\nimport * as sesTransport from 'nodemailer-ses-transport';\nimport { loadAccountMethods } from '../methods/accounts';\nimport { loadServerInit } from '../fixtures/init';\nimport { loadServerCronJobs } from '../fixtures/cron-jobs';\nimport { loadCronJobMethods } from '../methods/cron-jobs';\nimport { loadFlagMethods } from '../methods/flags';\nimport { getBinarySize } from '../util/common';\nimport { Logs } from '../collections/log.collection';\nimport ResolveIOMainServer from '../server-app';\nimport { LogMethodLatencies } from '../collections/log-method-latency.collection';\nimport * as moment from 'moment-timezone';\nimport { loadReportBuilderMethods } from '../methods/report-builder';\nimport { loadSupportMethods } from '../methods/support';\nimport { loadMonitorMethods } from '../methods/monitor';\nimport { EmailHistories } from '../collections/email-history.collection';\nimport { objectIdHexString } from './mongo.manager';\nimport { MonitorManagerFunction } from './monitor.manager';\nimport { S3 } from '@aws-sdk/client-s3';\nimport { WorkerTaskRequests } from '../collections/worker-task-request.collection';\nimport { WorkerTaskResponses } from '../collections/worker-task-response.collection';\nimport { WebSocketManager } from './websocket.manager';\nimport * as WebSocket from 'ws';\nimport { loadFlagUpdatesMethods } from '../methods/flag-updates';\nimport { EmailHistoryModel } from '../models/email-history.model';\nimport { WorkerTaskDataChunks } from '../collections/worker-task-data-chunk.collection';\nimport { WorkerTaskDataChunkModel } from '../models/worker-task-data-chunk.model';\n\nexport class AWS {\n\tprivate _serverConfig = null;\n\tprivate _s3: S3 = null;\n\tprivate _s3USEast1: S3 = null;\n\n\tconstructor(serverConfig) {\n\t\tthis._serverConfig = serverConfig;\n\t}\n\n\tpublic s3(): S3 {\n\t\tif (this._s3) {\n\t\t\treturn this._s3;\n\t\t}\n\n\t\tthis._s3 = new S3({\n\t\t\tcredentials: {\n\t\t\t\taccessKeyId: process.env.AWS_ACCESS_KEY,\n\t\t\t\tsecretAccessKey: process.env.AWS_SECRET_ACCESS_KEY\n\t\t\t},\n\t\t\tregion: process.env.AWS_REGION,\n\t\t\tapiVersion: '2006-03-01'\n\t\t});\n\n\t\treturn this._s3;\n\t}\n\n\tpublic s3USEast1(): S3 {\n\t\tif (process.env.AWS_REGION === 'us-east-1') {\n\t\t\treturn this.s3();\n\t\t}\n\t\telse {\n\t\t\tif (this._s3USEast1) {\n\t\t\t\treturn this._s3USEast1;\n\t\t\t}\n\t\t\t\n\t\t\tthis._s3USEast1 = new S3({\n\t\t\t\tcredentials: {\n\t\t\t\t\taccessKeyId: process.env.AWS_ACCESS_KEY,\n\t\t\t\t\tsecretAccessKey: process.env.AWS_SECRET_ACCESS_KEY\n\t\t\t\t},\n\t\t\t\tregion: 'us-east-1',\n\t\t\t\tapiVersion: '2006-03-01'\n\t\t\t});\n\t\n\t\t\treturn this._s3USEast1;\n\t\t}\n\t}\n}\n\nexport class MethodManager {\n\tprivate _mainServer: ResolveIOMainServer;\n\tprivate _websocketManager: WebSocketManager;\n\tpublic _methods: MethodModel = {};\n\tprivate _mailer: nodemailer.Transporter;\n\tprivate _aws: AWS;\n\tprivate serverConfig;\n\tprivate clientDir;\n\tprivate _monitorManagerFunction: MonitorManagerFunction;\n\tprivate _isWorkersEnabled = false;\n\tprivate _isWorkerInstance = false;\n\n\tprivate emailQueue: Set<string> = new Set(); // Set to store pending email IDs\n\tprivate isEmailProcessing = false;\n\n\tprivate _debugCallMethodInternalHits = 0;\n\tprivate _debugCallMethodHits = 0;\n\tprivate _debugCallMethodCronJobHits = 0;\n\tprivate _debugSendQueueHits = 0;\n\n\tconstructor(mainServer, serverConfig, clientDir, monitorManagerFunction: MonitorManagerFunction, isWorkersEnabled, isWorkerInstance) {\n\t\tthis._mainServer = mainServer;\n\t\tthis._websocketManager = this._mainServer.getWebSocketManager();\n\t\tthis.serverConfig = serverConfig;\n\t\tthis.clientDir = clientDir;\n\t\tthis._monitorManagerFunction = monitorManagerFunction;\n\t\tthis._isWorkersEnabled = isWorkersEnabled;\n\t\tthis._isWorkerInstance = isWorkerInstance;\n\n\t\t// Fixtures\n\t\tif (process.env.IS_WORKERS_ENABLED === 'false' || (process.env.IS_WORKER_INSTANCE === 'true' && process.env.WORKER_INDEX === '0')) {\n\t\t\tif (!process.env.NODE_APP_INSTANCE || process.env.NODE_APP_INSTANCE === '0') {\n\t\t\t\tsetTimeout(() => {\n\t\t\t\t\tconsole.log(new Date(), 'Start Server Fixture');\n\t\t\t\t\tloadServerInit(serverConfig);\n\t\t\t\t\tconsole.log(new Date(), 'End Server Fixture');\n\t\t\t\t}, 5000);\n\t\t\t}\n\t\t}\n\n\t\tloadServerCronJobs();\n\n\t\t// Methods\n\t\tloadAccountMethods(this);\n\t\tloadAWSMethods(this);\n\t\tloadCollectionMethods(this);\n\t\tloadCounterMethods(this);\n\t\tloadLogMethods(this);\n\t\tloadPDFMethods(this);\n\t\tloadCronJobMethods(this);\n\t\tloadFlagMethods(this);\n\t\tloadFlagUpdatesMethods(this);\n\t\tloadReportBuilderMethods(this);\n\t\tloadSupportMethods(this);\n\t\tloadMonitorMethods(this);\n\n\t\tthis._aws = new AWS(serverConfig);\n\n\t\tif (mainServer.sesMail) {\n\t\t\tthis._mailer = nodemailer.createTransport(sesTransport({\n\t\t\t\taccessKeyId: process.env.AWS_ACCESS_KEY,\n\t\t\t\tsecretAccessKey: process.env.AWS_SECRET_ACCESS_KEY,\n\t\t\t\tregion: process.env.AWS_SES_REGION\n\t\t\t}));\n\t\t}\n\t\telse {\n\t\t\tthis._mailer = nodemailer.createTransport({\n\t\t\t\thost: this.serverConfig['MAIL_HOST'], // 'smtp.office365.com', // Office 365 server\n\t\t\t\tport: this.serverConfig['MAIL_PORT'], //587, // secure SMTP\n\t\t\t\tsecure: false, // false for TLS - as a boolean not string - but the default is false so just remove this completely\n\t\t\t\tauth: {\n\t\t\t\t\tuser: this.serverConfig['MAIL_USERNAME'],\n\t\t\t\t\tpass: this.serverConfig['MAIL_PASSWORD']\n\t\t\t\t},\n\t\t\t\ttls: {\n\t\t\t\t\tciphers: 'SSLv3'\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\n\t\tsetInterval(() => {\n\t\t\tif (this._mainServer.getSubscriptionManager() && this._mainServer.getSubscriptionManager().getEnableDebug()) {\n\t\t\t\tconsole.log(new Date(), 'Method Manager', 'Send Queue Hits', this._debugSendQueueHits);\n\t\t\t\tconsole.log(new Date(), 'Method Manager', 'Call Method Internal Hits', this._debugCallMethodInternalHits);\n\t\t\t\tconsole.log(new Date(), 'Method Manager', 'Call Method Hits', this._debugCallMethodHits);\n\t\t\t\tconsole.log(new Date(), 'Method Manager', 'Call Method Cron Hits', this._debugCallMethodCronJobHits);\n\t\t\t}\n\n\t\t\tthis._debugCallMethodInternalHits = 0;\n\t\t\tthis._debugCallMethodHits = 0;\n\t\t\tthis._debugCallMethodCronJobHits = 0;\n\t\t\tthis._debugSendQueueHits = 0;\n\t\t}, 60000);\n\n\t\tif (!this._isWorkersEnabled || this._isWorkerInstance) {\n\t\t\tthis.setupEmailWatcher();\n\t\t}\n\t}\n\n\tpublic getMainServer() {\n\t\treturn this._mainServer;\n\t}\n\n\t// Add methods to private methods object\n\tpublic methods(method: MethodModel) {\n\t\tthis._methods = Object.assign(this._methods, method);\n\t}\n\n\tpublic callMethodCron(method: string, ...methodData: any[]) {\n\t\tthis._debugCallMethodCronJobHits += 1;\n\n\t\tif (!this._methods[method]) {\n\t\t\tconsole.log('No Method: ' + method);\n\n\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Method: ' + method);\n\n\t\t\treturn;\n\t\t}\n\t\t\n\t\tif ((methodData.length > 1 || methodData[0]) && !this._methods[method].skipValidation) {\n\t\t\tif (!this._methods[method].check) {\n\t\t\t\tconsole.error(new Date(), 'No Check Function For Method ' + method);\n\n\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Check Function For Method ' + method);\n\t\n\t\t\t\treturn;\n\t\t\t}\n\t\t\telse if (!this._methods[method].check._schema) {\n\t\t\t\tconsole.error(new Date(), 'No Check Schema For Method ' + method);\n\n\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Check Function For Method ' + method);\n\t\n\t\t\t\treturn;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tlet valObj = {};\n\t\t\t\tlet valKeys = Object.keys(this._methods[method].check._schema);\n\n\t\t\t\tlet rootKeys = valKeys.filter(a => !a.includes('.'));\n\t\t\t\t\n\t\t\t\tfor (let i = 0; i < methodData.length; i++) {\n\t\t\t\t\tvalObj[rootKeys[i]] = methodData[i];\n\t\t\t\t}\n\n\t\t\t\ttry {\n\t\t\t\t\tthis._methods[method].check.validate(valObj);\n\t\t\t\t}\n\t\t\t\tcatch (errors) {\n\t\t\t\t\tif (errors) {\n\t\t\t\t\t\tconsole.error(new Date(), 'Error in Method Check (' + method + ')', errors);\n\n\t\t\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'Match Error On Method ' + method + '\\n\\nData Being Checked\\n' + JSON.stringify(valObj, null, 2) + '\\n\\nErrors\\n' + JSON.stringify(errors, null, 2));\n\t\t\t\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tlet promise = null;\n\n\t\t// Check if workers are enabled and this is not a worker instance\n\t\tif (this._isWorkersEnabled && \n\t\t\t!this._isWorkerInstance && \n\t\t\tmethod !== 'insertSubscriptionLog' && \n\t\t\tmethod !== 'countQuery' &&\n\t\t\tmethod !== 'incCounter' && \n\t\t\tmethod !== 'supportCreateBillingUser' &&\n\t\t\tmethod !== 'find' &&\n\t\t\tmethod !== 'insertDocument' &&\n\t\t\tmethod !== 'countWithQuery' &&\n\t\t\tmethod !== 'findOne' &&\n\t\t\tmethod !== 'updateDocumentProps' &&\n\t\t\tmethod !== 'findWithOptions' &&\n\t\t\tmethod !== 'getSignedUrl' &&\n\t\t\tmethod !== 'updateDocument' &&\n\t\t\tmethod !== 'insertErrorLog' &&\n\t\t\tmethod !== 'getSignedUrls' &&\n\t\t\tmethod !== 'removeDocument' &&\n\t\t\tmethod !== 'getSignedUrlWithId' &&\n\t\t\tmethod !== 'incorrectUser' &&\n\t\t\tmethod !== 'reloadWS' &&\n\t\t\tmethod !== 'reconnectWS' &&\n\t\t\tmethod !== 'disconnectWS'\n\t\t) {\n\t\t\t// To prevent extremely large data being inserted, let's split it up into references if needed\n\t\t\t// For example, if `methodData` is huge, we can store large arrays/objects into a separate collection\n\t\t\t// and only store references in the worker-task-requests doc. This avoids hitting the 16MB BSON limit.\n\t\t\tlet MAX_DOCUMENT_SIZE = 1024 * 1024 * 8; // 8MB as a threshold before we chunk (just an example threshold)\n\t\t\tlet serializedData = JSON.stringify(methodData);\n\t\t\tif (Buffer.byteLength(serializedData, 'utf8') > MAX_DOCUMENT_SIZE) {\n\t\t\t\tlet chunkedReferences = [];\n\t\t\t\tlet chunkSize = 1024 * 1024 * 2; // 2MB chunks\n\t\t\t\tlet methodDataBuffer = Buffer.from(serializedData, 'utf8');\n\t\t\t\tlet newChunks: WorkerTaskDataChunkModel[] = [];\n\n\t\t\t\tfor (let i = 0; i < methodDataBuffer.length; i += chunkSize) {\n\t\t\t\t\tlet chunk = methodDataBuffer.slice(i, i + chunkSize);\n\t\t\t\t\tlet chunkDoc: WorkerTaskDataChunkModel = {\n\t\t\t\t\t\t_id: objectIdHexString(),\n\t\t\t\t\t\tdata: chunk.toString('base64')\n\t\t\t\t\t};\n\t\t\t\t\tnewChunks.push(chunkDoc);\n\t\t\t\t\tchunkedReferences.push(chunkDoc._id);\n\t\t\t\t}\n\t\t\t\tmethodData = [{__largeDataRef: true, chunks: chunkedReferences}];\n\t\t\t\tWorkerTaskDataChunks.create(newChunks);\n\t\t\t}\n\t\t\t\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Cron Method', method, '', '', methodData);\n\n\t\t\t// Push task to worker-task-reqs collection\n\t\t\tconst taskId = objectIdHexString();\n\n\t\t\t// Watch worker-task-resps for result\n\t\t\tpromise = new Promise((resolve, reject) => {\n\t\t\t\tlet changeStream = WorkerTaskResponses.watchCollection([{ $match: { 'fullDocument.id_request': taskId } }], { fullDocument: 'updateLookup' });\n\n\t\t\t\tchangeStream.on('change', change => {\n\t\t\t\t\tif (change.operationType === 'insert') {\n\t\t\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\n\t\t\t\t\t\tconst taskResponse = change.fullDocument;\n\n\t\t\t\t\t\tif (taskResponse.has_error) {\n\t\t\t\t\t\t\treject(taskResponse.data); // Task failed, return error\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tresolve(taskResponse.data); // Task succeeded, return result\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tchangeStream.close(); // Close the cursor after receiving response\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\tchangeStream.on('error', error => {\n\t\t\t\t\tconsole.error('Error watching worker responses:', error);\n\t\t\t\t\treject(error);\n\t\t\t\t\tchangeStream.close();\n\t\t\t\t});\n\t\t\t});\n\n\t\t\tWorkerTaskRequests.create({\n\t\t\t\t_id: taskId,\n\t\t\t\tmethod: method,\n\t\t\t\tparams: methodData,\n\t\t\t\tstatus: 'pending',\n\t\t\t\tid_user: this['id_user'],\n\t\t\t\tuser: this['user'],\n\t\t\t\tid_ws: this['id_socket']\n\t\t\t});\n\t\t}\n\t\telse {\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Cron Method', method, '', '', methodData);\n\t\t\tpromise = this._methods[method].function.call(Object.assign({}, this, MethodManager.prototype, {id_user: '', user: '', id_ws: ''}), ...methodData)\n\t\t\t.then(res => {\n\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\t\t\treturn res;\n\t\t\t}, methodErrs => {\n\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'Error Detected During Method ' + method + ' - (callMethodCron)\\n\\nData \\n' + JSON.stringify(methodData, null, 2) + '\\n\\nErrors\\n' + JSON.stringify(methodErrs, null, 2));\n\t\t\t\treturn methodErrs;\n\t\t\t});\n\t\t}\n\n\t\treturn promise;\n\t}\n\n\t// Call/run method (Emit on Socket)\n\tpublic callMethod(id_methodLatency: string, ws: WebSocket, messageDate: Date, messageId: number, method: string, ...methodData: any[]) {\n\t\tthis._debugCallMethodHits += 1;\n\t\n\t\tif (!this._methods[method]) {\n\t\t\tconsole.log('No Method: ' + method);\n\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Method: ' + method);\n\t\n\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\tmessageId: messageId,\n\t\t\t\thasError: true,\n\t\t\t\tdata: 'Internal Error'\n\t\t\t};\n\t\n\t\t\tthis.sendWS(ws, new Date(), method, methodData, serverRes);\n\t\n\t\t\tif (id_methodLatency) {\n\t\t\t\tLogMethodLatencies.deleteOne({_id: id_methodLatency});\n\t\t\t}\n\t\n\t\t\treturn;\n\t\t}\n\t\n\t\tif ((methodData.length > 1 || methodData[0]) && !this._methods[method].skipValidation) {\n\t\t\tif (!this._methods[method].check) {\n\t\t\t\tconsole.error(new Date(), 'No Check Function For Method ' + method);\n\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Check Function For Method ' + method);\n\t\t\t\t\n\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\thasError: true,\n\t\t\t\t\tdata: 'Internal Error'\n\t\t\t\t};\n\t\n\t\t\t\tthis.sendWS(ws, messageDate, method, methodData, serverRes);\n\t\n\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\tLogMethodLatencies.deleteOne({ _id: id_methodLatency });\n\t\t\t\t}\n\t\n\t\t\t\treturn;\n\t\t\t}\n\t\t\telse if (!this._methods[method].check._schema) {\n\t\t\t\tconsole.error(new Date(), 'No Check Schema For Method ' + method);\n\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'No Check Schema For Method ' + method);\n\t\t\t\t\n\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\thasError: true,\n\t\t\t\t\tdata: 'Internal Error'\n\t\t\t\t};\n\t\n\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\tLogMethodLatencies.deleteOne({ _id: id_methodLatency });\n\t\t\t\t}\n\t\n\t\t\t\tthis.sendWS(ws, messageDate, method, methodData, serverRes);\n\t\n\t\t\t\treturn;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tlet valObj = {};\n\t\t\t\tlet valKeys = Object.keys(this._methods[method].check._schema);\n\t\n\t\t\t\tlet rootKeys = valKeys.filter(a => !a.includes('.'));\n\t\n\t\t\t\tfor (let i = 0; i < methodData.length; i++) {\n\t\t\t\t\tvalObj[rootKeys[i]] = methodData[i];\n\t\t\t\t}\n\t\n\t\t\t\ttry {\n\t\t\t\t\tthis._methods[method].check.validate(valObj);\n\t\t\t\t}\n\t\t\t\tcatch (errors) {\n\t\t\t\t\tif (errors) {\n\t\t\t\t\t\tconsole.error(new Date(), 'Error in Method Check (' + method + ')', errors);\n\t\n\t\t\t\t\t\tif (method !== 'processAirdropDistribution') {\n\t\t\t\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'Match Error On Method ' + method + '\\n\\nData Being Checked\\n' + JSON.stringify(valObj, null, 2) + '\\n\\nErrors\\n' + JSON.stringify(errors, null, 2));\n\t\t\t\t\t\t}\n\t\n\t\t\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\t\t\thasError: true,\n\t\t\t\t\t\t\tdata: 'Internal Error'\n\t\t\t\t\t\t};\n\t\n\t\t\t\t\t\tthis.sendWS(ws, messageDate, method, methodData, serverRes);\n\t\n\t\t\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\t\t\tLogMethodLatencies.deleteOne({ _id: id_methodLatency });\n\t\t\t\t\t\t}\n\t\t\t\n\t\t\t\t\t\treturn;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\t// Check if workers are enabled and this is not a worker instance\n\t\tif (this._isWorkersEnabled && \n\t\t\t!this._isWorkerInstance && \n\t\t\tmethod !== 'insertSubscriptionLog' && \n\t\t\tmethod !== 'countQuery' && method !== 'incCounter' && \n\t\t\tmethod !== 'supportCreateBillingUser' &&\n\t\t\tmethod !== 'find' &&\n\t\t\tmethod !== 'insertDocument' &&\n\t\t\tmethod !== 'countWithQuery' &&\n\t\t\tmethod !== 'findOne' &&\n\t\t\tmethod !== 'updateDocumentProps' &&\n\t\t\tmethod !== 'findWithOptions' &&\n\t\t\tmethod !== 'getSignedUrl' &&\n\t\t\tmethod !== 'updateDocument' &&\n\t\t\tmethod !== 'insertErrorLog' &&\n\t\t\tmethod !== 'getSignedUrls' &&\n\t\t\tmethod !== 'removeDocument' &&\n\t\t\tmethod !== 'getSignedUrlWithId' &&\n\t\t\tmethod !== 'incorrectUser' &&\n\t\t\tmethod !== 'reloadWS' &&\n\t\t\tmethod !== 'reconnectWS' &&\n\t\t\tmethod !== 'disconnectWS'\n\t\t) {\t\n\t\t\t// To prevent extremely large data being inserted, let's split it up into references if needed\n\t\t\t// For example, if `methodData` is huge, we can store large arrays/objects into a separate collection\n\t\t\t// and only store references in the worker-task-requests doc. This avoids hitting the 16MB BSON limit.\n\t\t\tlet MAX_DOCUMENT_SIZE = 1024 * 1024 * 8; // 8MB as a threshold before we chunk (just an example threshold)\n\t\t\tlet serializedData = JSON.stringify(methodData);\n\t\t\tif (Buffer.byteLength(serializedData, 'utf8') > MAX_DOCUMENT_SIZE) {\n\t\t\t\tlet chunkedReferences = [];\n\t\t\t\tlet chunkSize = 1024 * 1024 * 2; // 2MB chunks\n\t\t\t\tlet methodDataBuffer = Buffer.from(serializedData, 'utf8');\n\t\t\t\tlet newChunks: WorkerTaskDataChunkModel[] = [];\n\n\t\t\t\tfor (let i = 0; i < methodDataBuffer.length; i += chunkSize) {\n\t\t\t\t\tlet chunk = methodDataBuffer.slice(i, i + chunkSize);\n\t\t\t\t\tlet chunkDoc: WorkerTaskDataChunkModel = {\n\t\t\t\t\t\t_id: objectIdHexString(),\n\t\t\t\t\t\tdata: chunk.toString('base64')\n\t\t\t\t\t};\n\t\t\t\t\tnewChunks.push(chunkDoc);\n\t\t\t\t\tchunkedReferences.push(chunkDoc._id);\n\t\t\t\t}\n\t\t\t\tmethodData = [{__largeDataRef: true, chunks: chunkedReferences}];\n\t\t\t\tWorkerTaskDataChunks.create(newChunks);\n\t\t\t}\n\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Method', method, ws['user'] || '', ws['id_socket'] || '', methodData);\n\t\t\t\n\t\t\tconst taskId = objectIdHexString();\n\t\n\t\t\tlet changeStream = WorkerTaskResponses.watchCollection([{ $match: { 'fullDocument.id_request': taskId } }], { fullDocument: 'updateLookup' });\n\t\n\t\t\tchangeStream.on('change', async change => {\n\t\t\t\tif (change.operationType === 'insert') {\n\t\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\n\t\t\t\t\tconst taskResponse = change.fullDocument;\n\t\n\t\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\t\thasError: taskResponse.has_error,\n\t\t\t\t\t\tdata: taskResponse.data\n\t\t\t\t\t};\n\t\n\t\t\t\t\tthis.sendWS(ws, new Date(), method, methodData, serverRes);\n\t\n\t\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\t\tlet latency = await LogMethodLatencies.findById(id_methodLatency);\n\t\t\t\t\t\tif (latency) {\n\t\t\t\t\t\t\tLogMethodLatencies.updateOne({_id: id_methodLatency}, {$set: {date_end: new Date(), latency_ms: moment().diff(moment(latency.date_start), 'milliseconds', true)}});\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\n\t\t\t\t\tchangeStream.close();\n\t\t\t\t}\n\t\t\t});\n\t\n\t\t\tchangeStream.on('error', error => {\n\t\t\t\tconsole.error('Error watching worker responses:', error);\n\t\t\t\tchangeStream.close();\n\t\t\t});\n\t\n\t\t\tWorkerTaskRequests.create({\n\t\t\t\t_id: taskId,\n\t\t\t\tmethod: method,\n\t\t\t\tparams: methodData,\n\t\t\t\tstatus: 'pending',\n\t\t\t\tid_user: ws['id_user'],\n\t\t\t\tuser: ws['user'],\n\t\t\t\tid_ws: ws['id_socket']\n\t\t\t});\n\t\t}\n\t\telse {\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Method', method, ws['user'] || '', ws['id_socket'] || '', methodData);\n\t\t\tthis._methods[method].function.call(Object.assign({}, this, MethodManager.prototype, {id_user: ws['id_user'], user: ws['user'], id_ws: ws['id_socket']}), ...methodData)\n\t\t\t.then(async (res) => {\n\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\n\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\thasError: false,\n\t\t\t\t\tdata: res\n\t\t\t\t};\n\t\n\t\t\t\tthis.sendWS(ws, messageDate, method, methodData, serverRes);\n\t\n\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\tlet latency = await LogMethodLatencies.findById(id_methodLatency);\n\t\t\t\t\tif (latency) {\n\t\t\t\t\t\tLogMethodLatencies.updateOne({_id: id_methodLatency}, {$set: {date_end: new Date(), latency_ms: moment().diff(moment(latency.date_start), 'milliseconds', true)}});\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t},\n\t\t\terr => {\n\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\t\t\tlet serverRes: ServerResponseModel = {\n\t\t\t\t\tmessageId: messageId,\n\t\t\t\t\thasError: true,\n\t\t\t\t\tdata: err\n\t\t\t\t};\n\t\n\t\t\t\tthis.sendWS(ws, messageDate, method, methodData, serverRes);\n\t\n\t\t\t\tif (id_methodLatency) {\n\t\t\t\t\tLogMethodLatencies.deleteOne({_id: id_methodLatency});\n\t\t\t\t}\n\t\n\t\t\t\tif (method !== 'processAirdropDistribution') {\n\t\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'Error Detected During Method ' + method + ' - (callMethod)\\n\\nData \\n' + JSON.stringify(methodData, null, 2) + '\\n\\nErrors\\n' + JSON.stringify(err, null, 2));\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n\n\t// Call/run method internal (No Emit on Socket)\n\tpublic callMethodInternal(method: string, ...methodData: any[]): Promise<any> {\n\t\tthis._debugCallMethodInternalHits += 1;\n\n\t\tif (!this._methods[method]) {\n\t\t\tconsole.log('No Method: ' + method);\n\t\t\treturn null;\n\t\t}\n\n\t\tif ((methodData.length > 1 || (methodData[0] && typeof methodData[0] !== 'function')) && !this._methods[method].skipValidation) {\n\t\t\tif (!this._methods[method].check) {\n\t\t\t\tconsole.error(new Date(), 'No Check Function For Method ' + method);\n\t\t\t\treturn null;\n\t\t\t}\n\t\t\telse if (!this._methods[method].check._schema) {\n\t\t\t\tconsole.error(new Date(), 'No Check Schema For Method ' + method);\n\t\t\t\treturn null;\n\t\t\t}\n\t\t}\n\n\t\tif (method !== 'insertSubscriptionLog' && method !== 'getDataURIfromURL' && method !== 'processAirdropDistribution' && method !== 'incCounter' && method !== 'supportCreateBillingUser' && method !== 'countCollectionWithQuery') {\n\t\t\tLogs.insertOne({\n\t\t\t\t_id: objectIdHexString(),\n\t\t\t\ttype: 'callMethodInternal',\n\t\t\t\tcollection: '',\n\t\t\t\tid_document: '',\n\t\t\t\tpayload: getBinarySize(JSON.stringify([methodData])) < 200000 ? JSON.stringify([methodData], null, 2) : 'Too Big',\n\t\t\t\tmethod: method,\n\t\t\t\tid_user: this['id_user'] || '',\n\t\t\t\tuser: this['user'] || '',\n\t\t\t\tmessageId: 0,\n\t\t\t\troute: ''\n\t\t\t});\n\t\t}\n\n\t\tlet functionMethodData = typeof(methodData[methodData.length - 1]) === 'function' ? methodData.slice(0, -1) : methodData;\n\t\tlet promise = null;\n\n\t\tif (this._isWorkersEnabled && \n\t\t\t!this._isWorkerInstance && \n\t\t\tmethod !== 'insertSubscriptionLog' && \n\t\t\tmethod !== 'countQuery' && method !== 'incCounter' && \n\t\t\tmethod !== 'supportCreateBillingUser' &&\n\t\t\tmethod !== 'find' &&\n\t\t\tmethod !== 'insertDocument' &&\n\t\t\tmethod !== 'countWithQuery' &&\n\t\t\tmethod !== 'findOne' &&\n\t\t\tmethod !== 'updateDocumentProps' &&\n\t\t\tmethod !== 'findWithOptions' &&\n\t\t\tmethod !== 'getSignedUrl' &&\n\t\t\tmethod !== 'updateDocument' &&\n\t\t\tmethod !== 'insertErrorLog' &&\n\t\t\tmethod !== 'getSignedUrls' &&\n\t\t\tmethod !== 'removeDocument' &&\n\t\t\tmethod !== 'getSignedUrlWithId' &&\n\t\t\tmethod !== 'incorrectUser' &&\n\t\t\tmethod !== 'reloadWS' &&\n\t\t\tmethod !== 'reconnectWS' &&\n\t\t\tmethod !== 'disconnectWS'\n\t\t) {\n\t\t\t// To prevent extremely large data being inserted, let's split it up into references if needed\n\t\t\t// For example, if `methodData` is huge, we can store large arrays/objects into a separate collection\n\t\t\t// and only store references in the worker-task-requests doc. This avoids hitting the 16MB BSON limit.\n\t\t\tlet MAX_DOCUMENT_SIZE = 1024 * 1024 * 8; // 8MB as a threshold before we chunk (just an example threshold)\n\t\t\tlet serializedData = JSON.stringify(functionMethodData);\n\t\t\tif (Buffer.byteLength(serializedData, 'utf8') > MAX_DOCUMENT_SIZE) {\n\t\t\t\tlet chunkedReferences = [];\n\t\t\t\tlet chunkSize = 1024 * 1024 * 2; // 2MB chunks\n\t\t\t\tlet methodDataBuffer = Buffer.from(serializedData, 'utf8');\n\t\t\t\tlet newChunks: WorkerTaskDataChunkModel[] = [];\n\n\t\t\t\tfor (let i = 0; i < methodDataBuffer.length; i += chunkSize) {\n\t\t\t\t\tlet chunk = methodDataBuffer.slice(i, i + chunkSize);\n\t\t\t\t\tlet chunkDoc: WorkerTaskDataChunkModel = {\n\t\t\t\t\t\t_id: objectIdHexString(),\n\t\t\t\t\t\tdata: chunk.toString('base64')\n\t\t\t\t\t};\n\t\t\t\t\tnewChunks.push(chunkDoc);\n\t\t\t\t\tchunkedReferences.push(chunkDoc._id);\n\t\t\t\t}\n\t\t\t\tfunctionMethodData = [{__largeDataRef: true, chunks: chunkedReferences}];\n\t\t\t\tWorkerTaskDataChunks.create(newChunks);\n\t\t\t}\n\t\t\t\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Internal Method', method, this['user'] || '', '', functionMethodData);\n\n\t\t\t// Push task to worker-task-reqs collection\n\t\t\tconst taskId = objectIdHexString();\n\n\t\t\t// Watch worker-task-resps for result\n\t\t\tpromise = new Promise((resolve, reject) => {\n\t\t\t\tlet changeStream = WorkerTaskResponses.watchCollection([{ $match: { 'fullDocument.id_request': taskId } }], { fullDocument: 'updateLookup' });\n\n\t\t\t\tchangeStream.on('change', (change) => {\n\t\t\t\t\tif (change.operationType === 'insert') {\n\t\t\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\n\t\t\t\t\t\tconst taskResponse = change.fullDocument;\n\n\t\t\t\t\t\tif (taskResponse.has_error) {\n\t\t\t\t\t\t\treject(taskResponse.data); // Task failed, return error\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tresolve(taskResponse.data); // Task succeeded, return result\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tchangeStream.close(); // Close the cursor after receiving response\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\tchangeStream.on('error', error => {\n\t\t\t\t\tconsole.error('Error watching worker responses:', error);\n\t\t\t\t\treject(error);\n\t\t\t\t\tchangeStream.close();\n\t\t\t\t});\n\t\t\t});\n\n\t\t\tWorkerTaskRequests.create({\n\t\t\t\t_id: taskId,\n\t\t\t\tmethod: method,\n\t\t\t\tparams: functionMethodData,\n\t\t\t\tstatus: 'pending',\n\t\t\t\tid_user: this['id_user'],\n\t\t\t\tuser: this['user'],\n\t\t\t\tid_ws: this['id_socket']\n\t\t\t});\n\t\t}\n\t\telse {\n\t\t\tlet monitor = this._monitorManagerFunction.startMonitorFunction('Internal Method', method, this['user'] || '', '', functionMethodData);\n\t\t\tpromise = this._methods[method].function.call(Object.assign({}, this, MethodManager.prototype), ...functionMethodData)\n\t\t\t\t.then(res => {\n\t\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\t\t\t\treturn res;\n\t\t\t\t},\n\t\t\t\tmethodErrs => {\n\t\t\t\t\tthis._monitorManagerFunction.finishMonitorFunction(monitor);\n\t\t\t\t\tthis.sendEmail('dev@resolveio.com', 'SERVER - Error Detected - ' + this.serverConfig['CLIENT_NAME'], 'Error Detected During Method ' + method + ' - (callMethodInternal)\\n\\nData \\n' + JSON.stringify(methodData, null, 2) + '\\n\\nErrors\\n' + JSON.stringify(methodErrs, null, 2));\n\t\t\t\t\treturn methodErrs;\n\t\t\t\t});\n\t\t}\n\n\t\tif (methodData[methodData.length - 1] && typeof(methodData[methodData.length - 1]) === 'function') {\n\t\t\tpromise.then(res => methodData[methodData.length - 1](null, res), err => methodData[methodData.length - 1](err, null));\n\t\t}\n\t\t\n\t\treturn promise;\n\t}\n\n\tprivate sendWS(ws: WebSocket, messageDate: Date, method: string, methodData: any[], data: ServerResponseModel) {\n\t\tthis._websocketManager.send(ws, data);\n\n\t\tif (\n\t\t\tmethod !== 'reportBuilderGetResults' &&\n\t\t\tmethod !== 'reportBuilderGetDistinctValue' &&\n\t\t\tmethod !== 'reportBuilderBuildTree' &&\n\t\t\tmethod !== 'generatePDF' &&\n\t\t\tmethod !== 'getWOOfflineData' &&\n\t\t\tmethod !== 'countQuery' &&\n\t\t\tmethod !== 'countWithQuery' &&\n\t\t\tmethod !== 'countCollectionWithQuery' &&\n\t\t\tmethod !== 'find' &&\n\t\t\tmethod !== 'findOne' &&\n\t\t\tmethod !== 'findWithOptions' &&\n\t\t\tmethod !== 'uploadFileAndSave' &&\n\t\t\tmethod !== 'getDrivers' &&\n\t\t\tmethod !== 'processAirdropDistribution'\n\t\t) {\n\t\t\tLogs.insertOne({\n\t\t\t\t_id: objectIdHexString(),\n\t\t\t\ttype: 'client-response',\n\t\t\t\tcollection: '',\n\t\t\t\tid_document: '',\n\t\t\t\tpayload:\n\t\t\t\t\tgetBinarySize(JSON.stringify([methodData, data])) < 200000\n\t\t\t\t\t\t? JSON.stringify([methodData, data], null, 2)\n\t\t\t\t\t\t: 'Too Big',\n\t\t\t\tmethod: method,\n\t\t\t\tid_user: ws['id_user'] || '',\n\t\t\t\tuser: ws['user'] || '',\n\t\t\t\tmessageId: data.messageId,\n\t\t\t\troute: ''\n\t\t\t});\n\t\t}\n\n\t\t// MethodResponses.create({\n\t\t// \t_id: objectIdHexString(),\n\t\t// \t__v: 0,\n\t\t// \tid_user: ws['id_user'] || '',\n\t\t// \tmessage_id: data.messageId,\n\t\t// \tresponse: getBinarySize(JSON.stringify(data)) < 200000 ? data : { error: 'Too Big' },\n\t\t// \tmethod: method,\n\t\t// \tdate: messageDate\n\t\t// });\n\t}\n\n\tasync setupEmailWatcher() {\n\t\tconst changeStream = EmailHistories.watchCollection([]);\n\n\t\tchangeStream.on('change', async (change) => {\n\t\t\tif (change.operationType === 'insert' && change.fullDocument && change.fullDocument.status === 'pending') {\n\t\t\t\tthis.emailQueue.add(change.fullDocument._id.toString());\n\t\t\t\tthis.tryProcessEmail();\n\t\t\t}\n\t\t\telse if (change.operationType === 'update' || change.operationType === 'replace') {\n\t\t\t\tconst updatedEmail = change.fullDocument;\n\t\t\t\tif (updatedEmail && updatedEmail.status !== 'pending' && this.emailQueue.has(updatedEmail._id.toString())) {\n\t\t\t\t\tthis.emailQueue.delete(updatedEmail._id.toString());\n\t\t\t\t}\n\t\t\t}\n\t\t})\n\t\t.on('error', err => {\n\t\t\tconsole.error('Email history changestream error', err);\n\t\t\tchangeStream.close();\n\t\t})\n\t\t.on('close', () => {\n\t\t\tthis.setupEmailWatcher();\n\t\t});\n\n\t\tawait this.loadPendingEmails();\n\t}\n\n\tasync loadPendingEmails() {\n\t\t// Load any pending emails on startup\n\t\tconst pendingEmails = await EmailHistories.find({ status: 'pending' }, {sort: {_id: 1}});\n\t\tfor (const email of pendingEmails) {\n\t\t\tthis.emailQueue.add(email._id.toString());\n\t\t}\n\t\t// Try to process emails\n\t\tthis.tryProcessEmail();\n\t}\n\n\tasync tryProcessEmail() {\n\t\tif (this.isEmailProcessing || this.emailQueue.size === 0) {\n\t\t\treturn;\n\t\t}\n\t\n\t\tthis.isEmailProcessing = true;\n\t\n\t\ttry {\n\t\t\twhile (this.emailQueue.size > 0) {\n\t\t\t\tconst emailId = this.emailQueue.values().next().value;\n\t\t\t\tthis.emailQueue.delete(emailId);\n\t\n\t\t\t\tconst emailHistory = await EmailHistories.findOneAndUpdate(\n\t\t\t\t\t{\n\t\t\t\t\t\t_id: emailId,\n\t\t\t\t\t\tstatus: 'pending',\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t$set: { status: 'processing', processingAt: new Date() },\n\t\t\t\t\t}\n\t\t\t\t);\n\t\n\t\t\t\tif (!emailHistory) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\n\t\t\t\t// Fetch and process attachments\n\t\t\t\tif (emailHistory.attachments && emailHistory.attachments.length > 0) {\n\t\t\t\t\ttry {\n\t\t\t\t\t\tfor (let att of emailHistory.attachments) {\n\t\t\t\t\t\t\tif (att.path && att.path.startsWith('http')) {\n\t\t\t\t\t\t\t\tconst response = await fetch(att.path);\n\t\t\t\t\t\t\t\tif (!response.ok) {\n\t\t\t\t\t\t\t\t\tthrow new Error(`Failed to fetch attachment: ${att.path}`);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tconst arrayBuffer = await response.arrayBuffer();\n\t\t\t\t\t\t\t\tconst buffer = Buffer.from(arrayBuffer);\n\t\n\t\t\t\t\t\t\t\t// Check the size of the attachment\n\t\t\t\t\t\t\t\tconst maxSize = 20 * 1024 * 1024; // 20MB in bytes\n\t\t\t\t\t\t\t\tif (buffer.length <= maxSize) {\n\t\t\t\t\t\t\t\t\t// Attachment is within size limits, include it\n\t\t\t\t\t\t\t\t\tatt.content = buffer;\n\t\t\t\t\t\t\t\t\tdelete att.path;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tcatch (err) {\n\t\t\t\t\t\tconsole.error('Failed to fetch attachment:', err);\n\t\n\t\t\t\t\t\tawait EmailHistories.updateOne(\n\t\t\t\t\t\t\t{ _id: emailHistory._id },\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t$set: {\n\t\t\t\t\t\t\t\t\tstatus: 'failed',\n\t\t\t\t\t\t\t\t\terror: typeof err === 'string' ? err : this.safeStringify(err),\n\t\t\t\t\t\t\t\t\tcompletedAt: new Date(),\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t);\n\t\t\t\t\t\t// Skip to the next email\n\t\t\t\t\t\tcontinue;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\n\t\t\t\t// Prepare email options\n\t\t\t\tconst mailOptions: any = {\n\t\t\t\t\treplyTo: emailHistory.reply_to || (this.serverConfig['MAIL_REPLY_TO'] || undefined),\n\t\t\t\t\tfrom: emailHistory.send_from || this.serverConfig.MAIL_FROM,\n\t\t\t\t\tto: emailHistory.email,\n\t\t\t\t\tsubject:\n\t\t\t\t\t\t(this.serverConfig['ROOT_URL'].match(/https:\\/\\/dev\\./) ||\n\t\t\t\t\t\tthis.serverConfig['ROOT_URL'].match(/https:\\/\\/www\\.dev\\./)\n\t\t\t\t\t\t\t? '(DEV SERVER) - '\n\t\t\t\t\t\t\t: '') + emailHistory.subject,\n\t\t\t\t\ttext: typeof emailHistory.text === 'string' ? emailHistory.text : '',\n\t\t\t\t\thtml: typeof emailHistory.html === 'string' ? emailHistory.html : '',\n\t\t\t\t\tattachments: emailHistory.attachments || [],\n\t\t\t\t};\n\t\n\t\t\t\t// Process attachments before sending\n\t\t\t\tif (mailOptions.attachments && mailOptions.attachments.length > 0) {\n\t\t\t\t\tmailOptions.attachments = mailOptions.attachments.map((att) => {\n\t\t\t\t\t\tconst newAtt = { ...att };\n\t\t\t\t\t\t// Handle attachments stored as BinData or Buffer\n\t\t\t\t\t\tif (newAtt.content && typeof newAtt.content === 'object' && !(newAtt.content instanceof Buffer)) {\n\t\t\t\t\t\t\t// Convert MongoDB's Binary data to Buffer\n\t\t\t\t\t\t\tif (newAtt.content._bsontype === 'Binary' && newAtt.content.sub_type === 0) {\n\t\t\t\t\t\t\t\tnewAtt.content = Buffer.from(newAtt.content.buffer);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t// Handle other types if necessary\n\t\t\t\t\t\t\t\tnewAtt.content = Buffer.from(newAtt.content);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Handle attachments stored as Base64 strings\n\t\t\t\t\t\telse if (typeof newAtt.content === 'string' && newAtt.encoding === 'base64') {\n\t\t\t\t\t\t\tnewAtt.content = Buffer.from(newAtt.content, 'base64');\n\t\t\t\t\t\t\tdelete newAtt.encoding;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t// Ensure the content is a Buffer\n\t\t\t\t\t\telse if (typeof newAtt.content === 'string') {\n\t\t\t\t\t\t\tnewAtt.content = Buffer.from(newAtt.content);\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn newAtt;\n\t\t\t\t\t});\n\t\t\t\t}\n\t\n\t\t\t\t// Send the email\n\t\t\t\tawait new Promise<void>((resolve) => {\n\t\t\t\t\tthis._mailer.sendMail(mailOptions, async (err, info) => {\n\t\t\t\t\t\ttry {\n\t\t\t\t\t\t\tif (err) {\n\t\t\t\t\t\t\t\tconsole.error('Failed to send email:', err);\n\t\t\t\t\t\t\t\tEmailHistories.updateOne(\n\t\t\t\t\t\t\t\t\t{ _id: emailHistory._id },\n\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t$set: {\n\t\t\t\t\t\t\t\t\t\t\tstatus: 'failed',\n\t\t\t\t\t\t\t\t\t\t\terror: typeof err === 'string' ? err : this.safeStringify(err),\n\t\t\t\t\t\t\t\t\t\t\tcompletedAt: new Date(),\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\tif (emailHistory.email === 'dev@resolveio.com') {\n\t\t\t\t\t\t\t\t\tEmailHistories.deleteOne({ _id: emailHistory._id });\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\telse {\n\t\t\t\t\t\t\t\t\tEmailHistories.updateOne(\n\t\t\t\t\t\t\t\t\t\t{ _id: emailHistory._id },\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t$set: {\n\t\t\t\t\t\t\t\t\t\t\t\tstatus: 'completed',\n\t\t\t\t\t\t\t\t\t\t\t\tcompletedAt: new Date(),\n\t\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t);\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tcatch (error) {\n\t\t\t\t\t\t\tconsole.error('Error in sendMail callback:', error);\n\t\t\t\t\t\t\tEmailHistories.updateOne(\n\t\t\t\t\t\t\t\t{ _id: emailHistory._id },\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t$set: {\n\t\t\t\t\t\t\t\t\t\tstatus: 'failed',\n\t\t\t\t\t\t\t\t\t\terror: typeof error === 'string' ? error : this.safeStringify(error),\n\t\t\t\t\t\t\t\t\t\tcompletedAt: new Date(),\n\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t);\n\t\t\t\t\t\t} finally {\n\t\t\t\t\t\t\tresolve(); // Continue processing the queue\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t});\n\t\n\t\t\t\t// Wait for at least one second before sending the next email\n\t\t\t\tawait new Promise((resolve) => setTimeout(resolve, 1000));\n\t\t\t}\n\t\t}\n\t\tcatch (err) {\n\t\t\tconsole.error('Error processing email queue:', err);\n\t\t}\n\t\tfinally {\n\t\t\tthis.isEmailProcessing = false;\n\t\t\t// Check if new emails arrived while processing\n\t\t\tif (this.emailQueue.size > 0) {\n\t\t\t\tthis.tryProcessEmail();\n\t\t\t}\n\t\t}\n\t}\n\n\tsafeStringify(obj)\n\t{\n\t\ttry\n\t\t{\n\t\t\treturn JSON.stringify(obj, this.getCircularReplacer());\n\t\t}\n\t\tcatch (e)\n\t\t{\n\t\t\treturn `Error in JSON stringifying: ${e.message}`;\n\t\t}\n\t}\n\n\tgetCircularReplacer()\n\t{\n\t\tconst seen = new WeakSet();\n\t\treturn (key, value) =>\n\t\t{\n\t\t\tif (typeof value === \"object\" && value !== null)\n\t\t\t{\n\t\t\t\tif (seen.has(value))\n\t\t\t\t{\n\t\t\t\t\treturn \"[Circular]\";\n\t\t\t\t}\n\t\t\t\tseen.add(value);\n\t\t\t}\n\t\t\treturn value;\n\t\t};\n\t}\n\n\tpublic sendEmail(\n\t\tsendTo: string,\n\t\tsubject: string,\n\t\ttext?: string,\n\t\thtml?: string,\n\t\tattachments?: any[],\n\t\tsend_from?: string,\n\t\treply_to?: string,\n\t\tlocal_override = false\n\t) {\n\t\treturn new Promise(async (resolve, reject) => {\n\t\t\t// Modify sendTo in development environments\n\t\t\tif (\n\t\t\t\t(this.serverConfig['ROOT_URL'].match(/https:\\/\\/dev\\./) ||\n\t\t\t\t\tthis.serverConfig['ROOT_URL'].match(/https:\\/\\/www\\.dev\\./) ||\n\t\t\t\t\tthis.serverConfig['ROOT_URL'] === 'http://localhost:4200') &&\n\t\t\t\t!sendTo.match(/\\@resolveio\\.com/)\n\t\t\t) {\n\t\t\t\tsendTo = 'dev@resolveio.com';\n\t\t\t}\n\t\n\t\t\tif (sendTo) {\n\t\t\t\tif (\n\t\t\t\t\tthis.serverConfig['ROOT_URL'] !== 'http://localhost:4200' ||\n\t\t\t\t\tlocal_override\n\t\t\t\t) {\n\t\t\t\t\tif (!attachments) {\n\t\t\t\t\t\tattachments = [];\n\t\t\t\t\t}\n\t\n\t\t\t\t\tif (!Array.isArray(attachments)) {\n\t\t\t\t\t\tattachments = [attachments];\n\t\t\t\t\t}\n\t\n\t\t\t\t\t// Process attachments before saving\n\t\t\t\t\tattachments = attachments.map((att) => {\n\t\t\t\t\t\tconst newAtt = { ...att };\n\t\t\t\t\t\tif (Buffer.isBuffer(newAtt.content)) {\n\t\t\t\t\t\t\tnewAtt.content = newAtt.content.toString('base64');\n\t\t\t\t\t\t\tnewAtt.encoding = 'base64';\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn newAtt;\n\t\t\t\t\t});\n\t\n\t\t\t\t\t// Queue the email in MongoDB\n\t\t\t\t\tconst emailHistory: EmailHistoryModel = {\n\t\t\t\t\t\t_id: objectIdHexString(),\n\t\t\t\t\t\t__v: 0,\n\t\t\t\t\t\tdate: new Date(),\n\t\t\t\t\t\tid_user: this['id_user'] || '',\n\t\t\t\t\t\tuser: this['user'] || '',\n\t\t\t\t\t\temail: sendTo,\n\t\t\t\t\t\tsubject: subject || '',\n\t\t\t\t\t\ttext: text || '',\n\t\t\t\t\t\thtml: html || '',\n\t\t\t\t\t\tattachments: attachments || [],\n\t\t\t\t\t\tsend_from: send_from || '',\n\t\t\t\t\t\treply_to: reply_to || '',\n\t\t\t\t\t\tstatus: 'pending',\n\t\t\t\t\t\terror: ''\n\t\t\t\t\t};\n\t\n\t\t\t\t\tEmailHistories.insertOne(emailHistory).then(\n\t\t\t\t\t\t(history) => resolve(history),\n\t\t\t\t\t\t(err) => {\n\t\t\t\t\t\t\tconsole.error('Failed to queue email:', err);\n\t\t\t\t\t\t\treject(err);\n\t\t\t\t\t\t}\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tconsole.log(\n\t\t\t\t\t\t'Send email',\n\t\t\t\t\t\tsendTo,\n\t\t\t\t\t\tsubject,\n\t\t\t\t\t\ttext,\n\t\t\t\t\t\thtml,\n\t\t\t\t\t\tattachments,\n\t\t\t\t\t\tsend_from\n\t\t\t\t\t);\n\t\t\t\t\tresolve(true);\n\t\t\t\t}\n\t\t\t}\n\t\t\telse {\n\t\t\t\tresolve(true);\n\t\t\t}\n\t\t});\n\t}\n\n\tpublic getAWS(): AWS {\n\t\treturn this._aws;\n\t}\n\n\tpublic readFile(fileName) {\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tif (fs.existsSync(path.join(__dirname, ('../private/' + fileName)))) {\n\t\t\t\tfs.readFile(path.join(__dirname, ('../private/' + fileName)), 'utf-8', (err, res) => { \n\t\t\t\t\tif (err) {\n\t\t\t\t\t\treject(err);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif (fs.existsSync(path.join(this.clientDir, ('./private/' + fileName)))) {\n\t\t\t\t\tfs.readFile(path.join(this.clientDir, ('./private/' + fileName)), 'utf-8', (err, res) => { \n\t\t\t\t\t\tif (err) {\n\t\t\t\t\t\t\treject(err);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n\n\tpublic readImage(fileName) {\n\t\treturn new Promise((resolve, reject) => {\n\t\t\tif (fs.existsSync(path.join(__dirname, ('../private/' + fileName)))) {\n\t\t\t\tfs.readFile(path.join(__dirname, ('../private/' + fileName)), 'base64', (err, res) => { \n\t\t\t\t\tif (err) {\n\t\t\t\t\t\treject(err);\n\t\t\t\t\t}\n\t\t\t\t\telse {\n\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\t\t\telse {\n\t\t\t\tif (fs.existsSync(path.join(this.clientDir, ('./private/' + fileName)))) {\n\t\t\t\t\tfs.readFile(path.join(this.clientDir, ('./private/' + fileName)), 'base64', (err, res) => { \n\t\t\t\t\t\tif (err) {\n\t\t\t\t\t\t\treject(err);\n\t\t\t\t\t\t}\n\t\t\t\t\t\telse {\n\t\t\t\t\t\t\tresolve(res);\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t}\n\t\t});\n\t}\n}"]}
@@ -1,2 +1,2 @@
1
- "use strict";var __values=this&&this.__values||function(e){var t="function"==typeof Symbol&&Symbol.iterator,s=t&&e[t],n=0;if(s)return s.call(e);if(e&&"number"==typeof e.length)return{next:function(){return{value:(e=e&&n>=e.length?void 0:e)&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},WebSocketManager=(Object.defineProperty(exports,"__esModule",{value:!0}),exports.WebSocketManager=void 0,function(){function WebSocketManager(e,t,s){void 0===t&&(t=20480),void 0===s&&(s=25),this._messageBuffers=new Map,this._batchingTimers=new Map,this._webSockets=new Map,this._mainServer=e,this._maxMessageSize=t,this._messageDelay=s}return WebSocketManager.prototype.addWebSocket=function(e){var t=e.id_socket;this._webSockets.set(t,e)},WebSocketManager.prototype.removeWebSocket=function(e){var t=e.id_socket;this._webSockets.delete(t),this.closeConnection(e)},WebSocketManager.prototype.getWebSocket=function(e){return this._webSockets.get(e)},WebSocketManager.prototype.send=function(e,t){var s=this,n=e.id_socket;this._messageBuffers.has(n)||this._messageBuffers.set(n,[]),"string"==typeof t?this._messageBuffers.get(n).push({messageId:null,hasError:!1,data:t}):this._messageBuffers.get(n).push(t),this._batchingTimers.has(n)||(t=setTimeout(function(){s.flushMessages(e)},this._messageDelay),this._batchingTimers.set(n,t))},WebSocketManager.prototype.flushMessages=function(t){var e,s=this,n=t.id_socket,r=this._messageBuffers.get(n);r&&0<r.length&&(e=JSON.stringify(r),Buffer.byteLength(e,"utf8")>this._maxMessageSize?this.sendMessagesInChunks(t,r):t.send(e,function(e){e&&s.handleSendError(t,e)}),this._messageBuffers.delete(n),clearTimeout(this._batchingTimers.get(n)),this._batchingTimers.delete(n))},WebSocketManager.prototype.sendMessagesInChunks=function(t,e){var s,n,r=this,i=[],o=0;try{for(var a=__values(e),c=a.next();!c.done;c=a.next()){var h=c.value,g=JSON.stringify([h]),u=Buffer.byteLength(g,"utf8");o+u>this._maxMessageSize?(t.send(JSON.stringify(i),function(e){e&&r.handleSendError(t,e)}),i=[h],o=u):(i.push(h),o+=u)}}catch(e){s={error:e}}finally{try{c&&!c.done&&(n=a.return)&&n.call(a)}finally{if(s)throw s.error}}0<i.length&&t.send(JSON.stringify(i),function(e){e&&r.handleSendError(t,e)})},WebSocketManager.prototype.handleSendError=function(e,t){this._mainServer.getSubscriptionManager().getEnableDebug()&&console.log(new Date,"WebSocketManager","Unsub WS",e.user,e.id_socket,t),this._mainServer.getSubscriptionManager().unsubscribeAll(e),this.removeWebSocket(e)},WebSocketManager.prototype.closeConnection=function(e){e.close();var t=e.id_socket;this._messageBuffers.delete(t),this._batchingTimers.has(t)&&(clearTimeout(this._batchingTimers.get(t)),this._batchingTimers.delete(t)),process.nextTick(function(){[e.OPEN,e.CLOSING].includes(e.readyState)&&e.terminate()})},WebSocketManager}());exports.WebSocketManager=WebSocketManager;
1
+ "use strict";var __values=this&&this.__values||function(e){var t="function"==typeof Symbol&&Symbol.iterator,s=t&&e[t],n=0;if(s)return s.call(e);if(e&&"number"==typeof e.length)return{next:function(){return{value:(e=e&&n>=e.length?void 0:e)&&e[n++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")},WebSocketManager=(Object.defineProperty(exports,"__esModule",{value:!0}),exports.WebSocketManager=void 0,function(){function WebSocketManager(e,t,s){void 0===t&&(t=20480),void 0===s&&(s=25),this._messageBuffers=new Map,this._batchingTimers=new Map,this._webSockets=new Map,this._mainServer=e,this._maxMessageSize=t,this._messageDelay=s}return WebSocketManager.prototype.addWebSocket=function(e){var t=e.id_socket;this._webSockets.set(t,e)},WebSocketManager.prototype.removeWebSocket=function(e){var t=e.id_socket;this._webSockets.delete(t),this.closeConnection(e)},WebSocketManager.prototype.getWebSocket=function(e){return this._webSockets.get(e)},WebSocketManager.prototype.send=function(e,t){var s=this,n=e.id_socket;this._messageBuffers.has(n)||this._messageBuffers.set(n,[]),"string"==typeof t?this._messageBuffers.get(n).push({messageId:null,hasError:!1,data:t}):this._messageBuffers.get(n).push(t),this._batchingTimers.has(n)||(t=setTimeout(function(){s.flushMessages(e)},this._messageDelay),this._batchingTimers.set(n,t))},WebSocketManager.prototype.flushMessages=function(t){var e,s=this,n=t.id_socket,r=this._messageBuffers.get(n);r&&0<r.length&&(e=JSON.stringify(r),Buffer.byteLength(e,"utf8")>this._maxMessageSize?this.sendMessagesInChunks(t,r):t.send(e,function(e){e&&s.handleSendError(t,e)}),this._messageBuffers.delete(n),clearTimeout(this._batchingTimers.get(n)),this._batchingTimers.delete(n))},WebSocketManager.prototype.sendMessagesInChunks=function(t,e){var s,n,r=this,i=[],a=0;try{for(var o=__values(e),c=o.next();!c.done;c=o.next()){var h=c.value,g=JSON.stringify([h]),u=Buffer.byteLength(g,"utf8");a+u>this._maxMessageSize?(t.send(JSON.stringify(i),function(e){e&&r.handleSendError(t,e)}),i=[h],a=u):(i.push(h),a+=u)}}catch(e){s={error:e}}finally{try{c&&!c.done&&(n=o.return)&&n.call(o)}finally{if(s)throw s.error}}0<i.length&&t.send(JSON.stringify(i),function(e){e&&r.handleSendError(t,e)})},WebSocketManager.prototype.handleSendError=function(e,t){this._mainServer.getSubscriptionManager()&&(this._mainServer.getSubscriptionManager().getEnableDebug()&&console.log(new Date,"WebSocketManager","Unsub WS",e.user,e.id_socket,t),this._mainServer.getSubscriptionManager().unsubscribeAll(e),this.removeWebSocket(e))},WebSocketManager.prototype.closeConnection=function(e){e.close();var t=e.id_socket;this._messageBuffers.delete(t),this._batchingTimers.has(t)&&(clearTimeout(this._batchingTimers.get(t)),this._batchingTimers.delete(t)),process.nextTick(function(){[e.OPEN,e.CLOSING].includes(e.readyState)&&e.terminate()})},WebSocketManager}());exports.WebSocketManager=WebSocketManager;
2
2
  //# sourceMappingURL=websocket.manager.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../src/managers/websocket.manager.ts"],"names":["WebSocketManager","mainServer","maxMessageSize","messageDelay","this","_messageBuffers","Map","_batchingTimers","_webSockets","_mainServer","_maxMessageSize","_messageDelay","prototype","addWebSocket","ws","wsId","set","removeWebSocket","delete","closeConnection","getWebSocket","id_socket","get","send","data","_this","has","push","messageId","hasError","timer","setTimeout","flushMessages","combinedData","messages","length","JSON","stringify","Buffer","byteLength","sendMessagesInChunks","error","handleSendError","clearTimeout","chunk","chunkSize","messages_1","__values","messages_1_1","next","done","message","value","messageData","messageSize","getSubscriptionManager","getEnableDebug","console","log","Date","unsubscribeAll","close","process","nextTick","OPEN","CLOSING","includes","readyState","terminate","exports"],"mappings":"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","file":"websocket.manager.js","sourcesContent":["import { WebSocket } from 'ws';\nimport { ResolveIOServer } from '../index';\nimport ResolveIOMainServer from '../server-app';\n\ninterface ServerResponseModel {\n\tmessageId: number;\n\thasError: boolean;\n\tdata: any;\n}\n\nexport class WebSocketManager {\n\tprivate _mainServer: ResolveIOMainServer;\n\tprivate _messageBuffers: Map<string, ServerResponseModel[]> = new Map();\n\tprivate _batchingTimers: Map<string, NodeJS.Timeout> = new Map();\n\tprivate _maxMessageSize: number;\n\tprivate _messageDelay: number;\n\tprivate _webSockets: Map<string, WebSocket> = new Map();\n\n\tconstructor(mainServer: ResolveIOMainServer, maxMessageSize: number = 20480, messageDelay: number = 25) {\n\t\tthis._mainServer = mainServer;\n\t\tthis._maxMessageSize = maxMessageSize;\n\t\tthis._messageDelay = messageDelay;\n\t}\n\n\tpublic addWebSocket(ws: WebSocket): void {\n\t\tconst wsId = ws['id_socket'];\n\t\tthis._webSockets.set(wsId, ws);\n\t}\n\n\tpublic removeWebSocket(ws: WebSocket): void {\n\t\tconst wsId = ws['id_socket'];\n\t\tthis._webSockets.delete(wsId);\n\t\tthis.closeConnection(ws);\n\t}\n\n\tpublic getWebSocket(id_socket: string): WebSocket | undefined {\n\t\treturn this._webSockets.get(id_socket);\n\t}\n\n\tpublic send(ws: WebSocket, data: ServerResponseModel | string): void {\n\t\tconst wsId = ws['id_socket'];\n\n\t\tif (!this._messageBuffers.has(wsId)) {\n\t\t\tthis._messageBuffers.set(wsId, []);\n\t\t}\n\n\t\tif (typeof data === 'string') {\n\t\t\t// Handle string messages like 'ping' or 'pong'\n\t\t\tthis._messageBuffers.get(wsId).push({ messageId: null, hasError: false, data: data });\n\t\t}\n\t\telse {\n\t\t\tthis._messageBuffers.get(wsId).push(data);\n\t\t}\n\n\t\tif (!this._batchingTimers.has(wsId)) {\n\t\t\t// Set a timer to send the batch after a short delay\n\t\t\tconst timer = setTimeout(() => {\n\t\t\t\tthis.flushMessages(ws);\n\t\t\t}, this._messageDelay);\n\t\t\tthis._batchingTimers.set(wsId, timer);\n\t\t}\n\t}\n\n\tprivate flushMessages(ws: WebSocket): void {\n\t\tconst wsId = ws['id_socket'];\n\t\tconst messages = this._messageBuffers.get(wsId);\n\n\t\tif (messages && messages.length > 0) {\n\t\t\t// Combine messages into one payload\n\t\t\tconst combinedData = JSON.stringify(messages);\n\t\t\tconst dataSize = Buffer.byteLength(combinedData, 'utf8');\n\n\t\t\tif (dataSize > this._maxMessageSize) {\n\t\t\t\t// Split messages to ensure each does not exceed max size\n\t\t\t\tthis.sendMessagesInChunks(ws, messages);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tws.send(combinedData, (error) => {\n\t\t\t\t\tif (error) {\n\t\t\t\t\t\tthis.handleSendError(ws, error);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Clear the buffer and timer\n\t\t\tthis._messageBuffers.delete(wsId);\n\t\t\tclearTimeout(this._batchingTimers.get(wsId));\n\t\t\tthis._batchingTimers.delete(wsId);\n\t\t}\n\t}\n\n\tprivate sendMessagesInChunks(ws: WebSocket, messages: ServerResponseModel[]): void {\n\t\tlet chunk: ServerResponseModel[] = [];\n\t\tlet chunkSize = 0;\n\n\t\tfor (const message of messages) {\n\t\t\tconst messageData = JSON.stringify([message]); // Wrap message in array for consistency\n\t\t\tconst messageSize = Buffer.byteLength(messageData, 'utf8');\n\n\t\t\tif (chunkSize + messageSize > this._maxMessageSize) {\n\t\t\t\t// Send current chunk\n\t\t\t\tws.send(JSON.stringify(chunk), (error) => {\n\t\t\t\t\tif (error) {\n\t\t\t\t\t\tthis.handleSendError(ws, error);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\t// Start new chunk\n\t\t\t\tchunk = [message];\n\t\t\t\tchunkSize = messageSize;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tchunk.push(message);\n\t\t\t\tchunkSize += messageSize;\n\t\t\t}\n\t\t}\n\n\t\t// Send any remaining messages\n\t\tif (chunk.length > 0) {\n\t\t\tws.send(JSON.stringify(chunk), (error) => {\n\t\t\t\tif (error) {\n\t\t\t\t\tthis.handleSendError(ws, error);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n\n\tprivate handleSendError(ws: WebSocket, error: Error): void {\n\t\t// Handle send error, e.g., unsubscribe, close connection\n\t\tif (this._mainServer.getSubscriptionManager().getEnableDebug()) {\n\t\t\tconsole.log(new Date(), 'WebSocketManager', 'Unsub WS', ws['user'], ws['id_socket'], error);\n\t\t}\n\t\tthis._mainServer.getSubscriptionManager().unsubscribeAll(ws);\n\t\tthis.removeWebSocket(ws);\n\t}\n\n\tpublic closeConnection(ws: WebSocket): void {\n\t\tws.close();\n\t\tconst wsId = ws['id_socket'];\n\t\t// Clean up buffers and timers\n\t\tthis._messageBuffers.delete(wsId);\n\t\tif (this._batchingTimers.has(wsId)) {\n\t\t\tclearTimeout(this._batchingTimers.get(wsId));\n\t\t\tthis._batchingTimers.delete(wsId);\n\t\t}\n \n process.nextTick(() => {\n if ([ws.OPEN, ws.CLOSING].includes(<any>ws.readyState)) {\n // Socket still hangs, hard close\n ws.terminate();\n }\n });\n\t}\n}"]}
1
+ {"version":3,"sources":["../../src/managers/websocket.manager.ts"],"names":["WebSocketManager","mainServer","maxMessageSize","messageDelay","this","_messageBuffers","Map","_batchingTimers","_webSockets","_mainServer","_maxMessageSize","_messageDelay","prototype","addWebSocket","ws","wsId","set","removeWebSocket","delete","closeConnection","getWebSocket","id_socket","get","send","data","_this","has","push","messageId","hasError","timer","setTimeout","flushMessages","combinedData","messages","length","JSON","stringify","Buffer","byteLength","sendMessagesInChunks","error","handleSendError","clearTimeout","chunk","chunkSize","messages_1","__values","messages_1_1","next","done","message","value","messageData","messageSize","getSubscriptionManager","getEnableDebug","console","log","Date","unsubscribeAll","close","process","nextTick","OPEN","CLOSING","includes","readyState","terminate","exports"],"mappings":"uVAUAA,kB,uFAAA,WAQC,SAAAA,iBAAYC,EAAiCC,EAAgCC,GAAhC,KAAA,IAAAD,IAAAA,EAAA,OAAgC,KAAA,IAAAC,IAAAA,EAAA,IANrEC,KAAAC,gBAAsD,IAAIC,IAC1DF,KAAAG,gBAA+C,IAAID,IAGnDF,KAAAI,YAAsC,IAAIF,IAGjDF,KAAKK,YAAcR,EACnBG,KAAKM,gBAAkBR,EACvBE,KAAKO,cAAgBR,CACtB,CAoID,OAlIQH,iBAAAY,UAAAC,aAAP,SAAoBC,GACnB,IAAMC,EAAOD,EAAc,UAC3BV,KAAKI,YAAYQ,IAAID,EAAMD,CAAE,CAC9B,EAEOd,iBAAAY,UAAAK,gBAAP,SAAuBH,GACtB,IAAMC,EAAOD,EAAc,UAC3BV,KAAKI,YAAYU,OAAOH,CAAI,EAC5BX,KAAKe,gBAAgBL,CAAE,CACxB,EAEOd,iBAAAY,UAAAQ,aAAP,SAAoBC,GACnB,OAAOjB,KAAKI,YAAYc,IAAID,CAAS,CACtC,EAEOrB,iBAAAY,UAAAW,KAAP,SAAYT,EAAeU,GAA3B,IAAAC,EAAArB,KACOW,EAAOD,EAAc,UAEtBV,KAAKC,gBAAgBqB,IAAIX,CAAI,GACjCX,KAAKC,gBAAgBW,IAAID,EAAM,EAAE,EAGd,UAAhB,OAAOS,EAEVpB,KAAKC,gBAAgBiB,IAAIP,CAAI,EAAEY,KAAK,CAAEC,UAAW,KAAMC,SAAU,CAAA,EAAOL,KAAMA,CAAI,CAAE,EAGpFpB,KAAKC,gBAAgBiB,IAAIP,CAAI,EAAEY,KAAKH,CAAI,EAGpCpB,KAAKG,gBAAgBmB,IAAIX,CAAI,IAE3Be,EAAQC,WAAW,WACxBN,EAAKO,cAAclB,CAAE,CACtB,EAAGV,KAAKO,aAAa,EACrBP,KAAKG,gBAAgBS,IAAID,EAAMe,CAAK,EAEtC,EAEQ9B,iBAAAY,UAAAoB,cAAR,SAAsBlB,GAAtB,IAMQmB,EANRR,EAAArB,KACOW,EAAOD,EAAc,UACrBoB,EAAW9B,KAAKC,gBAAgBiB,IAAIP,CAAI,EAE1CmB,GAA8B,EAAlBA,EAASC,SAElBF,EAAeG,KAAKC,UAAUH,CAAQ,EAC3BI,OAAOC,WAAWN,EAAc,MAAM,EAExC7B,KAAKM,gBAEnBN,KAAKoC,qBAAqB1B,EAAIoB,CAAQ,EAGtCpB,EAAGS,KAAKU,EAAc,SAACQ,GAClBA,GACHhB,EAAKiB,gBAAgB5B,EAAI2B,CAAK,CAEhC,CAAC,EAIFrC,KAAKC,gBAAgBa,OAAOH,CAAI,EAChC4B,aAAavC,KAAKG,gBAAgBe,IAAIP,CAAI,CAAC,EAC3CX,KAAKG,gBAAgBW,OAAOH,CAAI,EAElC,EAEQf,iBAAAY,UAAA4B,qBAAR,SAA6B1B,EAAeoB,G,QAA5CT,EAAArB,KACKwC,EAA+B,GAC/BC,EAAY,E,IAEhB,IAAsB,IAAAC,EAAAC,SAAAb,CAAQ,EAAAc,EAAAF,EAAAG,KAAA,EAAA,CAAAD,EAAAE,KAAAF,EAAAF,EAAAG,KAAA,EAAE,CAA3B,IAAME,EAAOH,EAAAI,MACXC,EAAcjB,KAAKC,UAAU,CAACc,EAAQ,EACtCG,EAAchB,OAAOC,WAAWc,EAAa,MAAM,EAErDR,EAAYS,EAAclD,KAAKM,iBAElCI,EAAGS,KAAKa,KAAKC,UAAUO,CAAK,EAAG,SAACH,GAC3BA,GACHhB,EAAKiB,gBAAgB5B,EAAI2B,CAAK,CAEhC,CAAC,EAEDG,EAAQ,CAACO,GACTN,EAAYS,IAGZV,EAAMjB,KAAKwB,CAAO,EAClBN,GAAaS,E,mGAKI,EAAfV,EAAMT,QACTrB,EAAGS,KAAKa,KAAKC,UAAUO,CAAK,EAAG,SAACH,GAC3BA,GACHhB,EAAKiB,gBAAgB5B,EAAI2B,CAAK,CAEhC,CAAC,CAEH,EAEQzC,iBAAAY,UAAA8B,gBAAR,SAAwB5B,EAAe2B,GAClCrC,KAAKK,YAAY8C,uBAAsB,IAEtCnD,KAAKK,YAAY8C,uBAAsB,EAAGC,eAAc,GAC3DC,QAAQC,IAAI,IAAIC,KAAQ,mBAAoB,WAAY7C,EAAS,KAAGA,EAAc,UAAG2B,CAAK,EAE3FrC,KAAKK,YAAY8C,uBAAsB,EAAGK,eAAe9C,CAAE,EAC3DV,KAAKa,gBAAgBH,CAAE,EAEzB,EAEOd,iBAAAY,UAAAO,gBAAP,SAAuBL,GACtBA,EAAG+C,MAAK,EACR,IAAM9C,EAAOD,EAAc,UAE3BV,KAAKC,gBAAgBa,OAAOH,CAAI,EAC5BX,KAAKG,gBAAgBmB,IAAIX,CAAI,IAChC4B,aAAavC,KAAKG,gBAAgBe,IAAIP,CAAI,CAAC,EAC3CX,KAAKG,gBAAgBW,OAAOH,CAAI,GAG3B+C,QAAQC,SAAS,WACT,CAACjD,EAAGkD,KAAMlD,EAAGmD,SAASC,SAAcpD,EAAGqD,UAAU,GAEjDrD,EAAGsD,UAAS,CAEpB,CAAC,CACR,EACDpE,gBAAA,EAAC,GAhJYqE,QAAArE,iBAAAA","file":"websocket.manager.js","sourcesContent":["import { WebSocket } from 'ws';\nimport { ResolveIOServer } from '../index';\nimport ResolveIOMainServer from '../server-app';\n\ninterface ServerResponseModel {\n\tmessageId: number;\n\thasError: boolean;\n\tdata: any;\n}\n\nexport class WebSocketManager {\n\tprivate _mainServer: ResolveIOMainServer;\n\tprivate _messageBuffers: Map<string, ServerResponseModel[]> = new Map();\n\tprivate _batchingTimers: Map<string, NodeJS.Timeout> = new Map();\n\tprivate _maxMessageSize: number;\n\tprivate _messageDelay: number;\n\tprivate _webSockets: Map<string, WebSocket> = new Map();\n\n\tconstructor(mainServer: ResolveIOMainServer, maxMessageSize: number = 20480, messageDelay: number = 25) {\n\t\tthis._mainServer = mainServer;\n\t\tthis._maxMessageSize = maxMessageSize;\n\t\tthis._messageDelay = messageDelay;\n\t}\n\n\tpublic addWebSocket(ws: WebSocket): void {\n\t\tconst wsId = ws['id_socket'];\n\t\tthis._webSockets.set(wsId, ws);\n\t}\n\n\tpublic removeWebSocket(ws: WebSocket): void {\n\t\tconst wsId = ws['id_socket'];\n\t\tthis._webSockets.delete(wsId);\n\t\tthis.closeConnection(ws);\n\t}\n\n\tpublic getWebSocket(id_socket: string): WebSocket | undefined {\n\t\treturn this._webSockets.get(id_socket);\n\t}\n\n\tpublic send(ws: WebSocket, data: ServerResponseModel | string): void {\n\t\tconst wsId = ws['id_socket'];\n\n\t\tif (!this._messageBuffers.has(wsId)) {\n\t\t\tthis._messageBuffers.set(wsId, []);\n\t\t}\n\n\t\tif (typeof data === 'string') {\n\t\t\t// Handle string messages like 'ping' or 'pong'\n\t\t\tthis._messageBuffers.get(wsId).push({ messageId: null, hasError: false, data: data });\n\t\t}\n\t\telse {\n\t\t\tthis._messageBuffers.get(wsId).push(data);\n\t\t}\n\n\t\tif (!this._batchingTimers.has(wsId)) {\n\t\t\t// Set a timer to send the batch after a short delay\n\t\t\tconst timer = setTimeout(() => {\n\t\t\t\tthis.flushMessages(ws);\n\t\t\t}, this._messageDelay);\n\t\t\tthis._batchingTimers.set(wsId, timer);\n\t\t}\n\t}\n\n\tprivate flushMessages(ws: WebSocket): void {\n\t\tconst wsId = ws['id_socket'];\n\t\tconst messages = this._messageBuffers.get(wsId);\n\n\t\tif (messages && messages.length > 0) {\n\t\t\t// Combine messages into one payload\n\t\t\tconst combinedData = JSON.stringify(messages);\n\t\t\tconst dataSize = Buffer.byteLength(combinedData, 'utf8');\n\n\t\t\tif (dataSize > this._maxMessageSize) {\n\t\t\t\t// Split messages to ensure each does not exceed max size\n\t\t\t\tthis.sendMessagesInChunks(ws, messages);\n\t\t\t}\n\t\t\telse {\n\t\t\t\tws.send(combinedData, (error) => {\n\t\t\t\t\tif (error) {\n\t\t\t\t\t\tthis.handleSendError(ws, error);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t}\n\n\t\t\t// Clear the buffer and timer\n\t\t\tthis._messageBuffers.delete(wsId);\n\t\t\tclearTimeout(this._batchingTimers.get(wsId));\n\t\t\tthis._batchingTimers.delete(wsId);\n\t\t}\n\t}\n\n\tprivate sendMessagesInChunks(ws: WebSocket, messages: ServerResponseModel[]): void {\n\t\tlet chunk: ServerResponseModel[] = [];\n\t\tlet chunkSize = 0;\n\n\t\tfor (const message of messages) {\n\t\t\tconst messageData = JSON.stringify([message]); // Wrap message in array for consistency\n\t\t\tconst messageSize = Buffer.byteLength(messageData, 'utf8');\n\n\t\t\tif (chunkSize + messageSize > this._maxMessageSize) {\n\t\t\t\t// Send current chunk\n\t\t\t\tws.send(JSON.stringify(chunk), (error) => {\n\t\t\t\t\tif (error) {\n\t\t\t\t\t\tthis.handleSendError(ws, error);\n\t\t\t\t\t}\n\t\t\t\t});\n\t\t\t\t// Start new chunk\n\t\t\t\tchunk = [message];\n\t\t\t\tchunkSize = messageSize;\n\t\t\t}\n\t\t\telse {\n\t\t\t\tchunk.push(message);\n\t\t\t\tchunkSize += messageSize;\n\t\t\t}\n\t\t}\n\n\t\t// Send any remaining messages\n\t\tif (chunk.length > 0) {\n\t\t\tws.send(JSON.stringify(chunk), (error) => {\n\t\t\t\tif (error) {\n\t\t\t\t\tthis.handleSendError(ws, error);\n\t\t\t\t}\n\t\t\t});\n\t\t}\n\t}\n\n\tprivate handleSendError(ws: WebSocket, error: Error): void {\n\t\tif (this._mainServer.getSubscriptionManager()) {\n\t\t\t// Handle send error, e.g., unsubscribe, close connection\n\t\t\tif (this._mainServer.getSubscriptionManager().getEnableDebug()) {\n\t\t\t\tconsole.log(new Date(), 'WebSocketManager', 'Unsub WS', ws['user'], ws['id_socket'], error);\n\t\t\t}\n\t\t\tthis._mainServer.getSubscriptionManager().unsubscribeAll(ws);\n\t\t\tthis.removeWebSocket(ws);\n\t\t}\n\t}\n\n\tpublic closeConnection(ws: WebSocket): void {\n\t\tws.close();\n\t\tconst wsId = ws['id_socket'];\n\t\t// Clean up buffers and timers\n\t\tthis._messageBuffers.delete(wsId);\n\t\tif (this._batchingTimers.has(wsId)) {\n\t\t\tclearTimeout(this._batchingTimers.get(wsId));\n\t\t\tthis._batchingTimers.delete(wsId);\n\t\t}\n \n process.nextTick(() => {\n if ([ws.OPEN, ws.CLOSING].includes(<any>ws.readyState)) {\n // Socket still hangs, hard close\n ws.terminate();\n }\n });\n\t}\n}"]}