-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathirc-client.index.ts
184 lines (159 loc) · 4.26 KB
/
irc-client.index.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
import IRCClient from './irc-client';
import readline from 'readline';
import { createLogger, transports, format } from 'winston';
import path from 'path';
import { JoinCommand, PartCommandProps } from './types';
const host = 'irc.freenode.net';
const port = 6667;
const nickName = 'MJ';
const fullName = 'Mohit Jain';
const debug = true;
let client: IRCClient;
// File logger
const logger = createLogger({
transports: [
new transports.File({
dirname: path.join(process.cwd(), 'logs'),
filename: 'irc_client.log'
})
],
format: format.combine(
format.timestamp(),
format.printf(({ timestamp, level, message }) => {
return `[${timestamp}] ${level.toUpperCase()} ${message}`;
})
)
});
// Read input from user
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout
});
/**
* Function to prompt input from user.
*/
function prompt() {
rl.question('client>', async (line) => {
const input = line.trim().split(' ');
const command = input[0];
try {
switch (command) {
case 'exit':
return await handleExit();
case 'connect':
return await handleConnect();
case '/join':
return await handleJoin(input.slice(1, input.length));
case '/part':
return await handlePart(
line.substring(command.length, line.length).trim()
);
case '/nick':
return await handleNick(input[1]);
case '/privmsg':
return await handlePrivMsg(input.slice(1, input.length));
case '/quit':
return await handleQuit(input[1]);
default:
console.error('Invalid command');
prompt();
}
} catch (e) {
if (e instanceof Error) {
console.error(e.message);
} else {
console.error(e);
}
}
});
}
async function handleExit() {
await client.disconnect();
return process.exit(0);
}
async function handleConnect() {
// If client is already connected
if (client && client.connected) {
return;
}
await connect();
return prompt();
}
async function handleJoin(channels: string[]) {
if (channels.length === 0) {
throw new Error('No channels provided to join');
}
// Allowing only one channel to join right now
// TODO: Add support for multiple channels
if (channels.length > 1) {
throw new Error('Only allowed to join one channel at a time');
}
const props: JoinCommand[] = [];
channels.forEach((channel) => {
props.push({ channel });
});
await client.join(props);
return prompt();
}
/**
* The `args` present in the parameter is of the following format:
* "#foo,#bar leaving channel"
* The channels are separated by a comma.
* Afterwards an optional PART message is present
*
* @async
* @param {string} args
*/
async function handlePart(args: string) {
let i = 0;
// get the first space
for (i; i < args.length; i++) {
if (args[i] === ' ') {
break;
}
}
// Get channel and partMessage
const channels = args.substring(0, i).split(',');
const partMessage = args.substring(i, args.length);
if (channels.length === 0) {
throw new Error('No channels provided to join');
}
// Allowing only one channel to join right now
// TODO: Add support for multiple channels
if (channels.length > 1) {
throw new Error(
'Only allowed to join one channel at a time. The support for part message is not available yet'
);
}
const props: PartCommandProps = {
channels: channels,
partMessage: partMessage
};
await client.part(props);
return prompt();
}
async function handleNick(nickName: string) {
if (nickName.length > 9 || nickName.length === 0) {
throw new Error('Invalid nickname provided');
}
await client.nick(nickName);
return prompt();
}
async function handlePrivMsg(args: string[]) {
const msgTarget = args[0];
const text = args[1];
if (msgTarget === undefined || text === undefined) {
throw new Error('Invalid target or message text');
}
client.privateMessage(msgTarget, text);
return prompt();
}
async function connect() {
client = new IRCClient(host, port, nickName, fullName, debug, logger);
await client.connect();
}
async function handleQuit(message?: string) {
await client.quit(message);
return prompt();
}
prompt();