43 lines
1.1 KiB
JavaScript
43 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
angular.module('copayApp.services').factory('platformInfo', function($window) {
|
|
|
|
var ua = navigator ? navigator.userAgent : null;
|
|
|
|
if (!ua) {
|
|
console.log('Could not determine navigator. Using fixed string');
|
|
ua = 'dummy user-agent';
|
|
}
|
|
|
|
// Fixes IOS WebKit UA
|
|
ua = ua.replace(/\(\d+\)$/, '');
|
|
|
|
var isNodeWebkit = function() {
|
|
var isNode = (typeof process !== "undefined" && typeof require !== "undefined");
|
|
if (isNode) {
|
|
try {
|
|
return (typeof require('nw.gui') !== "undefined");
|
|
} catch (e) {
|
|
return false;
|
|
}
|
|
}
|
|
};
|
|
|
|
|
|
// Detect mobile devices
|
|
var ret = {
|
|
isAndroid: !!ua.match(/Android/i),
|
|
isIOS: /iPad|iPhone|iPod/.test(ua) && !$window.MSStream,
|
|
isWP: !!ua.match(/IEMobile/i),
|
|
isSafari: Object.prototype.toString.call(window.HTMLElement).indexOf('Constructor') > 0,
|
|
ua: ua,
|
|
isCordova: !!$window.cordova,
|
|
isNW: isNodeWebkit(),
|
|
};
|
|
|
|
ret.isMobile = ret.isAndroid || ret.isIOS || ret.isWP;
|
|
ret.isChromeApp = $window.chrome && chrome.runtime && chrome.runtime.id && !ret.isNW;
|
|
ret.isDevel = !ret.isMobile && !ret.isChromeApp && !ret.isNW;
|
|
|
|
return ret;
|
|
});
|