mirror of
https://github.com/Ylianst/MeshCentral.git
synced 2024-12-26 07:05:52 -05:00
Merge pull request #2927 from nzalev/refactor-meshuser-2
Added meshuser command handler functions
This commit is contained in:
commit
14ebbf0f77
129
meshuser.js
129
meshuser.js
@ -635,28 +635,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'serverstats':
|
|
||||||
{
|
|
||||||
// Only accept if the "My Server" tab is allowed for this domain
|
|
||||||
if (domain.myserver === false) break;
|
|
||||||
|
|
||||||
if ((user.siteadmin & 21) == 0) return; // Only site administrators with "site backup" or "site restore" or "site update" permissions can use this.
|
|
||||||
if (common.validateInt(command.interval, 1000, 1000000) == false) {
|
|
||||||
// Clear the timer
|
|
||||||
if (obj.serverStatsTimer != null) { clearInterval(obj.serverStatsTimer); delete obj.serverStatsTimer; }
|
|
||||||
} else {
|
|
||||||
// Set the timer
|
|
||||||
obj.SendServerStats();
|
|
||||||
obj.serverStatsTimer = setInterval(obj.SendServerStats, command.interval);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'meshes':
|
|
||||||
{
|
|
||||||
// Request a list of all meshes this user as rights to
|
|
||||||
try { ws.send(JSON.stringify({ action: 'meshes', meshes: parent.GetAllMeshWithRights(user).map(parent.CloneSafeMesh), tag: command.tag })); } catch (ex) { }
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'nodes':
|
case 'nodes':
|
||||||
{
|
{
|
||||||
var links = [], extraids = null, err = null;
|
var links = [], extraids = null, err = null;
|
||||||
@ -812,12 +790,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'files':
|
|
||||||
{
|
|
||||||
// Send the full list of server files to the browser app
|
|
||||||
updateUserFiles(user, ws, domain);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'fileoperation':
|
case 'fileoperation':
|
||||||
{
|
{
|
||||||
// Check permissions
|
// Check permissions
|
||||||
@ -1060,22 +1032,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'users':
|
|
||||||
{
|
|
||||||
// Request a list of all users
|
|
||||||
if ((user.siteadmin & 2) == 0) { if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'users', responseid: command.responseid, result: 'Access denied' })); } catch (ex) { } } break; }
|
|
||||||
var docs = [];
|
|
||||||
for (i in parent.users) {
|
|
||||||
if (((obj.crossDomain === true) || (parent.users[i].domain == domain.id)) && (parent.users[i].name != '~')) {
|
|
||||||
// If we are part of a user group, we can only see other members of our own group
|
|
||||||
if ((obj.crossDomain === true) || (user.groups == null) || (user.groups.length == 0) || ((parent.users[i].groups != null) && (findOne(parent.users[i].groups, user.groups)))) {
|
|
||||||
docs.push(parent.CloneSafeUser(parent.users[i]));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
try { ws.send(JSON.stringify({ action: 'users', users: docs, tag: command.tag })); } catch (ex) { }
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'changelang':
|
case 'changelang':
|
||||||
{
|
{
|
||||||
// Do not allow this command when logged in using a login token
|
// Do not allow this command when logged in using a login token
|
||||||
@ -2400,18 +2356,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'serverversion':
|
|
||||||
{
|
|
||||||
// Do not allow this command when logged in using a login token
|
|
||||||
if (req.session.loginToken != null) break;
|
|
||||||
|
|
||||||
// Check the server version
|
|
||||||
if ((user.siteadmin & 16) == 0) break;
|
|
||||||
if ((domain.myserver === false) || ((domain.myserver != null) && (domain.myserver !== true) && (domain.myserver.upgrade !== true))) break;
|
|
||||||
//parent.parent.getLatestServerVersion(function (currentVersion, latestVersion) { try { ws.send(JSON.stringify({ action: 'serverversion', current: currentVersion, latest: latestVersion })); } catch (ex) { } });
|
|
||||||
parent.parent.getServerTags(function (tags, err) { try { ws.send(JSON.stringify({ action: 'serverversion', tags: tags })); } catch (ex) { } });
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'serverupdate':
|
case 'serverupdate':
|
||||||
{
|
{
|
||||||
// Do not allow this command when logged in using a login token
|
// Do not allow this command when logged in using a login token
|
||||||
@ -2424,14 +2368,6 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
parent.parent.performServerUpdate(command.version);
|
parent.parent.performServerUpdate(command.version);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case 'servererrors':
|
|
||||||
{
|
|
||||||
// Load the server error log
|
|
||||||
if ((user.siteadmin & 16) == 0) break;
|
|
||||||
if ((domain.myserver === false) || ((domain.myserver != null) && (domain.myserver !== true) && (domain.myserver.errorlog !== true))) break;
|
|
||||||
fs.readFile(parent.parent.getConfigFilePath('mesherrors.txt'), 'utf8', function (err, data) { try { ws.send(JSON.stringify({ action: 'servererrors', data: data })); } catch (ex) { } });
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
case 'serverclearerrorlog':
|
case 'serverclearerrorlog':
|
||||||
{
|
{
|
||||||
// Clear the server error log
|
// Clear the server error log
|
||||||
@ -5474,10 +5410,16 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
}
|
}
|
||||||
|
|
||||||
const serverCommands = {
|
const serverCommands = {
|
||||||
|
'files': serverCommandFiles,
|
||||||
'getnetworkinfo': serverCommandGetNetworkInfo,
|
'getnetworkinfo': serverCommandGetNetworkInfo,
|
||||||
'getsysinfo': serverCommandGetSysInfo,
|
'getsysinfo': serverCommandGetSysInfo,
|
||||||
'lastconnect': serverCommandLastConnect,
|
'lastconnect': serverCommandLastConnect,
|
||||||
'serverconsole': serverCommandServerConsole
|
'meshes': serverCommandMeshes,
|
||||||
|
'serverconsole': serverCommandServerConsole,
|
||||||
|
'servererrors': serverCommandServerErrors,
|
||||||
|
'serverstats': serverCommandServerStats,
|
||||||
|
'serverversion': serverCommandServerVersion,
|
||||||
|
'users': serverCommandUsers
|
||||||
};
|
};
|
||||||
|
|
||||||
const serverUserCommands = {
|
const serverUserCommands = {
|
||||||
@ -5532,6 +5474,11 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
'webstats': [serverUserCommandWebStats, ""]
|
'webstats': [serverUserCommandWebStats, ""]
|
||||||
};
|
};
|
||||||
|
|
||||||
|
function serverCommandFiles(command) {
|
||||||
|
// Send the full list of server files to the browser app
|
||||||
|
updateUserFiles(user, ws, domain);
|
||||||
|
}
|
||||||
|
|
||||||
function serverCommandGetNetworkInfo(command) {
|
function serverCommandGetNetworkInfo(command) {
|
||||||
if (!validNodeIdAndDomain(command)) return;
|
if (!validNodeIdAndDomain(command)) return;
|
||||||
|
|
||||||
@ -5600,6 +5547,11 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function serverCommandMeshes(command) {
|
||||||
|
// Request a list of all meshes this user as rights to
|
||||||
|
try { ws.send(JSON.stringify({ action: 'meshes', meshes: parent.GetAllMeshWithRights(user).map(parent.CloneSafeMesh), tag: command.tag })); } catch (ex) { }
|
||||||
|
}
|
||||||
|
|
||||||
function serverCommandServerConsole(command) {
|
function serverCommandServerConsole(command) {
|
||||||
// Do not allow this command when logged in using a login token
|
// Do not allow this command when logged in using a login token
|
||||||
if (req.session.loginToken != null) return;
|
if (req.session.loginToken != null) return;
|
||||||
@ -5623,6 +5575,53 @@ module.exports.CreateMeshUser = function (parent, db, ws, req, args, domain, use
|
|||||||
if (cmdData.result != '') { try { ws.send(JSON.stringify({ action: 'serverconsole', value: cmdData.result, tag: command.tag })); } catch (ex) { } }
|
if (cmdData.result != '') { try { ws.send(JSON.stringify({ action: 'serverconsole', value: cmdData.result, tag: command.tag })); } catch (ex) { } }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function serverCommandServerErrors(command) {
|
||||||
|
// Load the server error log
|
||||||
|
if ((user.siteadmin & 16) == 0) return;
|
||||||
|
if ((domain.myserver === false) || ((domain.myserver != null) && (domain.myserver !== true) && (domain.myserver.errorlog !== true))) return;
|
||||||
|
fs.readFile(parent.parent.getConfigFilePath('mesherrors.txt'), 'utf8', function (err, data) { try { ws.send(JSON.stringify({ action: 'servererrors', data: data })); } catch (ex) { } });
|
||||||
|
}
|
||||||
|
|
||||||
|
function serverCommandServerStats(command) {
|
||||||
|
// Only accept if the "My Server" tab is allowed for this domain
|
||||||
|
if (domain.myserver === false) return;
|
||||||
|
|
||||||
|
if ((user.siteadmin & 21) == 0) return; // Only site administrators with "site backup" or "site restore" or "site update" permissions can use this.
|
||||||
|
if (common.validateInt(command.interval, 1000, 1000000) == false) {
|
||||||
|
// Clear the timer
|
||||||
|
if (obj.serverStatsTimer != null) { clearInterval(obj.serverStatsTimer); delete obj.serverStatsTimer; }
|
||||||
|
} else {
|
||||||
|
// Set the timer
|
||||||
|
obj.SendServerStats();
|
||||||
|
obj.serverStatsTimer = setInterval(obj.SendServerStats, command.interval);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function serverCommandServerVersion(command) {
|
||||||
|
// Do not allow this command when logged in using a login token
|
||||||
|
if (req.session.loginToken != null) return;
|
||||||
|
|
||||||
|
// Check the server version
|
||||||
|
if ((user.siteadmin & 16) == 0) return;
|
||||||
|
if ((domain.myserver === false) || ((domain.myserver != null) && (domain.myserver !== true) && (domain.myserver.upgrade !== true))) return;
|
||||||
|
parent.parent.getServerTags(function (tags, err) { try { ws.send(JSON.stringify({ action: 'serverversion', tags: tags })); } catch (ex) { } });
|
||||||
|
}
|
||||||
|
|
||||||
|
function serverCommandUsers(command) {
|
||||||
|
// Request a list of all users
|
||||||
|
if ((user.siteadmin & 2) == 0) { if (command.responseid != null) { try { ws.send(JSON.stringify({ action: 'users', responseid: command.responseid, result: 'Access denied' })); } catch (ex) { } } return; }
|
||||||
|
var docs = [];
|
||||||
|
for (i in parent.users) {
|
||||||
|
if (((obj.crossDomain === true) || (parent.users[i].domain == domain.id)) && (parent.users[i].name != '~')) {
|
||||||
|
// If we are part of a user group, we can only see other members of our own group
|
||||||
|
if ((obj.crossDomain === true) || (user.groups == null) || (user.groups.length == 0) || ((parent.users[i].groups != null) && (findOne(parent.users[i].groups, user.groups)))) {
|
||||||
|
docs.push(parent.CloneSafeUser(parent.users[i]));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
try { ws.send(JSON.stringify({ action: 'users', users: docs, tag: command.tag })); } catch (ex) { }
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
function serverUserCommandHelp(cmdData) {
|
function serverUserCommandHelp(cmdData) {
|
||||||
var fin = '', f = '', availcommands = [];
|
var fin = '', f = '', availcommands = [];
|
||||||
|
Loading…
Reference in New Issue
Block a user