2017-04-18 03:28:35 +00:00
|
|
|
"use strict";
|
|
|
|
|
2018-05-23 13:50:59 +00:00
|
|
|
const LinkifyIt = require("linkify-it");
|
|
|
|
|
|
|
|
LinkifyIt.prototype.normalize = function normalize(match) {
|
|
|
|
if (!match.schema) {
|
2018-06-09 06:07:37 +00:00
|
|
|
match.schema = "http:";
|
|
|
|
match.url = "http://" + match.url;
|
2018-05-23 13:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (match.schema === "//") {
|
2018-06-09 06:07:37 +00:00
|
|
|
match.schema = "http:";
|
|
|
|
match.url = "http:" + match.url;
|
2018-05-23 13:50:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (match.schema === "mailto:" && !/^mailto:/i.test(match.url)) {
|
|
|
|
match.url = "mailto:" + match.url;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-03-21 20:55:36 +00:00
|
|
|
const linkify = LinkifyIt().tlds(require("tlds")).tlds("onion", true);
|
2017-04-18 03:28:35 +00:00
|
|
|
|
2018-04-26 16:03:33 +00:00
|
|
|
// Known schemes to detect in text
|
2017-04-18 03:28:35 +00:00
|
|
|
const commonSchemes = [
|
2018-04-26 16:03:33 +00:00
|
|
|
"sftp",
|
2019-07-17 09:33:59 +00:00
|
|
|
"smb",
|
|
|
|
"file",
|
|
|
|
"irc",
|
|
|
|
"ircs",
|
|
|
|
"svn",
|
|
|
|
"git",
|
|
|
|
"steam",
|
|
|
|
"mumble",
|
|
|
|
"ts3server",
|
|
|
|
"svn+ssh",
|
|
|
|
"ssh",
|
2017-04-18 03:28:35 +00:00
|
|
|
];
|
|
|
|
|
2018-04-26 16:03:33 +00:00
|
|
|
for (const schema of commonSchemes) {
|
|
|
|
linkify.add(schema + ":", "http:");
|
|
|
|
}
|
2017-04-18 03:28:35 +00:00
|
|
|
|
2018-04-26 16:03:33 +00:00
|
|
|
function findLinks(text) {
|
|
|
|
const matches = linkify.match(text);
|
2017-04-18 03:28:35 +00:00
|
|
|
|
2018-04-26 16:03:33 +00:00
|
|
|
if (!matches) {
|
|
|
|
return [];
|
2017-10-05 20:44:20 +00:00
|
|
|
}
|
2017-04-18 03:28:35 +00:00
|
|
|
|
2018-05-23 13:50:59 +00:00
|
|
|
return matches.map((url) => ({
|
|
|
|
start: url.index,
|
|
|
|
end: url.lastIndex,
|
|
|
|
link: url.url,
|
|
|
|
}));
|
2017-04-18 03:28:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = findLinks;
|