-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathirc-client.ts
485 lines (409 loc) · 14 KB
/
irc-client.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
import net from 'net';
import { Logger } from 'winston';
import { IRCReplies } from './command-types';
import { Queue } from '../utils/queue';
import {
ChannelDetails,
CommandWaitingForReply,
IChannelDetails,
IRCClientInterface,
IRCMessage,
JoinCommand,
PartCommandProps,
SupportedCommands
} from './types';
import { getParamWithoutSemiColon } from './utils';
import { IRCParser } from './parser';
export default class IRCClient implements IRCClientInterface {
host;
port;
nickName;
realName;
connected = false;
socket: net.Socket;
debug: boolean = false;
logger?: Logger;
private commandsQueue: Queue<CommandWaitingForReply>;
private channels: Map<string, IChannelDetails>;
constructor(
host: string,
port: number,
nickName: string,
realName: string,
debug: boolean = false,
logger?: Logger
) {
if (nickName.length > 9) {
throw new Error('Length of nickname should be less than 10');
}
this.host = host;
this.port = port;
this.nickName = nickName;
this.realName = realName;
this.connected = false;
this.socket = new net.Socket();
this.debug = debug;
this.logger = logger;
this.commandsQueue = new Queue<CommandWaitingForReply>();
this.channels = new Map<string, IChannelDetails>();
}
getChannelDetails(channel: string): IChannelDetails | undefined {
return this.channels.get(channel);
}
connect(): Promise<unknown> {
return new Promise((res, rej) => {
this.socket.connect(this.port, this.host, () => {});
this.socket.on('connect', () => {
// Create initial message
let message = `NICK ${this.nickName}\r\n`;
message += `USER guest 0 * :${this.realName}\r\n`;
const elem = new CommandWaitingForReply(res, rej, 'USER');
this.commandsQueue.enqueue(elem);
// Send the message to server
this.socket.write(message);
// We are settings the connected to true since the socket is now open
this.connected = true;
if (this.debug && this.logger) {
this.logger.info('Connected to Server');
}
});
this.socket.on('data', (data) => {
this.handleDataFromServer(data.toString());
});
this.socket.on('error', (error) => {
if (this.debug && this.logger) {
this.logger.error(error);
}
this.handleDataFromServer(error.toString());
});
this.socket.on('close', () => {
if (this.debug && this.logger) {
this.logger.info('Disconnected from server');
}
this.connected = false;
const elem = this.commandsQueue.dequeue();
if (elem?.command === 'QUIT') {
elem.resolve('Disconnected from server');
}
});
});
}
async disconnect(): Promise<void> {
if (this.connected && this.socket.readyState === 'open') {
return new Promise<void>((res) => {
this.socket.destroy();
this.socket.on('close', () => {
res();
});
});
}
}
join(channels: JoinCommand[]): Promise<unknown> {
if (channels.length === 0) {
throw new Error('No channel provided');
}
// TODO: Add Support for multiple channels
if (channels.length > 1) {
throw new Error('Only one channel allowed at a time');
}
let channelList = channels[0].channel;
let keyList = channels[0].key !== undefined ? channels[0].key : '';
for (let i = 1; i < channels.length; i++) {
channelList += ',' + channels[i].channel;
keyList += ',' + channels[i].key !== undefined ? channels[i].key : '';
}
return this.waitForReply('JOIN', [channelList, keyList]);
}
part(props: PartCommandProps): Promise<unknown> {
if (props.channels.length === 0) {
throw new Error('No channels provided');
}
// TODO: Add PART support for multiple channels
if (props.channels.length > 1) {
throw new Error('Only one channel allowed at a time during PART command');
}
const params = [props.channels.join(',')];
if (props.partMessage !== undefined) {
params.push(':' + props.partMessage.trim());
}
return this.waitForReply('PART', params);
}
nick(nickName: string): Promise<unknown> {
if (nickName.length > 9 || nickName.length === 0) {
throw new Error('Invalid nickName provided');
}
return this.waitForReply('NICK', [nickName]);
}
privateMessage(msgtarget: string, text: string): void {
return this.sendMessage('PRIVMSG', [msgtarget, ':' + text]);
}
quit(message?: string): Promise<unknown> {
if (message !== undefined) {
return this.waitForReply('QUIT', [message]);
}
return this.waitForReply('QUIT');
}
on(
event: 'PRIVMSG' | 'JOIN' | 'PART' | 'NICK',
// eslint-disable-next-line @typescript-eslint/no-explicit-any
listener: (...args: any[]) => void
): void {
this.socket.on(event, listener);
}
private waitForReply(
command: SupportedCommands,
params?: string[]
): Promise<unknown> {
// Check if socket is open
if (!(this.socket && this.socket.readyState === 'open')) {
throw new Error('Connection to server is not open');
}
// Initialize message to command
let message = command;
// Add params
if (params !== undefined) {
for (let i = 0; i < params.length; i++) {
message += ' ' + params[i];
}
}
// Log if required
if (this.debug && this.logger) {
this.logger.info('sent ' + message);
}
// Create a promise and push it to the commandsQueue
const promise = new Promise((res, rej) => {
const elem = new CommandWaitingForReply(res, rej, command);
this.commandsQueue.enqueue(elem);
});
// Add the trailing CRLF and send message to server
this.socket.write(message + '\r\n');
return promise;
}
private sendMessage(command: string, params?: string[]) {
// Check if socket is open
if (!(this.socket && this.socket.readyState === 'open')) {
throw new Error('Connection to server is not open');
}
// Initialize message to command
let message = command;
// Add params
if (params !== undefined) {
for (let i = 0; i < params.length; i++) {
message += ' ' + params[i];
}
}
// Log if required
if (this.debug && this.logger) {
this.logger.info('sent ' + message);
}
// Add the trailing CRLF and send message to server
this.socket.write(message + '\r\n');
}
private handleDataFromServer(data: string) {
// The server can send multiple messages in a single data stream
const messages = data.split('\r\n');
const parsedMessages: IRCMessage[] = [];
messages.forEach((str) => {
if (this.debug && this.logger) {
this.logger.info('received ' + str);
}
// Bypassing empty messages
if (str.length > 0) {
try {
const parsedMessage = new IRCParser(str).parse();
parsedMessages.push(parsedMessage);
} catch (e) {
this.logger?.error(`${e} str: ${str}`);
}
}
});
parsedMessages.forEach((message) => {
switch (message.command) {
case IRCReplies.PING:
return this.handlePing(message);
case IRCReplies.RPL_WELCOME:
case IRCReplies.RPL_YOURHOST:
case IRCReplies.RPL_CREATED:
case IRCReplies.RPL_MYINFO:
return this.handleWelcomeMessage(message);
case IRCReplies.JOIN:
return this.handleJoinResponse(message);
case IRCReplies.PART:
return this.handlePartResponse(message);
case IRCReplies.ERR_BANNEDFROMCHAN:
case IRCReplies.ERR_INVITEONLYCHAN:
case IRCReplies.ERR_BADCHANNELKEY:
case IRCReplies.ERR_CHANNELISFULL:
case IRCReplies.ERR_BADCHANMASK:
case IRCReplies.ERR_NOSUCHCHANNEL:
case IRCReplies.ERR_TOOMANYCHANNELS:
case IRCReplies.ERR_NOTONCHANNEL:
return this.handleChannelErrorResponse(message);
case IRCReplies.RPL_NAMREPLY:
return this.handleNameReply(message);
case IRCReplies.RPL_TOPIC:
case IRCReplies.RPL_NOTOPIC:
return this.handleTopicResponse(message);
case IRCReplies.NICK:
return this.handleNickResponse(message);
case IRCReplies.ERR_NICKCOLLISION:
case IRCReplies.ERR_NICKNAMEINUSE:
case IRCReplies.ERR_NONICKNAMEGIVEN:
case IRCReplies.ERR_ERRONEUSNICKNAME:
return this.handleNickErrorResponse(message);
case IRCReplies.ERR_NORECIPIENT:
case IRCReplies.ERR_NOTEXTTOSEND:
case IRCReplies.ERR_CANNOTSENDTOCHAN:
case IRCReplies.ERR_NOTOPLEVEL:
case IRCReplies.ERR_WILDTOPLEVEL:
case IRCReplies.RPL_AWAY:
return this.handlePrivateMessageErrorResponse(message);
case IRCReplies.PRIVMSG:
return this.handlePrivateMessageResponse(message);
}
});
}
private handlePrivateMessageErrorResponse(message: IRCMessage) {
const elem = this.commandsQueue.dequeue();
if (elem?.command === 'PRIVMSG') {
elem.reject(new Error(message.params.join(' ')));
return;
}
elem?.reject(new Error(`Invalid element ${elem} received from queue`));
}
private handlePrivateMessageResponse(message: IRCMessage) {
const msgTarget = getParamWithoutSemiColon(message.params[0]);
const text = getParamWithoutSemiColon(message.params[1]);
// If the Private message is sent by some other User
if (
message.prefix?.nickName !== undefined &&
message.prefix.nickName !== this.nickName
) {
this.socket.emit('PRIVMSG', message.prefix, msgTarget, text);
return;
}
// Private message is sent by this client.
// Resolve the element from the queue.
const elem = this.commandsQueue.dequeue();
if (elem?.command === 'PRIVMSG') {
elem.resolve(text);
return;
}
elem?.reject(new Error(`Invalid element ${elem} received from queue`));
}
private handleNickResponse(message: IRCMessage) {
const newNickName = getParamWithoutSemiColon(message.params[0]);
// If the message is from other user
if (
message.prefix?.nickName !== undefined &&
message.prefix.nickName !== this.nickName
) {
this.socket.emit('NICK', message.prefix.nickName, newNickName);
return;
}
// Otherwise update this client's nick name.
// Resolve the Promise for the NICK command.
this.nickName = newNickName;
const elem = this.commandsQueue.dequeue();
if (elem?.command === 'NICK') {
elem.resolve(newNickName);
return;
}
elem?.reject(new Error(`Invalid element ${elem} received from the queue`));
}
private handleNickErrorResponse(message: IRCMessage) {
const error = message.params.join(' ');
const elem = this.commandsQueue.dequeue();
elem?.reject(new Error(error));
}
private handlePartResponse(message: IRCMessage) {
// Leaving the ":" character out
const channel = getParamWithoutSemiColon(message.params[0]);
const partMessage = getParamWithoutSemiColon(message.params[1]);
// If the PART message comes from a different user
if (
message.prefix?.nickName !== undefined &&
message.prefix.nickName !== this.nickName
) {
this.channels.get(channel)?.removeName(message.prefix?.nickName);
this.socket.emit('PART', channel, message.prefix.nickName);
return;
}
// If the PART message was for this client
this.channels.delete(channel);
const elem = this.commandsQueue.dequeue();
if (elem?.command === 'PART') {
elem.resolve(partMessage);
return;
}
elem?.reject(new Error(`Invalid element ${elem} received from the queue`));
}
private handleNameReply(message: IRCMessage) {
const params = message.params;
const channel = this.channels.get(params[2])!;
const trailing = params[3].substring(1, params[3].length).split(' ');
trailing.forEach((nickName) => {
channel.names.add(nickName);
});
}
private handleJoinResponse(message: IRCMessage) {
// leaving out the first ":" char
const channel = getParamWithoutSemiColon(message.params[0]);
// If the JOIN message comes from a different user
if (
message.prefix?.nickName !== undefined &&
message.prefix.nickName !== this.nickName
) {
this.channels.get(channel)?.addName(message.prefix.nickName);
this.socket.emit('JOIN', channel, message.prefix.nickName);
return;
}
// The JOIN response for this client
const elem = this.commandsQueue.dequeue();
const channelDetails = new ChannelDetails(channel);
this.channels.set(channel, channelDetails);
if (elem?.command === 'JOIN') {
elem.resolve('');
return;
}
elem?.reject(new Error(`Invalid element ${elem} from queue received`));
}
private handleChannelErrorResponse(message: IRCMessage) {
const elem = this.commandsQueue.dequeue();
const channel = message.params[0];
const info = getParamWithoutSemiColon(message.params[1]);
if (elem !== undefined) {
elem.reject(new Error(`${channel} ${info}`));
}
}
private handleTopicResponse(message: IRCMessage) {
const channel = message.params[0];
const topic = getParamWithoutSemiColon(message.params[1]);
let channelDetails = this.channels.get(channel);
if (message.command === IRCReplies.RPL_NOTOPIC) {
if (channelDetails !== undefined) {
channelDetails.setTopic(null);
this.channels.set(channel, channelDetails);
} else {
channelDetails = new ChannelDetails(channel);
}
} else if (message.command === IRCReplies.RPL_TOPIC) {
channelDetails = new ChannelDetails(channel, topic);
}
if (channelDetails !== undefined) {
this.channels.set(channel, channelDetails);
}
return;
}
private handlePing(message: IRCMessage) {
this.sendMessage('PONG', message.params);
}
private handleWelcomeMessage(message: IRCMessage) {
if (message.command === IRCReplies.RPL_MYINFO) {
const elem = this.commandsQueue.dequeue();
if (elem?.command === 'USER') {
elem.resolve('Connected to Server');
}
}
}
}