3414 lines
191 KiB
JavaScript
3414 lines
191 KiB
JavaScript
const net = require('net');
|
|
const dns = require('dns');
|
|
const tls = require('tls');
|
|
const fs = require('fs');
|
|
const { get } = require('http');
|
|
const WTVShared = require('./WTVShared.js').WTVShared;
|
|
const crypto = require('crypto');
|
|
const { mode } = require('crypto-js');
|
|
|
|
class WTVIRC {
|
|
/*
|
|
* @constructor
|
|
* @class WTVIRC
|
|
* WTVIRC - A small IRC server implementation for WebTV
|
|
* Tested with WebTV and KvIRC
|
|
* This is a basic implementation and does not cover all IRC features.
|
|
* Supports unencrypted and encrypted (SSL) connections on the same port.
|
|
* It supports basic commands like NICK, USER, JOIN, PART, PRIVMSG, NOTICE, TOPIC, AWAY, MODE, KICK, and PING.
|
|
* Basic IRCOp functionality is included, you can basically be an channel operator in every channel, or /kill users.
|
|
* Channel modes are supported, including invite-only, topic protection, password protection, and user modes (op/voice).
|
|
* SSL only channel mode +z is supported. As is usermode +Z (no DMs from non-SSL users)
|
|
*
|
|
* TODO: k-line? probably not, but maybe in a different format.
|
|
* TODO: Test for crashes with arbitrary data, or malformed commands (especially SSL handshake).
|
|
*
|
|
* @param {Object} minisrv_config - The configuration object for minisrv.
|
|
* @param {string} [host='localhost'] - The host to bind the IRC server to.
|
|
* @param {number} [port=6667] - The port to bind the IRC server to.
|
|
* @param {boolean} [debug=false] - Whether to enable debug mode for logging.
|
|
*/
|
|
constructor(minisrv_config, host = 'localhost', port = 6667, debug = false) {
|
|
this.minisrv_config = minisrv_config;
|
|
this.wtvshared = new WTVShared(minisrv_config);
|
|
this.version = '';
|
|
this.host = host;
|
|
this.port = port;
|
|
this.debug = debug;
|
|
this.server = null;
|
|
this.clients = [];
|
|
this.usernames = new Map(); // nickname -> username
|
|
this.channels = new Map();
|
|
this.channelkeys = new Map(); // channel -> password
|
|
this.channellimits = new Map(); // channel -> limit of users
|
|
this.channeltimestamps = new Map(); // channel -> timestamp of creation
|
|
this.channelops = new Map(); // channel -> Set of operators
|
|
this.channelhalfops = new Map(); // channel -> Set of half-operators
|
|
this.channelvoices = new Map(); // channel -> Set of voiced users
|
|
this.channeltopics = new Map(); // channel -> topic
|
|
this.channelinvites = new Map(); // channel -> Set of invited users
|
|
this.channelbans = new Map(); // channel -> Set of banned users
|
|
this.channelexemptions = new Map(); // channel -> Set of exempted users
|
|
this.inviteexceptions = new Map(); // channel -> Set of users who can bypass invite only mode
|
|
this.channelmodes = new Map(); // channel -> Array of modes (e.g. ['m', 'i', 'l10', 'k secret'])
|
|
this.usertimestamps = new Map(); // nickname -> timestamp since last message
|
|
this.usermodes = new Map(); // nickname -> Array of modes (e.g. ['w', 'i'])
|
|
this.usersignontimestamps = new Map(); // nickname -> timestamp since user signed on
|
|
this.nicknames = new Map(); // socket -> nickname
|
|
this.awaymsgs = new Map(); // nickname -> away message
|
|
this.servers = new Map(); // socket -> server information
|
|
this.serverusers = new Map(); // server -> Set of users connected to this server
|
|
this.reservednicks = [];
|
|
this.hostnames = new Map(); // nickname -> hostname
|
|
this.realhosts = new Map(); // nickname -> real IP address
|
|
this.uniqueids = new Map(); // nickname -> unique ID mapping
|
|
this.channelprefixes = ['#','&'];
|
|
this.default_channel_modes = ['n','t'];
|
|
this.default_user_modes = ['x'];
|
|
this.server_start_time = Date.now();
|
|
this.allowed_characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_[]{}\\|^-';
|
|
this.irc_config = minisrv_config.config.irc || {};
|
|
this.servername = this.irc_config.server_hostname || 'irc.local';
|
|
this.network = this.irc_config.network || 'minisrv';
|
|
this.oper_username = this.irc_config.oper_username || 'minisrv';
|
|
this.oper_password = this.irc_config.oper_password || 'changeme573';
|
|
this.oper_enabled = this.irc_config.oper_enabled || this.debug || false; // Default to off to prevent accidental use with default credentials
|
|
this.irc_motd = this.irc_config.motd || 'Welcome to the minisrv WebTV IRC server!';
|
|
this.nicklen = this.irc_config.nick_len || 31;
|
|
this.maxbans = this.irc_config.max_bans || 100;
|
|
this.maxlimit = this.irc_config.max_limit || 50;
|
|
this.maxexcept = this.irc_config.max_except || 100;
|
|
this.maxinvite = this.irc_config.max_invite || 100;
|
|
this.maxkeylen = this.irc_config.max_keylen || 24;
|
|
this.channellimit = this.irc_config.channel_limit || 10;
|
|
this.channellen = this.irc_config.channel_len || 32;
|
|
this.topiclen = this.irc_config.topic_len || 255;
|
|
this.kicklen = this.irc_config.kick_len || 255;
|
|
this.awaylen = this.irc_config.away_len || 200;
|
|
this.enable_ssl = this.irc_config.enable_ssl || false;
|
|
this.maxtargets = this.irc_config.max_targets || 4;
|
|
this.serverId = this.irc_config.server_id || '00A'; // Default server ID, can be overridden in config
|
|
this.allow_public_vhosts = this.irc_config.allow_public_vhosts || true; // If true, users can set their vhost to a public IP address
|
|
this.kick_insecure_on_z = this.irc_config.kick_insecure_on_z || true; // If true, users without SSL connections will be kicked from a channel when +z is applied
|
|
this.clientpeak = 0;
|
|
this.globalpeak = 0;
|
|
this.caps = [
|
|
`AWAYLEN=${this.awaylen} CASEMAPPING=rfc1459 CHANMODES=beI,k,l,itmnpcTVZRrNQO CHANNELLEN=${this.channellen} CHANTYPES=${this.channelprefixes.join('')} PREFIX=(ohv)@%+ USERMODES=oxirzZws MAXLIST=b:${this.maxbans},e:${this.maxexcept},i:${this.maxinvite},k:${this.maxkeylen},l:${this.maxlimit}`,
|
|
`CHARSET=ascii MODES=3 EXCEPTS=e INVEX=I NETWORK=${this.network} CHANLIMIT=${this.channelprefixes.join('')}:${this.channellimit} NICKLEN=${this.nicklen} TOPICLEN=${this.topiclen} KICKLEN=${this.kicklen}`
|
|
];
|
|
}
|
|
|
|
start() {
|
|
if (this.irc_config.channels) {
|
|
for (const channel of this.irc_config.channels) {
|
|
this.createChannel(channel.name);
|
|
if (channel.modes && Array.isArray(channel.modes)) {
|
|
this.channelmodes.set(channel.name, channel.modes.slice());
|
|
}
|
|
if (channel.topic) {
|
|
this.channeltopics.set(channel.name, channel.topic);
|
|
}
|
|
}
|
|
}
|
|
this.server_start_time = Date.now();
|
|
this.server = net.createServer((socket) => {
|
|
// Detect SSL handshake and wrap socket if needed
|
|
socket.once('data', (firstChunk) => {
|
|
socket.removeAllListeners('data');
|
|
socket.pause();
|
|
socket.on('error', (err) => {
|
|
if (this.debug) {
|
|
console.error('Socket error:', err);
|
|
}
|
|
this.terminateSession(socket, true);
|
|
});
|
|
// Check if the first byte indicates SSL/TLS handshake (0x16 for TLS Handshake)
|
|
if (Buffer.isBuffer(firstChunk) ? firstChunk[0] === 0x16 : firstChunk.charCodeAt(0) === 0x16) {
|
|
if (!this.enable_ssl) {
|
|
// If SSL is not enabled, close the socket
|
|
socket.write(`:${this.servername} 421 * :SSL is not enabled on this server\r\n`);
|
|
socket.end();
|
|
return;
|
|
}
|
|
|
|
// SSL detected, upgrade socket to TLS
|
|
const keyBuffer = fs.readFileSync(this.wtvshared.parseConfigVars(this.irc_config.ssl_cert.key));
|
|
const certBuffer = fs.readFileSync(this.wtvshared.parseConfigVars(this.irc_config.ssl_cert.cert));
|
|
const secureSocket = new tls.TLSSocket(socket, {
|
|
isServer: true,
|
|
ALPNProtocols: ['irc'],
|
|
secureContext: tls.createSecureContext({
|
|
key: keyBuffer,
|
|
cert: certBuffer,
|
|
}),
|
|
});
|
|
socket.push(firstChunk);
|
|
|
|
secureSocket.on('error', (err) => {
|
|
this.terminateSession(secureSocket, true);
|
|
});
|
|
|
|
secureSocket.on('close', () => {
|
|
this.terminateSession(secureSocket, false);
|
|
});
|
|
|
|
// Only start processing after handshake is complete
|
|
secureSocket.on('secure', () => {
|
|
if (this.debug) {
|
|
console.log('Secure connection established');
|
|
}
|
|
if (this.debug) {
|
|
const originalWrite = secureSocket.write;
|
|
secureSocket.write = function (...args) {
|
|
var log_args = args.map(arg => {
|
|
if (typeof arg === 'string') {
|
|
return arg.replace(/\r\n/g, '').replace(/\n/g, '');
|
|
}
|
|
return arg;
|
|
});
|
|
console.log('<', ...log_args);
|
|
return originalWrite.apply(secureSocket, args);
|
|
};
|
|
}
|
|
socket.removeAllListeners('error');
|
|
secureSocket.setEncoding('ascii');
|
|
secureSocket.registered = false;
|
|
secureSocket.nickname = '';
|
|
secureSocket.username = '';
|
|
secureSocket.isserver = false;
|
|
secureSocket.realhost = socket.remoteAddress
|
|
secureSocket.host = this.filterHostname(secureSocket, socket.remoteAddress);
|
|
this.getHostname(secureSocket, (hostname) => {
|
|
secureSocket.realhost = hostname;
|
|
secureSocket.host = this.filterHostname(secureSocket, hostname);
|
|
});
|
|
|
|
secureSocket.timestamp = Date.now();
|
|
secureSocket.secure = true;
|
|
secureSocket.uniqueId = `${this.serverId}${this.generateUniqueId(secureSocket)}`;
|
|
// Push the secure socket to clients
|
|
this.clients.push(secureSocket);
|
|
this.clientpeak = Math.max(this.clientpeak, this.clients.length);
|
|
//secureSocket.write(`:${this.servername} NOTICE AUTH :Welcome to minisrv IRC Server\r\n`);
|
|
secureSocket.on('data', async data => {
|
|
await this.processSocketData(secureSocket, data);
|
|
});
|
|
secureSocket.on('end', () => {
|
|
this.terminateSession(secureSocket, false);
|
|
});
|
|
});
|
|
secureSocket.resume();
|
|
return;
|
|
} else {
|
|
// Not SSL, re-emit the data event for normal processing
|
|
if (this.debug) {
|
|
const originalWrite = socket.write;
|
|
socket.write = function (...args) {
|
|
var log_args = args.map(arg => {
|
|
if (typeof arg === 'string') {
|
|
return arg.replace(/\r\n/g, '').replace(/\n/g, '');
|
|
}
|
|
return arg;
|
|
});
|
|
console.log('<', ...log_args);
|
|
return originalWrite.apply(socket, args);
|
|
};
|
|
}
|
|
socket.setEncoding('ascii');
|
|
socket.registered = false;
|
|
socket.nickname = '';
|
|
socket.username = '';
|
|
socket.isserver = false;
|
|
socket.realhost = socket.remoteAddress;
|
|
socket.host = this.filterHostname(socket, socket.remoteAddress);
|
|
this.getHostname(socket, (hostname) => {
|
|
socket.realhost = hostname;
|
|
socket.host = this.filterHostname(socket, hostname);
|
|
});
|
|
socket.timestamp = Date.now();
|
|
socket.secure = false;
|
|
socket.uniqueId = `${this.serverId}${this.generateUniqueId(socket)}`;
|
|
|
|
//socket.write(`:${this.servername} NOTICE AUTH :Welcome to minisrv IRC Server\r\n`);
|
|
socket.on('data', async data => {
|
|
await this.processSocketData(socket, data);
|
|
});
|
|
|
|
socket.on('end', () => {
|
|
this.terminateSession(socket, false);
|
|
});
|
|
|
|
socket.on('error', () => {
|
|
this.terminateSession(socket, true);
|
|
});
|
|
socket.emit('data', firstChunk.toString('ascii'));
|
|
socket.resume();
|
|
this.clients.push(socket);
|
|
this.clientpeak = Math.max(this.clientpeak, this.clients.length);
|
|
return;
|
|
}
|
|
});
|
|
});
|
|
this.server.listen(this.port, this.host, () => {
|
|
if (this.debug) {
|
|
console.log(`IRC server started on port ${this.host}:${this.port}`);
|
|
}
|
|
});
|
|
}
|
|
|
|
async processServerData(socket, line) {
|
|
// Handle server-specific commands
|
|
const parts = line.split(' ');
|
|
if (parts[0] == `:${socket.uniqueId}`) {
|
|
parts.shift(); // Remove the unique ID prefix
|
|
}
|
|
if (parts.length < 1) return; // Invalid command
|
|
const command = parts[0].toUpperCase();
|
|
switch (command) {
|
|
case 'PASS':
|
|
// Handle PASS command from server
|
|
if (parts.length < 2) {
|
|
console.warn('Invalid PASS command from server');
|
|
break;
|
|
}
|
|
const password = parts[1];
|
|
const servers = this.irc_config.servers || {};
|
|
let matchedServer = null;
|
|
Object.entries(servers).forEach(([key, serverObj]) => {
|
|
if (serverObj.password && serverObj.password === password) {
|
|
matchedServer = serverObj;
|
|
if (this.debug) {
|
|
console.log(`Server ${serverObj.name || key} matched with provided password`);
|
|
}
|
|
socket.write(`PASS ${serverObj.password}\r\n`);
|
|
return;
|
|
}
|
|
});
|
|
if (!matchedServer) {
|
|
socket.write(`:${this.servername} :ERROR :Invalid server password\r\n`);
|
|
this.terminateSession(socket);
|
|
}
|
|
socket.serverinfo = matchedServer
|
|
break;
|
|
case 'CAPAB':
|
|
// Handle CAPAB command from server
|
|
if (parts.length < 2) {
|
|
console.warn('Invalid CAPAB command from server');
|
|
return;
|
|
}
|
|
const capabilities = parts.slice(1).join(' ').split(',');
|
|
if (this.debug) {
|
|
console.log(`Server capabilities: ${capabilities.join(', ')}`);
|
|
}
|
|
socket.write(`CAP * ACK :${capabilities.join(' ')}\r\n`);
|
|
break;
|
|
case 'SERVER':
|
|
// Handle SERVER command from server
|
|
if (parts.length < 6) {
|
|
console.warn('Invalid SERVER command from server');
|
|
return;
|
|
}
|
|
var serverName = parts[1];
|
|
var serverNumber = parts[2];
|
|
var serverId = parts[3];
|
|
var serverExtra = parts[4]
|
|
var serverInfo = parts.slice(5).join(' ');
|
|
socket.isserver = true;
|
|
this.clients = this.clients.filter(c => c !== socket);
|
|
this.clientpeak = this.clientpeak - 1;
|
|
socket.servername = serverName;
|
|
socket.uniqueId = serverId;
|
|
this.servers.set(socket, serverName)
|
|
socket.write(`SERVER ${this.servername} 1 ${this.serverId} + :${this.irc_motd}\r\n`);
|
|
for (const [sock, nickname] of this.nicknames.entries()) {
|
|
if (!sock || !nickname) continue;
|
|
const uniqueId = sock.uniqueId;
|
|
const signonTime = Math.floor(this.usersignontimestamps.get(nickname) || Date.now() / 1000);
|
|
const userModes = (this.usermodes.get(nickname) || []).join('');
|
|
const username = this.usernames.get(nickname) || '';
|
|
socket.write(`:${this.serverId} UID ${nickname} 1 ${signonTime} +${userModes} ${username} ${sock.host} ${sock.realhost} ${sock.remoteAddress} ${uniqueId} * :${sock.userinfo}\r\n`);
|
|
}
|
|
for (const [channel, users] of this.channels.entries()) {
|
|
const modes = this.channelmodes.get(channel) || [];
|
|
for (const user of users) {
|
|
console.log(`Sending SJOIN for user ${user} in channel ${channel}`);
|
|
let userPrefix = '';
|
|
if ((this.channelops.get(channel) || new Set()).has(user)) {
|
|
userPrefix = '@';
|
|
} else if ((this.channelhalfops.get(channel) || new Set()).has(user)) {
|
|
userPrefix = '%';
|
|
} else if ((this.channelvoices.get(channel) || new Set()).has(user)) {
|
|
userPrefix = '+';
|
|
}
|
|
const userUniqueId = this.uniqueids.get(user);
|
|
if (userUniqueId) {
|
|
socket.write(`:${this.serverId} SJOIN ${Math.floor(Date.now() / 1000)} ${channel} +${modes.join('')} :${userPrefix}${userUniqueId}\r\n`);
|
|
}
|
|
}
|
|
}
|
|
// Send EOB to the server
|
|
socket.write(`:${this.serverId} EOB \r\n`);
|
|
break;
|
|
case 'SVINFO':
|
|
// Handle SVINFO command from server
|
|
if (parts.length < 4) {
|
|
console.warn('Invalid SVINFO command from server');
|
|
break;
|
|
}
|
|
const serverInfoMessage = `SVINFO 6 6 0 :${parseInt(Date.now() / 1000)}\r\n`;
|
|
socket.write(serverInfoMessage);
|
|
case 'PING':
|
|
// Respond to PING with PONG
|
|
const response = `PONG ${this.servername} :${parts.slice(2).join(' ')}\r\n`;
|
|
this.broadcastServer(socket, response);
|
|
break;
|
|
case 'PONG':
|
|
// Ignore PONG from server
|
|
break;
|
|
case 'RESV':
|
|
// Handle RESV command from server
|
|
if (parts.length < 2) {
|
|
console.warn('Invalid RESV command from server');
|
|
break;
|
|
}
|
|
const targetMask = parts[1];
|
|
const expiry = parseInt(parts[2]) || 0;
|
|
const reservedNick = parts[3];
|
|
const reason = parts.slice(4).join(' ') || '';
|
|
this.reservednicks.push(reservedNick);
|
|
if (expiry > 0) {
|
|
setTimeout(() => {
|
|
const index = this.reservednicks.indexOf(reservedNick);
|
|
if (index !== -1) {
|
|
this.reservednicks.splice(index, 1);
|
|
if (this.debug) {
|
|
console.log(`Reservation for ${reservedNick} expired`);
|
|
}
|
|
}
|
|
}, expiry * 1000);
|
|
}
|
|
break;
|
|
case 'UID':
|
|
// Handle UID command from server
|
|
if (parts.length < 10) {
|
|
console.warn('Invalid UID command from server');
|
|
break;
|
|
}
|
|
var nickname = parts[1];
|
|
const server_Id = parts[2];
|
|
const timestamp = parseInt(parts[3]) || 0;
|
|
const userModes = parts[4].replace("/+/","").split('');
|
|
var username = parts[5];
|
|
var hostname = parts[6];
|
|
const ipaddress = parts[7];
|
|
const ipaddress2 = parts[8];
|
|
const userUniqueId = parts[9];
|
|
var serverUsers = this.serverusers.get(socket) || new Set();
|
|
if (serverUsers === true) {
|
|
serverUsers = new Set();
|
|
}
|
|
serverUsers.add(nickname);
|
|
this.serverusers.set(socket, serverUsers);
|
|
this.addUserUniqueId(nickname, userUniqueId);
|
|
this.globalpeak = Math.max(this.globalpeak, this.countGlobalUsers());
|
|
this.usersignontimestamps.set(nickname, timestamp);
|
|
this.usernames.set(nickname, username);
|
|
this.hostnames.set(nickname, hostname);
|
|
this.realhosts.set(nickname, ipaddress2);
|
|
for (const mode of userModes) {
|
|
var usermodes = this.usermodes.get(nickname) || [];
|
|
if (usermodes === true) {
|
|
usermodes = [];
|
|
}
|
|
this.usermodes.set(nickname, [...(usermodes), mode]);
|
|
}
|
|
break;
|
|
case 'SVSNICK':
|
|
// Handle SVSNICK command from server
|
|
if (parts.length < 5) {
|
|
console.warn('Invalid SVSNICK command from server');
|
|
break;
|
|
}
|
|
var oldNick = this.findUserByUniqueId(parts[1]);
|
|
var newNick = parts[3];
|
|
var targetSocket = this.findSocketByUniqueId(parts[1]);
|
|
targetSocket.write(`:${targetSocket.nickname}!${targetSocket.username}@${targetSocket.host} NICK :${newNick}\r\n`);
|
|
this.broadcastUser(oldNick, `:${targetSocket.nickname}!${targetSocket.username}@${targetSocket.host} NICK :${newNick}\r\n`);
|
|
this.processNickChange(targetSocket, newNick);
|
|
this.broadcastToAllServers(line, socket);
|
|
break;
|
|
case 'SJOIN':
|
|
var channel = parts[2];
|
|
var modes = parts[3];
|
|
var uniqueId = parts[4].slice(1);
|
|
if (['@', '%', '+'].includes(uniqueId[0])) {
|
|
uniqueId = uniqueId.slice(1);
|
|
}
|
|
var userSocket = this.findSocketByUniqueId(uniqueId);
|
|
var nickname = this.findUserByUniqueId(uniqueId);
|
|
var username = this.usernames.get(nickname) || nickname;
|
|
var hostname = this.hostnames.get(nickname)
|
|
if (!this.channels.has(channel)) {
|
|
this.createChannel(channel);
|
|
}
|
|
if (!this.channels.get(channel).has(nickname)) {
|
|
this.channels.get(channel).add(nickname);
|
|
}
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${hostname} JOIN ${channel}\r\n`, userSocket);
|
|
break;
|
|
case 'SQUIT':
|
|
this.servers.delete(socket);
|
|
break;
|
|
case (command.match(/^\d{3}$/) || {}).input:
|
|
// Numeric reply from server
|
|
// Numeric replies are usually in the format: <numeric> <nickname> :<message>
|
|
var senderID = parts[1]
|
|
var targetSocket = this.findSocketByUniqueId(senderID);
|
|
if (!targetSocket) {
|
|
console.warn(`No socket found for unique ID ${senderID}`);
|
|
break;
|
|
}
|
|
var responded = false;
|
|
switch (command) {
|
|
case '307':
|
|
// WHOIS AWAY reply
|
|
if (parts.length < 3) {
|
|
console.warn('Invalid WHOIS AWAY reply from server');
|
|
break;
|
|
}
|
|
var whoisNick = parts[2];
|
|
var awayMessage = parts.slice(3).join(' ');
|
|
if (awayMessage.startsWith(':')) {
|
|
awayMessage = awayMessage.slice(1);
|
|
}
|
|
targetSocket.write(`:${socket.servername} 307 ${whoisNick} ${whoisNick} :${awayMessage}\r\n`);
|
|
responded = true;
|
|
break;
|
|
case '311':
|
|
// WHOIS reply
|
|
var whoisNick = parts[2];
|
|
var whoisUser = parts[3];
|
|
var whoisHost = parts[4];
|
|
var whoisServer = parts[5];
|
|
var whoisRealname = parts.slice(6).join(' ');
|
|
if (whoisRealname.startsWith(':')) {
|
|
whoisRealname = whoisRealname.slice(1);
|
|
}
|
|
targetSocket.write(`:${socket.servername} 311 ${whoisNick} ${whoisNick} ${whoisUser} ${whoisHost} ${whoisServer} :${whoisRealname}\r\n`);
|
|
responded = true;
|
|
break;
|
|
case '312':
|
|
// WHOIS SERVER reply
|
|
var serverID = parts[1];
|
|
var whoisNick = parts[2];
|
|
var serverName = parts[2];
|
|
var serverInfo = parts.slice(3).join(' ');
|
|
if (serverInfo.startsWith(':')) {
|
|
serverInfo = serverInfo.slice(1);
|
|
}
|
|
targetSocket.write(`:${socket.servername} 312 ${whoisNick} ${serverName} :${serverInfo}\r\n`);
|
|
responded = true;
|
|
break;
|
|
case '313':
|
|
// WHOIS operator reply
|
|
if (parts.length < 3) {
|
|
console.warn('Invalid WHOIS operator reply from server');
|
|
break;
|
|
}
|
|
var whoisNick = parts[2];
|
|
var message = parts.slice(3).join(' ');
|
|
if (message.startsWith(':')) {
|
|
message = message.slice(1);
|
|
}
|
|
targetSocket.write(`:${socket.servername} 313 ${whoisNick} ${whoisNick} :${message}\r\n`);
|
|
responded = true;
|
|
break;
|
|
case '317':
|
|
// WHOIS idle reply
|
|
if (parts.length < 4) {
|
|
console.warn('Invalid WHOIS idle reply from server');
|
|
break;
|
|
}
|
|
var whoisNick = parts[2];
|
|
var idleTime = parts[3];
|
|
var signonTime = parts[4];
|
|
targetSocket.write(`:${socket.servername} 317 ${whoisNick} ${whoisNick} ${idleTime} ${signonTime} :seconds idle, signon time\r\n`);
|
|
responded = true;
|
|
break;
|
|
case '318':
|
|
// WHOIS end of reply
|
|
if (parts.length < 2) {
|
|
console.warn('Invalid WHOIS end of reply from server');
|
|
break;
|
|
}
|
|
var whoisNick = parts[1];
|
|
targetSocket.write(`:${socket.servername} 318 ${whoisNick} :End of WHOIS list\r\n`);
|
|
responded = true;
|
|
break;
|
|
}
|
|
if (responded) {
|
|
break;
|
|
}
|
|
if (parts.length < 4) {
|
|
console.warn('Invalid numeric reply from server');
|
|
break;
|
|
}
|
|
const numericCode = parts[0];
|
|
const targetID = parts[1];
|
|
const senderName = parts[2]; // Remove server ID prefix
|
|
var numericMessage = parts.slice(3).join(' ');
|
|
if (numericMessage.startsWith(':')) {
|
|
numericMessage = numericMessage.slice(1); // Remove leading ':'
|
|
}
|
|
|
|
if (!targetSocket) {
|
|
console.warn(`No socket found for uniqueID ${targetID}`);
|
|
break;
|
|
}
|
|
targetSocket.write(`:${socket.serverinfo.name} ${numericCode} ${targetID} :${numericMessage}\r\n`);
|
|
break;
|
|
default:
|
|
if (command.startsWith(':')) {
|
|
// part out the line to "sourceUniqueId command targetUniqueId :message"
|
|
var sourceUniqueId = parts[0].slice(1); // Remove the leading ':'
|
|
var srvCommand = parts[1];
|
|
switch (srvCommand) {
|
|
case 'QUIT':
|
|
var nick_name = this.findUserByUniqueId(sourceUniqueId);
|
|
var user_name = this.usernames.get(nick_name) || nick_name;
|
|
for (const [channel, users] of this.channels.entries()) {
|
|
if (users.has(nick_name)) {
|
|
this.broadcastChannel(channel, `:${nick_name}!${user_name}@${this.servername} QUIT :Remote server disconnected\r\n`);
|
|
}
|
|
if (this.channels.has(channel) && this.channels.get(channel).size === 0) {
|
|
this.deleteChannel(channel);
|
|
}
|
|
}
|
|
// Remove user from the server's user list
|
|
const serverUsers = this.serverusers.get(socket);
|
|
if (serverUsers && typeof serverUsers.delete === 'function') {
|
|
const nickToRemove = this.findUserByUniqueId(sourceUniqueId);
|
|
serverUsers.delete(nickToRemove);
|
|
this.serverusers.set(socket, serverUsers);
|
|
}
|
|
this.usermodes.delete(nick_name);
|
|
this.usernames.delete(nick_name);
|
|
this.uniqueids.delete(nick_name);
|
|
break;
|
|
case 'JOIN':
|
|
var channel = parts[3];
|
|
if (!this.channels.has(channel)) {
|
|
this.createChannel(channel);
|
|
}
|
|
var userSocket = this.findSocketByUniqueId(sourceUniqueId);
|
|
if (!userSocket) {
|
|
console.warn(`No socket found for source unique ID ${sourceUniqueId}`);
|
|
break;
|
|
}
|
|
var nickname = this.findUserByUniqueId(sourceUniqueId);
|
|
var username = this.usernames.get(nickname) || nickname;
|
|
if (!this.channels.get(channel).has(nickname)) {
|
|
this.channels.get(channel).add(nickname);
|
|
}
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${userSocket.host} JOIN ${channel}\r\n`, userSocket);
|
|
break;
|
|
case 'PART':
|
|
var channel = parts[2];
|
|
var nickname = this.findUserByUniqueId(sourceUniqueId);
|
|
var username = this.usernames.get(nickname) || nickname;
|
|
var hostname = this.hostnames.get(nickname);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${hostname} PART ${channel} :${parts.slice(4).join(' ')}\r\n`, userSocket);
|
|
if (this.channels.has(channel) && this.channels.get(channel).size === 0) {
|
|
this.deleteChannel(channel);
|
|
}
|
|
break;
|
|
case 'GLOBOPS':
|
|
var message = parts.slice(3).join(' ');
|
|
this.broadcastToAllServers(`:${sourceUniqueId} GLOBOPS :${message}`, socket);
|
|
break;
|
|
case 'TBURST':
|
|
// Handle TBURST command from server
|
|
if (parts.length < 6) {
|
|
console.warn(`Invalid TBURST command from server: ${line}`);
|
|
break;
|
|
}
|
|
var channel = parts[3];
|
|
var topic = parts.slice(6).join(' ');
|
|
if (topic.startsWith(':')) {
|
|
topic = topic.slice(1);
|
|
}
|
|
if (!this.channels.has(channel)) {
|
|
this.createChannel(channel);
|
|
}
|
|
this.channeltopics.set(channel, topic);
|
|
var nickname = this.findUserByUniqueId(sourceUniqueId);
|
|
this.broadcastChannel(channel, `:${nickname} TOPIC ${channel} :${topic}\r\n`);
|
|
break;
|
|
case 'MODE':
|
|
var targetUniqueId = parts[2];
|
|
if (this.channelprefixes.some(prefix => targetUniqueId.startsWith(prefix))) {
|
|
// It's a channel, broadcast to all users in the channel
|
|
if (this.channels.has(targetUniqueId)) {
|
|
var nickname = this.findUserByUniqueId(sourceUniqueId);
|
|
var username = this.usernames.get(nickname) || nickname;
|
|
var hostname = socket.serverinfo.name;
|
|
|
|
var modes = parts[3];
|
|
// Split modes into array and process each character
|
|
let modeChars = modes.split('');
|
|
|
|
let modeMsg = `:${nickname}!${username}@${hostname} MODE ${targetUniqueId} `;
|
|
let addingFlag = false;
|
|
let prevAdding = false;
|
|
let paramIndex = 4; // Start after the modes
|
|
let params = 0;
|
|
let flags = [];
|
|
|
|
for (let j = 0; j < modeChars.length; j++) {
|
|
let param = null;
|
|
let modeStr = '';
|
|
let mc = modeChars[j];
|
|
if (mc === '+') {
|
|
addingFlag = true;
|
|
modeMsg += '+';
|
|
prevAdding = true;
|
|
continue;
|
|
} else if (mc === '-') {
|
|
addingFlag = false;
|
|
modeMsg += '-';
|
|
prevAdding = false;
|
|
continue;
|
|
}
|
|
modeStr += mc;
|
|
// Modes that require a parameter
|
|
if (['o', 'I', 'b', 'e', 'v', 'h', 'l', 'k'].includes(mc)) {
|
|
var plusminus = (addingFlag) ? "+" : "-";
|
|
flags.push(plusminus + mc);
|
|
params++;
|
|
} else {
|
|
var channelmodes = this.channelmodes.get(targetUniqueId) || [];
|
|
if (channelmodes === true) {
|
|
channelmodes = [];
|
|
}
|
|
if (addingFlag) {
|
|
channelmodes.push(mc);
|
|
} else {
|
|
channelmodes = channelmodes.filter(mode => mode !== mc);
|
|
}
|
|
this.channelmodes.set(targetUniqueId, channelmodes);
|
|
}
|
|
|
|
if (modeStr.length > 0) {
|
|
modeMsg += modeStr;
|
|
}
|
|
if (param) {
|
|
modeMsg += ` ${param}`;
|
|
}
|
|
}
|
|
if (params > 0 && parts.length > paramIndex) {
|
|
for (let i = 0; i < params; i++) {
|
|
var target = this.findUserByUniqueId(parts[paramIndex]);
|
|
if (!target) {
|
|
target = parts[paramIndex];
|
|
}
|
|
if (!target) {
|
|
console.warn(`No target found for unique ID ${parts[paramIndex]}`);
|
|
break;
|
|
}
|
|
modeMsg += ` ${target}`;
|
|
if (flags[i] === '+o' || flags[i] === '-o') {
|
|
var channelOps = this.channelops.get(targetUniqueId) || new Set();
|
|
if (channelOps === true) {
|
|
channelOps = new Set();
|
|
}
|
|
if (flags[i] === '+o') {
|
|
channelOps.add(target);
|
|
} else if (flags[i] === '-o') {
|
|
channelOps.delete(target);
|
|
}
|
|
this.channelops.set(targetUniqueId, channelOps);
|
|
} else if (flags[i] === '+h' || flags[i] === '-h') {
|
|
var channelHalfOps = this.channelhalfops.get(targetUniqueId) || new Set();
|
|
if (channelHalfOps === true) {
|
|
channelHalfOps = new Set();
|
|
}
|
|
if (flags[i] === '+h') {
|
|
channelHalfOps.add(target);
|
|
} else if (flags[i] === '-h') {
|
|
channelHalfOps.delete(target);
|
|
}
|
|
this.channelhalfops.set(targetUniqueId, channelHalfOps);
|
|
} else if (flags[i] === '+v' || flags[i] === '-v') {
|
|
var channelVoices = this.channelvoices.get(targetUniqueId) || new Set();
|
|
if (channelVoices === true) {
|
|
channelVoices = new Set();
|
|
}
|
|
if (flags[i] === '+v') {
|
|
channelVoices.add(target);
|
|
} else if (flags[i] === '-v') {
|
|
channelVoices.delete(target);
|
|
}
|
|
this.channelvoices.set(targetUniqueId, channelVoices);
|
|
} else if (flags[i] === '+b' || flags[i] === '-b') {
|
|
var channelBans = this.channelbans.get(targetUniqueId) || [];
|
|
if (channelBans === true) {
|
|
channelBans = [];
|
|
}
|
|
if (flags[i] === '+b') {
|
|
channelBans.push(target);
|
|
} else if (flags[i] === '-b') {
|
|
channelBans = channelBans.filter(ban => ban !== target);
|
|
}
|
|
this.channelbans.set(targetUniqueId, channelBans);
|
|
} else if (flags[i] === '+e' || flags[i] === '-e') {
|
|
var channelExemptions = this.channelexemptions.get(targetUniqueId) || [];
|
|
if (channelExemptions === true) {
|
|
channelExemptions = [];
|
|
}
|
|
if (flags[i] === '+e') {
|
|
channelExemptions.push(target);
|
|
} else if (flags[i] === '-e') {
|
|
channelExemptions = channelExemptions.filter(exception => exception !== target);
|
|
}
|
|
this.channelexemptions.set(targetUniqueId, channelExemptions);
|
|
} else if (flags[i] === '+I' || flags[i] === '-I') {
|
|
var channelInvites = this.channelinvites.get(targetUniqueId) || [];
|
|
if (channelInvites === true) {
|
|
channelInvites = [];
|
|
}
|
|
if (flags[i] === '+I') {
|
|
channelInvites.push(target);
|
|
} else if (flags[i] === '-I') {
|
|
channelInvites = channelInvites.filter(invite => invite !== target);
|
|
}
|
|
this.channelinvites.set(targetUniqueId, channelInvites);
|
|
} else if (flags[i] === '+l' || flags[i] === '-l') {
|
|
// Check if 'l' mode is already present, if not, add it with the limit
|
|
let chan_modes = this.channelmodes.get(targetUniqueId) || [];
|
|
if (chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
// Check if 'l' mode is already present
|
|
if (flags[i] === '+l') {
|
|
if (!chan_modes.includes('l')) {
|
|
chan_modes.push('l');
|
|
this.channelmodes.set(targetUniqueId, chan_modes);
|
|
this.channellimits.set(targetUniqueId, target);
|
|
}
|
|
} else {
|
|
chan_modes = chan_modes.filter(mode => mode !== 'l');
|
|
this.channellimits.delete(targetUniqueId);
|
|
}
|
|
} else if (flags[i] === '+k' || flags[i] === '-k') {
|
|
let chan_modes = this.channelmodes.get(targetUniqueId) || [];
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
if (flags[i] === '+k') {
|
|
if (!chan_modes.includes('k')) {
|
|
chan_modes.push('k');
|
|
this.channelkeys.set(targetUniqueId, target);
|
|
}
|
|
} else {
|
|
chan_modes = chan_modes.filter(mode => mode !== 'k');
|
|
this.channelkeys.delete(targetUniqueId);
|
|
}
|
|
this.channelmodes.set(targetUniqueId, chan_modes);
|
|
}
|
|
paramIndex++;
|
|
}
|
|
}
|
|
modeMsg += '\r\n';
|
|
this.broadcastChannel(targetUniqueId, modeMsg);
|
|
this.broadcastToAllServers(modeMsg, socket);
|
|
}
|
|
break;
|
|
}
|
|
var targetSocket = this.findSocketByUniqueId(targetUniqueId);
|
|
if (!targetSocket) {
|
|
console.warn(`No socket found for target unique ID ${targetUniqueId}`);
|
|
break;
|
|
}
|
|
targetSocket.write(`:${targetSocket.nickname} MODE ${targetSocket.nickname} ${parts.slice(2).join(' ')}\r\n`);
|
|
this.broadcastToAllServers(`:${sourceUniqueId} MODE ${targetUniqueId} ${parts.slice(3).join(' ')}\r\n`, socket);
|
|
break;
|
|
case 'PRIVMSG':
|
|
case 'NOTICE':
|
|
var targetUniqueId = parts[2];
|
|
var message = parts.slice(3).join(' ');
|
|
|
|
var sourceSocket = this.findSocketByUniqueId(sourceUniqueId);
|
|
if (!sourceSocket) {
|
|
console.warn(`No socket found for source unique ID ${sourceUniqueId}`);
|
|
break;
|
|
}
|
|
var sourceNickname = this.getUsernameFromUniqueId(sourceUniqueId);
|
|
var sourceUsername = this.usernames.get(sourceNickname) || sourceNickname;
|
|
if (this.channelprefixes.some(prefix => targetUniqueId.startsWith(prefix))) {
|
|
// It's a channel, broadcast to all users in the channel except the source
|
|
if (this.channels.has(targetUniqueId)) {
|
|
const users = this.channels.get(targetUniqueId);
|
|
for (const user of users) {
|
|
const userSocket = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s) === user);
|
|
if (userSocket && userSocket.uniqueId !== sourceUniqueId) {
|
|
await this.sendThrottled(userSocket, [`:${sourceNickname}!${sourceUsername}@${sourceSocket.host} ${srvCommand} ${targetUniqueId} :${message}`], 30);
|
|
this.broadcastToAllServers(`:${sourceUniqueId} ${srvCommand} ${targetUniqueId} :${message}\r\n`, socket);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
var targetSocket = this.findSocketByUniqueId(targetUniqueId);
|
|
if (!targetSocket) {
|
|
console.warn(`No socket found for target unique ID ${targetUniqueId}`);
|
|
break;
|
|
}
|
|
var targetNickname = this.getUsernameFromUniqueId(targetUniqueId);
|
|
if (message.startsWith(':')) {
|
|
message = message.slice(1); // Remove leading ':'
|
|
}
|
|
await this.sendThrottled(targetSocket, [`:${sourceNickname}!${sourceUsername}@${sourceSocket.host} ${srvCommand} ${targetNickname} :${message}`], 30);
|
|
this.broadcastToAllServers(`:${sourceUniqueId} ${srvCommand} ${targetUniqueId} :${message}\r\n`, socket);
|
|
break;
|
|
case "SVSJOIN":
|
|
if (parts.length < 3) {
|
|
console.warn('Invalid SVSJOIN command from server');
|
|
break;
|
|
}
|
|
var targetUniqueId = parts[2];
|
|
var channelName = parts[3];
|
|
var nickname = this.findUserByUniqueId(targetUniqueId);
|
|
var username = this.usernames.get(nickname) || nickname;
|
|
var hostname = this.hostnames.get(nickname) || '';
|
|
var targetSocket = this.findSocketByUniqueId(targetUniqueId);
|
|
if (!this.channels.has(channelName)) {
|
|
this.createChannel(channelName);
|
|
}
|
|
this.channels.get(channelName).add(nickname);
|
|
targetSocket.write(`:${nickname}!${username}@${hostname} JOIN ${channelName}\r\n`);
|
|
this.broadcastChannel(channelName, `:${nickname}!${username}@${hostname} JOIN ${channelName}\r\n`, targetSocket);
|
|
this.broadcastToAllServers(`:${sourceUniqueId} SVSJOIN ${channelName} ${targetUniqueId}\r\n`, socket);
|
|
break;
|
|
case "SVSMODE":
|
|
if (parts.length < 4) {
|
|
console.warn('Invalid SVSMODE command from server');
|
|
break;
|
|
}
|
|
var targetUniqueId = parts[2];
|
|
var targetSocket = this.findSocketByUniqueId(targetUniqueId);
|
|
var targetNickname = targetSocket.nickname;
|
|
var modes = parts[4].split('');
|
|
let adding = true;
|
|
for (const char of modes.join('')) {
|
|
if (char === '+') {
|
|
adding = true;
|
|
} else if (char === '-') {
|
|
adding = false;
|
|
} else {
|
|
let usermodes = this.usermodes.get(targetNickname) || [];
|
|
if (usermodes === true) usermodes = [];
|
|
if (adding) {
|
|
if (!usermodes.includes(char)) {
|
|
usermodes.push(char);
|
|
}
|
|
} else {
|
|
usermodes = usermodes.filter(m => m !== char);
|
|
}
|
|
this.usermodes.set(targetNickname, usermodes);
|
|
}
|
|
}
|
|
targetSocket.write(`:${socket.servername} MODE ${targetSocket.nickname} ${modes.join('')}\r\n`);
|
|
this.broadcastToAllServers(`:${sourceUniqueId} SVSMODE ${targetUniqueId} ${modes.join('')}\r\n`, socket);
|
|
break;
|
|
default:
|
|
if (this.debug) {
|
|
console.log(`Unhandled server command from ${sourceUniqueId} to ${targetUniqueId}: ${srvCommand} ${message}`);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
async processSocketData(socket, data) {
|
|
// Ensure data is a string
|
|
if (typeof data !== 'string') {
|
|
if (Buffer.isBuffer(data)) {
|
|
data = data.toString('utf8');
|
|
} else if (data && typeof data.toString === 'function') {
|
|
data = data.toString();
|
|
} else {
|
|
return; // Invalid data, ignore
|
|
}
|
|
}
|
|
const lines = data.split(/\r\n|\n/).filter(Boolean);
|
|
for (let line of lines) {
|
|
if (this.debug) {
|
|
console.log(`> ${line}`);
|
|
}
|
|
if (socket.isserver) {
|
|
await this.processServerData(socket, line);
|
|
continue;
|
|
}
|
|
// Check for server prefix (e.g., :00B) and extract command
|
|
let prefix = null;
|
|
if (line.startsWith(':')) {
|
|
const spaceIdx = line.indexOf(' ');
|
|
|
|
if (spaceIdx > 0) {
|
|
prefix = line.slice(1, spaceIdx);
|
|
if (!socket.uniqueId) {
|
|
socket.uniqueId = prefix;
|
|
} else if (socket.uniqueId !== prefix) {
|
|
if (!socket.isserver) {
|
|
socket.uniqueId = prefix;
|
|
} else {
|
|
console.warn(`Socket uniqueId mismatch: ${socket.uniqueId} !== ${prefix}`);
|
|
console.log(line);
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
this.processServerData(socket, line);
|
|
continue;
|
|
}
|
|
|
|
// initial commands before we assign socket.isserver = true
|
|
const serverCommands = ['PASS', 'CAPAB', 'SERVER', 'SVINFO'];
|
|
const firstWord = line.trim().split(' ')[0].toUpperCase();
|
|
if (!prefix && serverCommands.includes(firstWord)) {
|
|
this.processServerData(socket, line);
|
|
continue;
|
|
}
|
|
|
|
|
|
const [command, ...params] = line.trim().split(' ');
|
|
switch (command.toUpperCase()) {
|
|
case 'OPER':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
if (!this.oper_enabled) {
|
|
socket.write(`:${this.servername} 491 ${socket.nickname} :This server does not support IRC operators\r\n`);
|
|
break;
|
|
}
|
|
if (params.length < 2) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} OPER :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
const [operName, operPassword] = params;
|
|
if (operName !== this.oper_username) {
|
|
socket.write(`:${this.servername} 491 ${socket.nickname} :No permission\r\n`);
|
|
break;
|
|
}
|
|
if (operPassword !== this.oper_password) {
|
|
socket.write(`:${this.servername} 464 ${socket.nickname} :Password incorrect\r\n`);
|
|
break;
|
|
}
|
|
var usermodes = this.usermodes.get(socket.nickname) || [];
|
|
if (usermodes === true) {
|
|
usermodes = [];
|
|
}
|
|
this.usermodes.set(socket.nickname, [...usermodes, 'o']);
|
|
socket.write(`:${this.servername} 381 ${socket.nickname} :You are now an IRC operator\r\n`);
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} +o\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} +o\r\n`);
|
|
break;
|
|
case 'UPTIME':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
const uptime = Math.floor((Date.now() - this.server_start_time) / 1000);
|
|
const days = Math.floor(uptime / 86400);
|
|
const hours = Math.floor((uptime % 86400) / 3600);
|
|
const minutes = Math.floor((uptime % 3600) / 60);
|
|
const seconds = uptime % 60;
|
|
socket.write(`:${this.servername} 242 ${socket.nickname} :Server uptime is ${days} days, ${hours} hours, ${minutes} minutes, ${seconds} seconds\r\n`);
|
|
break;
|
|
case 'KICK':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
var channel = params[0];
|
|
var targetNick = params[1];
|
|
// Check if the user is a channel operator
|
|
if (this.channelops.has(channel) && this.channelops.get(channel) instanceof Set && this.channelops.get(channel).has(socket.nickname)) {
|
|
// Allow kick
|
|
} else if (this.channelhalfops.has(channel) && this.channelhalfops.get(channel) instanceof Set && this.channelhalfops.get(channel).has(socket.nickname)) {
|
|
// Only allow kick if the target is NOT a channel operator
|
|
if (this.channelops.has(channel) && this.channelops.get(channel) instanceof Set && this.channelops.get(channel).has(targetNick)) {
|
|
socket.write(`:${this.servername} 482 ${socket.nickname} ${channel} :You cannot kick a channel operator\r\n`);
|
|
break;
|
|
}
|
|
// Allow kick
|
|
} else {
|
|
socket.write(`:${this.servername} 482 ${socket.nickname} ${channel} :You're not channel operator\r\n`);
|
|
break;
|
|
}
|
|
if (params.length < 2) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} KICK :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
this.usertimestamps.set(socket.nickname, Date.now());
|
|
|
|
|
|
if (!this.channels.has(channel)) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${channel} :No such channel\r\n`);
|
|
break;
|
|
}
|
|
if (!this.channels.get(channel).has(targetNick)) {
|
|
socket.write(`:${this.servername} 441 ${socket.nickname} ${targetNick} :They aren't on that channel\r\n`);
|
|
break;
|
|
}
|
|
// Check if channel mode +Q (no kicks) is set
|
|
var chan_modes = this.channelmodes.get(channel) || [];
|
|
if (chan_modes.includes('Q')) {
|
|
socket.write(`:${this.servername} 482 ${socket.nickname} ${channel} :Cannot kick users, channel is +Q (no kicks allowed)\r\n`);
|
|
break;
|
|
}
|
|
this.channels.get(channel).delete(targetNick);
|
|
var targetSocket = Array.from(this.clients).find(s => this.nicknames.get(s) === targetNick);
|
|
if (params.length > 2) {
|
|
let reason = params.slice(2).join(' ');
|
|
if (reason.startsWith(':')) {
|
|
reason = reason.slice(1);
|
|
}
|
|
targetSocket.write(`:${socket.nickname}!${socket.username}@${socket.host} KICK ${channel} ${targetNick} :${reason}\r\n`);
|
|
this.broadcastChannel(channel, `:${socket.nickname}!${socket.username}@${socket.host} KICK ${channel} ${targetNick} :${reason}\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} KICK ${channel} ${targetSocket.uniqueId} :${reason}\r\n`);
|
|
break;
|
|
} else {
|
|
targetSocket.write(`:${socket.nickname}!${socket.username}@${socket.host} KICK ${channel} ${targetNick}\r\n`);
|
|
this.broadcastChannel(channel, `:${socket.nickname}!${socket.username}@${socket.host} KICK ${channel} ${targetNick}\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} KICK ${channel} ${targetSocket.uniqueId}\r\n`);
|
|
}
|
|
break;
|
|
case 'TOPIC':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
if (params.length < 1) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} TOPIC :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
chan_modes = this.channelmodes.get(channel) || [];
|
|
if (chan_modes.includes('t')) {
|
|
// Only allow channel operators to change the topic if +t is set
|
|
if (!this.channelops.has(channel) || !this.channelops.get(channel).has(socket.nickname) || !this.channelhalfops.has(channel) || !this.channelhalfops.get(channel).has(socket.nickname)) {
|
|
socket.write(`:${this.servername} 482 ${socket.nickname} ${channel} :You're not channel operator\r\n`);
|
|
break;
|
|
}
|
|
}
|
|
this.usertimestamps.set(socket.nickname, Date.now());
|
|
var channel = params[0];
|
|
if (!this.channels.has(channel)) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${channel} :No such channel\r\n`);
|
|
break;
|
|
}
|
|
if (params.length > 1) {
|
|
var topic = params.slice(1).join(' ');
|
|
if (topic.startsWith(':')) {
|
|
topic = topic.slice(1);
|
|
}
|
|
this.channeltopics.set(channel, topic);
|
|
socket.write(`:${this.servername} 332 ${socket.nickname} ${channel} :${topic}\r\n`);
|
|
this.broadcastChannel(channel, `:${socket.nickname}!${socket.username}@${socket.host} TOPIC ${channel} :${topic}\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} TOPIC ${channel} :${topic}\r\n`);
|
|
} else {
|
|
const topic = this.channeltopics.get(channel) || 'No topic set';
|
|
socket.write(`:${this.servername} 331 ${socket.nickname} ${channel} :${topic}\r\n`);
|
|
}
|
|
break;
|
|
case "AWAY":
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
this.usertimestamps.set(socket.nickname, Date.now());
|
|
if (params.length > 0) {
|
|
socket.write(`:${this.servername} 306 ${socket.nickname} :You are now marked as away\r\n`);
|
|
let awayMsg = params.join(' ');
|
|
if (awayMsg.startsWith(':')) {
|
|
awayMsg = awayMsg.slice(1);
|
|
}
|
|
this.awaymsgs.set(socket.nickname, awayMsg);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} AWAY :${awayMsg}\r\n`);
|
|
} else {
|
|
socket.write(`:${this.servername} 305 ${socket.nickname} :You are no longer marked as away\r\n`);
|
|
this.awaymsgs.delete(socket.nickname);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} AWAY\r\n`);
|
|
}
|
|
break;
|
|
case 'CAP':
|
|
// Minimal CAP support: just acknowledge LS
|
|
if (params[0] && params[0].toUpperCase() === 'LS') {
|
|
socket.write('CAP * LS :\r\n');
|
|
}
|
|
break;
|
|
case 'MODE':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
if (params.length < 1) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} MODE :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
channel = params[0];
|
|
var isChannel = true;
|
|
if (!this.channels.has(channel)) {
|
|
isChannel = false;
|
|
}
|
|
// Check if 'channel' is actually a user (nickname) instead of a channel name
|
|
let isUser = false;
|
|
for (const prefix of this.channelprefixes) {
|
|
if (channel.startsWith(prefix)) {
|
|
isUser = false;
|
|
break;
|
|
} else {
|
|
isUser = true;
|
|
}
|
|
}
|
|
if (!isChannel && !isUser) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${channel} :No such channel or user\r\n`);
|
|
break;
|
|
}
|
|
const mode = params[1];
|
|
if (isUser) {
|
|
if (!this.isIRCOp(socket.nickname) && channel !== socket.nickname) {
|
|
socket.write(`:${this.servername} 501 ${socket.nickname} :Cannot set modes on other users\r\n`);
|
|
} else {
|
|
|
|
var usermodes = this.usermodes.get(socket.nickname) || [];
|
|
if (usermodes === true) {
|
|
usermodes = [];
|
|
}
|
|
if (!mode) {
|
|
// List user modes
|
|
if (usermodes.length === 0) {
|
|
socket.write(`:${this.servername} 324 ${socket.nickname} ${channel} :No modes set\r\n`);
|
|
} else {
|
|
const modes = usermodes.map(m => (m.startsWith('+') ? m : '+' + m)).join(' ');
|
|
socket.write(`:${this.servername} 324 ${socket.nickname} ${channel} :${modes}\r\n`);
|
|
}
|
|
} else if (mode.startsWith('+x')) {
|
|
this.usermodes.set(socket.nickname, [...usermodes, 'x']);
|
|
socket.host = this.filterHostname(socket, socket.realhost);
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} +x\r\n`);
|
|
socket.write(`:${this.servername} 396 ${socket.nickname} ${socket.host} :is now your displayed host\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} +x\r\n`);
|
|
} else if (mode.startsWith('-x')) {
|
|
this.usermodes.set(socket.nickname, (usermodes).filter(m => m !== 'x'));
|
|
socket.host = socket.realhost
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} -x\r\n`);
|
|
socket.write(`:${this.servername} 396 ${socket.nickname} ${socket.host} :is now your displayed host\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} -x\r\n`);
|
|
} else if (mode.startsWith('+w')) {
|
|
this.usermodes.set(socket.nickname, [...usermodes, 'w']);
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} +w\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} +w\r\n`);
|
|
} else if (mode.startsWith('-w')) {
|
|
this.usermodes.set(socket.nickname, (usermodes).filter(m => m !== 'w'));
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} -w\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} -w\r\n`);
|
|
} else if (mode.startsWith('+i')) {
|
|
this.usermodes.set(socket.nickname, [...usermodes, 'i']);
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} +i\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} +i\r\n`);
|
|
} else if (mode.startsWith('-i')) {
|
|
this.usermodes.set(socket.nickname, (usermodes).filter(m => m !== 'i'));
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} -i\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} -i\r\n`);
|
|
} else if (mode.startsWith('+s')) {
|
|
this.usermodes.set(socket.nickname, [...usermodes, 's']);
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} +s\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} +s\r\n`);
|
|
} else if (mode.startsWith('-s')) {
|
|
this.usermodes.set(socket.nickname, (usermodes).filter(m => m !== 's'));
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} -s\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} -s\r\n`);
|
|
} else if (mode.startsWith('+z') || mode.startsWith('-z')) {
|
|
socket.write(`:${this.servername} 472 ${socket.nickname} ${mode.slice(1)} :is set by the server and cannot be changed\r\n`);
|
|
} else if (mode.startsWith('+r') || mode.startsWith('-r')) {
|
|
socket.write(`:${this.servername} 472 ${socket.nickname} ${mode.slice(1)} :is set by the server and cannot be changed\r\n`);
|
|
} else if (mode.startsWith('+Z')) {
|
|
if (!socket.secure) {
|
|
socket.write(`:${this.servername} 472 ${socket.nickname} ${mode.slice(1)} :You must be secure to set this mode\r\n`);
|
|
break;
|
|
}
|
|
this.usermodes.set(socket.nickname, [...usermodes, 'Z']);
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} +Z\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} +Z\r\n`);
|
|
} else if (mode.startsWith('-Z')) {
|
|
if (!socket.secure) {
|
|
socket.write(`:${this.servername} 472 ${socket.nickname} ${mode.slice(1)} :You must be secure to set this mode\r\n`);
|
|
break;
|
|
}
|
|
this.usermodes.set(socket.nickname, (usermodes).filter(m => m !== 'Z'));
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} MODE ${socket.nickname} -Z\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${socket.uniqueId} -Z\r\n`);
|
|
} else {
|
|
socket.write(`:${this.servername} 472 ${socket.nickname} ${mode.slice(1)} :is unknown mode char to me\r\n`);
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
if (!mode) {
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
let validPrefix = this.channelprefixes.some(prefix => channel.startsWith(prefix));
|
|
if (!validPrefix) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${channel} :No such channel\r\n`);
|
|
break;
|
|
}
|
|
if (!this.channels.has(channel)) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${channel} :No such channel\r\n`);
|
|
break;
|
|
}
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
|
|
chan_modes = chan_modes.map(mode => {
|
|
if (typeof mode === 'string' && !mode.startsWith('+')) {
|
|
return '+' + mode;
|
|
}
|
|
return mode;
|
|
});
|
|
if (chan_modes.length > 0) {
|
|
var params2 = [];
|
|
// Batch all modes into a single 324 reply
|
|
var modeString = chan_modes
|
|
.map(m => {
|
|
// For modes with parameters (like k <key> or l<limit>)
|
|
if (typeof m === 'string' && (m === '+k' || m === '+l')) {
|
|
if (m === '+l') {
|
|
params2.push(this.channellimits.get(channel));
|
|
} else if (m === '+k') {
|
|
params2.push(this.channelkeys.get(channel));
|
|
}
|
|
return m.replace(/^\+/, '');
|
|
}
|
|
return m.replace(/^\+/, ''); // Remove leading '+' for other modes
|
|
})
|
|
.join('');
|
|
params2.forEach(param => {
|
|
if (param) {
|
|
modeString += ` ${param}`;
|
|
}
|
|
});
|
|
socket.write(`:${this.servername} 324 ${socket.nickname} ${channel} +${modeString}\r\n`);
|
|
} else {
|
|
socket.write(`:${this.servername} 324 ${socket.nickname} ${channel}\r\n`);
|
|
}
|
|
socket.write(`:${this.servername} 329 ${socket.nickname} ${channel} ${this.channeltimestamps.get(channel) || Date.now()}\r\n`);
|
|
break;
|
|
} else {
|
|
this.processChannelModeBatch(socket.nickname, channel, mode, params.slice(2));
|
|
break;
|
|
}
|
|
case 'NICK':
|
|
var new_nickname = params[0];
|
|
if (new_nickname.startsWith(':')) {
|
|
new_nickname = new_nickname.slice(1);
|
|
}
|
|
if (!new_nickname || new_nickname.length < 1) {
|
|
socket.write(`:${this.servername} 431 * :No nickname\r\n`);
|
|
break;
|
|
}
|
|
if (new_nickname.length > this.nicklen) {
|
|
socket.write(`:${this.servername} 432 * ${new_nickname} :Erroneus nickname\r\n`);
|
|
break;
|
|
}
|
|
if (this.nicknames.size > 0) {
|
|
var result = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s).toLowerCase() === new_nickname.toLowerCase());
|
|
if (result) {
|
|
socket.write(`:${this.servername} 433 * ${new_nickname} :Nickname is already in use\r\n`);
|
|
break;
|
|
}
|
|
}
|
|
for (const prefix of this.channelprefixes) {
|
|
if (new_nickname.startsWith(prefix)) {
|
|
socket.write(`:${this.servername} 432 * ${new_nickname} :Erroneus nickname\r\n`);
|
|
return;
|
|
}
|
|
}
|
|
for (let i = 0; i < new_nickname.length; i++) {
|
|
if (!this.allowed_characters.includes(new_nickname[i])) {
|
|
socket.write(`:${this.servername} 432 * ${new_nickname} :Erroneus nickname\r\n`);
|
|
return;
|
|
}
|
|
}
|
|
if (this.reservednicks && Array.isArray(this.reservednicks)) {
|
|
if (this.reservednicks.includes(new_nickname)) {
|
|
socket.write(`:${this.servername} 432 * ${new_nickname} :This nickname is reserved\r\n`);
|
|
break;
|
|
}
|
|
}
|
|
// Prevent nick change if user is in any channel with +N mode
|
|
let inNoNickChangeChannel = false;
|
|
for (const [ch, users] of this.channels.entries()) {
|
|
if (users.has(socket.nickname)) {
|
|
const chanModes = this.channelmodes.get(ch) || [];
|
|
if (chanModes.includes('N')) {
|
|
inNoNickChangeChannel = true;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (inNoNickChangeChannel) {
|
|
socket.write(`:${this.servername} 447 * :You cannot change your nickname while in a +N (no nick change) channel\r\n`);
|
|
break;
|
|
}
|
|
|
|
if (!socket.nickname) {
|
|
// If no nickname is set, set it now
|
|
socket.nickname = new_nickname;
|
|
}
|
|
this.nicknames.set(socket, socket.nickname);
|
|
if (socket.nickname && socket.nickname !== new_nickname) {
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} NICK :${new_nickname}\r\n`);
|
|
if (this.usernames.has(socket.nickname)) {
|
|
this.usernames.delete(socket.nickname);
|
|
}
|
|
if (this.uniqueids.has(socket.nickname)) {
|
|
this.deleteUserUniqueId(socket.nickname);
|
|
}
|
|
this.broadcastUser(socket.nickname, `:${socket.nickname}!${socket.username}@${socket.host} NICK :${new_nickname}\r\n`, socket);
|
|
this.processNickChange(socket, new_nickname);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} NICK ${new_nickname} :${Math.floor(Date.now() / 1000)}\r\n`);
|
|
}
|
|
if (!socket.registered && socket.nickname && socket.username) {
|
|
socket.registered = true;
|
|
this.usertimestamps.set(socket.nickname, Date.now());
|
|
this.usersignontimestamps.set(new_nickname, socket.timestamp);
|
|
this.doLogin(socket.nickname, socket);
|
|
}
|
|
break;
|
|
case 'USER':
|
|
socket.username = params[0];
|
|
if (params.length < 4) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} USER :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
socket.userinfo = params.slice(3).join(' ');
|
|
if (socket.userinfo && socket.userinfo.startsWith(':')) {
|
|
socket.userinfo = socket.userinfo.slice(1);
|
|
}
|
|
if (!socket.registered && socket.nickname && socket.username) {
|
|
socket.registered = true;
|
|
this.usernames.set(socket.nickname, socket.username);
|
|
this.usertimestamps.set(socket.nickname, Date.now());
|
|
this.usersignontimestamps.set(socket.nickname, socket.timestamp);
|
|
this.doLogin(socket.nickname, socket);
|
|
}
|
|
break;
|
|
case 'JOIN':
|
|
var key = null;
|
|
if (!socket.registered) {
|
|
socket.write(`:irc.local 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
channel = params[0];
|
|
if (params.length == 2) {
|
|
key = params[1];
|
|
}
|
|
if (channel.includes(',')) {
|
|
var channels = channel.split(',');
|
|
} else {
|
|
var channels = [channel];
|
|
}
|
|
for (var ch of channels) {
|
|
// Simulate a JOIN command for each channel
|
|
for (let i = 0; i < ch.length; i++) {
|
|
if (i == 0 && !this.channelprefixes.includes(ch[i])) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${ch} :No such channel\r\n`);
|
|
return;
|
|
}
|
|
if (i == 0) {
|
|
continue;
|
|
}
|
|
if (!this.allowed_characters.includes(ch[i])) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${ch} :No such channel\r\n`);
|
|
return;
|
|
}
|
|
}
|
|
if (this.getChannelCount(socket.nickname) >= this.channellimit) {
|
|
socket.write(`:${this.servername} 405 ${socket.nickname} ${ch} :Too many channels\r\n`);
|
|
continue; // Skip joining this channel
|
|
}
|
|
var validChannel = false;
|
|
this.channelprefixes.forEach(prefix => {
|
|
if (ch.startsWith(prefix)) {
|
|
validChannel = true;
|
|
}
|
|
});
|
|
if (!validChannel) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${ch} :No such channel\r\n`);
|
|
continue; // Skip this channel
|
|
}
|
|
if (ch.length < 2 || ch.length > this.channellen) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${ch} :No such channel\r\n`);
|
|
continue; // Skip this channel
|
|
}
|
|
let foundChannel = null;
|
|
for (const existingChannel of this.channels.keys()) {
|
|
if (existingChannel.toLowerCase() === ch.toLowerCase()) {
|
|
foundChannel = existingChannel;
|
|
break;
|
|
}
|
|
}
|
|
if (foundChannel) {
|
|
ch = foundChannel;
|
|
} else {
|
|
this.createChannel(ch, socket.nickname);
|
|
}
|
|
|
|
var joinLine = '';
|
|
if (key) {
|
|
joinLine = `JOIN ${ch} ${key}`;
|
|
} else {
|
|
joinLine = `JOIN ${ch}`;
|
|
}
|
|
const [command, ...params] = joinLine.trim().split(' ');
|
|
|
|
|
|
if (this.channelbans.has(ch)) {
|
|
if (this.isBanned(ch, socket)) {
|
|
socket.write(`:${this.servername} 474 ${socket.nickname} ${ch} :Cannot join channel (+b)\r\n`);
|
|
continue; // Skip joining this channel
|
|
}
|
|
}
|
|
if (this.channelmodes.has(ch)) {
|
|
const modes = this.channelmodes.get(ch);
|
|
if (!modes || modes === true) {
|
|
continue; // Skip if no modes are set
|
|
}
|
|
// Check if the user is in too many channels
|
|
if (this.channelmodes.has(ch) && this.channelmodes.get(ch).includes('k')) {
|
|
const channelKey = this.channelkeys.get(ch);
|
|
// The key must be provided as the second parameter in the JOIN command
|
|
// params[1] is the key for the first channel, params[2] for the second, etc.
|
|
// For simplicity, assume only one channel per JOIN or the key is always params[1]
|
|
const providedKey = params[1];
|
|
if (!providedKey || providedKey !== channelKey) {
|
|
socket.write(`:${this.servername} 475 ${socket.nickname} ${ch} :Cannot join channel (+k)\r\n`);
|
|
continue; // Skip joining this channel
|
|
}
|
|
}
|
|
if (this.channelmodes.has(ch) && this.channelmodes.get(ch).includes('l')) {
|
|
// Channel has a user limit (+l)
|
|
const limit = this.channellimits.get(ch) || null;
|
|
if (limit !== null && this.channels.get(ch).size >= limit) {
|
|
socket.write(`:${this.servername} 471 ${socket.nickname} ${ch} :Cannot join channel (+l)\r\n`);
|
|
continue; // Skip joining this channel
|
|
}
|
|
}
|
|
if (this.channelmodes.has(ch) && this.channelmodes.get(ch).includes('i')) {
|
|
// Channel is invite-only (+i)
|
|
// For simplicity, let's assume you have an invited list per channel (not implemented yet)
|
|
// We'll use a Map: this.channelinvites = new Map(); // channel -> Set of invited nicks
|
|
if (!this.channelinvites) this.channelinvites = new Map();
|
|
const invited = this.channelinvites.get(ch) || new Set();
|
|
let isInvited = false;
|
|
for (const inviteMask of invited) {
|
|
isInvited = checkMask(inviteMask, socket);
|
|
if (isInvited) {
|
|
break; // Stop checking if we found a match
|
|
}
|
|
}
|
|
if (!invited.has(socket.nickname) && !isInvited) {
|
|
socket.write(`:${this.servername} 473 ${socket.nickname} ${ch} :Cannot join channel (+i)\r\n`);
|
|
continue; // Skip joining this channel
|
|
}
|
|
if (!isInvited) {
|
|
invited.delete(socket.nickname);
|
|
}
|
|
this.channelinvites.set(ch, invited);
|
|
}
|
|
if (this.channelmodes.has(ch) && this.channelmodes.get(ch).includes('O')) {
|
|
if (!this.isIRCOp(socket.nickname)) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${ch} :Cannot join channel (+O)\r\n`);
|
|
continue; // Skip joining this channel
|
|
}
|
|
}
|
|
if (this.channelmodes.has(ch) && this.channelmodes.get(ch).includes('Z')) {
|
|
// Channel is restricted to users with a secure connection (+Z)
|
|
if (!socket.secure) {
|
|
socket.write(`:${this.servername} 474 ${socket.nickname} ${ch} :Cannot join channel (+Z)\r\n`);
|
|
continue; // Skip joining this channel
|
|
}
|
|
}
|
|
}
|
|
|
|
// If we reach here, the user can join the channel
|
|
// Reuse the JOIN logic for each channel
|
|
// Only run the code after $PLACEHOLDER$ for each channel
|
|
// (excluding the code before $PLACEHOLDER$ to avoid duplicate checks)
|
|
// You can refactor this logic into a helper if needed
|
|
this.usertimestamps.set(socket.nickname, Date.now());
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} JOIN ${ch}\r\n`);
|
|
if (!this.channels.has(ch)) {
|
|
this.channels.set(ch, new Set());
|
|
}
|
|
this.channels.get(ch).add(socket.nickname);
|
|
if (!this.channelops.has(ch) || this.channelops.get(ch) === true) {
|
|
this.channelops.set(ch, new Set());
|
|
this.channelops.get(ch).add(socket.nickname);
|
|
}
|
|
this.broadcastUser(socket.nickname, `:${socket.nickname}!${socket.username}@${socket.host} JOIN ${ch}\r\n`, socket);
|
|
let modes = this.channelmodes.get(ch) || [];
|
|
let prefix = '';
|
|
if ((this.channelops.get(ch) || new Set()).has(socket.nickname)) {
|
|
prefix = '@';
|
|
} else if ((this.channelhalfops.get(ch) || new Set()).has(socket.nickname)) {
|
|
prefix = '%';
|
|
} else if ((this.channelvoices.get(ch) || new Set()).has(socket.nickname)) {
|
|
prefix = '+';
|
|
}
|
|
this.broadcastToAllServers(`:${this.serverId} SJOIN ${Math.floor(Date.now() / 1000)} ${ch} +${modes.join('')} :${prefix}${socket.uniqueId}\r\n`);
|
|
if (this.channeltopics.has(ch)) {
|
|
const topic = this.channeltopics.get(ch);
|
|
socket.write(`:${this.servername} 332 ${socket.nickname} ${ch} :${topic}\r\n`);
|
|
} else {
|
|
socket.write(`:${this.servername} 331 ${socket.nickname} ${ch} :No topic is set\r\n`);
|
|
}
|
|
var users = this.getUsersInChannel(ch);
|
|
if (users.length > 0) {
|
|
socket.write(`:${this.servername} 353 ${socket.nickname} = ${ch} :${users.join(' ')}\r\n`);
|
|
}
|
|
socket.write(`:${this.servername} 366 ${socket.nickname} ${ch} :End of /NAMES list\r\n`);
|
|
const ops = this.channelops.get(ch) || new Set();
|
|
const halfops = this.channelhalfops.get(ch) || new Set();
|
|
if (this.isReservedChannel(ch)) {
|
|
if (this.checkIfReservedChannelOp(socket, ch)) {
|
|
if (!this.channelops.has(ch) || this.channelops.get(ch) === true) {
|
|
this.channelops.set(ch, new Set());
|
|
}
|
|
this.channelops.get(ch).add(socket.nickname);
|
|
this.broadcastChannel(ch, `:${socket.nickname}!${socket.username}@${socket.host} MODE ${ch} +o ${socket.nickname}\r\n`);
|
|
}
|
|
}
|
|
|
|
}
|
|
break;
|
|
case 'NAMES':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
if (params.length < 1) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} NAMES :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
channel = params[0];
|
|
if (!this.channels.has(channel)) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${channel} :No such channel\r\n`);
|
|
break;
|
|
}
|
|
var users = this.getUsersInChannel(channel);
|
|
if (users.length > 0) {
|
|
socket.write(`:${this.servername} 353 ${socket.nickname} = ${channel} :${users.join(' ')}\r\n`);
|
|
}
|
|
socket.write(`:${this.servername} 366 ${socket.nickname} ${channel} :End of /NAMES list\r\n`);
|
|
break;
|
|
case 'PART':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
channel = params[0];
|
|
if (!this.channels.has(channel) || !this.channels.get(channel).has(socket.nickname)) {
|
|
socket.write(`:${this.servername} 442 ${socket.nickname} ${channel} :You're not on that channel\r\n`);
|
|
break;
|
|
}
|
|
this.usertimestamps.set(socket.nickname, Date.now());
|
|
if (params.length == 2) {
|
|
let reason = params.join(' ');
|
|
if (reason.startsWith(':')) {
|
|
reason = reason.slice(1);
|
|
}
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} PART ${channel} :${reason}\r\n`);
|
|
this.broadcastChannel(channel, `:${socket.nickname}!${socket.username}@${socket.host} PART ${channel} :${reason}\r\n`, socket);
|
|
} else {
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} PART ${channel}\r\n`);
|
|
this.broadcastChannel(channel, `:${socket.nickname}!${socket.username}@${socket.host} PART ${channel}\r\n`, socket);
|
|
}
|
|
if (this.channels.has(channel)) {
|
|
this.channels.get(channel).delete(socket.nickname);
|
|
if (this.channels.get(channel).size === 0) {
|
|
this.deleteChannel(channel);
|
|
}
|
|
}
|
|
this.broadcastToAllServers(`:${socket.uniqueId} PART ${channel}\r\n`);
|
|
break;
|
|
case 'INVITE':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
if (params.length < 2) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} INVITE :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
const invitee = params[0];
|
|
channel = params[1];
|
|
if (!this.channels.has(channel)) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${channel} :No such channel\r\n`);
|
|
break;
|
|
}
|
|
if (!this.channelops.has(channel) || this.channelops.get(channel) === true) {
|
|
socket.write(`:${this.servername} 482 ${socket.socket.nickname} ${channel} :You're not channel operator\r\n`);
|
|
break;
|
|
} else {
|
|
if (!this.channelops.get(channel).has(socket.nickname)) {
|
|
socket.write(`:${this.servername} 482 ${socket.nickname} ${channel} :You're not channel operator\r\n`);
|
|
break;
|
|
}
|
|
}
|
|
if (!this.nicknames.has(socket)) {
|
|
socket.write(`:${this.servername} 401 ${socket.nickname} ${invitee} :No such nick/channel\r\n`);
|
|
break;
|
|
}
|
|
const inviteeSocket = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s) === invitee);
|
|
if (!inviteeSocket) {
|
|
socket.write(`:${this.servername} 401 ${socket.nickname} ${invitee} :No such nick/channel\r\n`);
|
|
break;
|
|
}
|
|
if (!this.channels.has(channel) || !this.channels.get(channel).has(invitee)) {
|
|
if (this.channelmodes.has(channel) && this.channelmodes.get(channel).includes('V')) {
|
|
socket.write(`:${this.servername} 482 ${socket.nickname} ${channel} :Cannot invite users, channel is +V (no invites allowed)\r\n`);
|
|
break;
|
|
}
|
|
if (!this.channelinvites) this.channelinvites = new Map();
|
|
const invited = this.channelinvites.get(channel) || new Set();
|
|
invited.add(invitee);
|
|
this.channelinvites.set(channel, invited);
|
|
socket.write(`:${this.servername} 341 ${socket.socket.nickname} ${invitee} ${channel} :Invited to channel\r\n`);
|
|
inviteeSocket.write(`:${this.servername} 341 ${nickname} ${invitee} ${channel} :You have been invited to join ${channel}\r\n`);
|
|
break;
|
|
} else {
|
|
socket.write(`:${this.servername} 443 ${socket.nickname} ${invitee} ${channel} :${invitee} is already on that channel\r\n`);
|
|
break;
|
|
}
|
|
case 'LIST':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
let channelsToList;
|
|
if (params.length > 0 && params[0]) {
|
|
channelsToList = params[0].split(',').filter(ch => ch.length > 0);
|
|
} else {
|
|
channelsToList = Array.from(this.channels.keys());
|
|
}
|
|
socket.write(`:${this.servername} 321 ${socket.nickname} :Channel :Users :Topic\r\n`);
|
|
for (const channel of channelsToList) {
|
|
if (!this.channelprefixes.some(prefix => channel.startsWith(prefix))) {
|
|
continue; // Skip invalid channel names
|
|
}
|
|
if (this.channelmodes.has(channel)) {
|
|
var modes = this.channelmodes.get(channel);
|
|
if (modes === true) {
|
|
modes = [];
|
|
}
|
|
if (modes.includes('p')) {
|
|
if (!this.channels.has(channel) || !this.channels.get(channel).has(socket.nickname)) {
|
|
continue; // Skip if user is not in the channel
|
|
}
|
|
}
|
|
if (modes.includes('s')) {
|
|
if (!this.channels.has(channel) || !this.channels.get(channel).has(socket.nickname)) {
|
|
continue; // Skip if user is not in the channel
|
|
}
|
|
}
|
|
}
|
|
const users = this.getUsersInChannel(channel);
|
|
const topic = this.channeltopics.get(channel) || 'No topic is set';
|
|
socket.write(`:${this.servername} 322 ${socket.nickname} ${channel} ${users.length} :${topic}\r\n`);
|
|
}
|
|
socket.write(`:${this.servername} 323 ${socket.nickname} :End of /LIST\r\n`);
|
|
break;
|
|
case 'WHO':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
if (!params[0]) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} WHO :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
const target = params[0];
|
|
if (target.startsWith('#')) {
|
|
// WHO for channel
|
|
if (this.channelmodes.has(target)) {
|
|
const modes = this.channelmodes.get(target);
|
|
if ((modes.includes('p') || modes.includes('s')) && (!this.channels.has(target) || !this.channels.get(target).has(socket.nickname))) {
|
|
socket.write(`:${this.servername} 315 ${socket.nickname} ${target} :End of /WHO list\r\n`);
|
|
break;
|
|
}
|
|
}
|
|
if (this.channels.has(target)) {
|
|
const users = this.getUsersInChannel(target);
|
|
for (const user of users) {
|
|
let cleanUser = user;
|
|
if (['@', '%', '+'].includes(cleanUser[0])) {
|
|
cleanUser = cleanUser.slice(1);
|
|
}
|
|
var hostname = this.hostnames.get(cleanUser);
|
|
let prefix = '';
|
|
var chanops = this.channelops.get(target) || new Set();
|
|
var chanhalfops = this.channelhalfops.get(target) || new Set();
|
|
var chanvoices = this.channelvoices.get(target) || new Set();
|
|
if (chanops.has(cleanUser)) {
|
|
prefix = '@';
|
|
} else if (chanhalfops.has(cleanUser)) {
|
|
prefix = '%';
|
|
} else if (chanvoices.has(cleanUser)) {
|
|
prefix = '+';
|
|
}
|
|
socket.write(`:${this.servername} 352 ${socket.nickname} * ${prefix}${cleanUser} ${hostname} ${this.servername} ${cleanUser} H :0 ${cleanUser}\r\n`);
|
|
}
|
|
}
|
|
socket.write(`:${this.servername} 315 ${socket.nickname} ${target} :End of /WHO list\r\n`);
|
|
} else {
|
|
// WHO for nickname
|
|
let found = false;
|
|
for (const [sock, nick] of this.nicknames.entries()) {
|
|
if (nick.toLowerCase() === target.toLowerCase()) {
|
|
found = true;
|
|
socket.write(`:${this.servername} 352 ${socket.nickname} * ${nick} ${sock.host} ${this.servername} ${nick} H :0 ${nick}\r\n`);
|
|
break;
|
|
}
|
|
}
|
|
if (!found) {
|
|
socket.write(`:${this.servername} 401 ${socket.nickname} ${target} :No such nick/channel\r\n`);
|
|
}
|
|
socket.write(`:${this.servername} 315 ${socket.nickname} ${target} :End of /WHO list\r\n`);
|
|
break;
|
|
}
|
|
break;
|
|
case 'PRIVMSG':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
this.usertimestamps.set(socket.nickname, Date.now());
|
|
if (params[0]) {
|
|
const target = params[0];
|
|
let targets = target.includes(',') ? target.split(',') : [target];
|
|
if (targets.length > this.maxtargets) {
|
|
socket.write(`:${this.servername} 407 ${socket.nickname} :Too many targets. Maximum allowed is ${this.maxtargets}\r\n`);
|
|
return;
|
|
}
|
|
for (const t of targets) {
|
|
let isChan = false;
|
|
for (const prefix of this.channelprefixes) {
|
|
if (t.startsWith(prefix)) {
|
|
isChan = true;
|
|
break;
|
|
}
|
|
}
|
|
var msg = line.slice(line.indexOf(':', 1) + 1);
|
|
if (isChan) {
|
|
// Channel message
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('m')) {
|
|
// Channel is moderated (+m)
|
|
var voices = this.channelvoices.get(t) || new Set();
|
|
var ops = this.channelops.get(t) || new Set();
|
|
if (voices === true) voices = new Set();
|
|
if (ops === true) ops = new Set();
|
|
if (!(voices.has(socket.nickname) || ops.has(socket.nickname))) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+m)\r\n`);
|
|
continue;
|
|
}
|
|
}
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('n')) {
|
|
// Channel is no-external-messages (+n)
|
|
if (!this.channels.has(t) || !this.channels.get(t).has(socket.nickname)) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+n)\r\n`);
|
|
continue;
|
|
}
|
|
}
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('c')) {
|
|
// channel blocks color, detect if the message contains color codes
|
|
if (msg.includes('\x03')) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+c)\r\n`);
|
|
continue;
|
|
}
|
|
}
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('C')) {
|
|
// channel blocks CTCP, detect if the message contains CTCPS
|
|
if (msg.includes('\x01')) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+C)\r\n`);
|
|
continue;
|
|
}
|
|
}
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('R')) {
|
|
const usermodes = this.usermodes.get(socket.nickname) || [];
|
|
if (!usermodes.includes('r')) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+R)\r\n`);
|
|
continue;
|
|
}
|
|
}
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('O')) {
|
|
if (!this.isIRCOp(socket.nickname)) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+O)\r\n`);
|
|
}
|
|
}
|
|
}
|
|
if (isChan) {
|
|
if (!this.channels.has(t)) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${t} :No such channel\r\n`);
|
|
continue;
|
|
}
|
|
this.broadcastChannel(t, `:${socket.nickname}!${socket.username}@${socket.host} PRIVMSG ${t} :${msg}\r\n`, socket);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} PRIVMSG ${t} :${msg}\r\n`);
|
|
} else {
|
|
if (this.awaymsgs.has(t)) {
|
|
socket.write(`:${this.servername} 301 ${socket.nickname} ${t} :${this.awaymsgs.get(t)}\r\n`);
|
|
}
|
|
var targetSock = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s).toLowerCase() === t.toLowerCase());
|
|
if (!targetSock) {
|
|
// check remote servers
|
|
targetSock = this.getRemoteServerUserSocket(t);
|
|
if (targetSock) {
|
|
const sender_id = this.getUniqueId(socket.nickname);
|
|
const unique_id = this.getUniqueIDForRemoteUser(t);
|
|
targetSock.write(`:${sender_id} PRIVMSG ${unique_id} :${msg}\r\n`);
|
|
break;
|
|
}
|
|
}
|
|
if (!targetSock) {
|
|
socket.write(`:${this.servername} 401 ${socket.nickname} ${t} :No such nick/channel\r\n`);
|
|
continue;
|
|
}
|
|
var targetUserModes = this.usermodes.get(t) || [];
|
|
if (this.usermodes.has(t) && this.usermodes.get(t).includes('r')) {
|
|
}
|
|
if (targetUserModes.includes('Z') && !socket.secure) {
|
|
socket.write(`:${this.servername} 484 ${socket.nickname} ${t} :Cannot send to user (+Z)\r\n`);
|
|
continue;
|
|
}
|
|
var usermodes = this.usermodes.get(socket.nickname);
|
|
if (!usermodes || usermodes === true) {
|
|
usermodes = [];
|
|
}
|
|
if (usermodes.includes('Z') && !targetUserModes.includes('Z')) {
|
|
socket.write(`:${this.servername} 484 ${socket.nickname} ${t} :Cannot send to non-+Z user while you are +Z\r\n`);
|
|
continue;
|
|
}
|
|
targetSock.write(`:${socket.nickname}!${socket.username}@${socket.host} PRIVMSG ${targetSock.nickname} :${msg}\r\n`);
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
break;
|
|
case 'NOTICE':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
this.usertimestamps.set(socket.nickname, Date.now());
|
|
if (params[0]) {
|
|
const target = params[0];
|
|
let targets = target.includes(',') ? target.split(',') : [target];
|
|
if (targets.length > this.maxtargets) {
|
|
socket.write(`:${this.servername} 407 ${socket.nickname} :Too many targets. Maximum allowed is ${this.maxtargets}\r\n`);
|
|
return;
|
|
}
|
|
for (const t of targets) {
|
|
let isChan = false;
|
|
for (const prefix of this.channelprefixes) {
|
|
if (t.startsWith(prefix)) {
|
|
isChan = true;
|
|
break;
|
|
}
|
|
}
|
|
var msg = line.slice(line.indexOf(':', 1) + 1);
|
|
if (isChan) {
|
|
// Channel notice
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('n')) {
|
|
// Channel is no-external-messages (+n)
|
|
if (!this.channels.has(t) || !this.channels.get(t).has(socket.nickname)) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+n)\r\n`);
|
|
continue;
|
|
}
|
|
}
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('c')) {
|
|
// channel blocks color, detect if the message contains color codes
|
|
if (msg.includes('\x03')) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+c)\r\n`);
|
|
continue;
|
|
}
|
|
}
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('C')) {
|
|
// channel blocks CTCP, detect if the message contains CTCPS
|
|
if (msg.includes('\x01')) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+C)\r\n`);
|
|
continue;
|
|
}
|
|
}
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('R')) {
|
|
const usermodes = this.usermodes.get(socket.nickname) || [];
|
|
if (!usermodes.includes('r')) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+R)\r\n`);
|
|
continue;
|
|
}
|
|
}
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('T')) {
|
|
socket.write(`:${this.servername} 482 ${socket.nickname} ${t} :Cannot send to channel (+T)\r\n`);
|
|
continue;
|
|
}
|
|
if (this.channelmodes.has(t) && this.channelmodes.get(t).includes('O')) {
|
|
if (!this.isIRCOp(socket.nickname)) {
|
|
socket.write(`:${this.servername} 404 ${socket.nickname} ${t} :Cannot send to channel (+O)\r\n`);
|
|
}
|
|
}
|
|
if (!this.channels.has(t)) {
|
|
socket.write(`:${this.servername} 403 ${socket.nickname} ${t} :No such channel\r\n`);
|
|
continue;
|
|
}
|
|
this.broadcastChannel(t, `:${socket.nickname}!${socket.username}@${socket.host} NOTICE ${t} :${msg}\r\n`, socket);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} NOTICE ${t} :${msg}\r\n`);
|
|
} else {
|
|
// Assume it's a nick, check if it exists
|
|
var targetSock = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s).toLowerCase() === t.toLowerCase());
|
|
if (!targetSock) {
|
|
// check remote servers
|
|
targetSock = this.getRemoteServerUserSocket(t);
|
|
if (targetSock) {
|
|
const sender_id = this.getUniqueId(socket.nickname);
|
|
const unique_id = this.getUniqueIDForRemoteUser(t);
|
|
targetSock.write(`:${sender_id} PRIVMSG ${unique_id} :${msg}\r\n`);
|
|
break;
|
|
}
|
|
}
|
|
if (!targetSock) {
|
|
socket.write(`:${this.servername} 401 ${socket.nickname} ${t} :No such nick/channel\r\n`);
|
|
continue;
|
|
}
|
|
var targetUserModes = this.usermodes.get(t) || [];
|
|
if (targetUserModes.includes('Z') && !socket.secure) {
|
|
socket.write(`:${this.servername} 484 ${socket.nickname} ${t} :Cannot send to user (+Z)\r\n`);
|
|
continue;
|
|
}
|
|
var usermodes = this.usermodes.get(socket.nickname);
|
|
if (!usermodes || usermodes === true) {
|
|
usermodes = [];
|
|
}
|
|
if (usermodes.includes('Z') && !targetUserModes.includes('Z')) {
|
|
socket.write(`:${this.servername} 484 ${socket.nickname} ${t} :Cannot send to non-+Z user while you are +Z\r\n`);
|
|
continue;
|
|
}
|
|
targetSock.write(`:${socket.nickname}!${socket.username}@${socket.host} NOTICE ${targetSock.nickname} :${msg}\r\n`);
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
break;
|
|
case 'PING':
|
|
socket.write(`PONG ${params.join(' ')}\r\n`);
|
|
break;
|
|
case 'WHOIS':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
if (params.length < 1) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} WHOIS :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
var whoisNick = params[0];
|
|
const whoisSocket = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s).toLowerCase() === whoisNick.toLowerCase());
|
|
if (whoisSocket) {
|
|
whoisNick = whoisSocket.nickname;
|
|
const whois_username = this.usernames.get(whoisNick);
|
|
socket.write(`:${this.servername} 311 ${socket.nickname} ${whoisNick} ${whois_username} ${whoisSocket.host} * :${whoisSocket.userinfo}\r\n`);
|
|
if (this.awaymsgs.has(whoisNick)) {
|
|
socket.write(`:${this.servername} 301 ${socket.nickname} ${whoisNick} :${this.awaymsgs.get(whoisNick)}\r\n`);
|
|
}
|
|
const userChannels = [];
|
|
for (const [ch, users] of this.channels.entries()) {
|
|
if (users.has(whoisNick)) {
|
|
let prefix = '';
|
|
var chanops = this.channelops.get(ch) || new Set();
|
|
var chanvoices = this.channelvoices.get(ch) || new Set();
|
|
const modes = this.channelmodes.get(ch) || [];
|
|
if ((modes.includes('p') || modes.includes('s')) && (!this.channels.has(ch) || !this.channels.get(ch).has(socket.nickname))) {
|
|
continue; // Skip listing this channel if it's private/secret and user is not in it
|
|
}
|
|
if (chanops.has(whoisNick)) {
|
|
prefix = '@';
|
|
} else if (chanvoices.has(whoisNick)) {
|
|
prefix = '+';
|
|
}
|
|
userChannels.push(prefix + ch);
|
|
}
|
|
}
|
|
socket.write(`:${this.servername} 312 ${socket.nickname} ${whoisNick} ${this.servername} :minisrv-${this.minisrv_config.version}\r\n`);
|
|
if (this.isIRCOp(whoisNick)) {
|
|
socket.write(`:${this.servername} 313 ${socket.nickname} ${whoisNick} :is an IRC operator\r\n`);
|
|
}
|
|
usermodes = this.usermodes.get(whoisNick) || [];
|
|
if (usermodes && usermodes.includes('s')) {
|
|
socket.write(`:${this.servername} 671 ${socket.nickname} ${whoisNick} :is using a secure connection\r\n`);
|
|
}
|
|
if (usermodes && usermodes.includes('r')) {
|
|
socket.write(`:${this.servername} 307 ${socket.nickname} ${whoisNick} :is a registered nick\r\n`);
|
|
}
|
|
var now = Date.now();
|
|
var userTimestamp = this.usertimestamps.get(whoisNick) || now;
|
|
var idleTime = Math.floor((now - userTimestamp) / 1000);
|
|
socket.write(`:${this.servername} 317 ${socket.nickname} ${whoisNick} ${idleTime} :seconds idle\r\n`);
|
|
if (userChannels.length > 0) {
|
|
socket.write(`:${this.servername} 319 ${socket.nickname} ${whoisNick} :${userChannels.join(' ')}\r\n`);
|
|
}
|
|
socket.write(`:${this.servername} 318 ${socket.nickname} ${whoisNick} :End of /WHOIS list\r\n`);
|
|
} else {
|
|
// Check if whoisNick is a remote server user
|
|
let foundRemote = false;
|
|
for (const [srvSocket, users] of this.serverusers.entries()) {
|
|
if (users && typeof users.has === 'function'
|
|
? Array.from(users).some(u => typeof u === 'string' && u.toLowerCase() === whoisNick.toLowerCase())
|
|
: Array.isArray(users) && users.some(u => typeof u === 'string' && u.toLowerCase() === whoisNick.toLowerCase())
|
|
) {
|
|
// Found remote user
|
|
const sender_id = this.getUniqueId(socket.nickname);
|
|
const unique_id = this.getUniqueIDForRemoteUser(whoisNick);
|
|
srvSocket.write(`:${sender_id} WHOIS :${unique_id}\r\n`);
|
|
foundRemote = true;
|
|
break;
|
|
}
|
|
}
|
|
if (!foundRemote) {
|
|
socket.write(`:${this.servername} 401 ${socket.nickname} ${whoisNick} :No such nick/channel\r\n`);
|
|
}
|
|
}
|
|
break;
|
|
case 'KILL':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
if (!this.isIRCOp(socket.nickname)) {
|
|
socket.write(`:${this.servername} 481 ${socket.nickname} :Permission denied - you are not an IRC operator\r\n`);
|
|
break;
|
|
}
|
|
if (params.length < 2) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} KILL :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
const target_nick = params[0];
|
|
const killReason = params.slice(1).join(' ');
|
|
let cleanKillReason = killReason;
|
|
if (cleanKillReason.startsWith(':')) {
|
|
cleanKillReason = cleanKillReason.slice(1);
|
|
}
|
|
var targetSocket = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s) === target_nick);
|
|
if (!targetSocket) {
|
|
socket.write(`:${this.servername} 401 ${socket.nickname} ${target_nick} :No such nick/channel\r\n`);
|
|
break;
|
|
}
|
|
|
|
// Broadcast the KILL message to all users
|
|
this.broadcastUser(target_nick, `:${socket.nickname}!${socket.username}@${socket.host} KILL ${target_nick} :${cleanKillReason}\r\n`);
|
|
this.terminateSession(targetSocket, true);
|
|
break;
|
|
case 'QUIT':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
} else {
|
|
if (params.length > 0) {
|
|
let reason = params.join(' ');
|
|
if (reason.startsWith(':')) {
|
|
reason = reason.slice(1);
|
|
}
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} QUIT :${reason}\r\n`);
|
|
this.broadcastUser(socket.nickname, `:${socket.nickname}!${socket.username}@${socket.host} QUIT :${reason}\r\n`, socket);
|
|
} else {
|
|
socket.write(`:${socket.nickname}!${socket.username}@${socket.host} QUIT\r\n`);
|
|
this.broadcastUser(socket.nickname, `:${socket.nickname}!${socket.username}@${socket.host} QUIT\r\n`, socket);
|
|
}
|
|
}
|
|
this.terminateSession(socket, true);
|
|
break;
|
|
case 'MOTD':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
this.doMOTD(socket.nickname, socket);
|
|
break;
|
|
case 'VERSION':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
socket.write(`:${this.servername} 351 ${socket.nickname} ${this.servername} minisrv ${this.minisrv_config.version} :minisrv IRC server\r\n`);
|
|
break;
|
|
case 'WALLOPS':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
if (!this.isIRCOp(socket.nickname)) {
|
|
socket.write(`:${this.servername} 481 ${socket.nickname} :Permission denied - you are not an IRC operator\r\n`);
|
|
break;
|
|
}
|
|
if (params.length < 1) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} WALLOPS :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
var wallopsMessage = params.join(' ');
|
|
if (wallopsMessage.startsWith(':')) {
|
|
wallopsMessage = wallopsMessage.slice(1);
|
|
}
|
|
this.broadcastWallops(`:${socket.nickname}!${socket.username}@${socket.host} WALLOPS :${wallopsMessage}\r\n`);
|
|
case 'VHOST':
|
|
if (!socket.registered) {
|
|
socket.write(`:${this.servername} 451 ${socket.nickname} :You have not registered\r\n`);
|
|
break;
|
|
}
|
|
if (!this.isIRCOp(socket.nickname) && !this.allow_public_vhosts) {
|
|
socket.write(`:${this.servername} 481 ${socket.nickname} :Permission denied - you are not an IRC operator\r\n`);
|
|
break;
|
|
}
|
|
if (params.length < 1) {
|
|
socket.write(`:${this.servername} 461 ${socket.nickname} VHOST :Not enough parameters\r\n`);
|
|
break;
|
|
}
|
|
const newVHost = params[0];
|
|
if (!newVHost || !/^[a-zA-Z0-9.-]+$/.test(newVHost)) {
|
|
socket.write(`:${this.servername} 501 ${socket.nickname} :Invalid VHost format\r\n`);
|
|
break;
|
|
}
|
|
// Prevent setting VHost to an IP address (IPv4 or IPv6)
|
|
const ipv4Pattern = /^(?:\d{1,3}\.){3}\d{1,3}$/;
|
|
const ipv6Pattern = /^([a-fA-F0-9:]+:+)+[a-fA-F0-9]+$/;
|
|
if (ipv4Pattern.test(newVHost) || ipv6Pattern.test(newVHost)) {
|
|
socket.write(`:${this.servername} 501 ${socket.nickname} :VHost cannot be an IP address\r\n`);
|
|
break;
|
|
}
|
|
dns.lookup(newVHost, (err, address) => {
|
|
if (!err && address) {
|
|
socket.write(`:${this.servername} 501 ${socket.nickname} :VHost must not resolve to a real IP (resolved to: ${address})\r\n`);
|
|
return;
|
|
}
|
|
// Set the new VHost for the socket
|
|
socket.host = newVHost;
|
|
socket.write(`:${this.servername} 396 ${socket.nickname} :Your VHost has been changed to ${socket.host}\r\n`);
|
|
});
|
|
break;
|
|
default:
|
|
// Ignore unknown commands
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
deleteChannel(channel) {
|
|
if (!this.isReservedChannel(channel)) {
|
|
this.channels.delete(channel);
|
|
this.channelops.delete(channel);
|
|
this.channelhalfops.delete(channel);
|
|
this.channelvoices.delete(channel);
|
|
this.channeltopics.delete(channel);
|
|
this.channelbans.delete(channel);
|
|
this.channelexemptions.delete(channel);
|
|
this.channelinvites.delete(channel);
|
|
this.channelmodes.delete(channel);
|
|
this.channeltimestamps.delete(channel);
|
|
if (this.debug) {
|
|
console.log(`Channel ${channel} deleted`);
|
|
}
|
|
} else {
|
|
if (this.debug) {
|
|
console.warn(`Attempted to delete reserved channel ${channel}, operation ignored.`);
|
|
}
|
|
}
|
|
}
|
|
|
|
terminateSession(socket, close = false) {
|
|
const nickname = this.nicknames.get(socket);
|
|
if (nickname) {
|
|
this.usertimestamps.delete(nickname);
|
|
this.usersignontimestamps.delete(nickname);
|
|
this.usernames.delete(nickname);
|
|
this.usermodes.delete(nickname);
|
|
this.awaymsgs.delete(nickname);
|
|
for (const [ch, ops] of this.channelops.entries()) {
|
|
if (ops && ops !== true && ops.has(nickname)) {
|
|
ops.delete(nickname);
|
|
}
|
|
}
|
|
for (const [ch, ops] of this.channelhalfops.entries()) {
|
|
if (ops && ops !== true && ops.has(nickname)) {
|
|
ops.delete(nickname);
|
|
}
|
|
}
|
|
for (const [ch, voices] of this.channelvoices.entries()) {
|
|
if (voices && voices !== true && voices.has(nickname)) {
|
|
voices.delete(nickname);
|
|
}
|
|
}
|
|
// Remove user from any pending invites
|
|
for (const [ch, invites] of (this.channelinvites || new Map()).entries()) {
|
|
if (invites && invites.has(nickname)) {
|
|
invites.delete(nickname);
|
|
}
|
|
}
|
|
this.channels.forEach((users, ch) => {
|
|
if (users.has(nickname)) {
|
|
users.delete(nickname);
|
|
if (users.size === 0) {
|
|
this.deleteChannel(ch);
|
|
}
|
|
}
|
|
});
|
|
this.nicknames.delete(socket);
|
|
}
|
|
var serverSocket = null;
|
|
for (const [srvSocket, users] of this.serverusers.entries()) {
|
|
if (users && typeof users.has === 'function' && users.has(nickname)) {
|
|
// Don't send QUIT to this server, as it owns the user
|
|
serverSocket = srvSocket;
|
|
continue;
|
|
}
|
|
}
|
|
this.broadcastToAllServers(`:${socket.uniqueId} QUIT :Client disconnected\r\n`, serverSocket);
|
|
this.clients = this.clients.filter(c => c !== socket);
|
|
if (close) {
|
|
socket.end();
|
|
}
|
|
}
|
|
|
|
sendWebTVNotice(message) {
|
|
this.broadcast(`:${this.servername} NOTICE * :${message}\r\n`);
|
|
}
|
|
|
|
sendWebTVNoticeTo(username, message) {
|
|
const socket = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s) === username);
|
|
if (socket) {
|
|
socket.write(`:${this.servername} NOTICE * :${message}\r\n`);
|
|
}
|
|
}
|
|
|
|
sendToChannelAs(username, channel, message) {
|
|
const users = this.getUsersInChannel(channel);
|
|
for (const user of users) {
|
|
const socket = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s) === user);
|
|
if (socket) {
|
|
socket.write(`:${username}!${username}@${this.servername} PRIVMSG ${channel} :${message}\r\n`);
|
|
}
|
|
}
|
|
}
|
|
|
|
getChannelCount(username) {
|
|
// returns the number of channels a user is in
|
|
let count = 0;
|
|
for (const [channel, users] of this.channels.entries()) {
|
|
if (users.has(username)) {
|
|
count++;
|
|
}
|
|
}
|
|
return count;
|
|
}
|
|
|
|
getUsersInChannel(channel) {
|
|
if (this.channels.has(channel)) {
|
|
const ops = this.channelops.get(channel) || new Set();
|
|
const halfops = this.channelhalfops.get(channel) || new Set();
|
|
const voices = this.channelvoices.get(channel) || new Set();
|
|
return Array.from(this.channels.get(channel)).map(user => {
|
|
if (ops === true) return user;
|
|
if (voices === true) return user;
|
|
if (halfops === true) return user;
|
|
if (ops.has(user)) return '@' + user;
|
|
if (halfops.has(user)) return '%' + user;
|
|
if (voices.has(user)) return '+' + user;
|
|
return user;
|
|
});
|
|
}
|
|
return [];
|
|
}
|
|
|
|
broadcastUser(username, message, exceptSocket = null) {
|
|
for (const [channel, users] of this.channels.entries()) {
|
|
if (users.has(username)) {
|
|
for (const user of users) {
|
|
const sock = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s) === user);
|
|
if (sock && sock !== exceptSocket) {
|
|
sock.write(message);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
broadcastChannel(channel, message, exceptSocket = null) {
|
|
if (this.channels.has(channel)) {
|
|
const users = this.channels.get(channel);
|
|
for (const user of users) {
|
|
const sock = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s) === user);
|
|
if (sock && sock !== exceptSocket) {
|
|
sock.write(message);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
broadcastToAllServers(message, exceptSocket = null) {
|
|
for (const [srvSocket, serverName] of this.servers.entries()) {
|
|
if (srvSocket && srvSocket !== exceptSocket) {
|
|
srvSocket.write(message);
|
|
}
|
|
}
|
|
}
|
|
|
|
broadcastWallops(message) {
|
|
for (const [socket, nickname] of this.nicknames.entries()) {
|
|
const usermodes = this.usermodes.get(nickname) || [];
|
|
if (usermodes.includes('w') || usermodes.includes('o')) {
|
|
socket.write(message);
|
|
}
|
|
}
|
|
}
|
|
|
|
broadcastServer(socket, message) {
|
|
socket.write(message);
|
|
}
|
|
|
|
broadcast(message, exceptSocket = null) {
|
|
for (const client of this.clients) {
|
|
if (client !== exceptSocket) {
|
|
client.write(message);
|
|
}
|
|
}
|
|
}
|
|
|
|
isIRCOp(nickname) {
|
|
// Check if the user is an IRC operator
|
|
if (!this.usermodes.has(nickname)) return false;
|
|
const modes = this.usermodes.get(nickname);
|
|
if (Array.isArray(modes)) {
|
|
return modes.includes('o');
|
|
}
|
|
return false;
|
|
}
|
|
|
|
createChannel(channel, creator) {
|
|
if (!this.channels.has(channel)) {
|
|
this.channels.set(channel, new Set());
|
|
this.channelops.set(channel, new Set([creator]));
|
|
this.channelhalfops.set(channel, new Set());
|
|
this.channelvoices.set(channel, new Set());
|
|
this.channeltopics.set(channel, 'No topic set');
|
|
this.channelbans.set(channel, new Set());
|
|
this.channelexemptions.set(channel, new Set());
|
|
this.channelinvites.set(channel, new Set());
|
|
this.channelmodes.set(channel, this.default_channel_modes.slice());
|
|
this.channeltimestamps.set(channel, Math.floor(Date.now() / 1000));
|
|
}
|
|
}
|
|
|
|
checkMask(mask, socket) {
|
|
const username = this.nicknames.get(socket);
|
|
if (!username) return false;
|
|
const userIdent = this.usernames.get(username) || username;
|
|
const host = socket.host;
|
|
const realhost = socket.realhost;
|
|
const realaddress = socket.remoteAddress;
|
|
const fullMask = `${username}!${userIdent}@${host}`;
|
|
const fullMask2 = `${username}!${userIdent}@${realhost}`;
|
|
const fullMask3 = `${username}!${userIdent}@${realaddress}`;
|
|
|
|
// If mask does not contain '!', treat as nickname or username only
|
|
if (!mask.includes('!')) {
|
|
// Wildcard match for just the nickname or username
|
|
// Try matching against both nickname and username
|
|
const maskRegex = new RegExp('^' + mask.replace(/\*/g, '.*').replace(/\?/g, '.') + '$', 'i');
|
|
return maskRegex.test(username) || maskRegex.test(userIdent);
|
|
}
|
|
|
|
// If mask contains '!', match against full mask (nick!user@host)
|
|
// Split mask into nick, user, host
|
|
const [maskNick, rest] = mask.split('!', 2);
|
|
const [maskUser, maskHost] = (rest || '').split('@', 2);
|
|
|
|
// Split fullMask into nick, user, host
|
|
const [fullNick, fullRest] = fullMask.split('!', 2);
|
|
const [fullUser, fullHost] = (fullRest || '').split('@', 2);
|
|
|
|
// Build regex for each part, defaulting to '*' if missing
|
|
const nickRegex = new RegExp('^' + (maskNick || '*').replace(/\*/g, '.*').replace(/\?/g, '.') + '$', 'i');
|
|
const userRegex = new RegExp('^' + (maskUser || '*').replace(/\*/g, '.*').replace(/\?/g, '.') + '$', 'i');
|
|
const hostRegex = new RegExp('^' + (maskHost || '*').replace(/\*/g, '.*').replace(/\?/g, '.') + '$', 'i');
|
|
var matches = nickRegex.test(fullNick) && userRegex.test(fullUser) && hostRegex.test(fullHost);
|
|
if (!matches && fullMask2) {
|
|
// Try matching against the real host if available
|
|
const [fullNick2, fullRest2] = fullMask2.split('!', 2);
|
|
const [fullUser2, fullHost2] = (fullRest2 || '').split('@', 2);
|
|
matches = nickRegex.test(fullNick2) && userRegex.test(fullUser2) && hostRegex.test(fullHost2);
|
|
}
|
|
if (!matches && fullMask3) {
|
|
// Try matching against the real IP if available
|
|
const [fullNick3, fullRest3] = fullMask3.split('!', 2);
|
|
const [fullUser3, fullHost3] = (fullRest3 || '').split('@', 2);
|
|
matches = nickRegex.test(fullNick3) && userRegex.test(fullUser3) && hostRegex.test(fullHost3);
|
|
}
|
|
return matches;
|
|
}
|
|
|
|
getHostname(socket, callback) {
|
|
if (socket && socket.remoteAddress) {
|
|
try {
|
|
dns.reverse(socket.remoteAddress, (err, hostnames) => {
|
|
if (!err && hostnames && hostnames.length > 0) {
|
|
callback(hostnames[0]);
|
|
} else if (this.debug) {
|
|
console.error(`DNS reverse lookup failed for ${socket.remoteAddress}:`, err);
|
|
callback(socket.remoteAddress);
|
|
}
|
|
});
|
|
} catch (e) {
|
|
if (this.debug) {
|
|
console.error(`Error resolving hostname for ${socket.remoteAddress}:`, e);
|
|
}
|
|
callback(socket.remoteAddress);
|
|
}
|
|
}
|
|
}
|
|
|
|
filterHostname(socket, hostname) {
|
|
const username = this.nicknames.get(socket);
|
|
var modes = null;
|
|
if (username) {
|
|
modes = this.usermodes.get(username);
|
|
}
|
|
if (modes) {
|
|
if (Array.isArray(modes) && modes.includes('x')) {
|
|
// Masked hostname for +x users
|
|
if (typeof hostname === 'string') {
|
|
// Mask everything except the first and last octet for IPv4
|
|
const ipv4Match = hostname.match(/^(\d+)\.(\d+)\.(\d+)\.(\d+)$/);
|
|
if (ipv4Match) {
|
|
return `${ipv4Match[1]}.x.x.${ipv4Match[4]}`;
|
|
}
|
|
// For hostnames, mask all but the first and last label
|
|
const parts = hostname.split('.');
|
|
if (parts.length > 2) {
|
|
return `${parts[0]}.x.${parts[parts.length - 1]}`;
|
|
}
|
|
// Otherwise, just return 'hidden.host'
|
|
return 'hidden.host';
|
|
}
|
|
}
|
|
}
|
|
return hostname;
|
|
}
|
|
|
|
isBanned(channel, socket) {
|
|
const nickname = this.nicknames.get(socket);
|
|
if (this.channelbans.has(channel)) {
|
|
const bans = this.channelbans.get(channel);
|
|
// Check if the user's mask matches any ban mask
|
|
let isUserBanned = false;
|
|
for (const banMask of bans) {
|
|
isUserBanned = this.checkMask(banMask, socket);
|
|
if (isUserBanned) {
|
|
if (this.channelexemptions.has(channel)) {
|
|
const exemptions = this.channelexemptions.get(channel);
|
|
for (const exemptMask of exemptions) {
|
|
isUserBanned = !this.checkMask(exemptMask, socket);
|
|
if (!isUserBanned) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return isUserBanned;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
findSocketByUniqueId(uniqueId) {
|
|
for (const [socket, nickname] of this.nicknames.entries()) {
|
|
if (socket.uniqueId === uniqueId) {
|
|
return socket;
|
|
}
|
|
}
|
|
for (const [srvSocket, users] of this.serverusers.entries()) {
|
|
const searchID = this.findUserByUniqueId(uniqueId);
|
|
if (users.has(searchID)) {
|
|
return srvSocket;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
getSocketUniqueId(socket) {
|
|
return socket.uniqueId;
|
|
}
|
|
|
|
findUserByUniqueId(uniqueId) {
|
|
var uniqueids = this.uniqueids || new Map();
|
|
if (!uniqueids || uniqueids === true) {
|
|
uniqueids = new Map();
|
|
}
|
|
for (const [nickname, id] of uniqueids.entries()) {
|
|
if (id === uniqueId) {
|
|
return nickname;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
addUserUniqueId(nickname, uniqueId) {
|
|
if (!this.uniqueids || this.uniqueids === true) {
|
|
this.uniqueids = new Map();
|
|
}
|
|
this.uniqueids.set(nickname, uniqueId);
|
|
}
|
|
|
|
deleteUserUniqueId(nickname) {
|
|
if (this.uniqueids && this.uniqueids.has(nickname)) {
|
|
this.uniqueids.delete(nickname);
|
|
}
|
|
}
|
|
|
|
|
|
// Enhanced MODE command: support multiple mode flags and parameters in a single command
|
|
// Example: /mode #chan +mik password
|
|
// This method parses and applies multiple channel mode changes in one call.
|
|
processChannelModeBatch(nickname, channel, modeString, params) {
|
|
const socket = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s) === nickname);
|
|
|
|
|
|
// Parse mode string and parameters
|
|
let adding = true;
|
|
let paramIndex = 0;
|
|
let modeChanges = [];
|
|
let modeFlags = modeString.replace(/^:/, '').split('');
|
|
let paramModes = {
|
|
'k': true, // key
|
|
'l': true, // limit
|
|
'b': true, // ban
|
|
'e': true, // exception
|
|
'I': true, // invite-exception
|
|
'h': true, // halfop
|
|
'o': true, // op
|
|
'v': true // voice
|
|
};
|
|
for (let i = 0; i < modeFlags.length; i++) {
|
|
let c = modeFlags[i];
|
|
// If the mode is 'b', 'e', or 'I', allow it with or without a param
|
|
if ((c === 'b' || c === 'e' || c === 'I') && paramIndex >= params.length) {
|
|
this.processChannelModeCommand(nickname, channel, c, null);
|
|
return;
|
|
}
|
|
if (c === '+') {
|
|
adding = true;
|
|
} else if (c === '-') {
|
|
adding = false;
|
|
} else {
|
|
let param = null;
|
|
if (paramModes[c]) {
|
|
// Only consume a param if available
|
|
if (paramIndex < params.length) {
|
|
param = params[paramIndex++];
|
|
}
|
|
}
|
|
modeChanges.push({ adding, mode: c, param });
|
|
}
|
|
}
|
|
|
|
// Allow IRCop to set channel modes, or require channel operator
|
|
if (
|
|
!this.isIRCOp(nickname) &&
|
|
(
|
|
!this.channelops.has(channel) ||
|
|
this.channelops.get(channel) === true ||
|
|
this.channelhalfops.get(channel) === true ||
|
|
!this.channelops.get(channel).has(nickname)
|
|
)
|
|
) {
|
|
socket.write(`:${this.servername} 482 ${nickname} ${channel} :You're not channel operator\r\n`);
|
|
return;
|
|
}
|
|
// Now apply each mode change
|
|
for (const change of modeChanges) {
|
|
let modeFlag = (change.adding ? '+' : '-') + change.mode;
|
|
let modeParam = change.param ? [null, null, change.param] : [];
|
|
// Use the existing single-mode handler for each
|
|
this.processChannelModeCommand(nickname, channel, modeFlag, modeParam);
|
|
}
|
|
}
|
|
|
|
processChannelModeCommand(nickname, channel, mode, params) {
|
|
const socket = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s) === nickname);
|
|
const username = this.usernames.get(nickname);
|
|
if (mode.startsWith('+m')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
if (!chan_modes.includes('m')) {
|
|
this.channelmodes.set(channel, [...chan_modes, 'm']);
|
|
}
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +m\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +m\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-m')) {
|
|
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'm'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -m\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -m\r\n`);
|
|
return;
|
|
} else if (mode.startsWith("+I")) {
|
|
if (params.length < 3) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
const inviteMask = params[2];
|
|
if (!inviteMask) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
if (!this.inviteexceptions.has(channel)) {
|
|
this.inviteexceptions.set(channel, new Set());
|
|
}
|
|
if (this.inviteexceptions.get(channel).length >= this.maxinvite) {
|
|
socket.write(`:${this.servername} 478 ${nickname} ${channel} :Too many invite exceptions\r\n`);
|
|
return;
|
|
}
|
|
this.inviteexceptions.get(channel).add(inviteMask);
|
|
socket.write(`:${this.servername} 346 ${nickname} ${channel} ${inviteMask}\r\n`);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +I ${inviteMask}\r\n`, socket);
|
|
this.broadcastToAllServers(`${socket.uniqueId} MODE ${channel} +I ${inviteMask}\r\n`);
|
|
return;
|
|
} else if (mode.startsWith("-I")) {
|
|
if (params.length < 3) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
const inviteMask = params[2];
|
|
if (!inviteMask) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
if (this.inviteexceptions.has(channel)) {
|
|
this.inviteexceptions.get(channel).delete(inviteMask);
|
|
socket.write(`:${this.servername} 347 ${nickname} ${channel} ${inviteMask}\r\n`);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -I ${inviteMask}\r\n`, socket);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -I ${inviteMask}\r\n`);
|
|
return
|
|
} else {
|
|
socket.write(`:${this.servername} 403 ${nickname} ${channel} :No such channel\r\n`);
|
|
return;
|
|
}
|
|
} else if (mode.startsWith('+l')) {
|
|
|
|
if (params.length < 3) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
const limit = parseInt(params[2], 10);
|
|
if (isNaN(limit) || limit < 0) {
|
|
socket.write(`:${this.servername} 501 ${nickname} :Invalid channel limit\r\n`);
|
|
return;
|
|
}
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channellimits.set(channel, limit);
|
|
this.channelmodes.set(channel, [...chan_modes, 'l']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +l ${limit}\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +l ${limit}\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-l')) {
|
|
if (params.length < 2) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channellimits.delete(channel);
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'l'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -l\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -l\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+k')) {
|
|
if (params.length < 3) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
const key = params[2];
|
|
if (key.length < 1 || key.length > this.max_keylen) {
|
|
socket.write(`:${this.servername} 501 ${nickname} :Invalid channel key\r\n`);
|
|
return;
|
|
}
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
// replace key mode if it exists
|
|
this.channelkeys.set(channel, key);
|
|
this.channelmodes.set(channel, [...chan_modes, 'k']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +k ${key}\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +k ${key}\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-k')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelkeys.delete(channel);
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'k'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -k\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -k\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+i')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'i']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +i\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +i\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-i')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'i'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -i\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -i\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+o')) {
|
|
if (params.length < 3) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
const target_nickname = params[2];
|
|
this.channelops.set(channel, (this.channelops.get(channel) || new Set()).add(target_nickname));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +o ${target_nickname}\r\n`);
|
|
var targetUniqueId = this.uniqueids.get(target_nickname);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +o ${targetUniqueId}\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-o')) {
|
|
if (params.length < 3) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
const target_nickname = params[2];
|
|
this.channelops.set(channel, (this.channelops.get(channel) || new Set()).delete(target_nickname));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -o ${target_nickname}\r\n`);
|
|
var targetUniqueId = this.uniqueids.get(target_nickname);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -o ${targetUniqueId}\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+h')) {
|
|
if (params.length < 3) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
const target_nickname = params[2];
|
|
this.channelhalfops.set(channel, (this.channelhalfops.get(channel) || new Set()).add(target_nickname));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +h ${target_nickname}\r\n`);
|
|
var targetUniqueId = this.uniqueids.get(target_nickname);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +h ${targetUniqueId}\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-h')) {
|
|
if (params.length < 3) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
const target_nickname = params[2];
|
|
this.channelhalfops.set(channel, (this.channelhalfops.get(channel) || new Set()).delete(target_nickname));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -h ${target_nickname}\r\n`);
|
|
var targetUniqueId = this.uniqueids.get(target_nickname);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -h ${targetUniqueId}\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+v')) {
|
|
if (params.length < 3) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
const target_nickname = params[2];
|
|
this.channelvoices.set(channel, (this.channelvoices.get(channel) || new Set()).add(target_nickname));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +v ${target_nickname}\r\n`);
|
|
var targetUniqueId = this.uniqueids.get(target_nickname);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +v ${targetUniqueId}\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-v')) {
|
|
if (params.length < 3) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
const target_nickname = params[2];
|
|
this.channelvoices.set(channel, (this.channelvoices.get(channel) || new Set()).delete(target_nickname));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -v ${target_nickname}\r\n`, socket);
|
|
var targetUniqueId = this.uniqueids.get(target_nickname);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -v ${targetUniqueId}\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+b')) {
|
|
const banMask = params[2];
|
|
if (!banMask) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
if (!this.channelbans.has(channel)) {
|
|
this.channelbans.set(channel, new Set());
|
|
}
|
|
if (this.channelbans.get(channel).length >= this.maxbans) {
|
|
socket.write(`:${this.servername} 478 ${nickname} ${channel} :Channel ban list is full\r\n`);
|
|
return;
|
|
}
|
|
this.channelbans.get(channel).add(banMask);
|
|
socket.write(`:${this.servername} 367 ${nickname} ${channel} ${banMask}\r\n`);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +b ${banMask}\r\n`, socket);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +b ${banMask}\r\n`);
|
|
return
|
|
} else if (mode.startsWith('-b')) {
|
|
const banMask = params[2];
|
|
if (!banMask) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
if (this.channelbans.has(channel)) {
|
|
this.channelbans.get(channel).delete(banMask);
|
|
socket.write(`:${this.servername} 368 ${nickname} ${channel} ${banMask}\r\n`);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -b ${banMask}\r\n`, socket);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -b ${banMask}\r\n`);
|
|
return
|
|
} else {
|
|
socket.write(`:${this.servername} 403 ${nickname} ${channel} :No such channel\r\n`);
|
|
return
|
|
}
|
|
} else if (mode.startsWith('+e')) {
|
|
const exemptMask = params[2];
|
|
if (!exemptMask) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
if (!this.channelexemptions.has(channel)) {
|
|
this.channelexemptions.set(channel, new Set());
|
|
}
|
|
if (this.channelexemptions.get(channel).size >= this.maxexemptions) {
|
|
socket.write(`:${this.servername} 478 ${nickname} ${channel} :Channel exemption list is full\r\n`);
|
|
return;
|
|
}
|
|
this.channelexemptions.get(channel).add(exemptMask);
|
|
socket.write(`:${this.servername} 347 ${nickname} ${channel} ${exemptMask}\r\n`);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +e ${exemptMask}\r\n`, socket);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +e ${exemptMask}\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-e')) {
|
|
const exemptMask = params[2];
|
|
if (!exemptMask) {
|
|
socket.write(`:${this.servername} 461 ${nickname} MODE :Not enough parameters\r\n`);
|
|
return;
|
|
}
|
|
if (this.channelexemptions.has(channel)) {
|
|
this.channelexemptions.get(channel).delete(exemptMask);
|
|
socket.write(`:${this.servername} 348 ${nickname} ${channel} ${exemptMask}\r\n`);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -e ${exemptMask}\r\n`, socket);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -e ${exemptMask}\r\n`);
|
|
return;
|
|
} else {
|
|
socket.write(`:${this.servername} 403 ${nickname} ${channel} :No such channel\r\n`);
|
|
return;
|
|
}
|
|
} else if (mode.startsWith("+n")) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'n']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +n\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +n\r\n`);
|
|
return;
|
|
} else if (mode.startsWith("-n")) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'n'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -n\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -n\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+s')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 's']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +s\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +s\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-s')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 's'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -s\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -s\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+p')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'p']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +p\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +p\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-p')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'p'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -p\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -p\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+T')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'T']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +T\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +T\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-T')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'T'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -T\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -T\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+V')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'V']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +V\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +V\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-V')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'V'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -V\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -V\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+c')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'c']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +c\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +c\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-c')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'c'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -c\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -c\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+R')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'R']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +R\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +R\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-R')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'R'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -R\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -R\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+N')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'N']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +N\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +N\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-N')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'N'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -N\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -N\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+Q')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'Q']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +Q\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +Q\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-Q')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'Q'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -Q\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -Q\r\n`);
|
|
return;
|
|
}
|
|
else if (mode.startsWith('+O')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
if (!this.isIRCOp(nickname)) {
|
|
socket.write(`:${this.servername} ${nickname} ${channel} :You're not an IRC operator\r\n`);
|
|
return;
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'O']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +O\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +O\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-O')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
if (!this.isIRCOp(nickname)) {
|
|
socket.write(`:${this.servername} 482 ${nickname} ${channel} :You're not an IRC operator\r\n`);
|
|
return;
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'O'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -O\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -O\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+Z')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
if (!socket.secure) {
|
|
socket.write(`:${this.servername} 484 ${nickname} ${channel} :You must be connected via SSL/TLS to set +z\r\n`);
|
|
return;
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 'Z']);
|
|
if (this.kick_insecure_on_z) {
|
|
const usersInChannel = this.channels.get(channel) || new Set();
|
|
for (const user of usersInChannel) {
|
|
const userSocket = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s) === user);
|
|
if (userSocket && !userSocket.secure) {
|
|
userSocket.write(`:${socket.nickname}!${socket.username}@${socket.host} KICK ${channel} ${userSocket.nickname} :Channel is now +Z (SSL-only)\r\n`);
|
|
this.broadcastChannel(channel, `:${socket.nickname}!${socket.username}@${socket.host} KICK ${channel} ${userSocket.nickname} :Channel is now +Z (SSL-only)\r\n`, userSocket);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} KICK ${channel} ${userSocket.uniqueId} :Channel is now +Z (SSL-only)\r\n`);
|
|
this.channels.get(channel).delete(user);
|
|
}
|
|
}
|
|
}
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +Z\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +Z\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-Z')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 'Z'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -Z\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -Z\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('+t')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, [...chan_modes, 't']);
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} +t\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} +t\r\n`);
|
|
return;
|
|
} else if (mode.startsWith('-t')) {
|
|
var chan_modes = this.channelmodes.get(channel);
|
|
if (!chan_modes || chan_modes === true) {
|
|
chan_modes = [];
|
|
}
|
|
this.channelmodes.set(channel, (chan_modes).filter(m => m !== 't'));
|
|
this.broadcastChannel(channel, `:${nickname}!${username}@${socket.host} MODE ${channel} -t\r\n`);
|
|
this.broadcastToAllServers(`:${socket.uniqueId} MODE ${channel} -t\r\n`);
|
|
return;
|
|
} else if (mode === 'b') {
|
|
if (this.channelbans.has(channel)) {
|
|
const bans = Array.from(this.channelbans.get(channel));
|
|
for (const ban of bans) {
|
|
socket.write(`:${this.servername} 367 ${nickname} ${channel} ${ban}\r\n`);
|
|
}
|
|
}
|
|
socket.write(`:${this.servername} 368 ${nickname} ${channel} :End of channel ban list\r\n`);
|
|
return;
|
|
} else if (mode === 'e') {
|
|
if (this.channelexemptions.has(channel)) {
|
|
const exemptions = Array.from(this.channelexemptions.get(channel));
|
|
for (const exemption of exemptions) {
|
|
socket.write(`:${this.servername} 348 ${nickname} ${channel} ${exemption}\r\n`);
|
|
}
|
|
}
|
|
socket.write(`:${this.servername} 349 ${nickname} ${channel} :End of channel exception list\r\n`);
|
|
return;
|
|
} else if (mode === 'I') {
|
|
if (this.channelinvites.has(channel)) {
|
|
const invites = Array.from(this.channelinvites.get(channel));
|
|
for (const invite of invites) {
|
|
socket.write(`:${this.servername} 336 ${nickname} ${channel} ${invite}\r\n`);
|
|
}
|
|
}
|
|
socket.write(`:${this.servername} 337 ${nickname} ${channel} :End of channel invite list\r\n`);
|
|
return;
|
|
} else {
|
|
socket.write(`:${this.servername} 472 ${nickname} ${mode} :is unknown mode char to me\r\n`);
|
|
return;
|
|
}
|
|
}
|
|
|
|
doMOTD(nickname, socket) {
|
|
socket.write(`:${this.servername} 375 ${nickname} :- minisrv ${this.minisrv_config.version} Message of the Day\r\n`);
|
|
socket.write(`:${this.servername} 372 ${nickname} :${this.irc_motd}\r\n`);
|
|
socket.write(`:${this.servername} 376 ${nickname} :End of /MOTD command\r\n`);
|
|
}
|
|
|
|
isReservedChannel(channel) {
|
|
if (this.irc_config.channels && Array.isArray(this.irc_config.channels)) {
|
|
return this.irc_config.channels.some(ch => ch.name === channel);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
checkIfReservedChannelOp(socket, channel) {
|
|
if (this.isReservedChannel(channel)) {
|
|
const reservedChannel = this.irc_config.channels.find(ch => ch.name === channel);
|
|
// reservedChannel.ops is an array of masks
|
|
if (reservedChannel && reservedChannel.ops && Array.isArray(reservedChannel.ops)) {
|
|
for (const mask of reservedChannel.ops) {
|
|
if (this.checkMask(mask, socket)) {
|
|
return true; // User is an operator for this reserved channel
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return false; // User is not an operator for this reserved channel
|
|
}
|
|
|
|
isRemoteServerUser(socket, username) {
|
|
var serverUsers = this.serverusers.get(socket) || new Set();
|
|
if (!serverUsers || serverUsers === true) {
|
|
serverUsers = new Set();
|
|
}
|
|
return serverUsers.has(username);
|
|
}
|
|
|
|
getRemoteServerUserSocket(username) {
|
|
for (const [socket, users] of this.serverusers.entries()) {
|
|
for (const user of users) {
|
|
if (typeof user === 'string' && user.toLowerCase() === username.toLowerCase()) {
|
|
return socket;
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
getUsernameFromUniqueId(uniqueId) {
|
|
for (const [socket, nickname] of this.nicknames.entries()) {
|
|
if (socket.uniqueId === uniqueId) {
|
|
return nickname;
|
|
}
|
|
}
|
|
for (const [nick, id] of this.uniqueids.entries()) {
|
|
if (id === uniqueId) {
|
|
return nick;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
getUniqueId(username) {
|
|
const socket = Array.from(this.nicknames.keys()).find(s => this.nicknames.get(s).toLowerCase() === username.toLowerCase());
|
|
if (socket.uniqueId) {
|
|
return socket.uniqueId;
|
|
} else {
|
|
return this.getUniqueIDForRemoteUser(username);
|
|
}
|
|
}
|
|
|
|
getUniqueIDForRemoteUser(username) {
|
|
for (const [nick, id] of this.uniqueids.entries()) {
|
|
if (nick.toLowerCase() === username.toLowerCase()) {
|
|
return id;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
countGlobalUsers() {
|
|
let globalUsers = this.clients.length;
|
|
for (const users of this.serverusers.values()) {
|
|
if (users && typeof users.size === 'number') {
|
|
globalUsers += users.size;
|
|
} else if (Array.isArray(users)) {
|
|
globalUsers += users.length;
|
|
}
|
|
}
|
|
return globalUsers;
|
|
}
|
|
|
|
processNickChange(socket, newNick) {
|
|
// Update nickname in all channels
|
|
for (const [ch, users] of this.channels.entries()) {
|
|
if (users.has(socket.nickname)) {
|
|
users.delete(socket.nickname);
|
|
users.add(newNick);
|
|
}
|
|
}
|
|
this.usernames.set(newNick, this.usernames.get(socket.nickname) || socket.nickname);
|
|
this.usernames.delete(socket.nickname);
|
|
this.nicknames.set(socket, newNick);
|
|
this.uniqueids.delete(socket.nickname);
|
|
this.addUserUniqueId(newNick, socket.uniqueId);
|
|
this.usertimestamps.set(newNick, Date.now());
|
|
this.usertimestamps.delete(socket.nickname);
|
|
this.usermodes.set(newNick, this.usermodes.get(socket.nickname) || []);
|
|
this.usermodes.delete(socket.nickname);
|
|
this.awaymsgs.set(newNick, this.awaymsgs.get(socket.nickname) || '');
|
|
this.awaymsgs.delete(socket.nickname);
|
|
this.usersignontimestamps.set(newNick, this.usersignontimestamps.get(socket.nickname) || Math.floor(Date.now() / 1000));
|
|
this.usersignontimestamps.delete(socket.nickname);
|
|
socket.nickname = newNick;
|
|
}
|
|
|
|
generateUniqueId(socket) {
|
|
const timestamp = Date.now();
|
|
const randomPart = Math.floor(Math.random() * 1000000);
|
|
const uniqueId = `${socket.remoteAddr}-${socket.port}-${timestamp}-${randomPart}`;
|
|
const hash = crypto.createHash('sha256').update(uniqueId).digest('hex').slice(0, 6).toUpperCase();
|
|
return hash;
|
|
}
|
|
|
|
async sendThrottled(socket, lines, delayMs = 30) {
|
|
for (const line of lines) {
|
|
socket.write(line + '\r\n');
|
|
await new Promise(res => setTimeout(res, delayMs));
|
|
}
|
|
}
|
|
|
|
doLogin(nickname, socket) {
|
|
for (const [srvSocket, serverName] of this.servers.entries()) {
|
|
if (srvSocket) {
|
|
// Compose UID message for this client
|
|
const nickname = socket.nickname;
|
|
const username = socket.username || this.usernames.get(socket.nickname) || socket.nickname;
|
|
const uniqueId = socket.uniqueId;
|
|
const signonTime = Math.floor(socket.timestamp / 1000);
|
|
const userModes = (this.usermodes.get(nickname) || []).join('');
|
|
const userinfo = socket.userinfo || '';
|
|
srvSocket.write(`:${this.serverId} UID ${nickname} 1 ${signonTime} +${userModes} ${username} ${socket.host} ${socket.realhost} ${socket.remoteAddress} ${uniqueId} * ${nickname} :${userinfo}\r\n`);
|
|
}
|
|
}
|
|
this.addUserUniqueId(nickname, socket.uniqueId);
|
|
this.hostnames.set(nickname, socket.host);
|
|
this.realhosts.set(nickname, socket.realhost);
|
|
socket.write(`:${this.servername} 001 ${nickname} :Welcome to the IRC server, ${nickname}\r\n`);
|
|
socket.write(`:${this.servername} 002 ${nickname} :Your host is ${this.servername}, running version minisrv ${this.minisrv_config.version}\r\n`);
|
|
socket.write(`:${this.servername} 003 ${nickname} :This server is ready to accept commands\r\n`);
|
|
socket.write(`:${this.servername} 004 ${nickname} ${this.servername} minisrv ${this.minisrv_config.version} oxizrZws obtkmeZIlhvTVROQrnc beIklohv\r\n`);
|
|
for (const caps of this.caps) {
|
|
socket.write(`:${this.servername} 005 ${caps}\r\n`);
|
|
}
|
|
socket.write(`:${this.servername} 042 ${nickname} ${socket.uniqueId} :your unique ID\r\n`);
|
|
|
|
const visibleClients = Array.from(this.nicknames.values()).filter(nick => {
|
|
const modes = this.usermodes.get(nick) || [];
|
|
return !modes.includes('i');
|
|
});
|
|
const invisibleClients = Array.from(this.nicknames.values()).filter(nick => {
|
|
const modes = this.usermodes.get(nick) || [];
|
|
return modes.includes('i');
|
|
});
|
|
const operClients = Array.from(this.nicknames.values()).filter(nick => {
|
|
const modes = this.usermodes.get(nick) || [];
|
|
return modes.includes('o');
|
|
});
|
|
const serverCount = this.servers.size + 1; // Include this server
|
|
socket.write(`:${this.servername} 251 ${nickname} :There are ${visibleClients.length} visible users and ${invisibleClients.length} invisible users on this server\r\n`);
|
|
socket.write(`:${this.servername} 252 ${nickname} ${operClients.length} :operator(s) online\r\n`);
|
|
socket.write(`:${this.servername} 253 ${nickname} ${this.channels.size} :channels formed\r\n`);
|
|
socket.write(`:${this.servername} 255 ${nickname} :I have ${this.clients.length} clients and ${serverCount} servers\r\n`);
|
|
socket.write(`:${this.servername} 265 ${nickname} :Current Local Users: ${this.clients.length} Max: ${this.clientpeak}\r\n`);
|
|
const globalUsers = this.countGlobalUsers();
|
|
this.globalpeak = Math.max(this.globalpeak, this.countGlobalUsers());
|
|
socket.write(`:${this.servername} 266 ${nickname} :Current Global Users: ${globalUsers} Max: ${this.globalpeak}\r\n`);
|
|
for (const mode of this.default_user_modes) {
|
|
var usermodes = this.usermodes.get(nickname);
|
|
if (!usermodes || usermodes === true) {
|
|
usermodes = [];
|
|
}
|
|
if (!usermodes.includes(mode)) {
|
|
usermodes.push(mode);
|
|
this.usermodes.set(nickname, usermodes);
|
|
}
|
|
}
|
|
if (socket.secure) {
|
|
var usermodes = this.usermodes.get(nickname);
|
|
if (!usermodes || usermodes === true) {
|
|
usermodes = [];
|
|
}
|
|
usermodes.push('z');
|
|
this.usermodes.set(nickname, usermodes);
|
|
}
|
|
socket.write(`:${this.servername} 221 ${nickname} :+${this.usermodes.get(nickname).join('')}\r\n`);
|
|
this.getHostname(socket, (hostname) => {
|
|
socket.host = this.filterHostname(socket, hostname);
|
|
socket.realhost = hostname;
|
|
socket.write(`:${this.servername} 396 ${nickname} ${socket.host} :is now your displayed host\r\n`);
|
|
});
|
|
}
|
|
}
|
|
|
|
module.exports = WTVIRC; |