thelounge/client/js/helpers/ircmessageparser/findLinks.js

79 lines
1.3 KiB
JavaScript
Raw Normal View History

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