2014-06-25 00:30:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2016-03-06 16:51:06 +01:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
|
|
|
Copyright (C) 2014-2016 Raymond Hill
|
2014-06-25 00:30:36 +02:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
|
|
|
|
|
|
|
Home: https://github.com/gorhill/uBlock
|
|
|
|
*/
|
|
|
|
|
2016-03-06 16:51:06 +01:00
|
|
|
/* global uDom */
|
2014-06-25 00:30:36 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-06 17:44:06 +01:00
|
|
|
(function() {
|
|
|
|
|
|
|
|
'use strict';
|
2014-06-25 00:30:36 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2016-03-06 16:51:06 +01:00
|
|
|
var messaging = vAPI.messaging;
|
2014-06-25 00:30:36 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-06 17:44:06 +01:00
|
|
|
var handleImportFilePicker = function() {
|
2015-03-07 05:36:09 +01:00
|
|
|
var file = this.files[0];
|
|
|
|
if ( file === undefined || file.name === '' ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( file.type.indexOf('text') !== 0 ) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var filename = file.name;
|
|
|
|
|
2015-01-06 17:44:06 +01:00
|
|
|
var fileReaderOnLoadHandler = function() {
|
|
|
|
var userData;
|
|
|
|
try {
|
|
|
|
userData = JSON.parse(this.result);
|
|
|
|
if ( typeof userData !== 'object' ) {
|
|
|
|
throw 'Invalid';
|
|
|
|
}
|
|
|
|
if ( typeof userData.userSettings !== 'object' ) {
|
|
|
|
throw 'Invalid';
|
|
|
|
}
|
|
|
|
if ( typeof userData.netWhitelist !== 'string' ) {
|
|
|
|
throw 'Invalid';
|
|
|
|
}
|
|
|
|
if ( typeof userData.filterLists !== 'object' ) {
|
|
|
|
throw 'Invalid';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
userData = undefined;
|
|
|
|
}
|
|
|
|
if ( userData === undefined ) {
|
|
|
|
window.alert(vAPI.i18n('aboutRestoreDataError'));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var time = new Date(userData.timeStamp);
|
|
|
|
var msg = vAPI.i18n('aboutRestoreDataConfirm')
|
2015-03-07 05:36:09 +01:00
|
|
|
.replace('{{time}}', time.toLocaleString());
|
2015-01-06 17:44:06 +01:00
|
|
|
var proceed = window.confirm(msg);
|
|
|
|
if ( proceed ) {
|
2016-03-06 16:51:06 +01:00
|
|
|
messaging.send(
|
|
|
|
'dashboard',
|
|
|
|
{
|
|
|
|
what: 'restoreUserData',
|
|
|
|
userData: userData,
|
|
|
|
file: filename
|
|
|
|
}
|
|
|
|
);
|
2015-01-06 17:44:06 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
var fr = new FileReader();
|
|
|
|
fr.onload = fileReaderOnLoadHandler;
|
|
|
|
fr.readAsText(file);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var startImportFilePicker = function() {
|
|
|
|
var input = document.getElementById('restoreFilePicker');
|
|
|
|
// Reset to empty string, this will ensure an change event is properly
|
|
|
|
// triggered if the user pick a file, even if it is the same as the last
|
|
|
|
// one picked.
|
|
|
|
input.value = '';
|
|
|
|
input.click();
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-03-07 05:36:09 +01:00
|
|
|
var exportToFile = function() {
|
2016-03-06 16:51:06 +01:00
|
|
|
messaging.send('dashboard', { what: 'backupUserData' }, onLocalDataReceived);
|
2015-03-07 05:36:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
var onLocalDataReceived = function(details) {
|
|
|
|
uDom('#localData > ul > li:nth-of-type(1)').text(
|
2016-10-30 18:06:23 +01:00
|
|
|
vAPI.i18n('settingsStorageUsed')
|
|
|
|
.replace(
|
|
|
|
'{{value}}',
|
|
|
|
typeof details.storageUsed === 'number' ? details.storageUsed.toLocaleString() : '?'
|
|
|
|
)
|
2015-03-07 05:36:09 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
var elem, dt;
|
|
|
|
var timeOptions = {
|
|
|
|
weekday: 'long',
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: 'numeric',
|
|
|
|
minute: 'numeric',
|
|
|
|
timeZoneName: 'short'
|
|
|
|
};
|
|
|
|
var lastBackupFile = details.lastBackupFile || '';
|
|
|
|
if ( lastBackupFile !== '' ) {
|
|
|
|
dt = new Date(details.lastBackupTime);
|
|
|
|
uDom('#localData > ul > li:nth-of-type(2) > ul > li:nth-of-type(1)').text(dt.toLocaleString('fullwide', timeOptions));
|
2015-03-07 14:52:49 +01:00
|
|
|
//uDom('#localData > ul > li:nth-of-type(2) > ul > li:nth-of-type(2)').text(lastBackupFile);
|
2015-03-07 05:36:09 +01:00
|
|
|
uDom('#localData > ul > li:nth-of-type(2)').css('display', '');
|
|
|
|
}
|
|
|
|
|
|
|
|
var lastRestoreFile = details.lastRestoreFile || '';
|
|
|
|
elem = uDom('#localData > p:nth-of-type(3)');
|
|
|
|
if ( lastRestoreFile !== '' ) {
|
|
|
|
dt = new Date(details.lastRestoreTime);
|
|
|
|
uDom('#localData > ul > li:nth-of-type(3) > ul > li:nth-of-type(1)').text(dt.toLocaleString('fullwide', timeOptions));
|
|
|
|
uDom('#localData > ul > li:nth-of-type(3) > ul > li:nth-of-type(2)').text(lastRestoreFile);
|
|
|
|
uDom('#localData > ul > li:nth-of-type(3)').css('display', '');
|
|
|
|
}
|
2016-10-16 19:04:31 +02:00
|
|
|
|
|
|
|
if ( details.cloudStorageSupported === false ) {
|
|
|
|
uDom('#cloud-storage-enabled').attr('disabled', '');
|
|
|
|
}
|
2016-10-19 16:20:26 +02:00
|
|
|
if ( details.privacySettingsSupported === false ) {
|
|
|
|
uDom('#prefetching-disabled').attr('disabled', '');
|
|
|
|
uDom('#hyperlink-auditing-disabled').attr('disabled', '');
|
|
|
|
uDom('#webrtc-ipaddress-hidden').attr('disabled', '');
|
|
|
|
}
|
2015-03-07 05:36:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-06 17:44:06 +01:00
|
|
|
var resetUserData = function() {
|
|
|
|
var msg = vAPI.i18n('aboutResetDataConfirm');
|
|
|
|
var proceed = window.confirm(msg);
|
|
|
|
if ( proceed ) {
|
2016-03-06 16:51:06 +01:00
|
|
|
messaging.send('dashboard', { what: 'resetUserData' });
|
2015-01-06 17:44:06 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2016-11-03 16:20:47 +01:00
|
|
|
var synchronizeDOM = function() {
|
|
|
|
document.body.classList.toggle(
|
|
|
|
'advancedUser',
|
|
|
|
uDom.nodeFromId('advanced-user-enabled').checked === true
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-06-25 00:30:36 +02:00
|
|
|
var changeUserSettings = function(name, value) {
|
2016-03-06 16:51:06 +01:00
|
|
|
messaging.send(
|
|
|
|
'dashboard',
|
|
|
|
{
|
|
|
|
what: 'userSettings',
|
|
|
|
name: name,
|
|
|
|
value: value
|
|
|
|
}
|
|
|
|
);
|
2014-06-25 00:30:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2016-01-17 19:30:43 +01:00
|
|
|
var onInputChanged = function(ev) {
|
|
|
|
var input = ev.target;
|
|
|
|
var name = this.getAttribute('data-setting-name');
|
|
|
|
var value = input.value;
|
|
|
|
if ( name === 'largeMediaSize' ) {
|
|
|
|
value = Math.min(Math.max(Math.floor(parseInt(value, 10) || 0), 0), 1000000);
|
|
|
|
}
|
|
|
|
if ( value !== input.value ) {
|
|
|
|
input.value = value;
|
|
|
|
}
|
|
|
|
changeUserSettings(name, value);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2016-03-06 05:38:23 +01:00
|
|
|
// Workaround for:
|
|
|
|
// https://github.com/gorhill/uBlock/issues/1448
|
|
|
|
|
|
|
|
var onPreventDefault = function(ev) {
|
|
|
|
ev.target.focus();
|
|
|
|
ev.preventDefault();
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-06-27 23:06:42 +02:00
|
|
|
// TODO: use data-* to declare simple settings
|
|
|
|
|
2014-06-25 00:30:36 +02:00
|
|
|
var onUserSettingsReceived = function(details) {
|
2015-12-13 06:56:30 +01:00
|
|
|
uDom('[data-setting-type="bool"]').forEach(function(uNode) {
|
2016-01-17 19:30:43 +01:00
|
|
|
uNode.prop('checked', details[uNode.attr('data-setting-name')] === true)
|
2015-12-13 06:56:30 +01:00
|
|
|
.on('change', function() {
|
2016-01-17 19:30:43 +01:00
|
|
|
changeUserSettings(
|
|
|
|
this.getAttribute('data-setting-name'),
|
|
|
|
this.checked
|
|
|
|
);
|
2016-11-03 16:20:47 +01:00
|
|
|
synchronizeDOM();
|
2016-01-17 19:30:43 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
uDom('[data-setting-name="noLargeMedia"] ~ label:first-of-type > input[type="number"]')
|
|
|
|
.attr('data-setting-name', 'largeMediaSize')
|
|
|
|
.attr('data-setting-type', 'input');
|
|
|
|
|
|
|
|
uDom('[data-setting-type="input"]').forEach(function(uNode) {
|
|
|
|
uNode.val(details[uNode.attr('data-setting-name')])
|
2016-03-06 05:38:23 +01:00
|
|
|
.on('change', onInputChanged)
|
|
|
|
.on('click', onPreventDefault);
|
2015-12-13 06:56:30 +01:00
|
|
|
});
|
2014-06-25 00:30:36 +02:00
|
|
|
|
2015-01-06 17:44:06 +01:00
|
|
|
uDom('#export').on('click', exportToFile);
|
|
|
|
uDom('#import').on('click', startImportFilePicker);
|
|
|
|
uDom('#reset').on('click', resetUserData);
|
|
|
|
uDom('#restoreFilePicker').on('change', handleImportFilePicker);
|
2016-11-03 16:20:47 +01:00
|
|
|
|
|
|
|
synchronizeDOM();
|
2015-01-06 17:44:06 +01:00
|
|
|
};
|
2014-06-25 00:30:36 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2015-01-06 17:44:06 +01:00
|
|
|
uDom.onLoad(function() {
|
2016-03-06 16:51:06 +01:00
|
|
|
messaging.send('dashboard', { what: 'userSettings' }, onUserSettingsReceived);
|
|
|
|
messaging.send('dashboard', { what: 'getLocalData' }, onLocalDataReceived);
|
2014-06-25 00:30:36 +02:00
|
|
|
});
|
2015-01-06 17:44:06 +01:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|