2014-06-25 00:30:36 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2016-03-06 16:51:06 +01:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2019-09-17 21:15:01 +02:00
|
|
|
Copyright (C) 2014-present 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
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
'use strict';
|
|
|
|
|
2014-06-25 00:30:36 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
(( ) => {
|
2014-06-25 00:30:36 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const handleImportFilePicker = function() {
|
|
|
|
const file = this.files[0];
|
|
|
|
if ( file === undefined || file.name === '' ) { return; }
|
|
|
|
if ( file.type.indexOf('text') !== 0 ) { return; }
|
|
|
|
|
|
|
|
const filename = file.name;
|
2015-03-07 05:36:09 +01:00
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const fileReaderOnLoadHandler = function() {
|
|
|
|
let userData;
|
2015-01-06 17:44:06 +01:00
|
|
|
try {
|
|
|
|
userData = JSON.parse(this.result);
|
|
|
|
if ( typeof userData !== 'object' ) {
|
|
|
|
throw 'Invalid';
|
|
|
|
}
|
|
|
|
if ( typeof userData.userSettings !== 'object' ) {
|
|
|
|
throw 'Invalid';
|
|
|
|
}
|
2019-06-25 17:57:14 +02:00
|
|
|
if (
|
|
|
|
Array.isArray(userData.whitelist) === false &&
|
|
|
|
typeof userData.netWhitelist !== 'string'
|
|
|
|
) {
|
2015-01-06 17:44:06 +01:00
|
|
|
throw 'Invalid';
|
|
|
|
}
|
2017-01-18 19:17:47 +01:00
|
|
|
if (
|
|
|
|
typeof userData.filterLists !== 'object' &&
|
|
|
|
Array.isArray(userData.selectedFilterLists) === false
|
|
|
|
) {
|
2015-01-06 17:44:06 +01:00
|
|
|
throw 'Invalid';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
userData = undefined;
|
|
|
|
}
|
|
|
|
if ( userData === undefined ) {
|
|
|
|
window.alert(vAPI.i18n('aboutRestoreDataError'));
|
|
|
|
return;
|
|
|
|
}
|
2019-05-25 14:31:06 +02:00
|
|
|
const time = new Date(userData.timeStamp);
|
|
|
|
const msg = vAPI.i18n('aboutRestoreDataConfirm')
|
|
|
|
.replace('{{time}}', time.toLocaleString());
|
|
|
|
const proceed = window.confirm(msg);
|
2019-09-17 21:15:01 +02:00
|
|
|
if ( proceed !== true ) { return; }
|
|
|
|
vAPI.messaging.send('dashboard', {
|
|
|
|
what: 'restoreUserData',
|
|
|
|
userData,
|
|
|
|
file: filename,
|
|
|
|
});
|
2015-01-06 17:44:06 +01:00
|
|
|
};
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const fr = new FileReader();
|
2015-01-06 17:44:06 +01:00
|
|
|
fr.onload = fileReaderOnLoadHandler;
|
|
|
|
fr.readAsText(file);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const startImportFilePicker = function() {
|
|
|
|
const input = document.getElementById('restoreFilePicker');
|
2015-01-06 17:44:06 +01:00
|
|
|
// 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();
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-09-17 21:15:01 +02:00
|
|
|
const exportToFile = async function() {
|
|
|
|
const response = await vAPI.messaging.send('dashboard', {
|
|
|
|
what: 'backupUserData',
|
2017-04-04 22:45:50 +02:00
|
|
|
});
|
2019-09-17 21:15:01 +02:00
|
|
|
if (
|
|
|
|
response instanceof Object === false ||
|
|
|
|
response.userData instanceof Object === false
|
|
|
|
) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
vAPI.download({
|
|
|
|
'url': 'data:text/plain;charset=utf-8,' +
|
|
|
|
encodeURIComponent(JSON.stringify(response.userData, null, ' ')),
|
|
|
|
'filename': response.localData.lastBackupFile
|
|
|
|
});
|
|
|
|
onLocalDataReceived(response.localData);
|
2015-03-07 05:36:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const onLocalDataReceived = function(details) {
|
2020-04-22 22:30:23 +02:00
|
|
|
let storageUsed;
|
|
|
|
if ( typeof details.storageUsed === 'number' ) {
|
2020-04-23 14:45:43 +02:00
|
|
|
let v = details.storageUsed;
|
|
|
|
let unit;
|
|
|
|
if ( v < 1e3 ) {
|
|
|
|
unit = 'genericBytes';
|
|
|
|
} else if ( v < 1e6 ) {
|
|
|
|
v /= 1e3;
|
|
|
|
unit = 'KB';
|
|
|
|
} else if ( v < 1e9 ) {
|
|
|
|
v /= 1e6;
|
|
|
|
unit = 'MB';
|
|
|
|
} else {
|
|
|
|
v /= 1e9;
|
|
|
|
unit = 'GB';
|
|
|
|
}
|
|
|
|
storageUsed = vAPI.i18n('storageUsed')
|
|
|
|
.replace('{{value}}', v.toLocaleString(undefined, { maximumSignificantDigits: 3 }))
|
|
|
|
.replace('{{unit}}', vAPI.i18n(unit));
|
2020-04-22 22:30:23 +02:00
|
|
|
} else {
|
|
|
|
storageUsed = '?';
|
|
|
|
}
|
|
|
|
uDom.nodeFromId('storageUsed').textContent = storageUsed;
|
2015-03-07 05:36:09 +01:00
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const timeOptions = {
|
2015-03-07 05:36:09 +01:00
|
|
|
weekday: 'long',
|
|
|
|
year: 'numeric',
|
|
|
|
month: 'long',
|
|
|
|
day: 'numeric',
|
|
|
|
hour: 'numeric',
|
|
|
|
minute: 'numeric',
|
|
|
|
timeZoneName: 'short'
|
|
|
|
};
|
2019-05-25 14:31:06 +02:00
|
|
|
|
|
|
|
const lastBackupFile = details.lastBackupFile || '';
|
2015-03-07 05:36:09 +01:00
|
|
|
if ( lastBackupFile !== '' ) {
|
2019-05-25 14:31:06 +02:00
|
|
|
const dt = new Date(details.lastBackupTime);
|
2020-04-05 21:19:07 +02:00
|
|
|
const text = vAPI.i18n('settingsLastBackupPrompt');
|
|
|
|
const node = uDom.nodeFromId('settingsLastBackupPrompt');
|
|
|
|
node.textContent = text + '\xA0' + dt.toLocaleString('fullwide', timeOptions);
|
|
|
|
node.style.display = '';
|
2015-03-07 05:36:09 +01:00
|
|
|
}
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const lastRestoreFile = details.lastRestoreFile || '';
|
2015-03-07 05:36:09 +01:00
|
|
|
if ( lastRestoreFile !== '' ) {
|
2019-05-25 14:31:06 +02:00
|
|
|
const dt = new Date(details.lastRestoreTime);
|
2020-04-05 21:19:07 +02:00
|
|
|
const text = vAPI.i18n('settingsLastRestorePrompt');
|
|
|
|
const node = uDom.nodeFromId('settingsLastRestorePrompt');
|
|
|
|
node.textContent = text + '\xA0' + dt.toLocaleString('fullwide', timeOptions);
|
|
|
|
node.style.display = '';
|
2015-03-07 05:36:09 +01:00
|
|
|
}
|
2016-10-16 19:04:31 +02:00
|
|
|
|
|
|
|
if ( details.cloudStorageSupported === false ) {
|
2020-04-11 00:17:12 +02:00
|
|
|
uDom('[data-setting-name="cloudStorageEnabled"]').attr('disabled', '');
|
2016-10-16 19:04:31 +02:00
|
|
|
}
|
2019-05-25 14:31:06 +02:00
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
if ( details.privacySettingsSupported === false ) {
|
2020-04-11 00:17:12 +02:00
|
|
|
uDom('[data-setting-name="prefetchingDisabled"]').attr('disabled', '');
|
|
|
|
uDom('[data-setting-name="hyperlinkAuditingDisabled"]').attr('disabled', '');
|
|
|
|
uDom('[data-setting-name="webrtcIPAddressHidden"]').attr('disabled', '');
|
2016-10-19 16:20:26 +02:00
|
|
|
}
|
2015-03-07 05:36:09 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const resetUserData = function() {
|
|
|
|
const msg = vAPI.i18n('aboutResetDataConfirm');
|
|
|
|
const proceed = window.confirm(msg);
|
2019-09-17 21:15:01 +02:00
|
|
|
if ( proceed !== true ) { return; }
|
|
|
|
vAPI.messaging.send('dashboard', {
|
|
|
|
what: 'resetUserData',
|
|
|
|
});
|
2015-01-06 17:44:06 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const synchronizeDOM = function() {
|
2016-11-03 16:20:47 +01:00
|
|
|
document.body.classList.toggle(
|
|
|
|
'advancedUser',
|
2020-04-11 00:17:12 +02:00
|
|
|
uDom.nodeFromSelector('[data-setting-name="advancedUserEnabled"]').checked === true
|
2016-11-03 16:20:47 +01:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const changeUserSettings = function(name, value) {
|
2019-09-17 21:15:01 +02:00
|
|
|
vAPI.messaging.send('dashboard', {
|
|
|
|
what: 'userSettings',
|
|
|
|
name,
|
|
|
|
value,
|
|
|
|
});
|
2014-06-25 00:30:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const onInputChanged = function(ev) {
|
|
|
|
const input = ev.target;
|
|
|
|
const name = this.getAttribute('data-setting-name');
|
|
|
|
let value = input.value;
|
2016-01-17 19:30:43 +01:00
|
|
|
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
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const onPreventDefault = function(ev) {
|
2016-03-06 05:38:23 +01:00
|
|
|
ev.target.focus();
|
|
|
|
ev.preventDefault();
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-06-27 23:06:42 +02:00
|
|
|
// TODO: use data-* to declare simple settings
|
|
|
|
|
2019-05-25 14:31:06 +02:00
|
|
|
const 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
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2020-04-11 00:17:12 +02:00
|
|
|
uDom('[data-i18n="settingsNoLargeMediaPrompt"] > input[type="number"]')
|
2016-01-17 19:30:43 +01:00
|
|
|
.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
|
|
|
|
2019-09-17 21:15:01 +02:00
|
|
|
uDom('#export').on('click', ( ) => { exportToFile(); });
|
2015-01-06 17:44:06 +01:00
|
|
|
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
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-09-17 21:15:01 +02:00
|
|
|
Promise.all([
|
|
|
|
vAPI.messaging.send('dashboard', { what: 'userSettings' }),
|
|
|
|
vAPI.messaging.send('dashboard', { what: 'getLocalData' }),
|
|
|
|
]).then(results => {
|
|
|
|
onUserSettingsReceived(results[0]);
|
|
|
|
onLocalDataReceived(results[1]);
|
|
|
|
});
|
2019-05-25 14:31:06 +02:00
|
|
|
|
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/591
|
|
|
|
document.querySelector(
|
|
|
|
'[data-i18n-title="settingsAdvancedUserSettings"]'
|
|
|
|
).addEventListener(
|
|
|
|
'click',
|
|
|
|
self.uBlockDashboard.openOrSelectPage
|
|
|
|
);
|
2015-01-06 17:44:06 +01:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|