bitwarden-estensione-browser/src/services/utilsService.js

208 lines
5.8 KiB
JavaScript
Raw Normal View History

function UtilsService() {
initUtilsService();
2016-09-21 17:11:36 +02:00
this.browserCache = null;
2016-10-02 06:34:19 +02:00
this.analyticsIdCache = null;
};
function initUtilsService() {
UtilsService.prototype.getBrowser = function () {
2016-09-21 17:11:36 +02:00
if (this.browserCache) {
return this.browserCache;
}
if (navigator.userAgent.indexOf('Firefox') !== -1 || navigator.userAgent.indexOf('Gecko/') !== -1) {
2016-09-21 17:11:36 +02:00
this.browserCache = 'firefox';
}
2016-09-21 17:11:36 +02:00
else if ((!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0) {
this.browserCache = 'opera';
}
else if (navigator.userAgent.indexOf(' Edge/') !== -1) {
2016-09-21 17:11:36 +02:00
this.browserCache = 'edge';
}
2016-09-21 17:11:36 +02:00
else if (window.chrome) {
this.browserCache = 'chrome';
}
2016-09-21 17:11:36 +02:00
return this.browserCache;
};
2016-09-21 17:11:36 +02:00
UtilsService.prototype.isFirefox = function () {
return this.getBrowser() === 'firefox';
}
UtilsService.prototype.isChrome = function () {
return this.getBrowser() === 'chrome';
}
UtilsService.prototype.isEdge = function () {
return this.getBrowser() === 'edge';
}
UtilsService.prototype.isOpera = function () {
return this.getBrowser() === 'opera';
}
2016-09-27 00:41:20 +02:00
2016-10-02 06:34:19 +02:00
UtilsService.prototype.analyticsId = function () {
if (this.analyticsIdCache) {
return this.analyticsIdCache;
}
if (this.isChrome()) {
this.analyticsIdCache = 'UA-81915606-6';
}
else if (this.isFirefox()) {
this.analyticsIdCache = 'UA-81915606-7';
}
else if (this.isEdge()) {
this.analyticsIdCache = 'UA-81915606-9';
}
else if (this.isOpera()) {
this.analyticsIdCache = 'UA-81915606-8';
}
return this.analyticsIdCache;
}
UtilsService.prototype.getDeviceType = function () {
if (this.isChrome()) {
return 2;
}
else if (this.isFirefox()) {
return 3;
}
else if (this.isEdge()) {
return 5;
}
else if (this.isOpera()) {
return 4;
}
return -1;
}
UtilsService.prototype.initListSectionItemListeners = function (doc, angular) {
2016-09-27 00:41:20 +02:00
if (!doc) {
throw 'doc parameter required';
}
doc.on('click', '.list-section-item', function (e) {
if (e.isDefaultPrevented && e.isDefaultPrevented.name === 'returnTrue') {
return;
}
2016-09-27 00:41:20 +02:00
var text = $(this).find('input, textarea').not('input[type="checkbox"], input[type="radio"], input[type="hidden"]');
var checkbox = $(this).find('input[type="checkbox"]');
var select = $(this).find('select');
if (text.length > 0 && e.target === text[0]) {
return;
}
if (checkbox.length > 0 && e.target === checkbox[0]) {
return;
}
if (select.length > 0 && e.target === select[0]) {
return;
}
e.preventDefault();
if (text.length > 0) {
text.focus();
}
else if (checkbox.length > 0) {
checkbox.prop('checked', !checkbox.is(':checked'));
if (angular) {
angular.element(checkbox[0]).triggerHandler('click');
}
}
else if (select.length > 0) {
select.focus();
}
});
doc.on('focus', '.list-section-item input, .list-section-item select, .list-section-item textarea', function (e) {
$(this).parent().addClass('active');
});
doc.on('blur', '.list-section-item input, .list-section-item select, .list-section-item textarea', function (e) {
$(this).parent().removeClass('active');
});
}
UtilsService.prototype.getDomain = function (uriString) {
if (!uriString) {
return null;
}
uriString = uriString.trim();
if (uriString === '') {
return null;
}
if (uriString.startsWith('http://') || uriString.startsWith('https://')) {
try {
var url = new URL(uriString);
if (!url || !url.hostname) {
return null;
}
if (url.hostname === 'localhost' || validIpAddress(url.hostname)) {
return url.hostname;
}
if (tldjs) {
var domain = tldjs.getDomain(uriString);
if (domain) {
return domain;
}
}
return url.hostname;
}
catch (e) {
return null;
}
}
else if (tldjs) {
var domain2 = tldjs.getDomain(uriString);
if (domain2) {
return domain2;
}
}
return null;
}
UtilsService.prototype.getHostname = function (uriString) {
if (!uriString) {
return null;
}
uriString = uriString.trim();
if (uriString === '') {
return null;
}
if (uriString.startsWith('http://') || uriString.startsWith('https://')) {
try {
var url = new URL(uriString);
if (!url || !url.hostname) {
return null;
}
return url.hostname;
}
catch (e) {
return null;
}
}
return null;
}
function validIpAddress(ipString) {
var ipRegex = /^(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$/;
return ipRegex.test(ipString);
}
};