Improve domain matching for nag warning, add more reddit domains (#420)

This commit is contained in:
Eliot Partridge 2021-12-19 17:57:34 -06:00 committed by GitHub
parent 6df97ccc87
commit 0fcaf87b1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 13 deletions

View File

@ -2,6 +2,12 @@ import { g, x, r, t } from "./xeact.min.js";
import { div, ahref, br } from "./xeact-html.min.js";
import { mkConversation } from "./conversation.js";
// list of regexps for potentially problematic referrers to display the nag to
const FLAGGED_REFERRERS = [
/^https?:\/\/((.+)\.)?reddit\.com/i,
/^https?:\/\/news\.ycombinator\.com/i,
];
const addNag = () => {
let root = g("refererNotice");
x(root);
@ -20,19 +26,10 @@ const addNag = () => {
};
r(() => {
switch (document.referrer) {
case "https://news.ycombinator.com/":
const ref = document.referrer;
if (!ref) return;
if (FLAGGED_REFERRERS.some(r => r.test(ref))) {
addNag();
break;
case "https://www.reddit.com/":
addNag();
break;
case "https://old.reddit.com/":
addNag();
break;
case "https://reddit.com/":
addNag();
break;
}
});