@meru2802/aux-server 1.0.11 → 1.0.13

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.
@@ -24,6 +24,7 @@ export declare class ConfigManager {
24
24
  eventsEndpoint: string;
25
25
  introspectEndpoint: string;
26
26
  HMAC_SECRET: string;
27
+ assetEndpoint: string;
27
28
  };
28
29
  getLoggingConfig(): {
29
30
  level: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,qBAAa,aAAa;IACxB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAgB;IACvC,OAAO,CAAC,MAAM,CAAS;IAEvB,OAAO;WAIO,WAAW,IAAI,aAAa;IAO1C,OAAO,CAAC,UAAU;IAwDX,SAAS,IAAI,MAAM;IAInB,aAAa;;;;;;;IAIb,WAAW;;;;;;;IAIX,gBAAgB;;;;;IAIhB,gBAAgB;;;;;;;;CAGxB"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/config/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAElC,qBAAa,aAAa;IACxB,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAgB;IACvC,OAAO,CAAC,MAAM,CAAS;IAEvB,OAAO;WAIO,WAAW,IAAI,aAAa;IAO1C,OAAO,CAAC,UAAU;IAwDX,SAAS,IAAI,MAAM;IAInB,aAAa;;;;;;;IAIb,WAAW;;;;;;;IAIX,gBAAgB;;;;;;IAIhB,gBAAgB;;;;;;;;CAGxB"}
@@ -1 +1 @@
1
- {"version":3,"file":"coreController.d.ts","sourceRoot":"","sources":["../../src/controllers/coreController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAgBlD,qBAAa,cAAe,SAAQ,cAAc;gBACpC,gBAAgB,CAAC,EAAE,iBAAiB;IAIzC,eAAe,GACpB,KAAK,OAAO,EACZ,KAAK,QAAQ,KACZ,OAAO,CAAC,IAAI,CAAC,CAkJd;IAEK,iBAAiB,GACtB,KAAK,OAAO,EACZ,KAAK,QAAQ,KACZ,OAAO,CAAC,IAAI,CAAC,CAoHd;IAEK,cAAc,GACnB,KAAK,OAAO,EACZ,KAAK,QAAQ,KACZ,OAAO,CAAC,IAAI,CAAC,CA8Ld;IAEK,wBAAwB,GAC7B,KAAK,OAAO,EACZ,KAAK,QAAQ,KACZ,OAAO,CAAC,IAAI,CAAC,CAwcd;CACH"}
1
+ {"version":3,"file":"coreController.d.ts","sourceRoot":"","sources":["../../src/controllers/coreController.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC;AAC5C,OAAO,EAAE,iBAAiB,EAAE,MAAM,8BAA8B,CAAC;AACjE,OAAO,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AAgBlD,qBAAa,cAAe,SAAQ,cAAc;gBACpC,gBAAgB,CAAC,EAAE,iBAAiB;IAIzC,eAAe,GACpB,KAAK,OAAO,EACZ,KAAK,QAAQ,KACZ,OAAO,CAAC,IAAI,CAAC,CAkJd;IAEK,iBAAiB,GACtB,KAAK,OAAO,EACZ,KAAK,QAAQ,KACZ,OAAO,CAAC,IAAI,CAAC,CAoHd;IAEK,cAAc,GACnB,KAAK,OAAO,EACZ,KAAK,QAAQ,KACZ,OAAO,CAAC,IAAI,CAAC,CA8Ld;IAEK,wBAAwB,GAC7B,KAAK,OAAO,EACZ,KAAK,QAAQ,KACZ,OAAO,CAAC,IAAI,CAAC,CA8iBd;CACH"}
@@ -391,8 +391,56 @@ class CoreController extends BaseController_1.BaseController {
391
391
  try {
392
392
  const { clientId, siteId, agentType, endpointUrl, os } = req.body;
393
393
  const baseUrl = `https://${this.config.epmConfig.server}`;
394
- if (os == types_1.OperatingSystems.WINDOWS) {
395
- const script = `
394
+ //Get Org_id, Site_id, AssetTypeID, and Org_token form db
395
+ const iceberg_org_id_query = "SELECT string_value FROM clients_clientcustomfield WHERE client_id = $1";
396
+ const iceberg_site_id_query = "SELECT string_value FROM clients_sitecustomfield WHERE site_id = $1";
397
+ const iceberg_org_token_query = "SELECT string_value FROM clients_clientcustomfield WHERE client_id = $1 AND field_id = $2";
398
+ const iceberg_asset_type_id_query = "SELECT string_value FROM clients_clientcustomfield WHERE client_id = $1 AND field_id = $2";
399
+ console.log(`[getAgentDetails] Executing parallel queries for iceberg details`);
400
+ const iceberg_org_id_promise = this.dbPool.query(iceberg_org_id_query, [clientId]);
401
+ const iceberg_site_id_promise = this.dbPool.query(iceberg_site_id_query, [siteId]);
402
+ const iceberg_org_token_promise = this.dbPool.query(iceberg_org_token_query, [
403
+ clientId,
404
+ this.config.epmConfig.tokenFieldId,
405
+ ]);
406
+ const iceberg_asset_type_id_promise = this.dbPool.query(iceberg_asset_type_id_query, [
407
+ clientId,
408
+ this.config.epmConfig.assetTypeFieldId,
409
+ ]);
410
+ let [iceberg_ord_id, iceberg_site_id, iceberg_org_token, iceberg_asset_type_id,] = await Promise.all([
411
+ iceberg_org_id_promise,
412
+ iceberg_site_id_promise,
413
+ iceberg_org_token_promise,
414
+ iceberg_asset_type_id_promise,
415
+ ]);
416
+ console.log(`[getAgentDetails] Iceberg queries completed with results:`, {
417
+ org_id_rows: iceberg_ord_id.rows.length,
418
+ site_id_rows: iceberg_site_id.rows.length,
419
+ org_token_rows: iceberg_org_token.rows.length,
420
+ asset_type_id_rows: iceberg_asset_type_id.rows.length,
421
+ });
422
+ if (iceberg_ord_id.rows.length > 0 &&
423
+ iceberg_site_id.rows.length > 0 &&
424
+ iceberg_org_token.rows.length > 0 &&
425
+ iceberg_asset_type_id.rows.length > 0) {
426
+ const siteRow = iceberg_site_id.rows[0];
427
+ const orgRow = iceberg_ord_id.rows[0];
428
+ const orgTokenRow = iceberg_org_token.rows[0];
429
+ const assetTypeRow = iceberg_asset_type_id.rows[0];
430
+ if (!siteRow || !orgRow || !orgTokenRow || !assetTypeRow) {
431
+ const errorResponse = {
432
+ error: "Either SiteId, OrgId, OrgToken, or AssetTypeId is missing",
433
+ timestamp: new Date().toISOString(),
434
+ };
435
+ res.status(501).json(errorResponse);
436
+ return;
437
+ }
438
+ const assetTypeId = assetTypeRow.string_value;
439
+ const icebergSiteId = siteRow.string_value;
440
+ const icebergOrgId = orgRow.string_value;
441
+ const icebergOrgToken = orgTokenRow.string_value;
442
+ if (os == types_1.OperatingSystems.WINDOWS) {
443
+ const script = `
396
444
  $endpointsetup = 'nexus-endpoint-v0.1.0-i32-setup.exe'
397
445
  $api = '"${baseUrl}"'
398
446
  $clientid = '${clientId}'
@@ -404,13 +452,18 @@ $ping = 0
404
452
  $auth = '"${this.config.epmConfig.installerToken}"'
405
453
  $endpointdownloadlink = '${endpointUrl}'
406
454
  $apilink = $endpointdownloadlink.split('/')
455
+ $assetTypeId = '"${assetTypeId}"'
456
+ $icebergSiteId = '"${icebergSiteId}"'
457
+ $icebergOrgId = '"${icebergOrgId}"'
458
+ $icebergOrgToken = '"${icebergOrgToken}"'
459
+ $assetEndpoint = '"${this.config.icebergConfig.assetEndpoint}"'
407
460
  [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
408
461
  $serviceName = 'nexusrmm'
409
462
  If (Get-Service $serviceName -ErrorAction SilentlyContinue) {
410
463
  write-host ('Nexus RMM Agent Is Already Installed')
411
464
  } Else {
412
465
  $OutPath = $env:TMP
413
- $installArgs = @('-m install --api ', "$api", '--client-id', $clientid, '--site-id', $siteid, '--agent-type', "$agenttype", '--auth', "$auth", '-silent')
466
+ $installArgs = @('-m install --api ', "$api", '--client-id', $clientid, '--site-id', $siteid, '--agent-type', "$agenttype", '--auth', "$auth", '--asset-type-id', "$assetTypeId", '--iceberg-site-id', "$icebergSiteId", '--iceberg-org-id', "$icebergOrgId", '--iceberg-org-token', "$icebergOrgToken", '--asset-api', "$assetEndpoint", '-silent')
414
467
  if ($power) {
415
468
  $installArgs += "--power"
416
469
  }
@@ -465,81 +518,81 @@ If (Get-Service $serviceName -ErrorAction SilentlyContinue) {
465
518
  }
466
519
  }
467
520
  `;
468
- res.setHeader("X-Script-Type", "powershell");
469
- res.setHeader("Content-Type", "text/plain; charset=utf-8");
470
- res.status(200).send(script);
471
- }
472
- else if (os == types_1.OperatingSystems.LINUX) {
473
- const meshesMessageSent = this.WebSocketService.sendMessage({
474
- action: "meshes",
475
- responseid: "meshctrl",
476
- });
477
- if (!meshesMessageSent) {
478
- const errorResponse = {
479
- error: "Could Not Send Message Over Socket",
480
- timestamp: new Date().toISOString(),
481
- };
482
- res.status(500).json(errorResponse);
483
- return;
484
- }
485
- if (!this.webSocket) {
486
- const errorResponse = {
487
- error: "Socket Not Found",
488
- timestamp: new Date().toISOString(),
489
- };
490
- res.status(500).json(errorResponse);
491
- return;
521
+ res.setHeader("X-Script-Type", "powershell");
522
+ res.setHeader("Content-Type", "text/plain; charset=utf-8");
523
+ res.status(200).send(script);
492
524
  }
493
- const waitForMeshResponse = new Promise((resolve, reject) => {
494
- let responseReceived = false;
495
- const timeout = setTimeout(() => {
496
- if (!responseReceived) {
497
- responseReceived = true;
498
- reject(new Error("Timeout waiting for mesh response"));
499
- }
500
- }, 10000);
501
- const messageHandler = (data) => {
502
- var _a, _b;
503
- if (responseReceived)
504
- return;
505
- try {
506
- const message = JSON.parse(data.toString());
507
- if (message.action === types_1.MeshActions.MESH_ES) {
525
+ else if (os == types_1.OperatingSystems.LINUX) {
526
+ const meshesMessageSent = this.WebSocketService.sendMessage({
527
+ action: "meshes",
528
+ responseid: "meshctrl",
529
+ });
530
+ if (!meshesMessageSent) {
531
+ const errorResponse = {
532
+ error: "Could Not Send Message Over Socket",
533
+ timestamp: new Date().toISOString(),
534
+ };
535
+ res.status(500).json(errorResponse);
536
+ return;
537
+ }
538
+ if (!this.webSocket) {
539
+ const errorResponse = {
540
+ error: "Socket Not Found",
541
+ timestamp: new Date().toISOString(),
542
+ };
543
+ res.status(500).json(errorResponse);
544
+ return;
545
+ }
546
+ const waitForMeshResponse = new Promise((resolve, reject) => {
547
+ let responseReceived = false;
548
+ const timeout = setTimeout(() => {
549
+ if (!responseReceived) {
508
550
  responseReceived = true;
509
- clearTimeout(timeout);
510
- (_a = this.webSocket) === null || _a === void 0 ? void 0 : _a.removeListener("message", messageHandler);
511
- const meshesMessasge = message;
512
- console.log(`meshes: ${JSON.stringify(meshesMessasge)}`);
513
- const mesh = meshesMessasge.meshes.find((mesh) => mesh.name == "TacticalRMM");
514
- if (!mesh) {
515
- reject(new Error("Mesh Not Found"));
516
- return;
517
- }
518
- const deviceGroupId = mesh._id.split("/")[2];
519
- if (!deviceGroupId) {
520
- reject(new Error("Error parsing deviceGroupId"));
521
- return;
551
+ reject(new Error("Timeout waiting for mesh response"));
552
+ }
553
+ }, 10000);
554
+ const messageHandler = (data) => {
555
+ var _a, _b;
556
+ if (responseReceived)
557
+ return;
558
+ try {
559
+ const message = JSON.parse(data.toString());
560
+ if (message.action === types_1.MeshActions.MESH_ES) {
561
+ responseReceived = true;
562
+ clearTimeout(timeout);
563
+ (_a = this.webSocket) === null || _a === void 0 ? void 0 : _a.removeListener("message", messageHandler);
564
+ const meshesMessasge = message;
565
+ console.log(`meshes: ${JSON.stringify(meshesMessasge)}`);
566
+ const mesh = meshesMessasge.meshes.find((mesh) => mesh.name == "TacticalRMM");
567
+ if (!mesh) {
568
+ reject(new Error("Mesh Not Found"));
569
+ return;
570
+ }
571
+ const deviceGroupId = mesh._id.split("/")[2];
572
+ if (!deviceGroupId) {
573
+ reject(new Error("Error parsing deviceGroupId"));
574
+ return;
575
+ }
576
+ const response = {
577
+ deviceGroupId,
578
+ };
579
+ resolve(response);
522
580
  }
523
- const response = {
524
- deviceGroupId,
525
- };
526
- resolve(response);
527
581
  }
528
- }
529
- catch (parseError) {
530
- if (!responseReceived) {
531
- responseReceived = true;
532
- clearTimeout(timeout);
533
- (_b = this.webSocket) === null || _b === void 0 ? void 0 : _b.removeListener("message", messageHandler);
534
- reject(parseError);
582
+ catch (parseError) {
583
+ if (!responseReceived) {
584
+ responseReceived = true;
585
+ clearTimeout(timeout);
586
+ (_b = this.webSocket) === null || _b === void 0 ? void 0 : _b.removeListener("message", messageHandler);
587
+ reject(parseError);
588
+ }
535
589
  }
536
- }
537
- };
538
- this.webSocket.on("message", messageHandler);
539
- });
540
- try {
541
- const response = await waitForMeshResponse;
542
- const script = `
590
+ };
591
+ this.webSocket.on("message", messageHandler);
592
+ });
593
+ try {
594
+ const response = await waitForMeshResponse;
595
+ const script = `
543
596
  #!/usr/bin/env bash
544
597
 
545
598
  if [ $EUID -ne 0 ]; then
@@ -589,6 +642,11 @@ token='${this.config.epmConfig.installerToken}'
589
642
  clientID='${clientId}'
590
643
  siteID='${siteId}'
591
644
  agentType='${agentType}'
645
+ assetTypeId='${assetTypeId}'
646
+ icebergSiteId='${icebergSiteId}'
647
+ icebergOrgId='${icebergOrgId}'
648
+ icebergOrgToken='${icebergOrgToken}'
649
+ assetEndpoint='${this.config.icebergConfig.assetEndpoint}'
592
650
  proxy=''
593
651
 
594
652
  agentBinPath='/usr/local/bin'
@@ -598,7 +656,7 @@ agentConf='/etc/nexusagent'
598
656
  agentSvcName='nexusagent.service'
599
657
  agentSysD="/etc/systemd/system/\${agentSvcName}"
600
658
  agentDir='/opt/nexusagent'
601
- meshDir='/opt/nexusmeshbackend'
659
+ meshDir='/opt/NexusMeshBackend'
602
660
  meshSystemBin="\${meshDir}/NexusMeshBackend"
603
661
  meshSvcName='NexusMeshBackend.service'
604
662
  meshSysD="/lib/systemd/system/\${meshSvcName}"
@@ -663,7 +721,7 @@ InstallMesh() {
663
721
  meshTmpDir='/root/meshtemp'
664
722
  mkdir -p $meshTmpDir
665
723
 
666
- meshTmpBin="\${meshTmpDir}/meshagent"
724
+ meshTmpBin="\${meshTmpDir}/NexusMeshBackend"
667
725
  wget --no-check-certificate -q -O \${meshTmpBin} \${meshDL}
668
726
  chmod +x \${meshTmpBin}
669
727
  mkdir -p \${meshDir}
@@ -743,7 +801,7 @@ if [ ! -d "\${agentBinPath}" ]; then
743
801
  mkdir -p \${agentBinPath}
744
802
  fi
745
803
 
746
- INSTALL_CMD="\${agentBin} -m install -api \${apiURL} -client-id \${clientID} -site-id \${siteID} -agent-type \${agentType} -auth \${token}"
804
+ INSTALL_CMD="\${agentBin} -m install -api \${apiURL} -client-id \${clientID} -site-id \${siteID} -agent-type \${agentType} -auth \${token} -asset-type-id \${assetTypeId} -iceberg-site-id \${icebergSiteId} -iceberg-org-id \${icebergOrgId} -iceberg-org-token \${icebergOrgToken} -asset-api \${assetEndpoint}"
747
805
 
748
806
  if [ "\${MESH_NODE_ID}" != '' ]; then
749
807
  INSTALL_CMD+=" --meshnodeid \${MESH_NODE_ID}"
@@ -791,26 +849,35 @@ systemctl start \${agentSvcName}
791
849
  sudo systemctl restart gdm3
792
850
  sudo systemctl restart systemd-logind
793
851
  sudo dmidecode --string system-serial-number`;
794
- res.setHeader("X-Script-Type", "bash");
795
- res.setHeader("Content-Type", "text/plain; charset=utf-8");
796
- res.status(200).send(script);
797
- return;
852
+ res.setHeader("X-Script-Type", "bash");
853
+ res.setHeader("Content-Type", "text/plain; charset=utf-8");
854
+ res.status(200).send(script);
855
+ return;
856
+ }
857
+ catch (error) {
858
+ console.error("Error waiting for mesh response:", error);
859
+ const errorResponse = {
860
+ error: error instanceof Error
861
+ ? error.message
862
+ : "Failed to get mesh response",
863
+ timestamp: new Date().toISOString(),
864
+ };
865
+ res.status(500).json(errorResponse);
866
+ return;
867
+ }
798
868
  }
799
- catch (error) {
800
- console.error("Error waiting for mesh response:", error);
869
+ else if (os == types_1.OperatingSystems.MACOS) {
801
870
  const errorResponse = {
802
- error: error instanceof Error
803
- ? error.message
804
- : "Failed to get mesh response",
871
+ error: "Macos script is not supported yet",
805
872
  timestamp: new Date().toISOString(),
806
873
  };
807
- res.status(500).json(errorResponse);
874
+ res.status(501).json(errorResponse);
808
875
  return;
809
876
  }
810
877
  }
811
- else if (os == types_1.OperatingSystems.MACOS) {
878
+ else {
812
879
  const errorResponse = {
813
- error: "Macos script is not supported yet",
880
+ error: "Either SiteId, OrgId, OrgToken, or AssetTypeId is missing",
814
881
  timestamp: new Date().toISOString(),
815
882
  };
816
883
  res.status(501).json(errorResponse);
@@ -17,7 +17,7 @@ class HealthController extends BaseController_1.BaseController {
17
17
  this.status = (req, res) => {
18
18
  const response = {
19
19
  service: "aux-server",
20
- version: "1.0.7",
20
+ version: "1.0.13",
21
21
  meshCentral: {
22
22
  connected: this.isWebSocketConnected,
23
23
  server: this.meshServer,
@@ -104,12 +104,15 @@ export interface Config {
104
104
  epmConfig: {
105
105
  server: string;
106
106
  installerToken: string;
107
- masterApiKey: "K4YQDV1RJ3SLJBQDGCE5WNNQT3HNUOTH";
107
+ masterApiKey: string;
108
+ tokenFieldId: number;
109
+ assetTypeFieldId: number;
108
110
  };
109
111
  icebergConfig: {
110
112
  eventsEndpoint: string;
111
113
  introspectEndpoint: string;
112
114
  HMAC_SECRET: string;
115
+ assetEndpoint: string;
113
116
  };
114
117
  dbConfig: {
115
118
  host: string;
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meru2802/aux-server",
3
- "version": "1.0.11",
3
+ "version": "1.0.13",
4
4
  "description": "Nexus EPM auxillary server to facilitate additional functionality required by Scogo Iceberg",
5
5
  "main": "index.js",
6
6
  "files": [