use http for protocol-less URLs
This commit is contained in:
parent
213586be95
commit
d2987d037c
@ -4,13 +4,13 @@ const LinkifyIt = require("linkify-it");
|
||||
|
||||
LinkifyIt.prototype.normalize = function normalize(match) {
|
||||
if (!match.schema) {
|
||||
match.schema = "https:";
|
||||
match.url = "https://" + match.url;
|
||||
match.schema = "http:";
|
||||
match.url = "http://" + match.url;
|
||||
}
|
||||
|
||||
if (match.schema === "//") {
|
||||
match.schema = "https:";
|
||||
match.url = "https:" + match.url;
|
||||
match.schema = "http:";
|
||||
match.url = "http:" + match.url;
|
||||
}
|
||||
|
||||
if (match.schema === "mailto:" && !/^mailto:/i.test(match.url)) {
|
||||
|
@ -22,7 +22,7 @@ describe("findLinks", () => {
|
||||
const expected = [{
|
||||
start: 0,
|
||||
end: 24,
|
||||
link: "https://www.nooooooooooooooo.com",
|
||||
link: "http://www.nooooooooooooooo.com",
|
||||
}];
|
||||
|
||||
const actual = findLinks(input);
|
||||
@ -46,7 +46,7 @@ describe("findLinks", () => {
|
||||
it("should find urls in strings starting with www", () => {
|
||||
const input = "use www.duckduckgo.com for privacy reasons";
|
||||
const expected = [{
|
||||
link: "https://www.duckduckgo.com",
|
||||
link: "http://www.duckduckgo.com",
|
||||
start: 4,
|
||||
end: 22,
|
||||
}];
|
||||
@ -94,7 +94,7 @@ describe("findLinks", () => {
|
||||
it("should handle multiple www. correctly", () => {
|
||||
const input = "www.www.test.com";
|
||||
const expected = [{
|
||||
link: "https://www.www.test.com",
|
||||
link: "http://www.www.test.com",
|
||||
start: 0,
|
||||
end: 16,
|
||||
}];
|
||||
@ -107,15 +107,15 @@ describe("findLinks", () => {
|
||||
it("should find domains without www. but valid tld", () => {
|
||||
const input = "google.com google.lv google.museum";
|
||||
const expected = [{
|
||||
link: "https://google.com",
|
||||
link: "http://google.com",
|
||||
start: 0,
|
||||
end: 10,
|
||||
}, {
|
||||
link: "https://google.lv",
|
||||
link: "http://google.lv",
|
||||
start: 11,
|
||||
end: 20,
|
||||
}, {
|
||||
link: "https://google.museum",
|
||||
link: "http://google.museum",
|
||||
start: 21,
|
||||
end: 34,
|
||||
}];
|
||||
@ -128,7 +128,7 @@ describe("findLinks", () => {
|
||||
it("should find .onion domains", () => {
|
||||
const input = "facebookcorewwwi.onion/test?url";
|
||||
const expected = [{
|
||||
link: "https://facebookcorewwwi.onion/test?url",
|
||||
link: "http://facebookcorewwwi.onion/test?url",
|
||||
start: 0,
|
||||
end: 31,
|
||||
}];
|
||||
@ -228,11 +228,11 @@ describe("findLinks", () => {
|
||||
start: 0,
|
||||
end: 22,
|
||||
}, {
|
||||
link: "https://www.google.com",
|
||||
link: "http://www.google.com",
|
||||
start: 25,
|
||||
end: 39,
|
||||
}, {
|
||||
link: "https://google.com",
|
||||
link: "http://google.com",
|
||||
start: 42,
|
||||
end: 52,
|
||||
}];
|
||||
@ -247,7 +247,7 @@ describe("findLinks", () => {
|
||||
const expected = [{
|
||||
start: 0,
|
||||
end: 15,
|
||||
link: "https://www.example.com",
|
||||
link: "http://www.example.com",
|
||||
}];
|
||||
|
||||
const actual = findLinks(input);
|
||||
@ -258,7 +258,7 @@ describe("findLinks", () => {
|
||||
const expected2 = [{
|
||||
start: 0,
|
||||
end: 15,
|
||||
link: "https://www.example.com",
|
||||
link: "http://www.example.com",
|
||||
}, {
|
||||
start: 16,
|
||||
end: 57,
|
||||
@ -275,7 +275,7 @@ describe("findLinks", () => {
|
||||
const expected = [{
|
||||
start: 0,
|
||||
end: 15,
|
||||
link: "https://www.example.com",
|
||||
link: "http://www.example.com",
|
||||
}, {
|
||||
start: 16,
|
||||
end: 29,
|
||||
@ -294,7 +294,7 @@ describe("findLinks", () => {
|
||||
it("should add protocol to protocol-aware urls", () => {
|
||||
const input = "//example.com";
|
||||
const expected = [{
|
||||
link: "https://example.com",
|
||||
link: "http://example.com",
|
||||
start: 0,
|
||||
end: 13,
|
||||
}];
|
||||
|
@ -7,7 +7,7 @@ describe("parse Handlebars helper", () => {
|
||||
it("should not introduce xss", () => {
|
||||
const testCases = [{
|
||||
input: "<img onerror='location.href=\"//youtube.com\"'>",
|
||||
expected: "<img onerror='location.href="<a href=\"https://youtube.com\" target=\"_blank\" rel=\"noopener\">//youtube.com</a>"'>",
|
||||
expected: "<img onerror='location.href="<a href=\"http://youtube.com\" target=\"_blank\" rel=\"noopener\">//youtube.com</a>"'>",
|
||||
}, {
|
||||
input: '#&">bug',
|
||||
expected: '<span class="inline-channel" role="button" tabindex="0" data-chan="#&">bug">#&">bug</span>',
|
||||
@ -41,7 +41,7 @@ describe("parse Handlebars helper", () => {
|
||||
}, {
|
||||
input: "www.nooooooooooooooo.com",
|
||||
expected:
|
||||
'<a href="https://www.nooooooooooooooo.com" target="_blank" rel="noopener">' +
|
||||
'<a href="http://www.nooooooooooooooo.com" target="_blank" rel="noopener">' +
|
||||
"www.nooooooooooooooo.com" +
|
||||
"</a>",
|
||||
}, {
|
||||
@ -56,7 +56,7 @@ describe("parse Handlebars helper", () => {
|
||||
input: "use www.duckduckgo.com for privacy reasons",
|
||||
expected:
|
||||
"use " +
|
||||
'<a href="https://www.duckduckgo.com" target="_blank" rel="noopener">' +
|
||||
'<a href="http://www.duckduckgo.com" target="_blank" rel="noopener">' +
|
||||
"www.duckduckgo.com" +
|
||||
"</a>" +
|
||||
" for privacy reasons",
|
||||
@ -101,7 +101,7 @@ describe("parse Handlebars helper", () => {
|
||||
input: "abc (www.example.com)",
|
||||
expected:
|
||||
"abc (" +
|
||||
'<a href="https://www.example.com" target="_blank" rel="noopener">' +
|
||||
'<a href="http://www.example.com" target="_blank" rel="noopener">' +
|
||||
"www.example.com" +
|
||||
"</a>" +
|
||||
")",
|
||||
@ -114,7 +114,7 @@ describe("parse Handlebars helper", () => {
|
||||
}, {
|
||||
input: "www.example.com/Test_(Page)",
|
||||
expected:
|
||||
'<a href="https://www.example.com/Test_(Page)" target="_blank" rel="noopener">' +
|
||||
'<a href="http://www.example.com/Test_(Page)" target="_blank" rel="noopener">' +
|
||||
"www.example.com/Test_(Page)" +
|
||||
"</a>",
|
||||
}];
|
||||
|
@ -380,14 +380,14 @@ describe("Link plugin", function() {
|
||||
link(this.irc, this.network.channels[0], message);
|
||||
|
||||
this.irc.once("msg:preview", function(data) {
|
||||
expect(data.preview.link).to.equal("https://localhost:9002");
|
||||
expect(data.preview.link).to.equal("http://localhost:9002");
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
||||
it("should de-duplicate links", function(done) {
|
||||
const message = this.irc.createMessage({
|
||||
text: "//localhost:9002 https://localhost:9002 https://localhost:9002",
|
||||
text: "//localhost:9002 http://localhost:9002 http://localhost:9002",
|
||||
});
|
||||
|
||||
link(this.irc, this.network.channels[0], message);
|
||||
@ -397,12 +397,12 @@ describe("Link plugin", function() {
|
||||
head: "",
|
||||
body: "",
|
||||
thumb: "",
|
||||
link: "https://localhost:9002",
|
||||
link: "http://localhost:9002",
|
||||
shown: true,
|
||||
}]);
|
||||
|
||||
this.irc.once("msg:preview", function(data) {
|
||||
expect(data.preview.link).to.equal("https://localhost:9002");
|
||||
expect(data.preview.link).to.equal("http://localhost:9002");
|
||||
done();
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user