-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathutil.js
46 lines (40 loc) · 1.18 KB
/
util.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
/**
* Gets an emoji and returns either a discord emoji, or hexadecimal string.
* This prevents us from storing arbitrary unicode characters in the database.
*
* @param {string} emoji The emoji from the user message.
* @returns {string} The emoji in the correct format.
*/
function getEmojiFromMessage(emoji){
emoji = emoji.trim();
// if emoji is a discord custom emoji, return the emoji
if(emoji.match(/<a?:\w+:\d+>/)){
return emoji;
}
// if emoji is a unicode emoji, return the emoji encoded as a list of 6 digit hex values
return emoji.split('').map(char => char.codePointAt(0).toString(16).padStart(6, '0')).join('');
}
/**
* Parse an emoji from either a hexadecimal string or a discord emoji.
*
* @param {string} emoji
* @returns {string} The unicode emoji or discord emoji
*/
function parseEmoji(emoji){
if(emoji.match(/<a?:\w+:\d+>/)){
return emoji;
}
if(emoji.length % 6 !== 0) {
return emoji
}
try {
// split into groups of 6 characters and convert to unicode
return String.fromCodePoint(...emoji.match(/.{6}/g).map(hex => parseInt(hex, 16)));
} catch (error) {
return emoji;
}
}
module.exports = {
getEmojiFromMessage,
parseEmoji
}