-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathskypeify.js
31 lines (29 loc) · 982 Bytes
/
skypeify.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
const striptags = require("striptags");
const { entities } = require('./utils');
const skypeify = function (s) {
const replacements = [
['&', '&'],
['>', '>'],
['<', '<'],
['"', '"'],
];
for (let i = 0; i < replacements.length; i++) {
s = s.replace(replacements[i][0], replacements[i][1]);
}
// url regex from https://stackoverflow.com/questions/3809401/what-is-a-good-regular-expression-to-match-a-url
s = s.replace(/(https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}[-a-zA-Z0-9@:%_\+.~#?&//=]*)/gi, function (match, href) {
// stuff is already encoded here
return '<a href="' + href + '">' + href + '</a>';
});
return s;
}
const deskypeify = function (s) {
let edit = s.match(/<e_m[^>]*>\s*$/i) !== null || s.match(/<e_m[^>]*>\s*<[^>]*e_m[^>]*>\s*$/i) !== null;
s = striptags(s);
s = entities.decode(s);
if (edit) {
s = '[edit] ' + s;
}
return s;
}
module.exports = { skypeify, deskypeify };