-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathparser.ts
287 lines (230 loc) · 6.51 KB
/
parser.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
// https://datatracker.ietf.org/doc/html/rfc2812#section-2.3.1
import { IPrefix, IRCMessage, IRCParserInterface } from './types';
import { getParamWithoutSemiColon } from './utils';
const SPACE = ' ';
const DISALLOWED_CHARS = '\x00\r\n :';
const CRLF = '\r\n';
class Prefix implements IPrefix {
serverName?: string;
nickName?: string;
user?: string;
host?: string;
constructor(prefix?: string) {
let serverName, nickName, host, user;
if (prefix !== undefined) {
prefix = getParamWithoutSemiColon(prefix);
// If host is present in prefix
if (prefix.indexOf('@') >= 0) {
// Split the prefix
const prefixArr = prefix.split('@');
// Since no "@" is allowed expect for the case when host is present,
// the second element will always be the host.
host = prefixArr[1];
// If nickName and user both are present
if (prefixArr[0].indexOf('!') >= 0) {
[nickName, user] = prefixArr[0].split('!');
}
// Only nickName is present
else {
nickName = prefixArr[0];
}
}
// Otherwise only serverName is present
else {
serverName = prefix;
}
}
this.serverName = serverName;
this.nickName = nickName;
this.host = host;
this.user = user;
}
}
export class IRCParser implements IRCParserInterface {
private input: string;
private pos: number;
private inputLength;
constructor(input: string) {
// Support for input having CRLF at the end
const lastTwoChars = input.substring(input.length - 2, input.length);
if (lastTwoChars === CRLF) {
input = input.substring(0, input.length - 2);
}
this.input = input;
this.pos = 0;
this.inputLength = this.input.length;
}
parse(): IRCMessage {
let prefix;
let command = '';
let params: string[] = [];
// If prefix is present than the input will start with ":"
if (this.input[0] === ':') {
this.consumeToken(':');
prefix = this.parsePrefix();
this.consumeToken(SPACE);
}
command = this.parseCommand();
// Parse params if the current token is SPACE
if (this.getCurrentToken() === SPACE) {
params = this.parseParams();
}
// If we still have some characters left after parsing
if (this.pos < this.inputLength) {
throw new Error(`Invalid token ${this.getCurrentToken()} at ${this.pos}`);
}
return { command, params, prefix };
}
/**
* Check if the middle and trailing part of params have valid characters:
* Any octet except NUL, CR, LF, " " and ":"
*
* @private
* @param {string} char
* @returns {boolean}
*/
private isNoSpaceCrLfCl(char: string): boolean {
return !DISALLOWED_CHARS.includes(char);
}
private parseTrailing(): string {
let str = '';
while (this.pos < this.inputLength) {
const token = this.getCurrentToken();
if (token === ':' || token === ' ') {
str += token;
this.consumeToken();
continue;
}
if (!this.isNoSpaceCrLfCl(token)) {
throw new Error(`Invalid token ${token} at ${this.pos}`);
}
str += token;
this.consumeToken();
}
return str;
}
private parseMiddle(): string {
let str = '';
let token = this.getCurrentToken();
if (!this.isNoSpaceCrLfCl(token)) {
throw new Error(`Invalid token ${token} at ${this.pos}`);
}
while (this.pos < this.inputLength) {
token = this.getCurrentToken();
if (token === ' ') {
break;
}
if (token === ':') {
str += token;
this.consumeToken();
continue;
}
if (!this.isNoSpaceCrLfCl(token)) {
throw new Error(`Invalid token ${token} at ${this.pos}`);
}
str += token;
this.consumeToken();
}
return str;
}
private parseParams(): string[] {
const params: string[] = [];
this.consumeToken(SPACE);
// A maximum of 14 spaces allowed
let spacesEncountered = 1;
// The total length of params cannot exceed 15.
while (
this.pos < this.inputLength &&
params.length <= 15 &&
spacesEncountered <= 15
) {
const token = this.getCurrentToken();
// Condition if check if we have reached the trialing part
if (token === ':' || params.length === 14) {
const trailing = this.parseTrailing();
params.push(trailing);
break;
}
if (token === SPACE) {
spacesEncountered++;
this.consumeToken(SPACE);
continue;
}
// Otherwise parse middle
const middle = this.parseMiddle();
params.push(middle);
// Consume space if available
if (this.getCurrentToken() === SPACE) {
spacesEncountered++;
this.consumeToken(SPACE);
}
}
return params;
}
private parsePrefix(): IPrefix {
let str = '';
while (this.getCurrentToken() !== SPACE) {
str += this.consumeToken();
}
return new Prefix(str);
}
/**
* Parsed the Command if it contains 3 digits.
*
* @private
* @returns {string}
*/
private parseCommandDigit(): string {
let str = '';
for (let i = 0; i < 3; i++) {
const token = this.getCurrentToken();
if (!(token >= '0' && token <= '9')) {
throw new Error(`Invalid token ${token} at ${this.pos}`);
}
str += token;
this.consumeToken();
}
return str;
}
private parseCommand(): string {
const token = this.getCurrentToken();
// Check if numeric command is present
if (token >= '0' && token <= '9') {
return this.parseCommandDigit();
}
let str = '';
// Parse a valid alpha-command
while (this.pos < this.inputLength) {
const token = this.getCurrentToken();
if (token === SPACE) {
break;
}
if ((token >= 'a' && token <= 'z') || (token >= 'A' && token <= 'Z')) {
str += token;
this.consumeToken();
} else {
throw new Error(`Invalid token ${token} at ${this.pos}`);
}
}
if (str.length === 0) {
throw new Error('No command found');
}
return str;
}
private consumeToken(char?: string): string {
const token = this.getCurrentToken();
// If char is provided ,check if the current token is same as char.
if (char !== undefined) {
if (token !== char) {
throw new Error(
`Invalid token ${token} at pos ${this.pos}. Expected ${char}`
);
}
}
this.pos++;
return token;
}
private getCurrentToken() {
return this.input[this.pos];
}
}