This repository has been archived by the owner on Oct 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 35
/
chat-formatter.js
468 lines (454 loc) · 13.1 KB
/
chat-formatter.js
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
/**
* Chat parser
* Pokemon Showdown - http://pokemonshowdown.com/
*
* Parses formate.
*
* @license MIT license
*/
'use strict';
// Regex copied from the client
const domainRegex = '[a-z0-9-]+(?:[.][a-z0-9-]+)*';
const parenthesisRegex = '[(](?:[^\\s()<>&]|&)*[)]';
const linkRegex = new RegExp(
'(?:' +
'(?:' +
// When using www. or http://, allow any-length TLD (like .museum)
'(?:https?://|\\bwww[.])' + domainRegex +
'|\\b' + domainRegex + '[.]' +
// Allow a common TLD, or any 2-3 letter TLD followed by : or /
'(?:com?|org|net|edu|info|us|jp|[a-z]{2,3}(?=[:/]))' +
')' +
'(?:[:][0-9]+)?' +
'\\b' +
'(?:' +
'/' +
'(?:' +
'(?:' +
'[^\\s()&<>]|&|"' +
'|' + parenthesisRegex +
')*' +
// URLs usually don't end with punctuation, so don't allow
// punctuation symbols that probably aren't related to URL.
'(?:' +
'[^\\s`()[\\]{}\'".,!?;:&<>*`^~\\\\]' +
'|' + parenthesisRegex +
')' +
')?' +
')?' +
// email address
'|[a-z0-9.]+\\b@' + domainRegex + '[.][a-z]{2,3}' +
')' +
'(?![^ ]*>)',
'ig'
);
// compiled from above
// const linkRegex = /(?:(?:(?:https?:\/\/|\bwww[.])[a-z0-9-]+(?:[.][a-z0-9-]+)*|\b[a-z0-9-]+(?:[.][a-z0-9-]+)*[.](?:com?|org|net|edu|info|us|jp|[a-z]{2,3}(?=[:/])))(?:[:][0-9]+)?\b(?:\/(?:(?:[^\s()&<>]|&|"|[(](?:[^\s()<>&]|&)*[)])*(?:[^\s`()[\]{}'".,!?;:&<>*`^~\\]|[(](?:[^\s()<>&]|&)*[)]))?)?|[a-z0-9.]+\b@[a-z0-9-]+(?:[.][a-z0-9-]+)*[.][a-z]{2,3})(?![^ ]*>)/ig;
/**
* @typedef {'_' | '*' | '~' | '^' | '\\' | '<' | '[' | '`' | 'a' | 'spoiler' | '>' | '('} SpanType
*/
/**
* @typedef {[SpanType, number]} FormatSpan [spanType, buffersIndex]
*/
class TextFormatter {
/**
* @param {string} str
*/
constructor(str, isTrusted = false) {
// escapeHTML, without escaping /
str = ('' + str).replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, ''');
// filter links first
str = str.replace(linkRegex, uri => {
let fulluri = uri;
if (/^[a-z0-9.]+@/ig.test(uri)) {
fulluri = 'mailto:' + uri;
} else {
fulluri = uri.replace(/^([a-z]*[^a-z:])/g, 'http://$1');
if (uri.substr(0, 24) === 'https://docs.google.com/' || uri.substr(0, 16) === 'docs.google.com/') {
if (uri.slice(0, 5) === 'https') uri = uri.slice(8);
if (uri.substr(-12) === '?usp=sharing' || uri.substr(-12) === '&usp=sharing') uri = uri.slice(0, -12);
if (uri.substr(-6) === '#gid=0') uri = uri.slice(0, -6);
let slashIndex = uri.lastIndexOf('/');
if (uri.length - slashIndex > 18) slashIndex = uri.length;
if (slashIndex - 4 > 19 + 3) uri = uri.slice(0, 19) + '<small class="message-overflow">' + uri.slice(19, slashIndex - 4) + '</small>' + uri.slice(slashIndex - 4);
}
}
return `<a href="${fulluri}" rel="noopener" target="_blank">${uri}</a>`;
});
// (links don't have any specific syntax, they're just a pattern, so we detect them in a separate pass)
this.str = str;
this.buffers = /** @type {string[]} */ ([]);
this.stack = /** @type {FormatSpan[]} */ ([]);
this.isTrusted = isTrusted;
/** offset of str that's been parsed so far */
// TypeScript bug: [js] 'offset' implicitly has type 'any' because it does not have a type annotation and is referenced directly or indirectly in its own initializer.
/** @type {number} */
this.offset = 0;
}
// debugAt(i=0, j=i+1) { console.log(this.slice(0, i) + '[' + this.slice(i, j) + ']' + this.slice(j, this.str.length)); }
/**
* @param {number} start
* @param {number} end
*/
slice(start, end) {
return this.str.slice(start, end);
}
/**
* @param {number} start
*/
at(start) {
return this.str.charAt(start);
}
/**
* @param {SpanType} spanType
* @param {number} start
* @param {number} end
*/
pushSpan(spanType, start, end) {
this.pushSlice(start);
this.stack.push([spanType, this.buffers.length]);
this.buffers.push(this.slice(start, end));
this.offset = end;
}
/**
* @param {number} end
*/
pushSlice(end) {
if (end !== this.offset) {
this.buffers.push(this.slice(this.offset, end));
this.offset = end;
}
}
/**
* @param {number} start
* @return {boolean} success
*/
closeParenSpan(start) {
let stackPosition = -1;
for (let i = this.stack.length - 1; i >= 0; i--) {
const span = this.stack[i];
if (span[0] === '(') {
stackPosition = i;
break;
}
if (span[0] !== 'spoiler') break;
}
if (stackPosition === -1) return false;
this.pushSlice(start);
while (this.stack.length > stackPosition) this.popSpan(start);
this.offset = start;
return true;
}
/**
* Attempt to close a span.
* @param {SpanType} spanType
* @param {number} start
* @param {number} end
* @return {boolean} success
*/
closeSpan(spanType, start, end) {
// loop backwards
let stackPosition = -1;
for (let i = this.stack.length - 1; i >= 0; i--) {
const span = this.stack[i];
if (span[0] === spanType) {
stackPosition = i;
break;
}
}
if (stackPosition === -1) return false;
this.pushSlice(start);
while (this.stack.length > stackPosition + 1) this.popSpan(start);
const span = /** @type {FormatSpan} */ (this.stack.pop());
const startIndex = span[1];
let tagName = '';
switch (spanType) {
case '_': tagName = 'i'; break;
case '*': tagName = 'b'; break;
case '~': tagName = 's'; break;
case '^': tagName = 'sup'; break;
case '\\': tagName = 'sub'; break;
}
if (tagName) {
this.buffers[startIndex] = `<${tagName}>`;
this.buffers.push(`</${tagName}>`);
this.offset = end;
}
return true;
}
/**
* Ends a span without an ending symbol. For most spans, this means
* they don't take effect, but certain spans like spoiler tags don't
* require ending symbols.
*
* @param {number} end
* @return {boolean} success
*/
popSpan(end) {
const span = this.stack.pop();
if (!span) return false;
this.pushSlice(end);
switch (span[0]) {
case 'spoiler':
this.buffers.push(`</span>`);
this.buffers[span[1]] = `<span class="spoiler">`;
break;
case '>':
this.buffers.push(`</span>`);
this.buffers[span[1]] = `<span class="greentext">`;
break;
default:
// do nothing
break;
}
return true;
}
/**
* @param {number} end
*/
popAllSpans(end) {
while (this.stack.length) this.popSpan(end);
this.pushSlice(end);
}
/**
* @param {string} html
*/
toUriComponent(html) {
let component = html.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"').replace(/'/g, '\'');
return encodeURIComponent(component);
}
/**
* @param {SpanType} spanType
* @param {number} start
* @return {boolean} success
*/
runLookahead(spanType, start) {
switch (spanType) {
case '`':
{
let delimLength = 0;
let i = start;
while (this.at(i) === '`') {
delimLength++;
i++;
}
let curDelimLength = 0;
while (i < this.str.length) {
const char = this.at(i);
if (char === '\n') break;
if (char === '`') {
curDelimLength++;
} else {
if (curDelimLength === delimLength) break;
curDelimLength = 0;
}
i++;
}
if (curDelimLength !== delimLength) return false;
// matching delims found
this.pushSlice(start);
this.buffers.push(`<code>`);
let innerStart = start + delimLength;
let innerEnd = i - delimLength;
if (innerStart + 1 >= innerEnd) {
// no special whitespace handling
} else if (this.at(innerStart) === ' ' && this.at(innerEnd - 1) === ' ') {
innerStart++; // strip starting and ending space
innerEnd--;
} else if (this.at(innerStart) === ' ' && this.at(innerStart + 1) === '`') {
innerStart++; // strip starting space
} else if (this.at(innerEnd - 1) === ' ' && this.at(innerEnd - 2) === '`') {
innerEnd--; // strip ending space
}
this.buffers.push(this.slice(innerStart, innerEnd));
this.buffers.push(`</code>`);
this.offset = i;
}
return true;
case '[':
{
if (this.slice(start, start + 2) !== '[[') return false;
let i = start + 2;
let colonPos = -1; // `:`
let anglePos = -1; // `<`
while (i < this.str.length) {
const char = this.at(i);
if (char === ']' || char === '\n') break;
if (char === ':' && colonPos < 0) colonPos = i;
if (char === '&' && this.slice(i, i + 4) === '<') anglePos = i;
i++;
}
if (this.slice(i, i + 2) !== ']]') return false;
let termEnd = i;
let uri = '';
if (anglePos >= 0 && this.slice(i - 4, i) === '>') { // `>`
uri = this.slice(anglePos + 4, i - 4);
termEnd = anglePos;
if (this.at(termEnd - 1) === ' ') termEnd--;
uri = encodeURI(uri.replace(/^([a-z]*[^a-z:])/g, 'http://$1'));
}
let term = this.slice(start + 2, termEnd).replace(/<\/?a(?: [^>]+)?>/g, '');
if (uri && !this.isTrusted) {
let shortUri = uri.replace(/^https?:\/\//, '').replace(/^www\./, '').replace(/\/$/, '');
term += `<small> <${shortUri}></small>`;
uri += '" rel="noopener';
}
if (colonPos > 0) {
const key = this.slice(start + 2, colonPos).toLowerCase();
switch (key) {
case 'w':
case 'wiki':
term = term.slice(term.charAt(key.length + 1) === ' ' ? key.length + 2 : key.length + 1);
uri = `//en.wikipedia.org/w/index.php?title=Special:Search&search=${this.toUriComponent(term)}`;
term = `wiki: ${term}`;
break;
case 'pokemon':
case 'item':
term = term.slice(term.charAt(key.length + 1) === ' ' ? key.length + 2 : key.length + 1);
let display = '';
if (this.isTrusted) {
display = `<psicon ${key}="${term}"/>`;
} else {
display = `[${term}]`;
}
let dir = key;
if (key === 'item') dir += 's';
uri = `//dex.pokemonshowdown.com/${dir}/${toId(term)}`;
term = display;
}
}
if (!uri) {
uri = `//www.google.com/search?ie=UTF-8&btnI&q=${this.toUriComponent(term)}`;
}
this.pushSlice(start);
this.buffers.push(`<a href="${uri}" target="_blank">${term}</a>`);
this.offset = i + 2;
}
return true;
case '<':
{
if (this.slice(start, start + 8) !== '<<') return false; // <<
let i = start + 8;
while (/[a-z0-9-]/.test(this.at(i))) i++;
if (this.slice(i, i + 8) !== '>>') return false; // >>
this.pushSlice(start);
const roomid = this.slice(start + 8, i);
this.buffers.push(`«<a href="/${roomid}" target="_blank">${roomid}</a>»`);
this.offset = i + 8;
}
return true;
case 'a':
{
let i = start + 1;
while (this.at(i) !== '/' || this.at(i + 1) !== 'a' || this.at(i + 2) !== '>') i++; // </a>
i += 3;
this.pushSlice(i);
}
return true;
}
return false;
}
/**
* @return {string}
*/
get() {
let beginningOfLine = this.offset;
// main loop! i tracks our position
for (let i = beginningOfLine; i < this.str.length; i++) {
const char = this.at(i);
switch (char) {
case '_':
case '*':
case '~':
case '^':
case '\\':
if (this.at(i + 1) === char && this.at(i + 2) !== char) {
if (!(this.at(i - 1) !== ' ' && this.closeSpan(char, i, i + 2))) {
if (this.at(i + 2) !== ' ') this.pushSpan(char, i, i + 2);
}
if (i < this.offset) {
i = this.offset - 1;
break;
}
}
while (this.at(i + 1) === char) i++;
break;
case '(':
this.stack.push(['(', -1]);
break;
case ')':
this.closeParenSpan(i);
if (i < this.offset) {
i = this.offset - 1;
break;
}
break;
case '`':
if (this.at(i + 1) === '`') this.runLookahead('`', i);
if (i < this.offset) {
i = this.offset - 1;
break;
}
while (this.at(i + 1) === '`') i++;
break;
case '[':
this.runLookahead('[', i);
if (i < this.offset) {
i = this.offset - 1;
break;
}
while (this.at(i + 1) === '[') i++;
break;
case ':':
if (i < 7) break;
if (this.slice(i - 7, i + 1).toLowerCase() === 'spoiler:' || this.slice(i - 8, i + 1).toLowerCase() === 'spoilers:') {
if (this.at(i + 1) === ' ') i++;
this.pushSpan('spoiler', i + 1, i + 1);
}
break;
case '&': // escaped '<' or '>'
if (i === beginningOfLine && this.slice(i, i + 4) === '>') {
if (!"._/=:;".includes(this.at(i + 4)) && !['w<', 'w>'].includes(this.slice(i + 4, i + 9))) {
this.pushSpan('>', i, i);
}
} else {
this.runLookahead('<', i);
}
if (i < this.offset) {
i = this.offset - 1;
break;
}
while (this.slice(i + 1, i + 5) === 'lt;&') i += 4;
break;
case '<': // guaranteed to be <a
this.runLookahead('a', i);
if (i < this.offset) {
i = this.offset - 1;
break;
}
// should never happen
break;
case '\r':
case '\n':
this.popAllSpans(i);
if (this.isTrusted) {
this.buffers.push(`<br />`);
this.offset++;
}
beginningOfLine = i + 1;
break;
}
}
this.popAllSpans(this.str.length);
return this.buffers.join('');
}
}
/**
* Takes a string and converts it to HTML by replacing standard chat formatting with the appropriate HTML tags.
*
* @param {string} str
*/
function formatText(str, isTrusted = false) {
return new TextFormatter(str, isTrusted).get();
}
module.exports = {formatText, linkRegex};