2020-09-17 13:44:32 +08:00
|
|
|
/* eslint no-unused-vars: 0 */
|
|
|
|
/* eslint no-restricted-syntax: 0 */
|
|
|
|
/* eslint guard-for-in: 0 */
|
|
|
|
|
2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* @author Marzavec ( https://github.com/marzavec )
|
|
|
|
* @summary Show users and channels
|
|
|
|
* @version 1.0.0
|
|
|
|
* @description Outputs all current channels and sockets in those channels
|
|
|
|
* @module listusers
|
|
|
|
*/
|
2018-03-10 15:47:00 +08:00
|
|
|
|
2020-11-07 05:16:43 +08:00
|
|
|
import {
|
|
|
|
isAdmin,
|
2022-06-23 00:32:51 +08:00
|
|
|
} from '../utility/_UAC.js';
|
2020-03-06 00:49:25 +08:00
|
|
|
|
2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* Executes when invoked by a remote client
|
channel ownership base, part 1
Fleshing out the new channel ownership feature, along with a typo fix and small syntax updates.
A claim can now be staked with /claimchannel, a channel owner may change a trip's level using /setlevel
To do: unclaimchannel, setmotd, makeprivate, makepublic, renewclaim, garbage keeping, update mod commands to accept channelOwner and channelModerator, etc
2024-01-05 16:30:28 +08:00
|
|
|
* @param {Object} env - Environment object with references to core, server, socket & payload
|
2022-06-23 00:32:51 +08:00
|
|
|
* @public
|
|
|
|
* @return {void}
|
|
|
|
*/
|
2020-09-17 13:44:32 +08:00
|
|
|
export async function run({ server, socket }) {
|
2018-06-04 15:07:24 +08:00
|
|
|
// increase rate limit chance and ignore if not admin
|
2020-11-07 05:16:43 +08:00
|
|
|
if (!isAdmin(socket.level)) {
|
2023-12-27 16:26:49 +08:00
|
|
|
return server.police.frisk(socket, 20);
|
2018-03-10 15:47:00 +08:00
|
|
|
}
|
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// find all users currently in a channel
|
2019-11-07 15:35:23 +08:00
|
|
|
const currentUsers = server.findSockets({
|
|
|
|
channel: (channel) => true,
|
2018-06-04 15:07:24 +08:00
|
|
|
});
|
|
|
|
|
|
|
|
// compile channel and user list
|
2019-11-07 15:35:23 +08:00
|
|
|
const channels = {};
|
|
|
|
for (let i = 0, j = currentUsers.length; i < j; i += 1) {
|
2018-06-04 15:07:24 +08:00
|
|
|
if (typeof channels[currentUsers[i].channel] === 'undefined') {
|
|
|
|
channels[currentUsers[i].channel] = [];
|
2018-03-10 15:47:00 +08:00
|
|
|
}
|
2019-11-07 15:35:23 +08:00
|
|
|
|
2019-02-03 05:34:06 +08:00
|
|
|
channels[currentUsers[i].channel].push(
|
2019-11-07 15:35:23 +08:00
|
|
|
`[${currentUsers[i].trip || 'null'}]${currentUsers[i].nick}`,
|
2019-02-03 05:34:06 +08:00
|
|
|
);
|
2018-03-10 15:47:00 +08:00
|
|
|
}
|
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// build output
|
2019-11-07 15:35:23 +08:00
|
|
|
const lines = [];
|
|
|
|
for (const channel in channels) {
|
|
|
|
lines.push(`?${channel} ${channels[channel].join(', ')}`);
|
2018-03-10 15:47:00 +08:00
|
|
|
}
|
|
|
|
|
2018-06-04 15:07:24 +08:00
|
|
|
// send reply
|
2018-03-10 15:47:00 +08:00
|
|
|
server.reply({
|
2024-01-09 03:09:59 +08:00
|
|
|
cmd: 'info', // @todo Add numeric info code as `id`
|
2019-11-07 15:35:23 +08:00
|
|
|
text: lines.join('\n'),
|
2020-10-10 13:34:59 +08:00
|
|
|
channel: socket.channel, // @todo Multichannel
|
2018-03-10 15:47:00 +08:00
|
|
|
}, socket);
|
|
|
|
|
2019-11-07 15:35:23 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-06-23 00:32:51 +08:00
|
|
|
/**
|
|
|
|
* Module meta information
|
|
|
|
* @public
|
|
|
|
* @typedef {Object} listusers/info
|
|
|
|
* @property {string} name - Module command name
|
|
|
|
* @property {string} category - Module category name
|
|
|
|
* @property {string} description - Information about module
|
|
|
|
* @property {string} usage - Information about module usage
|
|
|
|
*/
|
2019-11-07 15:35:23 +08:00
|
|
|
export const info = {
|
2018-05-13 18:33:22 +08:00
|
|
|
name: 'listusers',
|
2022-06-23 00:32:51 +08:00
|
|
|
category: 'admin',
|
2018-09-30 14:44:36 +08:00
|
|
|
description: 'Outputs all current channels and sockets in those channels',
|
|
|
|
usage: `
|
2019-11-07 15:35:23 +08:00
|
|
|
API: { cmd: 'listusers' }`,
|
2018-05-13 18:33:22 +08:00
|
|
|
};
|