* WIP user list - mostly complete
* Some code cleanup / renaming
This commit is contained in:
parent
b2509e9208
commit
e36507fec1
|
@ -3,9 +3,9 @@
|
||||||
|
|
||||||
var userDb = require('./database.js').dbs.user;
|
var userDb = require('./database.js').dbs.user;
|
||||||
|
|
||||||
exports.getUserLoginHistory = getUserLoginHistory;
|
exports.getSystemLoginHistory = getSystemLoginHistory;
|
||||||
|
|
||||||
function getUserLoginHistory(numRequested, cb) {
|
function getSystemLoginHistory(numRequested, cb) {
|
||||||
|
|
||||||
numRequested = Math.max(1, numRequested);
|
numRequested = Math.max(1, numRequested);
|
||||||
|
|
||||||
|
|
38
core/user.js
38
core/user.js
|
@ -15,6 +15,7 @@ exports.User = User;
|
||||||
exports.getUserIdAndName = getUserIdAndName;
|
exports.getUserIdAndName = getUserIdAndName;
|
||||||
exports.getUserName = getUserName;
|
exports.getUserName = getUserName;
|
||||||
exports.loadProperties = loadProperties;
|
exports.loadProperties = loadProperties;
|
||||||
|
exports.getUserList = getUserList;
|
||||||
|
|
||||||
function User() {
|
function User() {
|
||||||
var self = this;
|
var self = this;
|
||||||
|
@ -482,3 +483,40 @@ function loadProperties(options, cb) {
|
||||||
cb(null, properties);
|
cb(null, properties);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function getUserList(options, cb) {
|
||||||
|
var userList = [];
|
||||||
|
|
||||||
|
var orderClause = 'ORDER BY ' + (options.order || 'user_name');
|
||||||
|
|
||||||
|
userDb.each(
|
||||||
|
'SELECT id, user_name ' +
|
||||||
|
'FROM user ' +
|
||||||
|
orderClause + ';',
|
||||||
|
function userRow(err, row) {
|
||||||
|
userList.push({
|
||||||
|
userId : row.id,
|
||||||
|
userName : row.user_name,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
function usersComplete(err) {
|
||||||
|
options.properties = options.properties || [];
|
||||||
|
async.map(userList, function iter(user, callback) {
|
||||||
|
userDb.each(
|
||||||
|
'SELECT prop_name, prop_value ' +
|
||||||
|
'FROM user_property ' +
|
||||||
|
'WHERE user_id=? AND prop_name IN ("' + options.properties.join('","') + '");',
|
||||||
|
[ user.userId ],
|
||||||
|
function propRow(err, row) {
|
||||||
|
user[row.prop_name] = row.prop_value;
|
||||||
|
},
|
||||||
|
function complete(err) {
|
||||||
|
callback(err, user);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}, function propsComplete(err, transformed) {
|
||||||
|
cb(err, transformed);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
var MenuModule = require('../core/menu_module.js').MenuModule;
|
var MenuModule = require('../core/menu_module.js').MenuModule;
|
||||||
var userDb = require('../core/database.js').dbs.user;
|
var userDb = require('../core/database.js').dbs.user;
|
||||||
var ViewController = require('../core/view_controller.js').ViewController;
|
var ViewController = require('../core/view_controller.js').ViewController;
|
||||||
var getUserLoginHistory = require('../core/stats.js').getUserLoginHistory;
|
var getSystemLoginHistory = require('../core/stats.js').getSystemLoginHistory;
|
||||||
var colorCodes = require('../core/color_codes.js');
|
var colorCodes = require('../core/color_codes.js');
|
||||||
|
|
||||||
var moment = require('moment');
|
var moment = require('moment');
|
||||||
|
@ -65,7 +65,7 @@ LastCallersModule.prototype.mciReady = function(mciData, cb) {
|
||||||
function fetchHistory(callback) {
|
function fetchHistory(callback) {
|
||||||
callersView = vc.getView(MciCodeIds.CallerList);
|
callersView = vc.getView(MciCodeIds.CallerList);
|
||||||
|
|
||||||
getUserLoginHistory(callersView.dimens.height, function historyRetrieved(err, lh) {
|
getSystemLoginHistory(callersView.dimens.height, function historyRetrieved(err, lh) {
|
||||||
loginHistory = lh;
|
loginHistory = lh;
|
||||||
callback(err);
|
callback(err);
|
||||||
});
|
});
|
||||||
|
|
|
@ -427,6 +427,10 @@
|
||||||
"action" : "@menu:doorLORD"
|
"action" : "@menu:doorLORD"
|
||||||
},
|
},
|
||||||
*/
|
*/
|
||||||
|
{
|
||||||
|
value: { command: "U" }
|
||||||
|
action: @menu:mainMenuUserList
|
||||||
|
}
|
||||||
{
|
{
|
||||||
value: { command: "E" }
|
value: { command: "E" }
|
||||||
action: @menu:doorTestExample
|
action: @menu:doorTestExample
|
||||||
|
@ -458,18 +462,42 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
mainMenuLastCallers: {
|
mainMenuLastCallers: {
|
||||||
|
desc: Last Callers
|
||||||
module: last_callers
|
module: last_callers
|
||||||
art: LASTCALL
|
art: LASTCALL
|
||||||
options: { pause: true }
|
options: { pause: true }
|
||||||
}
|
}
|
||||||
mainMenuUserStats: {
|
mainMenuUserStats: {
|
||||||
|
desc: User Stats
|
||||||
art: STATUS
|
art: STATUS
|
||||||
options: { pause: true }
|
options: { pause: true }
|
||||||
}
|
}
|
||||||
mainMenuSystemStats: {
|
mainMenuSystemStats: {
|
||||||
|
desc: System Stats
|
||||||
art: SYSSTAT
|
art: SYSSTAT
|
||||||
options: { pause: true }
|
options: { pause: true }
|
||||||
}
|
}
|
||||||
|
mainMenuUserList: {
|
||||||
|
desc: User Listing
|
||||||
|
module: user_list
|
||||||
|
art: USERLST
|
||||||
|
form: {
|
||||||
|
0: {
|
||||||
|
mci: {
|
||||||
|
VM1: {
|
||||||
|
focus: true
|
||||||
|
submit: true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
actionKeys: [
|
||||||
|
{
|
||||||
|
keys: [ "escape" ]
|
||||||
|
action: @systemMethod:fallbackMenu
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
mainMenuUserConfig: {
|
mainMenuUserConfig: {
|
||||||
module: @systemModule:user_config
|
module: @systemModule:user_config
|
||||||
art: CONFSCR
|
art: CONFSCR
|
||||||
|
|
|
@ -135,7 +135,7 @@ MessageListModule.prototype.mciReady = function(mciData, cb) {
|
||||||
|
|
||||||
// :TODO: fix default format
|
// :TODO: fix default format
|
||||||
var listFormat = self.menuConfig.config.listFormat || '{msgNum:>4} - {subj:>35} |{to:>15}';
|
var listFormat = self.menuConfig.config.listFormat || '{msgNum:>4} - {subj:>35} |{to:>15}';
|
||||||
var focusListFormat = self.menuConfig.config.focusListFormat;
|
var focusListFormat = self.menuConfig.config.focusListFormat || listFormat; // :TODO: default change color here
|
||||||
|
|
||||||
var msgNum = 1;
|
var msgNum = 1;
|
||||||
var newMark = '*'; // :TODO: Make configurable
|
var newMark = '*'; // :TODO: Make configurable
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -103,6 +103,17 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
mainMenuUserList: {
|
||||||
|
config: {
|
||||||
|
listFormat: "|00|01|36{userName:<17.17}{affils:<21.21}{note:<21.21}{lastLoginTs}"
|
||||||
|
focusListFormat: "|00|42|30{userName:<17.17}{affils:<21.21}{note:<21.21}{lastLoginTs}"
|
||||||
|
dateTimeFormat: MMM Do h:mma
|
||||||
|
}
|
||||||
|
mci: {
|
||||||
|
VM1: { height: 15 }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
messageAreaMessageList: {
|
messageAreaMessageList: {
|
||||||
config: {
|
config: {
|
||||||
listFormat: "|00|01|37{msgNum:>4} |00|37- |36{subj:<29.29} {from:<20.20} {ts} |01|31{newMark}"
|
listFormat: "|00|01|37{msgNum:>4} |00|37- |36{subj:<29.29} {from:<20.20} {ts} |01|31{newMark}"
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
var MenuModule = require('../core/menu_module.js').MenuModule;
|
var MenuModule = require('../core/menu_module.js').MenuModule;
|
||||||
var userDb = require('../core/database.js').dbs.user;
|
var userDb = require('../core/database.js').dbs.user;
|
||||||
|
var getUserList = require('../core/user.js').getUserList;
|
||||||
var ViewController = require('../core/view_controller.js').ViewController;
|
var ViewController = require('../core/view_controller.js').ViewController;
|
||||||
|
|
||||||
var moment = require('moment');
|
var moment = require('moment');
|
||||||
|
@ -14,11 +15,11 @@ var _ = require('lodash');
|
||||||
Available listFormat object members:
|
Available listFormat object members:
|
||||||
userId
|
userId
|
||||||
userName
|
userName
|
||||||
lastCall
|
lastLoginTs
|
||||||
status
|
status
|
||||||
location
|
location
|
||||||
affiliation
|
affiliation
|
||||||
timestamp
|
note
|
||||||
*/
|
*/
|
||||||
|
|
||||||
exports.moduleInfo = {
|
exports.moduleInfo = {
|
||||||
|
@ -29,6 +30,10 @@ exports.moduleInfo = {
|
||||||
|
|
||||||
exports.getModule = UserListModule;
|
exports.getModule = UserListModule;
|
||||||
|
|
||||||
|
var MciCodeIds = {
|
||||||
|
UserList : 1,
|
||||||
|
};
|
||||||
|
|
||||||
function UserListModule(options) {
|
function UserListModule(options) {
|
||||||
MenuModule.call(this, options);
|
MenuModule.call(this, options);
|
||||||
}
|
}
|
||||||
|
@ -39,10 +44,63 @@ UserListModule.prototype.mciReady = function(mciData, cb) {
|
||||||
var self = this;
|
var self = this;
|
||||||
var vc = self.viewControllers.allViews = new ViewController( { client : self.client } );
|
var vc = self.viewControllers.allViews = new ViewController( { client : self.client } );
|
||||||
|
|
||||||
|
var userList = [];
|
||||||
|
|
||||||
|
var USER_LIST_OPTS = {
|
||||||
|
properties : [ 'location', 'affiliation', 'last_login_timestamp' ],
|
||||||
|
};
|
||||||
|
|
||||||
async.series(
|
async.series(
|
||||||
[
|
[
|
||||||
|
// :TODO: These two functions repeated all over -- need DRY
|
||||||
|
function callParentMciReady(callback) {
|
||||||
|
UserListModule.super_.prototype.mciReady.call(self, mciData, callback);
|
||||||
|
},
|
||||||
|
function loadFromConfig(callback) {
|
||||||
|
var loadOpts = {
|
||||||
|
callingMenu : self,
|
||||||
|
mciMap : mciData.menu,
|
||||||
|
};
|
||||||
|
|
||||||
],
|
vc.loadFromMenuConfig(loadOpts, callback);
|
||||||
|
},
|
||||||
|
function fetchUserList(callback) {
|
||||||
|
// :TODO: Currently fetching all users - probably always OK, but this could be paged
|
||||||
|
getUserList(USER_LIST_OPTS, function got(err, ul) {
|
||||||
|
userList = ul;
|
||||||
|
callback(err);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
function populateList(callback) {
|
||||||
|
var userListView = vc.getView(MciCodeIds.UserList);
|
||||||
|
|
||||||
|
var listFormat = self.menuConfig.config.listFormat || '{userName} - {affils}';
|
||||||
|
var focusListFormat = self.menuConfig.config.focusListFormat || listFormat; // :TODO: default changed color!
|
||||||
|
var dateTimeFormat = self.menuConfig.config.dateTimeFormat || 'ddd MMM DD';
|
||||||
|
|
||||||
|
function getUserFmtObj(ue) {
|
||||||
|
return {
|
||||||
|
userId : ue.userId,
|
||||||
|
userName : ue.userName,
|
||||||
|
affils : ue.affiliation,
|
||||||
|
// :TODO: the rest!
|
||||||
|
note : ue.note || '',
|
||||||
|
lastLoginTs : moment(ue.last_login_timestamp).format(dateTimeFormat),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
userListView.setItems(_.map(userList, function formatUserEntry(ue) {
|
||||||
|
return listFormat.format(getUserFmtObj(ue));
|
||||||
|
}));
|
||||||
|
|
||||||
|
userListView.setFocusItems(_.map(userList, function formatUserEntry(ue) {
|
||||||
|
return focusListFormat.format(getUserFmtObj(ue));
|
||||||
|
}));
|
||||||
|
|
||||||
|
userListView.redraw();
|
||||||
|
callback(null);
|
||||||
|
}
|
||||||
|
],
|
||||||
function complete(err) {
|
function complete(err) {
|
||||||
if(err) {
|
if(err) {
|
||||||
self.client.log.error( { error : err.toString() }, 'Error loading user list');
|
self.client.log.error( { error : err.toString() }, 'Error loading user list');
|
||||||
|
|
Loading…
Reference in New Issue