mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
107 lines
3.1 KiB
JavaScript
107 lines
3.1 KiB
JavaScript
define(['isMobile'], function (isMobile) {
|
|
|
|
function isTv() {
|
|
|
|
// This is going to be really difficult to get right
|
|
var userAgent = navigator.userAgent.toLowerCase();
|
|
|
|
if (userAgent.indexOf('tv') != -1) {
|
|
return true;
|
|
}
|
|
|
|
if (userAgent.indexOf('samsungbrowser') != -1) {
|
|
return true;
|
|
}
|
|
|
|
if (userAgent.indexOf('nintendo') != -1) {
|
|
return true;
|
|
}
|
|
|
|
if (userAgent.indexOf('viera') != -1) {
|
|
return true;
|
|
}
|
|
|
|
if (userAgent.indexOf('webos') != -1) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
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) ||
|
|
/(firefox)[ \/]([\w.]+)/.exec(ua) ||
|
|
/(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] || "";
|
|
|
|
if (browser == "edge") {
|
|
platform_match = [""];
|
|
} else {
|
|
if (ua.indexOf("windows phone") != -1 || ua.indexOf("iemobile") != -1) {
|
|
|
|
// 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";
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
|
|
if (isMobile.any) {
|
|
browser.mobile = true;
|
|
}
|
|
|
|
browser.xboxOne = userAgent.toLowerCase().indexOf('xbox') != -1;
|
|
browser.animate = document.documentElement.animate != null;
|
|
browser.tizen = userAgent.toLowerCase().indexOf('tizen') != -1;
|
|
browser.web0s = userAgent.toLowerCase().indexOf('Web0S'.toLowerCase()) != -1;
|
|
|
|
browser.tv = isTv();
|
|
browser.operaTv = browser.tv && userAgent.toLowerCase().indexOf('opr/') != -1;
|
|
|
|
browser.noFlex = browser.tv && !browser.chrome && !browser.operaTv;
|
|
|
|
return browser;
|
|
}); |