2020-07-14 03:08:25 +00:00
|
|
|
// ENiGMA½
|
|
|
|
const { MenuModule } = require('./menu_module');
|
2022-06-10 22:08:22 +00:00
|
|
|
const stringFormat = require('./string_format');
|
2020-07-14 03:08:25 +00:00
|
|
|
|
2022-06-14 03:53:11 +00:00
|
|
|
const {
|
|
|
|
getActiveConnectionList,
|
|
|
|
AllConnections,
|
|
|
|
getConnectionByNodeId,
|
|
|
|
removeClient,
|
|
|
|
} = require('./client_connections');
|
2020-11-10 02:40:55 +00:00
|
|
|
const StatLog = require('./stat_log');
|
|
|
|
const SysProps = require('./system_property');
|
2020-12-08 02:52:54 +00:00
|
|
|
const UserProps = require('./user_property');
|
2020-11-28 05:35:03 +00:00
|
|
|
const Log = require('./logger');
|
|
|
|
const Config = require('./config.js').get;
|
2022-06-14 03:53:11 +00:00
|
|
|
const { Errors } = require('./enig_error');
|
2022-07-18 05:02:08 +00:00
|
|
|
const { pipeToAnsi } = require('./color_codes');
|
|
|
|
const MultiLineEditTextView =
|
|
|
|
require('./multi_line_edit_text_view').MultiLineEditTextView;
|
2020-11-10 02:40:55 +00:00
|
|
|
|
2020-09-25 21:41:21 +00:00
|
|
|
// deps
|
|
|
|
const async = require('async');
|
|
|
|
const _ = require('lodash');
|
2020-11-10 04:32:34 +00:00
|
|
|
const moment = require('moment');
|
2020-11-28 05:35:03 +00:00
|
|
|
const bunyan = require('bunyan');
|
2020-09-25 21:41:21 +00:00
|
|
|
|
2020-07-14 03:08:25 +00:00
|
|
|
exports.moduleInfo = {
|
2022-06-12 20:12:03 +00:00
|
|
|
name: 'WFC',
|
|
|
|
desc: 'Semi-Traditional Waiting For Caller',
|
|
|
|
author: 'NuSkooler',
|
2020-07-14 03:08:25 +00:00
|
|
|
};
|
|
|
|
|
2020-09-25 21:41:21 +00:00
|
|
|
const FormIds = {
|
2022-06-04 21:37:31 +00:00
|
|
|
main: 0,
|
|
|
|
help: 1,
|
|
|
|
fullLog: 2,
|
2022-06-14 03:53:11 +00:00
|
|
|
confirmKickPrompt: 3,
|
2020-09-25 21:41:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const MciViewIds = {
|
2022-06-12 20:12:03 +00:00
|
|
|
main: {
|
|
|
|
nodeStatus: 1,
|
|
|
|
quickLogView: 2,
|
2022-06-14 03:53:11 +00:00
|
|
|
selectedNodeStatusInfo: 3,
|
|
|
|
confirmXy: 4,
|
2020-09-25 21:41:21 +00:00
|
|
|
|
2022-06-12 20:12:03 +00:00
|
|
|
customRangeStart: 10,
|
|
|
|
},
|
2020-09-25 21:41:21 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Secure + 2FA + root user + 'wfc' group.
|
|
|
|
const DefaultACS = 'SCAF2ID1GM[wfc]';
|
2022-05-04 16:25:59 +00:00
|
|
|
const MainStatRefreshTimeMs = 5000; // 5s
|
2022-05-12 02:30:25 +00:00
|
|
|
const MailCountTTLSeconds = 10;
|
2020-09-25 21:41:21 +00:00
|
|
|
|
2020-07-14 03:08:25 +00:00
|
|
|
exports.getModule = class WaitingForCallerModule extends MenuModule {
|
|
|
|
constructor(options) {
|
|
|
|
super(options);
|
|
|
|
|
2022-06-12 20:12:03 +00:00
|
|
|
this.config = Object.assign({}, _.get(options, 'menuConfig.config'), {
|
|
|
|
extraArgs: options.extraArgs,
|
|
|
|
});
|
2020-09-25 21:41:21 +00:00
|
|
|
|
2022-08-04 18:24:02 +00:00
|
|
|
//
|
|
|
|
// Enforce that we have at least a secure connection in our ACS check
|
|
|
|
//
|
|
|
|
this.config.acs = this.config.acs;
|
|
|
|
if (!this.config.acs) {
|
|
|
|
this.config.acs = DefaultACS;
|
|
|
|
} else if (!this.config.acs.includes('SC')) {
|
2022-06-12 20:12:03 +00:00
|
|
|
this.config.acs = 'SC' + this.config.acs; // secure connection at the very least
|
2020-09-25 21:41:21 +00:00
|
|
|
}
|
2022-05-31 18:28:26 +00:00
|
|
|
|
2022-08-04 18:24:02 +00:00
|
|
|
// ensure the menu instance has this setting
|
|
|
|
if (!_.has(options, 'menuConfig.config.acs')) {
|
|
|
|
_.set(options, 'menuConfig.config.acs', this.config.acs);
|
|
|
|
}
|
|
|
|
|
2022-06-04 21:37:31 +00:00
|
|
|
this.selectedNodeStatusIndex = -1; // no selection
|
|
|
|
|
2022-05-31 18:28:26 +00:00
|
|
|
this.menuMethods = {
|
2022-06-12 20:12:03 +00:00
|
|
|
toggleAvailable: (formData, extraArgs, cb) => {
|
2022-05-31 18:28:26 +00:00
|
|
|
const avail = this.client.user.isAvailable();
|
|
|
|
this.client.user.setAvailability(!avail);
|
|
|
|
return this._refreshAll(cb);
|
|
|
|
},
|
2022-06-12 20:12:03 +00:00
|
|
|
toggleVisible: (formData, extraArgs, cb) => {
|
2022-05-31 18:28:26 +00:00
|
|
|
const visible = this.client.user.isVisible();
|
|
|
|
this.client.user.setVisibility(!visible);
|
|
|
|
return this._refreshAll(cb);
|
|
|
|
},
|
2022-06-12 20:12:03 +00:00
|
|
|
displayHelp: (formData, extraArgs, cb) => {
|
2022-06-04 21:37:31 +00:00
|
|
|
return this._displayHelpPage(cb);
|
|
|
|
},
|
2022-06-12 20:12:03 +00:00
|
|
|
setNodeStatusSelection: (formData, extraArgs, cb) => {
|
2022-06-04 21:37:31 +00:00
|
|
|
const nodeStatusView = this.getView('main', MciViewIds.main.nodeStatus);
|
|
|
|
if (!nodeStatusView) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
2022-06-04 22:32:50 +00:00
|
|
|
const nodeId = parseInt(formData.ch); // 1-based
|
|
|
|
if (isNaN(nodeId)) {
|
2022-06-04 21:37:31 +00:00
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
2022-06-24 04:23:11 +00:00
|
|
|
const index = this._getNodeStatusIndexByNodeId(nodeStatusView, nodeId);
|
2022-06-04 22:32:50 +00:00
|
|
|
if (index > -1) {
|
|
|
|
this.selectedNodeStatusIndex = index;
|
|
|
|
this._selectNodeByIndex(nodeStatusView, this.selectedNodeStatusIndex);
|
2022-06-24 04:23:11 +00:00
|
|
|
|
|
|
|
const nodeStatusSelectionView = this.getView(
|
|
|
|
'main',
|
|
|
|
MciViewIds.main.selectedNodeStatusInfo
|
|
|
|
);
|
|
|
|
|
|
|
|
if (nodeStatusSelectionView) {
|
|
|
|
const item = nodeStatusView.getItems()[index];
|
|
|
|
this._updateNodeStatusSelection(nodeStatusSelectionView, item);
|
|
|
|
}
|
2022-06-04 22:32:50 +00:00
|
|
|
}
|
2022-06-24 04:23:11 +00:00
|
|
|
|
2022-06-04 21:37:31 +00:00
|
|
|
return cb(null);
|
2022-06-12 20:12:03 +00:00
|
|
|
},
|
2022-06-14 03:53:11 +00:00
|
|
|
kickSelectedNode: (formData, extraArgs, cb) => {
|
|
|
|
return this._confirmKickSelectedNode(cb);
|
|
|
|
},
|
|
|
|
kickNodeYes: (formData, extraArgs, cb) => {
|
|
|
|
return this._kickSelectedNode(cb);
|
|
|
|
},
|
|
|
|
kickNodeNo: (formData, extraArgs, cb) => {
|
|
|
|
//this._startRefreshing();
|
|
|
|
return cb(null);
|
|
|
|
},
|
2022-06-12 20:12:03 +00:00
|
|
|
};
|
2020-09-25 21:41:21 +00:00
|
|
|
}
|
|
|
|
|
2022-06-04 21:37:31 +00:00
|
|
|
initSequence() {
|
|
|
|
async.series(
|
|
|
|
[
|
2022-06-12 20:12:03 +00:00
|
|
|
callback => {
|
2022-06-04 21:37:31 +00:00
|
|
|
return this.beforeArt(callback);
|
|
|
|
},
|
2022-06-12 20:12:03 +00:00
|
|
|
callback => {
|
2022-06-04 21:37:31 +00:00
|
|
|
return this._displayMainPage(false, callback);
|
2022-06-12 20:12:03 +00:00
|
|
|
},
|
2022-06-04 21:37:31 +00:00
|
|
|
],
|
|
|
|
() => {
|
|
|
|
this.finishedLoading();
|
2020-09-25 21:41:21 +00:00
|
|
|
}
|
2022-06-04 21:37:31 +00:00
|
|
|
);
|
|
|
|
}
|
2020-09-25 21:41:21 +00:00
|
|
|
|
2022-06-04 21:37:31 +00:00
|
|
|
_displayMainPage(clearScreen, cb) {
|
|
|
|
async.series(
|
|
|
|
[
|
2022-06-12 20:12:03 +00:00
|
|
|
callback => {
|
2022-06-04 21:37:31 +00:00
|
|
|
return this.displayArtAndPrepViewController(
|
|
|
|
'main',
|
|
|
|
FormIds.main,
|
|
|
|
{ clearScreen },
|
|
|
|
callback
|
|
|
|
);
|
|
|
|
},
|
2022-06-12 20:12:03 +00:00
|
|
|
callback => {
|
|
|
|
const quickLogView = this.getView(
|
|
|
|
'main',
|
|
|
|
MciViewIds.main.quickLogView
|
|
|
|
);
|
2022-06-04 21:37:31 +00:00
|
|
|
if (!quickLogView) {
|
|
|
|
return callback(null);
|
|
|
|
}
|
2020-11-28 05:35:03 +00:00
|
|
|
|
2022-06-04 21:37:31 +00:00
|
|
|
if (!this.logRingBuffer) {
|
2022-06-12 20:12:03 +00:00
|
|
|
const logLevel =
|
|
|
|
this.config.quickLogLevel || // WFC specific
|
|
|
|
_.get(Config(), 'logging.rotatingFile.level') || // ...or system setting
|
|
|
|
'info'; // ...or default to info
|
2020-11-28 05:35:03 +00:00
|
|
|
|
2022-06-12 20:12:03 +00:00
|
|
|
this.logRingBuffer = new bunyan.RingBuffer({
|
|
|
|
limit: quickLogView.dimens.height || 24,
|
|
|
|
});
|
2020-11-28 05:35:03 +00:00
|
|
|
Log.log.addStream({
|
2022-06-12 20:12:03 +00:00
|
|
|
name: 'wfc-ringbuffer',
|
|
|
|
type: 'raw',
|
|
|
|
level: logLevel,
|
|
|
|
stream: this.logRingBuffer,
|
2020-11-28 05:35:03 +00:00
|
|
|
});
|
|
|
|
}
|
2022-06-04 21:37:31 +00:00
|
|
|
|
2022-06-12 20:12:03 +00:00
|
|
|
const nodeStatusView = this.getView(
|
|
|
|
'main',
|
|
|
|
MciViewIds.main.nodeStatus
|
|
|
|
);
|
|
|
|
const nodeStatusSelectionView = this.getView(
|
|
|
|
'main',
|
2022-06-14 03:53:11 +00:00
|
|
|
MciViewIds.main.selectedNodeStatusInfo
|
2022-06-12 20:12:03 +00:00
|
|
|
);
|
2022-06-24 04:23:11 +00:00
|
|
|
|
2022-06-10 22:08:22 +00:00
|
|
|
if (nodeStatusView && nodeStatusSelectionView) {
|
|
|
|
nodeStatusView.on('index update', index => {
|
|
|
|
const item = nodeStatusView.getItems()[index];
|
2022-06-24 04:23:11 +00:00
|
|
|
this._updateNodeStatusSelection(
|
|
|
|
nodeStatusSelectionView,
|
|
|
|
item
|
|
|
|
);
|
2022-06-10 22:08:22 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-04 21:37:31 +00:00
|
|
|
return callback(null);
|
|
|
|
},
|
2022-06-12 20:12:03 +00:00
|
|
|
callback => {
|
2022-06-04 21:37:31 +00:00
|
|
|
return this._refreshAll(callback);
|
2022-06-12 20:12:03 +00:00
|
|
|
},
|
2022-06-04 21:37:31 +00:00
|
|
|
],
|
|
|
|
err => {
|
|
|
|
if (!err) {
|
|
|
|
this._startRefreshing();
|
|
|
|
}
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-05-01 18:41:20 +00:00
|
|
|
enter() {
|
|
|
|
this.client.stopIdleMonitor();
|
2022-05-09 04:15:57 +00:00
|
|
|
this._applyOpVisibility();
|
2022-05-01 18:41:20 +00:00
|
|
|
super.enter();
|
|
|
|
}
|
|
|
|
|
2020-11-28 05:35:03 +00:00
|
|
|
leave() {
|
2020-11-28 06:01:05 +00:00
|
|
|
_.remove(Log.log.streams, stream => {
|
|
|
|
return stream.name === 'wfc-ringbuffer';
|
|
|
|
});
|
|
|
|
|
2022-05-09 04:15:57 +00:00
|
|
|
this._restoreOpVisibility();
|
|
|
|
|
2020-11-28 05:35:03 +00:00
|
|
|
this._stopRefreshing();
|
2022-05-01 18:41:20 +00:00
|
|
|
this.client.startIdleMonitor();
|
2020-11-28 05:35:03 +00:00
|
|
|
|
|
|
|
super.leave();
|
|
|
|
}
|
|
|
|
|
2022-06-24 04:23:11 +00:00
|
|
|
_updateNodeStatusSelection(nodeStatusSelectionView, item) {
|
|
|
|
if (item) {
|
|
|
|
const nodeStatusSelectionFormat =
|
|
|
|
this.config.nodeStatusSelectionFormat || '{text}';
|
2022-07-18 05:02:08 +00:00
|
|
|
|
|
|
|
const s = stringFormat(nodeStatusSelectionFormat, item);
|
|
|
|
|
|
|
|
if (nodeStatusSelectionView instanceof MultiLineEditTextView) {
|
|
|
|
nodeStatusSelectionView.setAnsi(pipeToAnsi(s, this.client));
|
|
|
|
} else {
|
|
|
|
nodeStatusSelectionView.setText(s);
|
|
|
|
}
|
2022-06-24 04:23:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_displayHelpPage(cb) {
|
|
|
|
this._stopRefreshing();
|
|
|
|
|
|
|
|
this.displayAsset(this.menuConfig.config.art.help, { clearScreen: true }, () => {
|
|
|
|
this.client.waitForKeyPress(() => {
|
|
|
|
return this._displayMainPage(true, cb);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-06-14 03:53:11 +00:00
|
|
|
_getSelectedNodeItem() {
|
|
|
|
const nodeStatusView = this.getView('main', MciViewIds.main.nodeStatus);
|
|
|
|
if (!nodeStatusView) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nodeStatusView.getItem(nodeStatusView.getFocusItemIndex());
|
|
|
|
}
|
|
|
|
|
|
|
|
_confirmKickSelectedNode(cb) {
|
|
|
|
const nodeItem = this._getSelectedNodeItem();
|
|
|
|
if (!nodeItem) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const confirmView = this.getView('main', MciViewIds.main.confirmXy);
|
|
|
|
if (!confirmView) {
|
|
|
|
return cb(
|
|
|
|
Errors.MissingMci(`Missing prompt XY${MciViewIds.main.confirmXy} MCI`)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// disallow kicking self
|
|
|
|
if (this.client.node === parseInt(nodeItem.node)) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const promptOptions = {
|
|
|
|
clearAtSubmit: true,
|
|
|
|
submitNotify: () => {
|
|
|
|
this._startRefreshing();
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
if (confirmView.dimens.width) {
|
|
|
|
promptOptions.clearWidth = confirmView.dimens.width;
|
|
|
|
}
|
|
|
|
|
|
|
|
this._stopRefreshing();
|
|
|
|
return this.promptForInput(
|
|
|
|
{
|
|
|
|
formName: 'confirmKickPrompt',
|
|
|
|
formId: FormIds.confirmKickPrompt,
|
|
|
|
promptName: this.config.confirmKickNodePrompt || 'confirmKickNodePrompt',
|
|
|
|
prevFormName: 'main',
|
|
|
|
position: confirmView.position,
|
|
|
|
},
|
|
|
|
promptOptions,
|
|
|
|
err => {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
_kickSelectedNode(cb) {
|
|
|
|
const nodeItem = this._getSelectedNodeItem();
|
|
|
|
if (!nodeItem) {
|
|
|
|
return cb(Errors.UnexpectedState('Expecting a selected node'));
|
|
|
|
}
|
|
|
|
|
|
|
|
const client = getConnectionByNodeId(parseInt(nodeItem.node));
|
|
|
|
if (!client) {
|
|
|
|
return cb(
|
|
|
|
Errors.UnexpectedState(`Expecting a client for node ID ${nodeItem.node}`)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// :TODO: optional kick art
|
|
|
|
|
|
|
|
removeClient(client);
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
2022-05-09 04:15:57 +00:00
|
|
|
_applyOpVisibility() {
|
|
|
|
this.restoreUserIsVisible = this.client.user.isVisible();
|
|
|
|
|
2022-05-25 01:46:39 +00:00
|
|
|
const vis = this.config.opVisibility || 'current';
|
2022-05-09 04:15:57 +00:00
|
|
|
switch (vis) {
|
2022-06-12 20:12:03 +00:00
|
|
|
case 'hidden':
|
|
|
|
this.client.user.setVisibility(false);
|
|
|
|
break;
|
|
|
|
case 'visible':
|
|
|
|
this.client.user.setVisibility(true);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2022-05-09 04:15:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_restoreOpVisibility() {
|
|
|
|
this.client.user.setVisibility(this.restoreUserIsVisible);
|
|
|
|
}
|
|
|
|
|
2020-11-28 05:35:03 +00:00
|
|
|
_startRefreshing() {
|
2022-06-04 21:37:31 +00:00
|
|
|
if (this.mainRefreshTimer) {
|
|
|
|
this._stopRefreshing();
|
|
|
|
}
|
|
|
|
|
2022-06-12 20:12:03 +00:00
|
|
|
this.mainRefreshTimer = setInterval(() => {
|
2020-11-28 05:35:03 +00:00
|
|
|
this._refreshAll();
|
2022-05-04 16:25:59 +00:00
|
|
|
}, MainStatRefreshTimeMs);
|
2020-11-28 05:35:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_stopRefreshing() {
|
|
|
|
if (this.mainRefreshTimer) {
|
|
|
|
clearInterval(this.mainRefreshTimer);
|
|
|
|
delete this.mainRefreshTimer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
_refreshAll(cb) {
|
|
|
|
async.series(
|
|
|
|
[
|
2022-06-12 20:12:03 +00:00
|
|
|
callback => {
|
2020-11-28 05:35:03 +00:00
|
|
|
return this._refreshStats(callback);
|
|
|
|
},
|
2022-06-12 20:12:03 +00:00
|
|
|
callback => {
|
2020-11-28 05:35:03 +00:00
|
|
|
return this._refreshNodeStatus(callback);
|
|
|
|
},
|
2022-06-12 20:12:03 +00:00
|
|
|
callback => {
|
2020-11-28 05:35:03 +00:00
|
|
|
return this._refreshQuickLog(callback);
|
2020-12-08 02:52:54 +00:00
|
|
|
},
|
2022-06-12 20:12:03 +00:00
|
|
|
callback => {
|
2020-12-08 02:52:54 +00:00
|
|
|
this.updateCustomViewTextsWithFilter(
|
|
|
|
'main',
|
|
|
|
MciViewIds.main.customRangeStart,
|
|
|
|
this.stats
|
|
|
|
);
|
|
|
|
return callback(null);
|
2022-06-12 20:12:03 +00:00
|
|
|
},
|
2020-11-28 05:35:03 +00:00
|
|
|
],
|
|
|
|
err => {
|
|
|
|
if (cb) {
|
|
|
|
return cb(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-05-25 01:46:39 +00:00
|
|
|
_getStatusStrings(isAvailable, isVisible) {
|
2022-06-12 20:12:03 +00:00
|
|
|
const availIndicators = Array.isArray(this.config.statusAvailableIndicators)
|
|
|
|
? this.config.statusAvailableIndicators
|
2022-08-04 19:04:45 +00:00
|
|
|
: this.client.currentTheme.helpers.getStatusAvailIndicators();
|
2022-06-12 20:12:03 +00:00
|
|
|
const visIndicators = Array.isArray(this.config.statusVisibleIndicators)
|
|
|
|
? this.config.statusVisibleIndicators
|
|
|
|
: this.client.currentTheme.helpers.getStatusVisibleIndicators();
|
2022-05-25 01:46:39 +00:00
|
|
|
|
|
|
|
return [
|
2022-06-12 20:12:03 +00:00
|
|
|
isAvailable ? availIndicators[1] || 'Y' : availIndicators[0] || 'N',
|
|
|
|
isVisible ? visIndicators[1] || 'Y' : visIndicators[0] || 'N',
|
2022-05-25 01:46:39 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2020-11-10 02:40:55 +00:00
|
|
|
_refreshStats(cb) {
|
2022-06-12 20:12:03 +00:00
|
|
|
const fileAreaStats = StatLog.getSystemStat(SysProps.FileBaseAreaStats) || {};
|
|
|
|
const sysMemStats = StatLog.getSystemStat(SysProps.SystemMemoryStats) || {};
|
|
|
|
const sysLoadStats = StatLog.getSystemStat(SysProps.SystemLoadStats) || {};
|
|
|
|
const lastLoginStats = StatLog.getSystemStat(SysProps.LastLogin);
|
2022-08-02 05:09:18 +00:00
|
|
|
const processTrafficStats =
|
|
|
|
StatLog.getSystemStat(SysProps.ProcessTrafficStats) || {};
|
2020-12-08 02:52:54 +00:00
|
|
|
|
|
|
|
const now = moment();
|
2020-11-10 02:40:55 +00:00
|
|
|
|
2022-05-25 01:46:39 +00:00
|
|
|
const [availIndicator, visIndicator] = this._getStatusStrings(
|
2022-06-12 20:12:03 +00:00
|
|
|
this.client.user.isAvailable(),
|
|
|
|
this.client.user.isVisible()
|
2022-05-25 01:46:39 +00:00
|
|
|
);
|
|
|
|
|
2020-11-10 02:40:55 +00:00
|
|
|
this.stats = {
|
2020-11-10 04:32:34 +00:00
|
|
|
// Date/Time
|
2022-06-12 20:12:03 +00:00
|
|
|
nowDate: now.format(this.getDateFormat()),
|
|
|
|
nowTime: now.format(this.getTimeFormat()),
|
|
|
|
now: now.format(this._dateTimeFormat('now')),
|
2020-11-10 04:32:34 +00:00
|
|
|
|
|
|
|
// Current process (our Node.js service)
|
2022-06-12 20:12:03 +00:00
|
|
|
processUptimeSeconds: process.uptime(),
|
2020-11-10 04:32:34 +00:00
|
|
|
|
2020-11-10 02:40:55 +00:00
|
|
|
// Totals
|
2022-06-12 20:12:03 +00:00
|
|
|
totalCalls: StatLog.getSystemStatNum(SysProps.LoginCount),
|
|
|
|
totalPosts: StatLog.getSystemStatNum(SysProps.MessageTotalCount),
|
|
|
|
totalUsers: StatLog.getSystemStatNum(SysProps.TotalUserCount),
|
|
|
|
totalFiles: fileAreaStats.totalFiles || 0,
|
|
|
|
totalFileBytes: fileAreaStats.totalFileBytes || 0,
|
2020-11-22 19:25:19 +00:00
|
|
|
|
|
|
|
// Today's Stats
|
2022-06-12 20:12:03 +00:00
|
|
|
callsToday: StatLog.getSystemStatNum(SysProps.LoginsToday),
|
|
|
|
postsToday: StatLog.getSystemStatNum(SysProps.MessagesToday),
|
|
|
|
uploadsToday: StatLog.getSystemStatNum(SysProps.FileUlTodayCount),
|
|
|
|
uploadBytesToday: StatLog.getSystemStatNum(SysProps.FileUlTodayBytes),
|
|
|
|
downloadsToday: StatLog.getSystemStatNum(SysProps.FileDlTodayCount),
|
|
|
|
downloadBytesToday: StatLog.getSystemStatNum(SysProps.FileDlTodayBytes),
|
|
|
|
newUsersToday: StatLog.getSystemStatNum(SysProps.NewUsersTodayCount),
|
2020-11-22 19:25:19 +00:00
|
|
|
|
|
|
|
// Current
|
2022-06-12 20:12:03 +00:00
|
|
|
currentUserName: this.client.user.username,
|
|
|
|
currentUserRealName:
|
|
|
|
this.client.user.getProperty(UserProps.RealName) ||
|
|
|
|
this.client.user.username,
|
|
|
|
availIndicator: availIndicator,
|
|
|
|
visIndicator: visIndicator,
|
|
|
|
lastLoginUserName: lastLoginStats.userName,
|
|
|
|
lastLoginRealName: lastLoginStats.realName,
|
|
|
|
lastLoginDate: moment(lastLoginStats.timestamp).format(this.getDateFormat()),
|
|
|
|
lastLoginTime: moment(lastLoginStats.timestamp).format(this.getTimeFormat()),
|
|
|
|
lastLogin: moment(lastLoginStats.timestamp).format(
|
|
|
|
this._dateTimeFormat('lastLogin')
|
|
|
|
),
|
|
|
|
totalMemoryBytes: sysMemStats.totalBytes || 0,
|
|
|
|
freeMemoryBytes: sysMemStats.freeBytes || 0,
|
|
|
|
systemAvgLoad: sysLoadStats.average || 0,
|
|
|
|
systemCurrentLoad: sysLoadStats.current || 0,
|
|
|
|
newPrivateMail: StatLog.getUserStatNumByClient(
|
|
|
|
this.client,
|
|
|
|
UserProps.NewPrivateMailCount,
|
|
|
|
MailCountTTLSeconds
|
|
|
|
),
|
|
|
|
newMessagesAddrTo: StatLog.getUserStatNumByClient(
|
|
|
|
this.client,
|
|
|
|
UserProps.NewAddressedToMessageCount,
|
|
|
|
MailCountTTLSeconds
|
|
|
|
),
|
2022-08-02 05:09:18 +00:00
|
|
|
processBytesIngress: processTrafficStats.ingress || 0,
|
|
|
|
processBytesEgress: processTrafficStats.egress || 0,
|
2020-11-10 04:32:34 +00:00
|
|
|
};
|
|
|
|
|
2020-11-28 05:35:03 +00:00
|
|
|
return cb(null);
|
2020-11-10 02:40:55 +00:00
|
|
|
}
|
|
|
|
|
2022-06-24 04:23:11 +00:00
|
|
|
_getNodeStatusIndexByNodeId(nodeStatusView, nodeId) {
|
2022-06-04 22:32:50 +00:00
|
|
|
return nodeStatusView.getItems().findIndex(entry => entry.node == nodeId);
|
|
|
|
}
|
|
|
|
|
2022-06-04 21:37:31 +00:00
|
|
|
_selectNodeByIndex(nodeStatusView, index) {
|
|
|
|
if (index >= 0 && nodeStatusView.getFocusItemIndex() !== index) {
|
|
|
|
nodeStatusView.setFocusItemIndex(index);
|
|
|
|
} else {
|
|
|
|
nodeStatusView.redraw();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-10 02:40:55 +00:00
|
|
|
_refreshNodeStatus(cb) {
|
|
|
|
const nodeStatusView = this.getView('main', MciViewIds.main.nodeStatus);
|
|
|
|
if (!nodeStatusView) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
2022-05-12 02:30:25 +00:00
|
|
|
const nodeStatusItems = getActiveConnectionList(AllConnections)
|
2022-04-13 04:16:42 +00:00
|
|
|
.slice(0, nodeStatusView.dimens.height)
|
|
|
|
.map(ac => {
|
|
|
|
// Handle pre-authenticated
|
|
|
|
if (!ac.authenticated) {
|
2022-06-12 20:12:03 +00:00
|
|
|
ac.text = ac.userName = '*Pre Auth*';
|
|
|
|
ac.action = 'Logging In';
|
2022-04-13 04:16:42 +00:00
|
|
|
}
|
2020-11-10 02:40:55 +00:00
|
|
|
|
2022-06-12 20:12:03 +00:00
|
|
|
const [availIndicator, visIndicator] = this._getStatusStrings(
|
|
|
|
ac.isAvailable,
|
|
|
|
ac.isVisible
|
|
|
|
);
|
2022-05-25 01:46:39 +00:00
|
|
|
|
2022-06-10 22:08:22 +00:00
|
|
|
const timeOn = ac.timeOn || moment.duration(0);
|
|
|
|
|
2022-04-13 04:16:42 +00:00
|
|
|
return Object.assign(ac, {
|
2022-05-25 01:46:39 +00:00
|
|
|
availIndicator,
|
|
|
|
visIndicator,
|
2022-06-12 20:12:03 +00:00
|
|
|
timeOnMinutes: timeOn.asMinutes(),
|
|
|
|
timeOn: _.upperFirst(timeOn.humanize()), // make friendly
|
|
|
|
affils: ac.affils || 'N/A',
|
|
|
|
realName: ac.realName || 'N/A',
|
2022-04-13 04:16:42 +00:00
|
|
|
});
|
2022-06-12 20:12:03 +00:00
|
|
|
});
|
2020-11-10 02:40:55 +00:00
|
|
|
|
2022-08-04 17:32:09 +00:00
|
|
|
// If this is our first pass, we'll also update the selection
|
|
|
|
const firstStatusRefresh = nodeStatusView.getCount() === 0;
|
|
|
|
|
2022-06-04 21:37:31 +00:00
|
|
|
// :TODO: Currently this always redraws due to setItems(). We really need painters alg.; The alternative now is to compare items... yuk.
|
2020-11-10 02:40:55 +00:00
|
|
|
nodeStatusView.setItems(nodeStatusItems);
|
2022-06-12 20:12:03 +00:00
|
|
|
this._selectNodeByIndex(nodeStatusView, this.selectedNodeStatusIndex); // redraws
|
2022-08-04 17:32:09 +00:00
|
|
|
|
|
|
|
if (firstStatusRefresh) {
|
|
|
|
const nodeStatusSelectionView = this.getView(
|
|
|
|
'main',
|
|
|
|
MciViewIds.main.selectedNodeStatusInfo
|
|
|
|
);
|
|
|
|
if (nodeStatusSelectionView) {
|
|
|
|
const item = nodeStatusView.getItems()[0];
|
|
|
|
this._updateNodeStatusSelection(nodeStatusSelectionView, item);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-10 02:40:55 +00:00
|
|
|
return cb(null);
|
|
|
|
}
|
2020-11-28 05:35:03 +00:00
|
|
|
|
|
|
|
_refreshQuickLog(cb) {
|
2022-06-12 20:12:03 +00:00
|
|
|
const quickLogView = this.viewControllers.main.getView(
|
|
|
|
MciViewIds.main.quickLogView
|
|
|
|
);
|
2020-11-28 05:35:03 +00:00
|
|
|
if (!quickLogView) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const records = this.logRingBuffer.records;
|
|
|
|
if (records.length === 0) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const hasChanged = this.lastLogTime !== records[records.length - 1].time;
|
|
|
|
this.lastLogTime = records[records.length - 1].time;
|
|
|
|
|
|
|
|
if (!hasChanged) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
2022-04-13 04:16:42 +00:00
|
|
|
const quickLogTimestampFormat =
|
2022-06-12 20:12:03 +00:00
|
|
|
this.config.quickLogTimestampFormat || this.getDateTimeFormat('short');
|
|
|
|
|
|
|
|
const levelIndicators = this.config.quickLogLevelIndicators || {
|
|
|
|
trace: 'T',
|
|
|
|
debug: 'D',
|
|
|
|
info: 'I',
|
|
|
|
warn: 'W',
|
|
|
|
error: 'E',
|
|
|
|
fatal: 'F',
|
|
|
|
};
|
2022-05-07 16:48:40 +00:00
|
|
|
|
2022-06-12 20:12:03 +00:00
|
|
|
const makeLevelIndicator = level => {
|
2022-05-07 16:48:40 +00:00
|
|
|
return levelIndicators[level] || '?';
|
|
|
|
};
|
|
|
|
|
2022-06-12 20:12:03 +00:00
|
|
|
const quickLogLevelMessagePrefixes =
|
|
|
|
this.config.quickLogLevelMessagePrefixes || {};
|
2022-05-07 16:48:40 +00:00
|
|
|
const prefixMssage = (message, level) => {
|
|
|
|
const prefix = quickLogLevelMessagePrefixes[level] || '';
|
|
|
|
return `${prefix}${message}`;
|
2020-11-28 05:35:03 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const logItems = records.map(rec => {
|
2022-05-07 16:48:40 +00:00
|
|
|
const level = bunyan.nameFromLevel[rec.level];
|
2020-11-28 05:35:03 +00:00
|
|
|
return {
|
2022-06-12 20:12:03 +00:00
|
|
|
timestamp: moment(rec.time).format(quickLogTimestampFormat),
|
|
|
|
level: rec.level,
|
|
|
|
levelIndicator: makeLevelIndicator(level),
|
|
|
|
nodeId: rec.nodeId || '*',
|
|
|
|
sessionId: rec.sessionId || '',
|
|
|
|
message: prefixMssage(rec.msg, level),
|
2020-11-28 05:35:03 +00:00
|
|
|
};
|
|
|
|
});
|
|
|
|
|
|
|
|
quickLogView.setItems(logItems);
|
|
|
|
quickLogView.redraw();
|
|
|
|
|
|
|
|
return cb(null);
|
|
|
|
}
|
2020-12-08 02:52:54 +00:00
|
|
|
|
|
|
|
_dateTimeFormat(element) {
|
|
|
|
const format = this.config[`${element}DateTimeFormat`];
|
|
|
|
return format || this.getDateFormat();
|
|
|
|
}
|
2020-07-14 03:08:25 +00:00
|
|
|
};
|