jellyfin-web/dashboard-ui/bower_components/emby-webcomponents/browser.js

150 lines
4.6 KiB
JavaScript
Raw Normal View History

2015-12-26 11:35:53 -07:00
define(['isMobile'], function (isMobile) {
2016-03-08 11:47:36 -07:00
function isTv() {
// This is going to be really difficult to get right
var userAgent = navigator.userAgent.toLowerCase();
if (userAgent.indexOf('tv') != -1) {
return true;
}
2016-03-09 10:40:22 -07:00
if (userAgent.indexOf('samsungbrowser') != -1) {
2016-03-08 11:47:36 -07:00
return true;
}
if (userAgent.indexOf('nintendo') != -1) {
return true;
}
if (userAgent.indexOf('viera') != -1) {
return true;
}
2016-03-09 10:40:22 -07:00
if (userAgent.indexOf('webos') != -1) {
return true;
}
2016-03-08 11:47:36 -07:00
return false;
}
2016-07-04 22:40:18 -07:00
function isStyleSupported(prop, value) {
// If no value is supplied, use "inherit"
value = arguments.length === 2 ? value : 'inherit';
// Try the native standard method first
if ('CSS' in window && 'supports' in window.CSS) {
return window.CSS.supports(prop, value);
}
// Check Opera's native method
if ('supportsCSS' in window) {
return window.supportsCSS(prop, value);
}
// need try/catch because it's failing on tizen
try {
// Convert to camel-case for DOM interactions
var camel = prop.replace(/-([a-z]|[0-9])/ig, function (all, letter) {
return (letter + '').toUpperCase();
});
// Check if the property is supported
var support = (camel in el.style);
// Create test element
var el = document.createElement('div');
// Assign the property and value to invoke
// the CSS interpreter
el.style.cssText = prop + ':' + value;
// Ensure both the property and value are
// supported and return
return support && (el.style[camel] !== '');
} catch (err) {
return false;
}
}
2015-12-26 11:35:53 -07:00
var uaMatch = function (ua) {
ua = ua.toLowerCase();
var match = /(edge)[ \/]([\w.]+)/.exec(ua) ||
/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
/(opr)(?:.*version|)[ \/]([\w.]+)/.exec(ua) ||
/(chrome)[ \/]([\w.]+)/.exec(ua) ||
/(safari)[ \/]([\w.]+)/.exec(ua) ||
2016-01-13 22:18:46 -07:00
/(firefox)[ \/]([\w.]+)/.exec(ua) ||
2015-12-26 11:35:53 -07:00
/(msie) ([\w.]+)/.exec(ua) ||
ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec(ua) ||
[];
var platform_match = /(ipad)/.exec(ua) ||
/(iphone)/.exec(ua) ||
/(android)/.exec(ua) ||
[];
var browser = match[1] || "";
2016-02-13 19:26:51 -07:00
if (browser == "edge") {
platform_match = [""];
} else {
if (ua.indexOf("windows phone") != -1 || ua.indexOf("iemobile") != -1) {
2015-12-26 11:35:53 -07:00
2016-02-13 19:26:51 -07:00
// http://www.neowin.net/news/ie11-fakes-user-agent-to-fool-gmail-in-windows-phone-81-gdr1-update
browser = "msie";
}
else if (ua.indexOf("like gecko") != -1 && ua.indexOf('webkit') == -1 && ua.indexOf('opera') == -1 && ua.indexOf('chrome') == -1 && ua.indexOf('safari') == -1) {
browser = "msie";
}
2015-12-26 11:35:53 -07:00
}
if (browser == 'opr') {
browser = 'opera';
}
return {
browser: browser,
version: match[2] || "0",
platform: platform_match[0] || ""
};
};
var userAgent = window.navigator.userAgent;
var matched = uaMatch(userAgent);
var browser = {};
if (matched.browser) {
browser[matched.browser] = true;
browser.version = matched.version;
}
if (matched.platform) {
browser[matched.platform] = true;
}
if (!browser.chrome && !browser.msie && !browser.edge && !browser.opera && userAgent.toLowerCase().indexOf("webkit") != -1) {
browser.safari = true;
}
2016-06-21 21:39:24 -07:00
if (userAgent.toLowerCase().indexOf("playstation 4") != -1) {
browser.ps4 = true;
2016-06-26 21:19:10 -07:00
browser.tv = true;
2016-06-21 21:39:24 -07:00
}
2015-12-26 11:35:53 -07:00
if (isMobile.any) {
browser.mobile = true;
}
2016-03-06 23:53:38 -07:00
browser.xboxOne = userAgent.toLowerCase().indexOf('xbox') != -1;
2015-12-26 11:35:53 -07:00
browser.animate = document.documentElement.animate != null;
2016-07-15 14:16:18 -07:00
browser.tizen = userAgent.toLowerCase().indexOf('tizen') != -1 || userAgent.toLowerCase().indexOf('smarthub') != -1;
2016-03-10 21:25:56 -07:00
browser.web0s = userAgent.toLowerCase().indexOf('Web0S'.toLowerCase()) != -1;
2015-12-26 11:35:53 -07:00
2016-03-08 11:47:36 -07:00
browser.tv = isTv();
2016-03-11 20:29:37 -07:00
browser.operaTv = browser.tv && userAgent.toLowerCase().indexOf('opr/') != -1;
2016-03-08 11:47:36 -07:00
2016-07-04 22:40:18 -07:00
if (!isStyleSupported('display', 'flex')) {
browser.noFlex = true;
}
//browser.noFlex = (browser.tv && !browser.chrome && !browser.operaTv) || browser.ps4;
2016-06-04 17:17:35 -07:00
2015-12-26 11:35:53 -07:00
return browser;
});